Skip to content
Snippets Groups Projects
Commit 7752e7fb authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Add changes from cqiclient repository

parent 7c9b9f07
No related branches found
No related tags found
No related merge requests found
# ########################################################################### #
# IMS CQi specification #
# #
# Version: 0.1a ;o) #
# Author: Stefan Evert (evert@ims.uni-stuttgart.de) #
# Modified by: Patrick Jentsch <p.jentsch@uni-bielefeld.de #
# Modified date: Thurs Oct 10 <Uhrzeit> #
# ########################################################################### #
from time import sleep
import socket
import struct
# ########################################################################### #
# IMS CQi specification #
# #
# Version: 0.1a ;o) #
# Author: Stefan Evert (evert@ims.uni-stuttgart.de) #
# Modified by (codestyle): Patrick Jentsch (p.jentsch@uni-bielefeld.de) #
# Modified date: Thurs Oct 10 #
# ########################################################################### #
""" 1. padding """
PAD = 0x00
......@@ -409,13 +409,24 @@ lookup = {
}
class Client:
def __init__(self, host='127.0.0.1', port=4877):
# ########################################################################### #
# IMS CQi client #
# #
# Version: 0.1a #
# Author: Patrick Jentsch (p.jentsch@uni-bielefeld.de) #
# ########################################################################### #
class APIClient:
def __init__(self, host, port=4877):
self.host = host
self.port = port
self.socket = socket.socket()
def setup(self):
self.socket.connect((self.host, self.port))
def teardown(self):
self.socket.close()
def ctrl_connect(self, username, password):
# INPUT: (STRING username, STRING password)
# OUTPUT: CQI_STATUS_CONNECT_OK, CQI_ERROR_CONNECT_REFUSED
......
......@@ -3,7 +3,7 @@ from . import CQi
import time
class CQiWrapper(CQi.Client):
class CQiWrapper(CQi.APIClient):
'''
CQIiWrapper object
......@@ -21,7 +21,7 @@ class CQiWrapper(CQi.Client):
def __init__(self, host='127.0.0.1', port=4877, username='anonymous',
password=''):
super(CQiWrapper, self).__init__(host=host, port=port)
super(CQiWrapper, self).__init__(host, port=port)
self.username = username
self.password = password
......@@ -32,6 +32,7 @@ class CQiWrapper(CQi.Client):
Connects via socket to the CQP server using the given username and
password from class initiation.
'''
super(CQiWrapper, self).setup()
self.ctrl_connect(self.username, self.password)
def __create_attribute_strings(self):
......@@ -78,7 +79,7 @@ class CQiWrapper(CQi.Client):
Disconnects from the CQP server. Closes used socket after disconnect.
'''
self.ctrl_bye()
self.connection.close()
super(CQiWrapper, self).teardown()
logger.warning('Disconnected from cqp server.')
def query_subcorpus(self, query, result_subcorpus_name='Query-results'):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment