Add error handling of invalid CQP queries

This commit is contained in:
Stephan Porada
2020-01-16 11:56:16 +01:00
parent ef1eb9976e
commit e04b31d282
3 changed files with 24 additions and 7 deletions
app
corpora
templates

@ -368,7 +368,7 @@ class CQiClient:
self.__send_STRING(mother_corpus)
self.__send_STRING(subcorpus_name)
self.__send_STRING(query)
self.__recv_WORD()
self.__recv_response()
def cqp_list_subcorpora(self, corpus):
# INPUT: (STRING corpus)
@ -464,6 +464,8 @@ class CQiClient:
response = byte_data
elif response_type == CQi.ERROR:
raise Exception(CQi.lookup[byte_data])
elif response_type == CQi.ERROR_SYNTAX_ERROR:
raise Exception(CQi.lookup[byte_data])
elif response_type == CQi.DATA:
response = self.__recv_DATA(byte_data)
elif response_type == CQi.CL_ERROR: