diff --git a/__init__.py b/__init__.py index 6be8114..7000068 100644 --- a/__init__.py +++ b/__init__.py @@ -94,6 +94,16 @@ STATUS_CHECKSUM_ERROR = 5 """Status for 'checksum error'""" STATUS_OPERATION_NOT_PERMITTED = 6 """Status for 'operation not permitted'""" +STATUS_LOG_LVL = { + STATUS_OKAY: logging.INFO, + STATUS_BUFFERING_UNHANDLED_REQUEST: logging.WARNING, + STATUS_CALLBACK_ERROR: logging.ERROR, + STATUS_AUTH_REQUIRED: logging.WARNING, + STATUS_SERVICE_OR_DATA_UNKNOWN: logging.ERROR, + STATUS_CHECKSUM_ERROR: logging.ERROR, + STATUS_OPERATION_NOT_PERMITTED: logging.WARNING, +} +"""Status depending log level for messages""" AUTH_STATE_UNTRUSTED_CONNECTION = 0 """Authentification Status for an 'Untrusted Connection'""" @@ -271,8 +281,8 @@ class pure_json_protocol(object): # self.__status_name_dict = {} self.add_status(STATUS_OKAY, 'okay') - self.add_status(STATUS_BUFFERING_UNHANDLED_REQUEST, 'no callback for service, data buffered.') - self.add_status(STATUS_CALLBACK_ERROR, 'callback error.') + self.add_status(STATUS_BUFFERING_UNHANDLED_REQUEST, 'no callback for service, data buffered') + self.add_status(STATUS_CALLBACK_ERROR, 'callback error') self.add_status(STATUS_AUTH_REQUIRED, 'authentification required') self.add_status(STATUS_SERVICE_OR_DATA_UNKNOWN, 'service or data unknown') self.add_status(STATUS_CHECKSUM_ERROR, 'checksum error') @@ -374,8 +384,8 @@ class pure_json_protocol(object): self.__msg_buffer__[msg.get_service_id()][msg.get_data_id()].append(msg) self.logger.debug("%s Message data is stored in buffer and is now ready to be retrieved by receive method", self.__log_prefix__()) - def __build_frame__(self, service_id, data_id, data, status=STATUS_OKAY): - data_frame = json.dumps(self.__mk_msg__(status, service_id, data_id, data)) + def __build_frame__(self, msg): + data_frame = json.dumps(self.__mk_msg__(msg.get_status(), msg.get_service_id(), msg.get_data_id(), msg.get_data())) if sys.version_info >= (3, 0): data_frame = bytes(data_frame, 'utf-8') checksum = self.__calc_chksum__(data_frame) @@ -424,48 +434,52 @@ class pure_json_protocol(object): if self.__auto_auth__ and self.__comm_inst__.IS_CLIENT and self.__secret__ is not None: self.authentificate() + def __log_msg__(self, msg, rx_tx_prefix): + self.logger.log( + self.__status_log_lvl__(msg.get_status()), + '%s %s %s, %s, data: "%s"', + self.__log_prefix__(), + rx_tx_prefix, + self.__get_message_name__(msg.get_service_id(), msg.get_data_id()), + self.__get_status_name__(msg.get_status()), + repr(msg.get_data()) + ) + def __data_available_callback__(self, comm_inst): frame = comm_inst.receive() msg = self.__analyse_frame__(frame) if not self.__check_frame_checksum__(frame): # Wrong Checksum - self.logger.warning("%s RX <- Received message has a wrong checksum. Message will be ignored.", self.__log_prefix__()) + self.logger.log(self.__status_log_lvl__(STATUS_CHECKSUM_ERROR), "%s Received message has an invalid checksum. Message will be ignored.", self.__log_prefix__()) return # No response needed elif not self.check_authentification_state() and self.__authentification_required__(msg.get_service_id(), msg.get_data_id()): # Authentification required + self.__log_msg__(msg, 'RX <-') if msg.get_service_id() in self.__sid_response_dict__.keys(): - self.logger.warning("%s RX <- Authentification is required. Just sending negative response.", self.__log_prefix__()) + self.logger.log(self.__status_log_lvl__(STATUS_AUTH_REQUIRED), "%s Authentification is required. Just sending negative response.", self.__log_prefix__()) status = STATUS_AUTH_REQUIRED data = None else: - self.logger.warning("%s RX <- Authentification is required. Message will be ignored.", self.__log_prefix__()) + self.logger.log(self.__status_log_lvl__(STATUS_AUTH_REQUIRED), "%s Authentification is required. Incomming message will be ignored.", self.__log_prefix__()) return # No response needed else: # Valid message - self.logger.info( - '%s RX <- %s, %s, data: "%s"', - self.__log_prefix__(), - self.__get_message_name__(msg.get_service_id(), msg.get_data_id()), - self.__get_status_name__(msg.get_status()), - repr(msg.get_data()) - ) - if msg.get_status() not in [STATUS_OKAY]: - self.logger.warning("%s RX <- Message has a peculiar status: %s", self.__log_prefix__(), self.__get_status_name__(msg.get_status())) + self.__log_msg__(msg, 'RX <-') callback, args, kwargs = self.__callbacks__.get(msg.get_service_id(), msg.get_data_id()) if msg.get_service_id() in self.__sid_response_dict__.keys(): # # REQUEST RECEIVED # if callback is None: - self.logger.warning("%s RX <- Message with no registered callback. Sending negative response.", self.__log_prefix__()) + self.logger.warning("%s Incomming message with no registered callback. Sending negative response.", self.__log_prefix__()) status = STATUS_BUFFERING_UNHANDLED_REQUEST data = None else: try: - self.logger.debug("%s RX <- Executing callback %s to process received data", self.__log_prefix__(), callback.__name__) + self.logger.debug("%s Executing callback %s to process received data", self.__log_prefix__(), callback.__name__) status, data = callback(msg, *args, **kwargs) except Exception: - logger.error('{lp} RX <- Exception raised. Check callback {callback_name} and it\'s return values for service_id {service_id} and data_id {data_id}'.format(lp=self.__log_prefix__(), callback_name=callback.__name__, service_id=repr(msg.get_service_id()), data_id=repr(msg.get_data_id()))) + logger.error('{lp} Exception raised. Check callback {callback_name} and it\'s return values for service_id {service_id} and data_id {data_id}'.format(lp=self.__log_prefix__(), callback_name=callback.__name__, service_id=repr(msg.get_service_id()), data_id=repr(msg.get_data_id()))) status = STATUS_CALLBACK_ERROR data = None else: @@ -498,11 +512,14 @@ class pure_json_protocol(object): self.logger = logging.getLogger(ROOT_LOGGER_NAME).getChild(__name__ + '.' + channel_name) def __log_prefix__(self): - return 'SP client:' if self.__comm_inst__.IS_CLIENT else 'SP server:' + return 'prot-client:' if self.__comm_inst__.IS_CLIENT else 'prot-server:' def __mk_msg__(self, status, service_id, data_id, data): return data_storage({data_storage.KEY_DATA_ID: data_id, data_storage.KEY_SERVICE_ID: service_id, data_storage.KEY_STATUS: status, data_storage.KEY_DATA: data}) + def __status_log_lvl__(self, status): + return STATUS_LOG_LVL.get(status, logging.CRITICAL) + def add_data(self, service_id, data_id, name): """ Method to add a name for a specific message. @@ -711,23 +728,19 @@ class pure_json_protocol(object): :rtype: bool """ if (self.check_authentification_state() or not self.__authentification_required__(service_id, data_id)) or (service_id in self.__sid_response_dict__.values() and status == STATUS_AUTH_REQUIRED and data is None): - self.logger.info( - '%s TX <- %s, %s, data: "%s"', - self.__log_prefix__(), - self.__get_message_name__(service_id, data_id), - self.__get_status_name__(status), - repr(data) - ) - return self.__comm_inst__.send(self.__build_frame__(service_id, data_id, data, status), timeout=timeout, log_lvl=logging.DEBUG) + msg = data_storage(service_id=service_id, data_id=data_id, data=data, status=status) + self.__log_msg__(msg, 'TX ->') + return self.__comm_inst__.send(self.__build_frame__(msg), timeout=timeout) else: # Authentification required - self.logger.warning("%s TX -> Authentification is required. Message %s, %s, data: %s will be ignored.", self.__log_prefix__(), self.__get_message_name__(service_id, data_id), self.__get_status_name__(status), repr(data)) + self.logger.warning("%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", self.__log_prefix__(), self.__get_message_name__(service_id, data_id), self.__get_status_name__(status), repr(data)) return False class struct_json_protocol(pure_json_protocol): """ This Class has the same functionality like :class:`pure_json_protocol`. The message length is less than for :class:`pure_json_protocol`, but the functionality and compatibility is reduced. + See also parent :py:class:`pure_json_protocol`. .. note:: This class is depreceated and here for compatibility reasons (to support old clients or servers). Usage of :class:`pure_json_protocol` is recommended. @@ -743,13 +756,13 @@ class struct_json_protocol(pure_json_protocol): data = json.loads(frame[12:-1]) return self.__mk_msg__(status, service_id, data_id, data) - def __build_frame__(self, service_id, data_id, data, status=STATUS_OKAY): - frame = struct.pack('>III', status, service_id, data_id) + def __build_frame__(self, msg): + frame = struct.pack('>III', msg.get_status(), msg.get_service_id(), msg.get_data_id()) if sys.version_info >= (3, 0): - frame += bytes(json.dumps(data), 'utf-8') + frame += bytes(json.dumps(msg.get_data()), 'utf-8') frame += self.__calc_chksum__(frame) else: - frame += json.dumps(data) + frame += json.dumps(msg.get_data()) frame += self.__calc_chksum__(frame) return frame diff --git a/_docs_/_downloads/37503cb17b21b2c78bb8b07730976f24/unittest.pdf b/_docs_/_downloads/37503cb17b21b2c78bb8b07730976f24/unittest.pdf index 4ab710a..6d98ce9 100644 Binary files a/_docs_/_downloads/37503cb17b21b2c78bb8b07730976f24/unittest.pdf and b/_docs_/_downloads/37503cb17b21b2c78bb8b07730976f24/unittest.pdf differ diff --git a/_docs_/genindex.html b/_docs_/genindex.html index 312f218..7bbaaf3 100644 --- a/_docs_/genindex.html +++ b/_docs_/genindex.html @@ -302,6 +302,8 @@
  • STATUS_CALLBACK_ERROR (in module socket_protocol)
  • STATUS_CHECKSUM_ERROR (in module socket_protocol) +
  • +
  • STATUS_LOG_LVL (in module socket_protocol)
  • STATUS_OKAY (in module socket_protocol)
  • diff --git a/_docs_/index.html b/_docs_/index.html index 809a618..cc28a21 100644 --- a/_docs_/index.html +++ b/_docs_/index.html @@ -321,6 +321,12 @@

    Status for ‘checksum error’

    +
    +
    +socket_protocol.STATUS_LOG_LVL = {0: 20, 1: 30, 2: 40, 3: 30, 4: 40, 5: 40, 6: 30}
    +

    Status depending log level for messages

    +
    +
    socket_protocol.STATUS_OKAY = 0
    @@ -724,7 +730,8 @@ If a message hitting these parameters has been received, the callback will be ex
    class socket_protocol.struct_json_protocol(*args, **kwargs)
    -

    This Class has the same functionality like pure_json_protocol. The message length is less than for pure_json_protocol, but the functionality and compatibility is reduced.

    +

    This Class has the same functionality like pure_json_protocol. The message length is less than for pure_json_protocol, but the functionality and compatibility is reduced. +See also parent pure_json_protocol.

    Note

    This class is depreceated and here for compatibility reasons (to support old clients or servers). Usage of pure_json_protocol is recommended.

    diff --git a/_docs_/objects.inv b/_docs_/objects.inv index e03424d..1d105c9 100644 Binary files a/_docs_/objects.inv and b/_docs_/objects.inv differ diff --git a/_docs_/searchindex.js b/_docs_/searchindex.js index 495edeb..96bffba 100644 --- a/_docs_/searchindex.js +++ b/_docs_/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["index"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.cpp":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:55},filenames:["index.rst"],objects:{"":{socket_protocol:[0,0,0,"-"]},"socket_protocol.data_storage":{get_data:[0,4,1,""],get_data_id:[0,4,1,""],get_service_id:[0,4,1,""],get_status:[0,4,1,""]},"socket_protocol.pure_json_protocol":{add_data:[0,4,1,""],add_msg_to_auth_whitelist_:[0,4,1,""],add_service:[0,4,1,""],add_status:[0,4,1,""],authentificate:[0,4,1,""],check_authentification_state:[0,4,1,""],connection_established:[0,4,1,""],is_connected:[0,4,1,""],receive:[0,4,1,""],reconnect:[0,4,1,""],register_callback:[0,4,1,""],send:[0,4,1,""]},socket_protocol:{AUTH_STATE_KEY_TRANSFERRED:[0,1,1,""],AUTH_STATE_SEED_REQUESTED:[0,1,1,""],AUTH_STATE_SEED_TRANSFERRED:[0,1,1,""],AUTH_STATE_TRUSTED_CONNECTION:[0,1,1,""],AUTH_STATE_UNTRUSTED_CONNECTION:[0,1,1,""],AUTH_STATE__NAMES:[0,1,1,""],DID_AUTH_KEY:[0,1,1,""],DID_AUTH_SEED:[0,1,1,""],DID_CHANNEL_NAME:[0,1,1,""],RequestSidExistsError:[0,2,1,""],ResponseSidExistsError:[0,2,1,""],SID_AUTH_REQUEST:[0,1,1,""],SID_AUTH_RESPONSE:[0,1,1,""],SID_CHANNEL_NAME_REQUEST:[0,1,1,""],SID_CHANNEL_NAME_RESPONSE:[0,1,1,""],SID_EXECUTE_REQUEST:[0,1,1,""],SID_EXECUTE_RESPONSE:[0,1,1,""],SID_READ_REQUEST:[0,1,1,""],SID_READ_RESPONSE:[0,1,1,""],SID_WRITE_REQUEST:[0,1,1,""],SID_WRITE_RESPONSE:[0,1,1,""],STATUS_AUTH_REQUIRED:[0,1,1,""],STATUS_BUFFERING_UNHANDLED_REQUEST:[0,1,1,""],STATUS_CALLBACK_ERROR:[0,1,1,""],STATUS_CHECKSUM_ERROR:[0,1,1,""],STATUS_OKAY:[0,1,1,""],STATUS_OPERATION_NOT_PERMITTED:[0,1,1,""],STATUS_SERVICE_OR_DATA_UNKNOWN:[0,1,1,""],data_storage:[0,3,1,""],pure_json_protocol:[0,3,1,""],struct_json_protocol:[0,3,1,""]}},objnames:{"0":["py","module","Python module"],"1":["py","data","Python data"],"2":["py","exception","Python exception"],"3":["py","class","Python class"],"4":["py","method","Python method"]},objtypes:{"0":"py:module","1":"py:data","2":"py:exception","3":"py:class","4":"py:method"},terms:{"boolean":0,"class":0,"default":0,"float":0,"function":0,"int":0,"new":0,"return":0,"true":0,IDs:0,The:0,add:0,add_data:0,add_msg_to_auth_whitelist_:0,add_servic:0,add_statu:0,after:0,alder:0,all:0,also:0,ani:0,arg:0,argument:0,auth_state__nam:0,auth_state_key_transf:0,auth_state_seed_request:0,auth_state_seed_transf:0,auth_state_trusted_connect:0,auth_state_untrusted_connect:0,authentif:0,authentification_feedback:0,authetif:0,authitif:0,author:0,auto_auth:0,automat:0,avail:0,been:0,binascii:0,bool:0,both:0,call:0,callback:0,channel:0,channel_nam:0,check_authentification_st:0,checksum:0,client:0,comm_inst:0,commun:0,compat:0,connect:0,connection_establish:0,constant:0,content:0,creat:0,data:0,data_id:0,data_storag:0,defin:0,definit:0,deprec:0,descript:0,design:0,did:0,did_auth_kei:0,did_auth_se:0,did_channel_nam:0,differ:0,directli:0,dirk:0,disconnect:0,enabl:0,error:0,establish:0,except:0,exchang:0,execut:0,fals:0,first:0,follow:0,further:0,get:0,get_data:0,get_data_id:0,get_service_id:0,get_statu:0,give:0,given:0,had:0,has:0,have:0,here:0,hexlifi:0,hit:0,identifi:0,incl:0,includ:0,index:0,init_channel_nam:0,initi:0,initialis:0,instanc:0,interfac:0,is_client:0,is_connect:0,issu:0,iter:0,json:0,kei:0,keyword:0,kwarg:0,least:0,length:0,less:0,like:0,list:0,log:0,manual:0,mean:0,messag:0,method:0,mockeri:0,modul:0,mount:0,name:0,need:0,none:0,object:0,okai:0,old:0,onli:0,oper:0,optin:0,option:0,order:0,otherwis:0,out:0,over:0,page:0,paramet:0,permit:0,point:0,previou:0,prioris:0,process:0,pure_json_protocol:0,read:0,read_request:0,read_respons:0,reason:0,receiv:0,recommend:0,reconnect:0,reduc:0,regist:0,register_callback:0,register_connect_callback:0,register_disconnect_callback:0,registr:0,relev:0,req_nam:0,req_sid:0,request:0,requestsidexistserror:0,requir:0,resp_nam:0,resp_sid:0,respond:0,respons:0,response_data:0,response_statu:0,responsesidexistserror:0,same:0,search:0,secret:0,see:0,seed:0,send:0,sent:0,serivc:0,server:0,servic:0,service_:0,service_id:0,set:0,should:0,sid:0,sid_:0,sid_auth_request:0,sid_auth_respons:0,sid_channel_name_request:0,sid_channel_name_respons:0,sid_execute_request:0,sid_execute_respons:0,sid_read_request:0,sid_read_respons:0,sid_write_request:0,sid_write_respons:0,side:0,specif:0,sta_:0,start:0,state:0,statu:0,status_:0,status_auth_requir:0,status_buffering_unhandled_request:0,status_callback_error:0,status_checksum_error:0,status_okai:0,status_operation_not_permit:0,status_service_or_data_unknown:0,storag:0,str:0,struct_json_protocol:0,submodul:0,successful:0,sudo:0,support:0,taken:0,than:0,thei:0,thi:0,time:0,timeout:0,timout:0,transfer:0,trust:0,tupl:0,type:0,unhandl:0,unittest:0,unknown:0,unspecif:0,untrust:0,urandom:0,usag:0,use:0,used:0,using:0,valu:0,via:0,warn:0,where:0,write:0,write_request:0,write_respons:0,you:0},titles:["Welcome to socket_protocol\u2019s documentation!"],titleterms:{document:0,indic:0,protocol:0,socket:0,socket_protocol:0,tabl:0,welcom:0}}) \ No newline at end of file +Search.setIndex({docnames:["index"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.cpp":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:55},filenames:["index.rst"],objects:{"":{socket_protocol:[0,0,0,"-"]},"socket_protocol.data_storage":{get_data:[0,4,1,""],get_data_id:[0,4,1,""],get_service_id:[0,4,1,""],get_status:[0,4,1,""]},"socket_protocol.pure_json_protocol":{add_data:[0,4,1,""],add_msg_to_auth_whitelist_:[0,4,1,""],add_service:[0,4,1,""],add_status:[0,4,1,""],authentificate:[0,4,1,""],check_authentification_state:[0,4,1,""],connection_established:[0,4,1,""],is_connected:[0,4,1,""],receive:[0,4,1,""],reconnect:[0,4,1,""],register_callback:[0,4,1,""],send:[0,4,1,""]},socket_protocol:{AUTH_STATE_KEY_TRANSFERRED:[0,1,1,""],AUTH_STATE_SEED_REQUESTED:[0,1,1,""],AUTH_STATE_SEED_TRANSFERRED:[0,1,1,""],AUTH_STATE_TRUSTED_CONNECTION:[0,1,1,""],AUTH_STATE_UNTRUSTED_CONNECTION:[0,1,1,""],AUTH_STATE__NAMES:[0,1,1,""],DID_AUTH_KEY:[0,1,1,""],DID_AUTH_SEED:[0,1,1,""],DID_CHANNEL_NAME:[0,1,1,""],RequestSidExistsError:[0,2,1,""],ResponseSidExistsError:[0,2,1,""],SID_AUTH_REQUEST:[0,1,1,""],SID_AUTH_RESPONSE:[0,1,1,""],SID_CHANNEL_NAME_REQUEST:[0,1,1,""],SID_CHANNEL_NAME_RESPONSE:[0,1,1,""],SID_EXECUTE_REQUEST:[0,1,1,""],SID_EXECUTE_RESPONSE:[0,1,1,""],SID_READ_REQUEST:[0,1,1,""],SID_READ_RESPONSE:[0,1,1,""],SID_WRITE_REQUEST:[0,1,1,""],SID_WRITE_RESPONSE:[0,1,1,""],STATUS_AUTH_REQUIRED:[0,1,1,""],STATUS_BUFFERING_UNHANDLED_REQUEST:[0,1,1,""],STATUS_CALLBACK_ERROR:[0,1,1,""],STATUS_CHECKSUM_ERROR:[0,1,1,""],STATUS_LOG_LVL:[0,1,1,""],STATUS_OKAY:[0,1,1,""],STATUS_OPERATION_NOT_PERMITTED:[0,1,1,""],STATUS_SERVICE_OR_DATA_UNKNOWN:[0,1,1,""],data_storage:[0,3,1,""],pure_json_protocol:[0,3,1,""],struct_json_protocol:[0,3,1,""]}},objnames:{"0":["py","module","Python module"],"1":["py","data","Python data"],"2":["py","exception","Python exception"],"3":["py","class","Python class"],"4":["py","method","Python method"]},objtypes:{"0":"py:module","1":"py:data","2":"py:exception","3":"py:class","4":"py:method"},terms:{"boolean":0,"class":0,"default":0,"float":0,"function":0,"int":0,"new":0,"return":0,"true":0,IDs:0,The:0,add:0,add_data:0,add_msg_to_auth_whitelist_:0,add_servic:0,add_statu:0,after:0,alder:0,all:0,also:0,ani:0,arg:0,argument:0,auth_state__nam:0,auth_state_key_transf:0,auth_state_seed_request:0,auth_state_seed_transf:0,auth_state_trusted_connect:0,auth_state_untrusted_connect:0,authentif:0,authentification_feedback:0,authetif:0,authitif:0,author:0,auto_auth:0,automat:0,avail:0,been:0,binascii:0,bool:0,both:0,call:0,callback:0,channel:0,channel_nam:0,check_authentification_st:0,checksum:0,client:0,comm_inst:0,commun:0,compat:0,connect:0,connection_establish:0,constant:0,content:0,creat:0,data:0,data_id:0,data_storag:0,defin:0,definit:0,depend:0,deprec:0,descript:0,design:0,did:0,did_auth_kei:0,did_auth_se:0,did_channel_nam:0,differ:0,directli:0,dirk:0,disconnect:0,enabl:0,error:0,establish:0,except:0,exchang:0,execut:0,fals:0,first:0,follow:0,further:0,get:0,get_data:0,get_data_id:0,get_service_id:0,get_statu:0,give:0,given:0,had:0,has:0,have:0,here:0,hexlifi:0,hit:0,identifi:0,incl:0,includ:0,index:0,init_channel_nam:0,initi:0,initialis:0,instanc:0,interfac:0,is_client:0,is_connect:0,issu:0,iter:0,json:0,kei:0,keyword:0,kwarg:0,least:0,length:0,less:0,level:0,like:0,list:0,log:0,manual:0,mean:0,messag:0,method:0,mockeri:0,modul:0,mount:0,name:0,need:0,none:0,object:0,okai:0,old:0,onli:0,oper:0,optin:0,option:0,order:0,otherwis:0,out:0,over:0,page:0,paramet:0,parent:0,permit:0,point:0,previou:0,prioris:0,process:0,pure_json_protocol:0,read:0,read_request:0,read_respons:0,reason:0,receiv:0,recommend:0,reconnect:0,reduc:0,regist:0,register_callback:0,register_connect_callback:0,register_disconnect_callback:0,registr:0,relev:0,req_nam:0,req_sid:0,request:0,requestsidexistserror:0,requir:0,resp_nam:0,resp_sid:0,respond:0,respons:0,response_data:0,response_statu:0,responsesidexistserror:0,same:0,search:0,secret:0,see:0,seed:0,send:0,sent:0,serivc:0,server:0,servic:0,service_:0,service_id:0,set:0,should:0,sid:0,sid_:0,sid_auth_request:0,sid_auth_respons:0,sid_channel_name_request:0,sid_channel_name_respons:0,sid_execute_request:0,sid_execute_respons:0,sid_read_request:0,sid_read_respons:0,sid_write_request:0,sid_write_respons:0,side:0,specif:0,sta_:0,start:0,state:0,statu:0,status_:0,status_auth_requir:0,status_buffering_unhandled_request:0,status_callback_error:0,status_checksum_error:0,status_log_lvl:0,status_okai:0,status_operation_not_permit:0,status_service_or_data_unknown:0,storag:0,str:0,struct_json_protocol:0,submodul:0,successful:0,sudo:0,support:0,taken:0,than:0,thei:0,thi:0,time:0,timeout:0,timout:0,transfer:0,trust:0,tupl:0,type:0,unhandl:0,unittest:0,unknown:0,unspecif:0,untrust:0,urandom:0,usag:0,use:0,used:0,using:0,valu:0,via:0,warn:0,where:0,write:0,write_request:0,write_respons:0,you:0},titles:["Welcome to socket_protocol\u2019s documentation!"],titleterms:{document:0,indic:0,protocol:0,socket:0,socket_protocol:0,tabl:0,welcom:0}}) \ No newline at end of file diff --git a/_testresults_/unittest.json b/_testresults_/unittest.json index 36ed4d9..110964c 100644 --- a/_testresults_/unittest.json +++ b/_testresults_/unittest.json @@ -280,58 +280,18 @@ }, { "coverage_state": "clean", - "end": 97, + "end": 96, "start": 96 }, { "coverage_state": "covered", - "end": 98, - "start": 98 - }, - { - "coverage_state": "clean", - "end": 99, - "start": 99 - }, - { - "coverage_state": "covered", - "end": 100, - "start": 100 - }, - { - "coverage_state": "clean", - "end": 101, - "start": 101 - }, - { - "coverage_state": "covered", - "end": 102, - "start": 102 - }, - { - "coverage_state": "clean", - "end": 103, - "start": 103 - }, - { - "coverage_state": "covered", - "end": 104, - "start": 104 - }, - { - "coverage_state": "clean", - "end": 105, - "start": 105 - }, - { - "coverage_state": "covered", - "end": 106, - "start": 106 + "end": 97, + "start": 97 }, { "coverage_state": "clean", "end": 107, - "start": 107 + "start": 98 }, { "coverage_state": "covered", @@ -340,93 +300,123 @@ }, { "coverage_state": "clean", - "end": 115, + "end": 109, "start": 109 }, { "coverage_state": "covered", - "end": 117, + "end": 110, + "start": 110 + }, + { + "coverage_state": "clean", + "end": 111, + "start": 111 + }, + { + "coverage_state": "covered", + "end": 112, + "start": 112 + }, + { + "coverage_state": "clean", + "end": 113, + "start": 113 + }, + { + "coverage_state": "covered", + "end": 114, + "start": 114 + }, + { + "coverage_state": "clean", + "end": 115, + "start": 115 + }, + { + "coverage_state": "covered", + "end": 116, "start": 116 }, { "coverage_state": "clean", - "end": 119, + "end": 117, + "start": 117 + }, + { + "coverage_state": "covered", + "end": 118, "start": 118 }, - { - "coverage_state": "covered", - "end": 121, - "start": 120 - }, { "coverage_state": "clean", - "end": 123, - "start": 122 - }, - { - "coverage_state": "covered", "end": 125, - "start": 124 + "start": 119 }, { - "coverage_state": "clean", - "end": 126, + "coverage_state": "covered", + "end": 127, "start": 126 }, + { + "coverage_state": "clean", + "end": 129, + "start": 128 + }, { "coverage_state": "covered", - "end": 130, - "start": 127 + "end": 131, + "start": 130 }, { "coverage_state": "clean", - "end": 131, - "start": 131 - }, - { - "coverage_state": "covered", - "end": 134, + "end": 133, "start": 132 }, { - "coverage_state": "clean", + "coverage_state": "covered", "end": 135, - "start": 135 + "start": 134 }, { - "coverage_state": "covered", + "coverage_state": "clean", "end": 136, "start": 136 }, { - "coverage_state": "clean", - "end": 137, + "coverage_state": "covered", + "end": 140, "start": 137 }, + { + "coverage_state": "clean", + "end": 141, + "start": 141 + }, + { + "coverage_state": "covered", + "end": 144, + "start": 142 + }, + { + "coverage_state": "clean", + "end": 145, + "start": 145 + }, { "coverage_state": "covered", "end": 146, - "start": 138 + "start": 146 }, { "coverage_state": "clean", "end": 147, "start": 147 }, - { - "coverage_state": "covered", - "end": 148, - "start": 148 - }, - { - "coverage_state": "clean", - "end": 149, - "start": 149 - }, { "coverage_state": "covered", "end": 156, - "start": 150 + "start": 148 }, { "coverage_state": "clean", @@ -445,83 +435,73 @@ }, { "coverage_state": "covered", - "end": 163, + "end": 166, "start": 160 }, { "coverage_state": "clean", - "end": 165, - "start": 164 - }, - { - "coverage_state": "covered", - "end": 166, - "start": 166 - }, - { - "coverage_state": "clean", - "end": 179, + "end": 167, "start": 167 }, { "coverage_state": "covered", - "end": 184, - "start": 180 + "end": 168, + "start": 168 }, { "coverage_state": "clean", - "end": 185, - "start": 185 + "end": 169, + "start": 169 }, { "coverage_state": "covered", - "end": 190, - "start": 186 + "end": 173, + "start": 170 }, { "coverage_state": "clean", - "end": 191, - "start": 191 + "end": 175, + "start": 174 }, { "coverage_state": "covered", - "end": 192, - "start": 192 + "end": 176, + "start": 176 }, { "coverage_state": "clean", - "end": 197, - "start": 193 + "end": 189, + "start": 177 }, { "coverage_state": "covered", - "end": 198, - "start": 198 + "end": 194, + "start": 190 }, { "coverage_state": "clean", - "end": 199, - "start": 199 + "end": 195, + "start": 195 }, { "coverage_state": "covered", "end": 200, - "start": 200 + "start": 196 }, { "coverage_state": "clean", - "end": 205, + "end": 201, "start": 201 }, { "coverage_state": "covered", - "end": 206, - "start": 206 + "end": 202, + "start": 202 }, { "coverage_state": "clean", "end": 207, - "start": 207 + "start": 203 }, { "coverage_state": "covered", @@ -530,18 +510,18 @@ }, { "coverage_state": "clean", - "end": 213, + "end": 209, "start": 209 }, { "coverage_state": "covered", - "end": 214, - "start": 214 + "end": 210, + "start": 210 }, { "coverage_state": "clean", "end": 215, - "start": 215 + "start": 211 }, { "coverage_state": "covered", @@ -550,53 +530,63 @@ }, { "coverage_state": "clean", - "end": 221, + "end": 217, "start": 217 }, { "coverage_state": "covered", - "end": 222, - "start": 222 + "end": 218, + "start": 218 }, { "coverage_state": "clean", - "end": 224, - "start": 223 + "end": 223, + "start": 219 }, { "coverage_state": "covered", + "end": 224, + "start": 224 + }, + { + "coverage_state": "clean", "end": 225, "start": 225 }, { - "coverage_state": "clean", - "end": 259, + "coverage_state": "covered", + "end": 226, "start": 226 }, - { - "coverage_state": "covered", - "end": 260, - "start": 260 - }, { "coverage_state": "clean", - "end": 261, - "start": 261 + "end": 231, + "start": 227 }, { "coverage_state": "covered", - "end": 265, - "start": 262 + "end": 232, + "start": 232 }, { "coverage_state": "clean", - "end": 266, - "start": 266 + "end": 234, + "start": 233 + }, + { + "coverage_state": "covered", + "end": 235, + "start": 235 + }, + { + "coverage_state": "clean", + "end": 269, + "start": 236 }, { "coverage_state": "covered", "end": 270, - "start": 267 + "start": 270 }, { "coverage_state": "clean", @@ -605,68 +595,68 @@ }, { "coverage_state": "covered", - "end": 279, + "end": 275, "start": 272 }, { "coverage_state": "clean", - "end": 280, - "start": 280 + "end": 276, + "start": 276 }, { "coverage_state": "covered", - "end": 282, + "end": 280, + "start": 277 + }, + { + "coverage_state": "clean", + "end": 281, "start": 281 }, - { - "coverage_state": "clean", - "end": 283, - "start": 283 - }, { "coverage_state": "covered", - "end": 284, - "start": 284 + "end": 289, + "start": 282 }, { "coverage_state": "clean", - "end": 285, - "start": 285 + "end": 290, + "start": 290 }, { "coverage_state": "covered", - "end": 298, - "start": 286 + "end": 292, + "start": 291 }, { "coverage_state": "clean", - "end": 299, - "start": 299 + "end": 293, + "start": 293 }, { "coverage_state": "covered", - "end": 305, - "start": 300 + "end": 294, + "start": 294 }, { "coverage_state": "clean", - "end": 306, - "start": 306 + "end": 295, + "start": 295 }, { "coverage_state": "covered", + "end": 308, + "start": 296 + }, + { + "coverage_state": "clean", "end": 309, - "start": 307 - }, - { - "coverage_state": "clean", - "end": 310, - "start": 310 + "start": 309 }, { "coverage_state": "covered", "end": 315, - "start": 311 + "start": 310 }, { "coverage_state": "clean", @@ -685,98 +675,88 @@ }, { "coverage_state": "covered", - "end": 321, + "end": 325, "start": 321 }, { "coverage_state": "clean", - "end": 322, - "start": 322 + "end": 326, + "start": 326 }, { "coverage_state": "covered", - "end": 327, - "start": 323 + "end": 329, + "start": 327 }, { "coverage_state": "clean", - "end": 328, - "start": 328 - }, - { - "coverage_state": "covered", "end": 330, - "start": 329 + "start": 330 }, { - "coverage_state": "clean", + "coverage_state": "covered", "end": 331, "start": 331 }, { - "coverage_state": "covered", - "end": 336, + "coverage_state": "clean", + "end": 332, "start": 332 }, { - "coverage_state": "clean", + "coverage_state": "covered", "end": 337, - "start": 337 + "start": 333 }, { - "coverage_state": "covered", - "end": 341, + "coverage_state": "clean", + "end": 338, "start": 338 }, + { + "coverage_state": "covered", + "end": 340, + "start": 339 + }, { "coverage_state": "clean", - "end": 342, + "end": 341, + "start": 341 + }, + { + "coverage_state": "covered", + "end": 346, "start": 342 }, - { - "coverage_state": "covered", - "end": 344, - "start": 343 - }, { "coverage_state": "clean", - "end": 345, - "start": 345 + "end": 347, + "start": 347 }, { "coverage_state": "covered", - "end": 350, - "start": 346 - }, - { - "coverage_state": "clean", "end": 351, - "start": 351 + "start": 348 + }, + { + "coverage_state": "clean", + "end": 352, + "start": 352 }, { "coverage_state": "covered", "end": 354, - "start": 352 + "start": 353 }, { "coverage_state": "clean", "end": 355, "start": 355 }, - { - "coverage_state": "covered", - "end": 358, - "start": 356 - }, - { - "coverage_state": "clean", - "end": 359, - "start": 359 - }, { "coverage_state": "covered", "end": 360, - "start": 360 + "start": 356 }, { "coverage_state": "clean", @@ -795,38 +775,48 @@ }, { "coverage_state": "covered", - "end": 367, + "end": 368, "start": 366 }, { "coverage_state": "clean", - "end": 368, - "start": 368 - }, - { - "coverage_state": "covered", - "end": 375, + "end": 369, "start": 369 }, + { + "coverage_state": "covered", + "end": 370, + "start": 370 + }, { "coverage_state": "clean", - "end": 376, - "start": 376 + "end": 371, + "start": 371 }, { "coverage_state": "covered", - "end": 382, - "start": 377 + "end": 374, + "start": 372 }, { "coverage_state": "clean", - "end": 383, - "start": 383 + "end": 375, + "start": 375 + }, + { + "coverage_state": "covered", + "end": 377, + "start": 376 + }, + { + "coverage_state": "clean", + "end": 378, + "start": 378 }, { "coverage_state": "covered", "end": 385, - "start": 384 + "start": 379 }, { "coverage_state": "clean", @@ -835,178 +825,168 @@ }, { "coverage_state": "covered", - "end": 391, + "end": 392, "start": 387 }, { "coverage_state": "clean", - "end": 392, - "start": 392 - }, - { - "coverage_state": "covered", - "end": 398, + "end": 393, "start": 393 }, - { - "coverage_state": "clean", - "end": 399, - "start": 399 - }, { "coverage_state": "covered", - "end": 403, - "start": 400 + "end": 395, + "start": 394 }, { "coverage_state": "clean", - "end": 404, - "start": 404 + "end": 396, + "start": 396 }, { "coverage_state": "covered", - "end": 411, - "start": 405 + "end": 401, + "start": 397 }, { "coverage_state": "clean", - "end": 412, - "start": 412 + "end": 402, + "start": 402 }, { "coverage_state": "covered", + "end": 408, + "start": 403 + }, + { + "coverage_state": "clean", + "end": 409, + "start": 409 + }, + { + "coverage_state": "covered", + "end": 413, + "start": 410 + }, + { + "coverage_state": "clean", "end": 414, - "start": 413 + "start": 414 }, { - "coverage_state": "clean", - "end": 415, + "coverage_state": "covered", + "end": 421, "start": 415 }, + { + "coverage_state": "clean", + "end": 422, + "start": 422 + }, { "coverage_state": "covered", - "end": 418, - "start": 416 + "end": 424, + "start": 423 }, { "coverage_state": "clean", - "end": 419, - "start": 419 - }, - { - "coverage_state": "covered", "end": 425, - "start": 420 + "start": 425 }, { - "coverage_state": "clean", - "end": 426, + "coverage_state": "covered", + "end": 428, "start": 426 }, - { - "coverage_state": "covered", - "end": 430, - "start": 427 - }, { "coverage_state": "clean", - "end": 431, - "start": 431 + "end": 429, + "start": 429 }, { "coverage_state": "covered", - "end": 434, - "start": 432 - }, - { - "coverage_state": "clean", "end": 435, - "start": 435 + "start": 430 }, { - "coverage_state": "covered", - "end": 439, + "coverage_state": "clean", + "end": 436, "start": 436 }, + { + "coverage_state": "covered", + "end": 438, + "start": 437 + }, { "coverage_state": "clean", - "end": 440, - "start": 440 + "end": 447, + "start": 439 }, { "coverage_state": "covered", - "end": 442, - "start": 441 - }, - { - "coverage_state": "clean", - "end": 444, - "start": 443 - }, - { - "coverage_state": "covered", - "end": 445, - "start": 445 - }, - { - "coverage_state": "clean", "end": 451, - "start": 446 + "start": 448 + }, + { + "coverage_state": "clean", + "end": 452, + "start": 452 }, { "coverage_state": "covered", "end": 455, - "start": 452 + "start": 453 }, { "coverage_state": "clean", - "end": 458, + "end": 456, "start": 456 }, { "coverage_state": "covered", - "end": 462, - "start": 459 + "end": 461, + "start": 457 }, { "coverage_state": "clean", - "end": 463, - "start": 463 + "end": 462, + "start": 462 }, { "coverage_state": "covered", - "end": 470, - "start": 464 + "end": 464, + "start": 463 }, { "coverage_state": "clean", - "end": 474, - "start": 471 + "end": 466, + "start": 465 + }, + { + "coverage_state": "covered", + "end": 469, + "start": 467 + }, + { + "coverage_state": "clean", + "end": 472, + "start": 470 }, { "coverage_state": "covered", "end": 476, - "start": 475 + "start": 473 }, { "coverage_state": "clean", "end": 477, "start": 477 }, - { - "coverage_state": "covered", - "end": 481, - "start": 478 - }, - { - "coverage_state": "clean", - "end": 482, - "start": 482 - }, { "coverage_state": "covered", "end": 484, - "start": 483 + "start": 478 }, { "coverage_state": "clean", @@ -1025,33 +1005,23 @@ }, { "coverage_state": "covered", - "end": 496, + "end": 495, "start": 492 }, { "coverage_state": "clean", - "end": 497, - "start": 497 + "end": 496, + "start": 496 }, { "coverage_state": "covered", "end": 498, - "start": 498 - }, - { - "coverage_state": "clean", - "end": 499, - "start": 499 - }, - { - "coverage_state": "covered", - "end": 501, - "start": 500 + "start": 497 }, { "coverage_state": "clean", "end": 502, - "start": 502 + "start": 499 }, { "coverage_state": "covered", @@ -1065,338 +1035,348 @@ }, { "coverage_state": "covered", - "end": 506, + "end": 510, "start": 506 }, { "coverage_state": "clean", - "end": 516, - "start": 507 + "end": 511, + "start": 511 }, { "coverage_state": "covered", - "end": 520, + "end": 512, + "start": 512 + }, + { + "coverage_state": "clean", + "end": 513, + "start": 513 + }, + { + "coverage_state": "covered", + "end": 515, + "start": 514 + }, + { + "coverage_state": "clean", + "end": 516, + "start": 516 + }, + { + "coverage_state": "covered", + "end": 518, "start": 517 }, { "coverage_state": "clean", - "end": 521, - "start": 521 + "end": 519, + "start": 519 }, { "coverage_state": "covered", - "end": 525, + "end": 521, + "start": 520 + }, + { + "coverage_state": "clean", + "end": 522, "start": 522 }, + { + "coverage_state": "covered", + "end": 523, + "start": 523 + }, { "coverage_state": "clean", - "end": 526, - "start": 526 + "end": 533, + "start": 524 }, { "coverage_state": "covered", - "end": 527, - "start": 527 + "end": 537, + "start": 534 }, { "coverage_state": "clean", - "end": 535, - "start": 528 + "end": 538, + "start": 538 }, { "coverage_state": "covered", - "end": 539, - "start": 536 + "end": 542, + "start": 539 }, { "coverage_state": "clean", - "end": 540, - "start": 540 + "end": 543, + "start": 543 }, { "coverage_state": "covered", - "end": 541, - "start": 541 + "end": 544, + "start": 544 }, { "coverage_state": "clean", - "end": 549, - "start": 542 + "end": 552, + "start": 545 }, { "coverage_state": "covered", - "end": 555, - "start": 550 - }, - { - "coverage_state": "clean", "end": 556, - "start": 556 + "start": 553 }, { - "coverage_state": "covered", - "end": 562, + "coverage_state": "clean", + "end": 557, "start": 557 }, + { + "coverage_state": "covered", + "end": 558, + "start": 558 + }, { "coverage_state": "clean", - "end": 563, - "start": 563 + "end": 566, + "start": 559 }, { "coverage_state": "covered", - "end": 564, - "start": 564 - }, - { - "coverage_state": "clean", "end": 572, - "start": 565 + "start": 567 }, { - "coverage_state": "covered", + "coverage_state": "clean", "end": 573, "start": 573 }, { - "coverage_state": "clean", - "end": 574, + "coverage_state": "covered", + "end": 579, "start": 574 }, - { - "coverage_state": "covered", - "end": 575, - "start": 575 - }, { "coverage_state": "clean", - "end": 587, - "start": 576 + "end": 580, + "start": 580 }, { "coverage_state": "covered", - "end": 599, - "start": 588 + "end": 581, + "start": 581 }, { "coverage_state": "clean", - "end": 600, - "start": 600 + "end": 589, + "start": 582 }, { "coverage_state": "covered", - "end": 601, - "start": 601 + "end": 590, + "start": 590 }, { "coverage_state": "clean", - "end": 607, - "start": 602 + "end": 591, + "start": 591 }, { "coverage_state": "covered", - "end": 608, - "start": 608 + "end": 592, + "start": 592 }, { "coverage_state": "clean", - "end": 609, - "start": 609 + "end": 604, + "start": 593 }, { "coverage_state": "covered", - "end": 610, - "start": 610 - }, - { - "coverage_state": "clean", "end": 616, - "start": 611 + "start": 605 }, { - "coverage_state": "covered", + "coverage_state": "clean", "end": 617, "start": 617 }, { - "coverage_state": "clean", + "coverage_state": "covered", "end": 618, "start": 618 }, { - "coverage_state": "covered", - "end": 619, + "coverage_state": "clean", + "end": 624, "start": 619 }, { - "coverage_state": "clean", + "coverage_state": "covered", "end": 625, - "start": 620 + "start": 625 }, { - "coverage_state": "covered", + "coverage_state": "clean", "end": 626, "start": 626 }, { - "coverage_state": "clean", + "coverage_state": "covered", "end": 627, "start": 627 }, { - "coverage_state": "covered", - "end": 628, + "coverage_state": "clean", + "end": 633, "start": 628 }, - { - "coverage_state": "clean", - "end": 640, - "start": 629 - }, { "coverage_state": "covered", - "end": 652, - "start": 641 + "end": 634, + "start": 634 }, { "coverage_state": "clean", - "end": 653, - "start": 653 + "end": 635, + "start": 635 }, { "coverage_state": "covered", - "end": 654, - "start": 654 + "end": 636, + "start": 636 + }, + { + "coverage_state": "clean", + "end": 642, + "start": 637 + }, + { + "coverage_state": "covered", + "end": 643, + "start": 643 + }, + { + "coverage_state": "clean", + "end": 644, + "start": 644 + }, + { + "coverage_state": "covered", + "end": 645, + "start": 645 }, { "coverage_state": "clean", "end": 657, - "start": 655 + "start": 646 }, { "coverage_state": "covered", - "end": 658, + "end": 669, "start": 658 }, { "coverage_state": "clean", - "end": 659, - "start": 659 + "end": 670, + "start": 670 }, { "coverage_state": "covered", - "end": 660, - "start": 660 + "end": 671, + "start": 671 }, { "coverage_state": "clean", - "end": 693, - "start": 661 + "end": 674, + "start": 672 }, { "coverage_state": "covered", - "end": 694, - "start": 694 + "end": 675, + "start": 675 }, { "coverage_state": "clean", - "end": 695, - "start": 695 + "end": 676, + "start": 676 }, { "coverage_state": "covered", - "end": 696, - "start": 696 + "end": 677, + "start": 677 + }, + { + "coverage_state": "clean", + "end": 710, + "start": 678 + }, + { + "coverage_state": "covered", + "end": 711, + "start": 711 }, { "coverage_state": "clean", "end": 712, - "start": 697 + "start": 712 }, { "coverage_state": "covered", - "end": 714, + "end": 713, "start": 713 }, { "coverage_state": "clean", - "end": 720, - "start": 715 + "end": 729, + "start": 714 }, { "coverage_state": "covered", - "end": 721, - "start": 721 + "end": 733, + "start": 730 }, { "coverage_state": "clean", - "end": 723, - "start": 722 + "end": 735, + "start": 734 }, { "coverage_state": "covered", - "end": 725, - "start": 724 - }, - { - "coverage_state": "clean", - "end": 727, - "start": 726 - }, - { - "coverage_state": "covered", - "end": 728, - "start": 728 - }, - { - "coverage_state": "clean", - "end": 734, - "start": 729 - }, - { - "coverage_state": "covered", - "end": 736, - "start": 735 - }, - { - "coverage_state": "clean", "end": 737, - "start": 737 + "start": 736 }, { - "coverage_state": "covered", - "end": 741, + "coverage_state": "clean", + "end": 739, "start": 738 }, - { - "coverage_state": "clean", - "end": 742, - "start": 742 - }, { "coverage_state": "covered", - "end": 744, - "start": 743 + "end": 740, + "start": 740 }, { "coverage_state": "clean", - "end": 745, - "start": 745 + "end": 747, + "start": 741 }, { "coverage_state": "covered", + "end": 749, + "start": 748 + }, + { + "coverage_state": "clean", "end": 750, - "start": 746 - }, - { - "coverage_state": "clean", - "end": 751, - "start": 751 + "start": 750 }, { "coverage_state": "covered", "end": 754, - "start": 752 + "start": 751 }, { "coverage_state": "clean", @@ -1405,43 +1385,73 @@ }, { "coverage_state": "covered", - "end": 760, + "end": 757, "start": 756 }, { "coverage_state": "clean", - "end": 761, - "start": 761 + "end": 758, + "start": 758 }, { "coverage_state": "covered", - "end": 764, - "start": 762 + "end": 763, + "start": 759 }, { "coverage_state": "clean", - "end": 765, + "end": 764, + "start": 764 + }, + { + "coverage_state": "covered", + "end": 767, "start": 765 }, + { + "coverage_state": "clean", + "end": 768, + "start": 768 + }, { "coverage_state": "covered", - "end": 766, - "start": 766 + "end": 773, + "start": 769 }, { "coverage_state": "clean", - "end": 767, - "start": 767 + "end": 774, + "start": 774 }, { "coverage_state": "covered", - "end": 769, - "start": 768 + "end": 777, + "start": 775 + }, + { + "coverage_state": "clean", + "end": 778, + "start": 778 + }, + { + "coverage_state": "covered", + "end": 779, + "start": 779 + }, + { + "coverage_state": "clean", + "end": 780, + "start": 780 + }, + { + "coverage_state": "covered", + "end": 782, + "start": 781 }, { "coverage_state": "clean", "end": null, - "start": 770 + "start": 783 } ], "line_coverage": 100.0, @@ -1748,9 +1758,9 @@ }, "system_information": { "Architecture": "64bit", - "Distribution": "Linux Mint 20 ulyana", + "Distribution": "Linux Mint 20.1 ulyssa", "Hostname": "ahorn", - "Kernel": "5.4.0-59-generic (#65-Ubuntu SMP Thu Dec 10 12:01:51 UTC 2020)", + "Kernel": "5.4.0-60-generic (#67-Ubuntu SMP Tue Jan 5 18:31:36 UTC 2021)", "Machine": "x86_64", "Path": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest", "System": "Linux", @@ -1767,7 +1777,7 @@ "Name": "socket_protocol", "State": "Released", "Supported Interpreters": "python2, python3", - "Version": "fdca73452afabd6d5a54327817639dce" + "Version": "b2cd74413a21bced599aa52431777de0" }, "testrun_list": [ { @@ -1816,8 +1826,8 @@ "testcases": { "_-UtxUEzYEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:48:56,878", - "created": 1609969736.878128, + "asctime": "2021-01-11 07:30:14,109", + "created": 1610346614.109402, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -1828,11 +1838,11 @@ "message": "_-UtxUEzYEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 878.1280517578125, + "msecs": 109.40194129943848, "msg": "_-UtxUEzYEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", "relativeCreated": 42.94395446777344, "testcaseLogger": [ @@ -1840,8 +1850,8 @@ "args": [ "{'status': None, 'service_id': None, 'data': None, 'data_id': None}" ], - "asctime": "2021-01-06 22:48:56,878", - "created": 1609969736.878207, + "asctime": "2021-01-11 07:30:14,109", + "created": 1610346614.109527, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -1852,14 +1862,14 @@ "message": "Creating empty message object: {'status': None, 'service_id': None, 'data': None, 'data_id': None}", "module": "test_message_object", "moduleLogger": [], - "msecs": 878.2069683074951, + "msecs": 109.5271110534668, "msg": "Creating empty message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 43.022871017456055, - "thread": 140012350113600, + "relativeCreated": 43.06912422180176, + "thread": 140634736203584, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -1867,8 +1877,8 @@ "args": [ "'data_id'" ], - "asctime": "2021-01-06 22:48:56,878", - "created": 1609969736.878362, + "asctime": "2021-01-11 07:30:14,109", + "created": 1610346614.109682, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1885,8 +1895,8 @@ "{'status': None, 'service_id': None, 'data': None, 'data_id': None}", "" ], - "asctime": "2021-01-06 22:48:56,878", - "created": 1609969736.87828, + "asctime": "2021-01-11 07:30:14,109", + "created": 1610346614.109601, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1896,14 +1906,14 @@ "lineno": 22, "message": "Result (data_id is part of the message object): {'status': None, 'service_id': None, 'data': None, 'data_id': None} ()", "module": "test", - "msecs": 878.2799243927002, + "msecs": 109.60102081298828, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 43.09582710266113, - "thread": 140012350113600, + "relativeCreated": 43.14303398132324, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -1911,8 +1921,8 @@ "data_id is part of the message object", "'data_id'" ], - "asctime": "2021-01-06 22:48:56,878", - "created": 1609969736.878322, + "asctime": "2021-01-11 07:30:14,109", + "created": 1610346614.109643, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1922,34 +1932,34 @@ "lineno": 30, "message": "Expectation (data_id is part of the message object): 'data_id' in result", "module": "test", - "msecs": 878.3218860626221, + "msecs": 109.64298248291016, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 43.13778877258301, - "thread": 140012350113600, + "relativeCreated": 43.18499565124512, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 878.3619403839111, + "msecs": 109.68208312988281, "msg": "data_id is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 43.17784309387207, - "thread": 140012350113600, + "relativeCreated": 43.22409629821777, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 4.00543212890625e-05 + "time_consumption": 3.910064697265625e-05 }, { "args": [ "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}" ], - "asctime": "2021-01-06 22:48:56,878", - "created": 1609969736.878439, + "asctime": "2021-01-11 07:30:14,109", + "created": 1610346614.109754, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -1960,14 +1970,14 @@ "message": "Creating a maximum message object: {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", "module": "test_message_object", "moduleLogger": [], - "msecs": 878.4389495849609, + "msecs": 109.75408554077148, "msg": "Creating a maximum message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 43.254852294921875, - "thread": 140012350113600, + "relativeCreated": 43.296098709106445, + "thread": 140634736203584, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -1975,8 +1985,8 @@ "args": [ "'data_id'" ], - "asctime": "2021-01-06 22:48:56,878", - "created": 1609969736.878592, + "asctime": "2021-01-11 07:30:14,109", + "created": 1610346614.109897, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1993,8 +2003,8 @@ "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", "" ], - "asctime": "2021-01-06 22:48:56,878", - "created": 1609969736.878506, + "asctime": "2021-01-11 07:30:14,109", + "created": 1610346614.109821, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2004,14 +2014,14 @@ "lineno": 22, "message": "Result (data_id is part of the message object): {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'} ()", "module": "test", - "msecs": 878.5059452056885, + "msecs": 109.82108116149902, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 43.321847915649414, - "thread": 140012350113600, + "relativeCreated": 43.363094329833984, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -2019,8 +2029,8 @@ "data_id is part of the message object", "'data_id'" ], - "asctime": "2021-01-06 22:48:56,878", - "created": 1609969736.878547, + "asctime": "2021-01-11 07:30:14,109", + "created": 1610346614.10986, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2030,35 +2040,35 @@ "lineno": 30, "message": "Expectation (data_id is part of the message object): 'data_id' in result", "module": "test", - "msecs": 878.546953201294, + "msecs": 109.85994338989258, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 43.36285591125488, - "thread": 140012350113600, + "relativeCreated": 43.40195655822754, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 878.5920143127441, + "msecs": 109.89689826965332, "msg": "data_id is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 43.40791702270508, - "thread": 140012350113600, + "relativeCreated": 43.43891143798828, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 4.506111145019531e-05 + "time_consumption": 3.695487976074219e-05 }, { "args": [ "'DID'", "" ], - "asctime": "2021-01-06 22:48:56,878", - "created": 1609969736.878747, + "asctime": "2021-01-11 07:30:14,110", + "created": 1610346614.110047, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2075,8 +2085,8 @@ "'DID'", "" ], - "asctime": "2021-01-06 22:48:56,878", - "created": 1609969736.878667, + "asctime": "2021-01-11 07:30:14,109", + "created": 1610346614.109969, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2086,14 +2096,14 @@ "lineno": 22, "message": "Result (Content in message object for data_id): 'DID' ()", "module": "test", - "msecs": 878.6671161651611, + "msecs": 109.96890068054199, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 43.48301887512207, - "thread": 140012350113600, + "relativeCreated": 43.51091384887695, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -2102,8 +2112,8 @@ "'DID'", "" ], - "asctime": "2021-01-06 22:48:56,878", - "created": 1609969736.878707, + "asctime": "2021-01-11 07:30:14,110", + "created": 1610346614.110008, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2113,39 +2123,39 @@ "lineno": 26, "message": "Expectation (Content in message object for data_id): result = 'DID' ()", "module": "test", - "msecs": 878.7069320678711, + "msecs": 110.00800132751465, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 43.52283477783203, - "thread": 140012350113600, + "relativeCreated": 43.55001449584961, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 878.7469863891602, + "msecs": 110.0471019744873, "msg": "Content in message object for data_id is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 43.562889099121094, - "thread": 140012350113600, + "relativeCreated": 43.589115142822266, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 4.00543212890625e-05 + "time_consumption": 3.910064697265625e-05 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0006189346313476562, - "time_finished": "2021-01-06 22:48:56,878", - "time_start": "2021-01-06 22:48:56,878" + "time_consumption": 0.0006451606750488281, + "time_finished": "2021-01-11 07:30:14,110", + "time_start": "2021-01-11 07:30:14,109" }, "_2pi_8EzZEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:48:56,879", - "created": 1609969736.879598, + "asctime": "2021-01-11 07:30:14,110", + "created": 1610346614.110875, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -2156,1112 +2166,2427 @@ "message": "_2pi_8EzZEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 879.5979022979736, + "msecs": 110.87489128112793, "msg": "_2pi_8EzZEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 44.41380500793457, + "relativeCreated": 44.41690444946289, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:48:56,881", - "created": 1609969736.881673, + "asctime": "2021-01-11 07:30:14,114", + "created": 1610346614.11454, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:48:56,879", - "created": 1609969736.879748, + "asctime": "2021-01-11 07:30:14,111", + "created": 1610346614.11129, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 879.7481060028076, + "msecs": 111.28997802734375, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 44.564008712768555, - "thread": 140012350113600, + "relativeCreated": 44.83199119567871, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:48:56,879", - "created": 1609969736.879806, + "asctime": "2021-01-11 07:30:14,111", + "created": 1610346614.111648, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 879.8060417175293, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 111.6480827331543, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 44.621944427490234, - "thread": 140012350113600, + "relativeCreated": 45.19009590148926, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:48:56,879", - "created": 1609969736.879877, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 879.8770904541016, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 44.6929931640625, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:48:56,879", - "created": 1609969736.879924, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 879.9240589141846, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 44.73996162414551, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:48:56,879", - "created": 1609969736.879969, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 879.9688816070557, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 44.7847843170166, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:48:56,880", - "created": 1609969736.88001, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 880.0098896026611, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 44.82579231262207, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:48:56,880", - "created": 1609969736.880058, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 880.0580501556396, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 44.873952865600586, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:48:56,880", - "created": 1609969736.880107, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 880.1069259643555, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 44.922828674316406, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:48:56,880", - "created": 1609969736.880153, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 880.1529407501221, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 44.96884346008301, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:48:56,880", - "created": 1609969736.880204, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 880.2039623260498, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 45.01986503601074, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:48:56,880", - "created": 1609969736.880248, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 880.2480697631836, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 45.06397247314453, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:48:56,880", - "created": 1609969736.880299, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 880.2990913391113, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 45.114994049072266, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:48:56,880", - "created": 1609969736.880347, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 880.3470134735107, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 45.16291618347168, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:48:56,880", - "created": 1609969736.880394, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 880.3939819335938, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 45.20988464355469, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:48:56,880", - "created": 1609969736.880438, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 880.4380893707275, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 45.25399208068848, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:48:56,880", - "created": 1609969736.880483, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 880.4829120635986, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 45.29881477355957, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:48:56,880", - "created": 1609969736.880535, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 880.5348873138428, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 45.35079002380371, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:48:56,880", - "created": 1609969736.880577, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 880.5770874023438, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 45.39299011230469, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:48:56,880", - "created": 1609969736.88062, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 880.620002746582, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 45.43590545654297, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:48:56,880", - "created": 1609969736.880662, + "asctime": "2021-01-11 07:30:14,111", + "created": 1610346614.111723, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 880.6619644165039, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 111.72294616699219, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 45.477867126464844, - "thread": 140012350113600, + "relativeCreated": 45.26495933532715, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:48:56,880", - "created": 1609969736.880758, + "asctime": "2021-01-11 07:30:14,111", + "created": 1610346614.111868, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 880.7580471038818, + "msecs": 111.86790466308594, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 45.57394981384277, - "thread": 140012350113600, + "relativeCreated": 45.4099178314209, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:48:56,880", - "created": 1609969736.880807, + "asctime": "2021-01-11 07:30:14,111", + "created": 1610346614.111929, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 880.8069229125977, + "msecs": 111.92893981933594, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 45.622825622558594, - "thread": 140012350113600, + "relativeCreated": 45.4709529876709, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:48:56,880", - "created": 1609969736.880872, + "asctime": "2021-01-11 07:30:14,111", + "created": 1610346614.111999, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 880.8720111846924, + "msecs": 111.9990348815918, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 45.68791389465332, - "thread": 140012350113600, + "relativeCreated": 45.54104804992676, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:48:56,880", - "created": 1609969736.880917, + "asctime": "2021-01-11 07:30:14,112", + "created": 1610346614.112069, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 880.9170722961426, + "msecs": 112.06889152526855, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 45.732975006103516, - "thread": 140012350113600, + "relativeCreated": 45.610904693603516, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:48:56,880", - "created": 1609969736.880958, + "asctime": "2021-01-11 07:30:14,112", + "created": 1610346614.112117, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 880.958080291748, + "msecs": 112.11705207824707, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 45.773983001708984, - "thread": 140012350113600, + "relativeCreated": 45.65906524658203, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:48:56,880", - "created": 1609969736.880999, + "asctime": "2021-01-11 07:30:14,112", + "created": 1610346614.112169, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 880.9990882873535, + "msecs": 112.16902732849121, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 45.81499099731445, - "thread": 140012350113600, + "relativeCreated": 45.71104049682617, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:48:56,881", - "created": 1609969736.881048, + "asctime": "2021-01-11 07:30:14,112", + "created": 1610346614.112218, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 881.0479640960693, + "msecs": 112.21790313720703, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 45.86386680603027, - "thread": 140012350113600, + "relativeCreated": 45.75991630554199, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:48:56,881", - "created": 1609969736.881094, + "asctime": "2021-01-11 07:30:14,112", + "created": 1610346614.11227, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 881.0939788818359, + "msecs": 112.27011680603027, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 45.909881591796875, - "thread": 140012350113600, + "relativeCreated": 45.812129974365234, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:48:56,881", - "created": 1609969736.881139, + "asctime": "2021-01-11 07:30:14,112", + "created": 1610346614.112327, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 881.1390399932861, + "msecs": 112.32709884643555, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 45.95494270324707, - "thread": 140012350113600, + "relativeCreated": 45.86911201477051, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:48:56,881", - "created": 1609969736.881184, + "asctime": "2021-01-11 07:30:14,112", + "created": 1610346614.11243, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 881.1841011047363, + "msecs": 112.43009567260742, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 46.000003814697266, - "thread": 140012350113600, + "relativeCreated": 45.97210884094238, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:48:56,881", - "created": 1609969736.881226, + "asctime": "2021-01-11 07:30:14,112", + "created": 1610346614.11248, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 881.2260627746582, + "msecs": 112.47992515563965, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 46.04196548461914, - "thread": 140012350113600, + "relativeCreated": 46.02193832397461, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:48:56,881", - "created": 1609969736.881278, + "asctime": "2021-01-11 07:30:14,112", + "created": 1610346614.112536, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 881.2780380249023, + "msecs": 112.53595352172852, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 46.09394073486328, - "thread": 140012350113600, + "relativeCreated": 46.07796669006348, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:48:56,881", - "created": 1609969736.881325, + "asctime": "2021-01-11 07:30:14,112", + "created": 1610346614.112584, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 881.3250064849854, + "msecs": 112.58411407470703, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 46.14090919494629, - "thread": 140012350113600, + "relativeCreated": 46.12612724304199, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:48:56,881", - "created": 1609969736.881366, + "asctime": "2021-01-11 07:30:14,112", + "created": 1610346614.112629, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 881.3660144805908, + "msecs": 112.62893676757812, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 46.18191719055176, - "thread": 140012350113600, + "relativeCreated": 46.170949935913086, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:48:56,881", - "created": 1609969736.881409, + "asctime": "2021-01-11 07:30:14,112", + "created": 1610346614.11269, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 881.4089298248291, + "msecs": 112.68997192382812, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 46.22483253479004, - "thread": 140012350113600, + "relativeCreated": 46.231985092163086, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:48:56,881", - "created": 1609969736.881454, + "asctime": "2021-01-11 07:30:14,112", + "created": 1610346614.11288, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 881.4539909362793, + "msecs": 112.87999153137207, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 46.269893646240234, - "thread": 140012350113600, + "relativeCreated": 46.42200469970703, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:48:56,881", - "created": 1609969736.8815, + "asctime": "2021-01-11 07:30:14,112", + "created": 1610346614.112976, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 881.5000057220459, + "msecs": 112.97607421875, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 46.315908432006836, - "thread": 140012350113600, + "relativeCreated": 46.51808738708496, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:48:56,881", - "created": 1609969736.881542, + "asctime": "2021-01-11 07:30:14,113", + "created": 1610346614.113049, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 881.5419673919678, + "msecs": 113.04903030395508, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 46.35787010192871, - "thread": 140012350113600, + "relativeCreated": 46.59104347229004, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:48:56,881", - "created": 1609969736.881584, + "asctime": "2021-01-11 07:30:14,113", + "created": 1610346614.113105, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 881.5839290618896, + "msecs": 113.10505867004395, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 46.399831771850586, - "thread": 140012350113600, + "relativeCreated": 46.647071838378906, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:48:56,881", - "created": 1609969736.881628, + "asctime": "2021-01-11 07:30:14,113", + "created": 1610346614.113158, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 881.6280364990234, + "msecs": 113.15798759460449, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 46.443939208984375, - "thread": 140012350113600, + "relativeCreated": 46.70000076293945, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:14,113", + "created": 1610346614.113296, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 113.2960319519043, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 46.83804512023926, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:14,113", + "created": 1610346614.113379, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 113.37900161743164, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 46.9210147857666, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:14,113", + "created": 1610346614.113552, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 113.55209350585938, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 47.094106674194336, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:14,113", + "created": 1610346614.113616, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 113.6159896850586, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 47.158002853393555, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:14,113", + "created": 1610346614.113671, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 113.67106437683105, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 47.213077545166016, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:14,113", + "created": 1610346614.113725, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 113.72494697570801, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 47.26696014404297, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:14,113", + "created": 1610346614.113782, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 113.78192901611328, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 47.32394218444824, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:14,113", + "created": 1610346614.113841, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 113.84105682373047, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 47.38306999206543, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:14,113", + "created": 1610346614.113898, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 113.89803886413574, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 47.4400520324707, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:14,113", + "created": 1610346614.113957, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 113.95692825317383, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 47.49894142150879, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:14,114", + "created": 1610346614.114012, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 114.01200294494629, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 47.55401611328125, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:14,114", + "created": 1610346614.114071, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 114.07089233398438, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 47.612905502319336, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:14,114", + "created": 1610346614.114129, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 114.12906646728516, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 47.67107963562012, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:14,114", + "created": 1610346614.114197, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 114.1970157623291, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 47.73902893066406, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:14,114", + "created": 1610346614.114246, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 114.24589157104492, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 47.78790473937988, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:14,114", + "created": 1610346614.114293, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 114.29309844970703, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 47.83511161804199, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:14,114", + "created": 1610346614.114338, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 114.33792114257812, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 47.879934310913086, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:14,114", + "created": 1610346614.114382, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 114.38202857971191, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 47.924041748046875, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:14,114", + "created": 1610346614.114423, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 114.42303657531738, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 47.965049743652344, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:14,114", + "created": 1610346614.114476, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 114.47596549987793, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 48.01797866821289, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 881.6730976104736, + "msecs": 114.54010009765625, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 46.48900032043457, - "thread": 140012350113600, + "relativeCreated": 48.08211326599121, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 4.506111145019531e-05 + "time_consumption": 6.413459777832031e-05 }, { "args": [], - "asctime": "2021-01-06 22:48:56,982", - "created": 1609969736.982504, + "asctime": "2021-01-11 07:30:14,458", + "created": 1610346614.458241, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:14,114", + "created": 1610346614.114632, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 114.63189125061035, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 48.17390441894531, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:14,114", + "created": 1610346614.114679, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 114.67909812927246, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 48.22111129760742, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:14,114", + "created": 1610346614.114725, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 114.72511291503906, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 48.26712608337402, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:14,114", + "created": 1610346614.114803, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 114.80307579040527, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 48.345088958740234, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:14,114", + "created": 1610346614.114959, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 114.9590015411377, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 48.501014709472656, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:14,115", + "created": 1610346614.115014, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 115.01407623291016, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 48.55608940124512, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:14,115", + "created": 1610346614.11506, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 115.06009101867676, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 48.60210418701172, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:14,118", + "created": 1610346614.118691, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 118.69096755981445, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 52.232980728149414, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:14,118", + "created": 1610346614.118853, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 118.85309219360352, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 52.39510536193848, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,118", + "created": 1610346614.118944, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 118.94392967224121, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 52.48594284057617, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:14,119", + "created": 1610346614.119024, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 119.02403831481934, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 52.5660514831543, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,119", + "created": 1610346614.119128, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 119.12798881530762, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 52.67000198364258, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,119", + "created": 1610346614.119211, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 119.21095848083496, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 52.75297164916992, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,119", + "created": 1610346614.119316, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 119.31610107421875, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 52.85811424255371, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,119", + "created": 1610346614.119402, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 119.40193176269531, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 52.94394493103027, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,119", + "created": 1610346614.119488, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 119.48800086975098, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 53.03001403808594, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,119", + "created": 1610346614.119544, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 119.54402923583984, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 53.086042404174805, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,119", + "created": 1610346614.119655, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 119.65489387512207, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 53.19690704345703, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,119", + "created": 1610346614.119716, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 119.71592903137207, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 53.25794219970703, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "comm-client:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:14,119", + "created": 1610346614.119797, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 119.7969913482666, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 53.33900451660156, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "comm-server:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:14,119", + "created": 1610346614.119857, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 119.8570728302002, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 53.399085998535156, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,119", + "created": 1610346614.11991, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 119.91000175476074, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 53.4520149230957, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:14,119", + "created": 1610346614.119966, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 119.96603012084961, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 53.50804328918457, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" + ], + "asctime": "2021-01-11 07:30:14,120", + "created": 1610346614.120055, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", + "module": "stp", + "msecs": 120.05496025085449, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 53.59697341918945, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:14,120", + "created": 1610346614.120195, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 120.19491195678711, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 53.73692512512207, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:14,120", + "created": 1610346614.120258, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 120.25809288024902, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 53.800106048583984, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:14,120", + "created": 1610346614.120352, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 120.35202980041504, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 53.89404296875, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:14,120", + "created": 1610346614.120677, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 120.67699432373047, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 54.21900749206543, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:14,120", + "created": 1610346614.1208, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 120.80001831054688, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 54.342031478881836, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,120", + "created": 1610346614.120864, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 120.8639144897461, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 54.405927658081055, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:14,120", + "created": 1610346614.12094, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 120.93997001647949, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 54.48198318481445, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,121", + "created": 1610346614.121047, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 121.0470199584961, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 54.589033126831055, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,121", + "created": 1610346614.121199, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 121.19889259338379, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 54.74090576171875, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,121", + "created": 1610346614.121557, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 121.55699729919434, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 55.0990104675293, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,121", + "created": 1610346614.121797, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 121.79708480834961, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 55.33909797668457, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,121", + "created": 1610346614.121953, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 121.95301055908203, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 55.49502372741699, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,122", + "created": 1610346614.122011, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 122.01094627380371, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 55.55295944213867, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,122", + "created": 1610346614.122086, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 122.0860481262207, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 55.628061294555664, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,122", + "created": 1610346614.122138, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 122.13802337646484, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 55.680036544799805, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:14,122", + "created": 1610346614.122227, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 122.22695350646973, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 55.76896667480469, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:14,122", + "created": 1610346614.122293, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 122.29299545288086, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 55.83500862121582, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,122", + "created": 1610346614.122348, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 122.34807014465332, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 55.89008331298828, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:14,122", + "created": 1610346614.122396, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 122.39599227905273, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 55.938005447387695, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:14,122", + "created": 1610346614.122504, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 122.50399589538574, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 56.0460090637207, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:14,122", + "created": 1610346614.122663, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 122.66302108764648, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 56.205034255981445, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:14,122", + "created": 1610346614.122736, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 122.73597717285156, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 56.27799034118652, + "thread": 140634706515712, + "threadName": "Thread-2" + } + ], + "msecs": 458.2409858703613, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 391.7829990386963, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.33550500869750977 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:14,660", + "created": 1610346614.660354, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -3274,150 +4599,554 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:48:56,881", - "created": 1609969736.88177, + "asctime": "2021-01-11 07:30:14,458", + "created": 1610346614.458938, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 445, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 881.7698955535889, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 458.9378833770752, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 46.585798263549805, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:48:56,881", - "created": 1609969736.881937, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "test_helpers", - "msecs": 881.9370269775391, - "msg": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 46.7529296875, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:48:56,882", - "created": 1609969736.88205, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "test_helpers", - "msecs": 882.0500373840332, - "msg": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 46.86594009399414, - "thread": 140012350113600, + "relativeCreated": 392.47989654541016, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:14,486", + "created": 1610346614.486415, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 486.41490936279297, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 419.95692253112793, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:14,486", + "created": 1610346614.486975, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 486.97495460510254, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 420.5169677734375, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,487", + "created": 1610346614.487228, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 487.2279167175293, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 420.76992988586426, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:14,487", + "created": 1610346614.487411, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 487.4110221862793, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 420.95303535461426, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,487", + "created": 1610346614.487624, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 487.623929977417, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 421.16594314575195, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,487", + "created": 1610346614.487784, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 487.78390884399414, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 421.3259220123291, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,488", + "created": 1610346614.488011, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 488.0108833312988, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 421.5528964996338, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,488", + "created": 1610346614.488214, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 488.21401596069336, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 421.7560291290283, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,488", + "created": 1610346614.488481, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 488.4810447692871, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 422.02305793762207, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,488", + "created": 1610346614.488676, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 488.6760711669922, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 422.21808433532715, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "comm-client:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" + ], + "asctime": "2021-01-11 07:30:14,489", + "created": 1610346614.489175, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", + "module": "__init__", + "msecs": 489.17508125305176, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 422.7170944213867, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "comm-server:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" + ], + "asctime": "2021-01-11 07:30:14,489", + "created": 1610346614.489542, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", + "module": "__init__", + "msecs": 489.54200744628906, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 423.084020614624, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,489", + "created": 1610346614.489799, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 489.79902267456055, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 423.3410358428955, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,489", + "created": 1610346614.489958, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 489.9580478668213, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 423.50006103515625, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,490", + "created": 1610346614.490142, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 490.1421070098877, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 423.68412017822266, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:14,490", + "created": 1610346614.490291, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 490.2911186218262, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 423.83313179016113, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + "(88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b" + ], + "asctime": "2021-01-11 07:30:14,490", + "created": 1610346614.490678, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", + "module": "stp", + "msecs": 490.678071975708, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 424.22008514404297, + "thread": 140634714908416, + "threadName": "Thread-1" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: 17, data_id: 34", "status: okay", "u'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:48:56,882", - "created": 1609969736.882137, + "asctime": "2021-01-11 07:30:14,491", + "created": 1610346614.491097, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", + "lineno": 445, + "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 882.1370601654053, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 491.09697341918945, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 46.95296287536621, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 424.6389865875244, + "thread": 140634714908416, + "threadName": "Thread-1" }, { "args": [ - "SP server:" + "prot-server:" ], - "asctime": "2021-01-06 22:48:56,882", - "created": 1609969736.882208, + "asctime": "2021-01-11 07:30:14,491", + "created": 1610346614.491362, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP server: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 882.2081089019775, + "msecs": 491.3620948791504, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 47.02401161193848, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 424.90410804748535, + "thread": 140634714908416, + "threadName": "Thread-1" } ], - "msecs": 982.5038909912109, + "msecs": 660.3538990020752, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 147.31979370117188, - "thread": 140012350113600, + "relativeCreated": 593.8959121704102, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.1002957820892334 + "time_consumption": 0.1689918041229248 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:48:56,983", - "created": 1609969736.983235, + "asctime": "2021-01-11 07:30:14,661", + "created": 1610346614.66127, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3434,8 +5163,8 @@ "True", "" ], - "asctime": "2021-01-06 22:48:56,982", - "created": 1609969736.982921, + "asctime": "2021-01-11 07:30:14,660", + "created": 1610346614.660881, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3445,14 +5174,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 982.9208850860596, + "msecs": 660.8810424804688, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 147.7367877960205, - "thread": 140012350113600, + "relativeCreated": 594.4230556488037, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -3461,8 +5190,8 @@ "True", "" ], - "asctime": "2021-01-06 22:48:56,983", - "created": 1609969736.983086, + "asctime": "2021-01-11 07:30:14,661", + "created": 1610346614.661085, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3472,35 +5201,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 983.086109161377, + "msecs": 661.0848903656006, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 147.9020118713379, - "thread": 140012350113600, + "relativeCreated": 594.6269035339355, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 983.2348823547363, + "msecs": 661.2699031829834, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 148.05078506469727, - "thread": 140012350113600, + "relativeCreated": 594.8119163513184, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.000148773193359375 + "time_consumption": 0.0001850128173828125 }, { "args": [ "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", "" ], - "asctime": "2021-01-06 22:48:56,983", - "created": 1609969736.983785, + "asctime": "2021-01-11 07:30:14,661", + "created": 1610346614.661957, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3517,8 +5246,8 @@ "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", "" ], - "asctime": "2021-01-06 22:48:56,983", - "created": 1609969736.983485, + "asctime": "2021-01-11 07:30:14,661", + "created": 1610346614.661596, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3528,14 +5257,14 @@ "lineno": 22, "message": "Result (Received message on server side): {u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34} ()", "module": "test", - "msecs": 983.4849834442139, + "msecs": 661.5960597991943, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 148.3008861541748, - "thread": 140012350113600, + "relativeCreated": 595.1380729675293, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -3544,8 +5273,8 @@ "{'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34}", "" ], - "asctime": "2021-01-06 22:48:56,983", - "created": 1609969736.98363, + "asctime": "2021-01-11 07:30:14,661", + "created": 1610346614.66178, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3555,32 +5284,32 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34} ()", "module": "test", - "msecs": 983.6299419403076, + "msecs": 661.7801189422607, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 148.44584465026855, - "thread": 140012350113600, + "relativeCreated": 595.3221321105957, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 983.7849140167236, + "msecs": 661.9570255279541, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 148.60081672668457, - "thread": 140012350113600, + "relativeCreated": 595.4990386962891, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00015497207641601562 + "time_consumption": 0.00017690658569335938 }, { "args": [], - "asctime": "2021-01-06 22:48:57,085", - "created": 1609969737.085979, + "asctime": "2021-01-11 07:30:14,863", + "created": 1610346614.863589, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -3593,176 +5322,554 @@ "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:48:56,984", - "created": 1609969736.984053, + "asctime": "2021-01-11 07:30:14,662", + "created": 1610346614.66235, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 984.0528964996338, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 662.3499393463135, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 148.86879920959473, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:48:56,984", - "created": 1609969736.984518, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "module": "test_helpers", - "msecs": 984.5180511474609, - "msg": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 149.33395385742188, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:48:56,984", - "created": 1609969736.984869, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "module": "test_helpers", - "msecs": 984.8690032958984, - "msg": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 149.68490600585938, - "thread": 140012350113600, + "relativeCreated": 595.8919525146484, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:14,689", + "created": 1610346614.689113, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 689.1129016876221, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 622.654914855957, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:14,689", + "created": 1610346614.689845, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 689.845085144043, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 623.3870983123779, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,690", + "created": 1610346614.690134, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 690.1340484619141, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 623.676061630249, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:14,690", + "created": 1610346614.690345, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 690.345048904419, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 623.8870620727539, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,690", + "created": 1610346614.690565, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 690.5651092529297, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 624.1071224212646, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,690", + "created": 1610346614.690746, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 690.7460689544678, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 624.2880821228027, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,690", + "created": 1610346614.690939, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 690.9389495849609, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 624.4809627532959, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,691", + "created": 1610346614.691072, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 691.0719871520996, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 624.6140003204346, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,691", + "created": 1610346614.691259, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 691.2589073181152, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 624.8009204864502, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,691", + "created": 1610346614.691399, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 691.399097442627, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 624.9411106109619, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "comm-server:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" + ], + "asctime": "2021-01-11 07:30:14,691", + "created": 1610346614.691726, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", + "module": "__init__", + "msecs": 691.7259693145752, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 625.2679824829102, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "comm-client:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" + ], + "asctime": "2021-01-11 07:30:14,691", + "created": 1610346614.691951, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", + "module": "__init__", + "msecs": 691.9510364532471, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 625.493049621582, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,692", + "created": 1610346614.692195, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 692.194938659668, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 625.7369518280029, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,692", + "created": 1610346614.692361, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 692.3611164093018, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 625.9031295776367, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,692", + "created": 1610346614.692586, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 692.5859451293945, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 626.1279582977295, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:14,692", + "created": 1610346614.692775, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 692.7750110626221, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 626.317024230957, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + "(88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8" + ], + "asctime": "2021-01-11 07:30:14,693", + "created": 1610346614.693216, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", + "module": "stp", + "msecs": 693.21608543396, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 626.7580986022949, + "thread": 140634706515712, + "threadName": "Thread-2" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: 17, data_id: 35", "status: service or data unknown", "u'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:48:56,985", - "created": 1609969736.98513, + "asctime": "2021-01-11 07:30:14,693", + "created": 1610346614.693696, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 985.1300716400146, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 693.6960220336914, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 149.9459743499756, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 627.2380352020264, + "thread": 140634706515712, + "threadName": "Thread-2" }, { "args": [ - "SP client:", - "status: service or data unknown" + "prot-client:" ], - "asctime": "2021-01-06 22:48:56,985", - "created": 1609969736.985288, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: service or data unknown", - "module": "__init__", - "msecs": 985.2879047393799, - "msg": "%s RX <- Message has a peculiar status: %s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 150.10380744934082, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:" - ], - "asctime": "2021-01-06 22:48:56,985", - "created": 1609969736.985485, + "asctime": "2021-01-11 07:30:14,693", + "created": 1610346614.693967, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 985.4850769042969, + "msecs": 693.9671039581299, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 150.3009796142578, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 627.5091171264648, + "thread": 140634706515712, + "threadName": "Thread-2" } ], - "msecs": 85.97898483276367, + "msecs": 863.5890483856201, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 250.7948875427246, - "thread": 140012350113600, + "relativeCreated": 797.1310615539551, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.1004939079284668 + "time_consumption": 0.16962194442749023 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:48:57,086", - "created": 1609969737.086861, + "asctime": "2021-01-11 07:30:14,864", + "created": 1610346614.864515, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3779,8 +5886,8 @@ "True", "" ], - "asctime": "2021-01-06 22:48:57,086", - "created": 1609969737.086477, + "asctime": "2021-01-11 07:30:14,864", + "created": 1610346614.864133, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3790,14 +5897,14 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 86.47704124450684, + "msecs": 864.1328811645508, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 251.29294395446777, - "thread": 140012350113600, + "relativeCreated": 797.6748943328857, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -3806,8 +5913,8 @@ "True", "" ], - "asctime": "2021-01-06 22:48:57,086", - "created": 1609969737.086679, + "asctime": "2021-01-11 07:30:14,864", + "created": 1610346614.864333, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3817,35 +5924,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 86.67898178100586, + "msecs": 864.332914352417, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 251.4948844909668, - "thread": 140012350113600, + "relativeCreated": 797.874927520752, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 86.86089515686035, + "msecs": 864.5150661468506, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 251.6767978668213, - "thread": 140012350113600, + "relativeCreated": 798.0570793151855, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0001819133758544922 + "time_consumption": 0.00018215179443359375 }, { "args": [ "{u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35}", "" ], - "asctime": "2021-01-06 22:48:57,087", - "created": 1609969737.087572, + "asctime": "2021-01-11 07:30:14,865", + "created": 1610346614.865189, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3862,8 +5969,8 @@ "{u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35}", "" ], - "asctime": "2021-01-06 22:48:57,087", - "created": 1609969737.087202, + "asctime": "2021-01-11 07:30:14,864", + "created": 1610346614.864801, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3873,14 +5980,14 @@ "lineno": 22, "message": "Result (Received message on client side): {u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35} ()", "module": "test", - "msecs": 87.20207214355469, + "msecs": 864.8009300231934, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 252.01797485351562, - "thread": 140012350113600, + "relativeCreated": 798.3429431915283, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -3889,8 +5996,8 @@ "{'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35}", "" ], - "asctime": "2021-01-06 22:48:57,087", - "created": 1609969737.087389, + "asctime": "2021-01-11 07:30:14,864", + "created": 1610346614.864976, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3900,39 +6007,39 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = {'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35} ()", "module": "test", - "msecs": 87.38899230957031, + "msecs": 864.9759292602539, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 252.20489501953125, - "thread": 140012350113600, + "relativeCreated": 798.5179424285889, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 87.57209777832031, + "msecs": 865.1890754699707, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 252.38800048828125, - "thread": 140012350113600, + "relativeCreated": 798.7310886383057, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00018310546875 + "time_consumption": 0.00021314620971679688 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.20797419548034668, - "time_finished": "2021-01-06 22:48:57,087", - "time_start": "2021-01-06 22:48:56,879" + "time_consumption": 0.7543141841888428, + "time_finished": "2021-01-11 07:30:14,865", + "time_start": "2021-01-11 07:30:14,110" }, "_4w4SsE1DEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:49:01,138", - "created": 1609969741.138208, + "asctime": "2021-01-11 07:30:16,794", + "created": 1610346616.794153, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -3943,1112 +6050,2427 @@ "message": "_4w4SsE1DEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 138.20791244506836, + "msecs": 794.1529750823975, "msg": "_4w4SsE1DEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4303.023815155029, + "relativeCreated": 2727.6949882507324, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:01,145", - "created": 1609969741.145922, + "asctime": "2021-01-11 07:30:16,802", + "created": 1610346616.802489, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:01,138", - "created": 1609969741.138738, + "asctime": "2021-01-11 07:30:16,795", + "created": 1610346616.795141, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 138.73791694641113, + "msecs": 795.1409816741943, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4303.553819656372, - "thread": 140012350113600, + "relativeCreated": 2728.6829948425293, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:01,138", - "created": 1609969741.138967, + "asctime": "2021-01-11 07:30:16,795", + "created": 1610346616.795954, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 138.96703720092773, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 795.9539890289307, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4303.782939910889, - "thread": 140012350113600, + "relativeCreated": 2729.4960021972656, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:01,139", - "created": 1609969741.139213, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 139.21308517456055, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4304.0289878845215, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:01,139", - "created": 1609969741.139393, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 139.39309120178223, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4304.208993911743, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:01,139", - "created": 1609969741.139569, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 139.56904411315918, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4304.38494682312, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:01,139", - "created": 1609969741.13973, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 139.72997665405273, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4304.545879364014, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:01,139", - "created": 1609969741.13991, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 139.9099826812744, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4304.725885391235, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:01,140", - "created": 1609969741.140095, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 140.09499549865723, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4304.910898208618, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:01,140", - "created": 1609969741.140284, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 140.28406143188477, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4305.099964141846, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:01,140", - "created": 1609969741.140459, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 140.4590606689453, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4305.274963378906, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:01,140", - "created": 1609969741.140617, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 140.61689376831055, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4305.4327964782715, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:01,140", - "created": 1609969741.140813, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 140.81311225891113, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4305.629014968872, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:01,141", - "created": 1609969741.141006, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 141.0059928894043, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4305.821895599365, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:01,141", - "created": 1609969741.141169, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 141.16907119750977, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4305.984973907471, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:01,141", - "created": 1609969741.141339, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 141.33906364440918, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4306.15496635437, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:01,141", - "created": 1609969741.141515, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 141.51501655578613, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4306.330919265747, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:01,141", - "created": 1609969741.141692, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 141.6919231414795, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4306.50782585144, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:01,141", - "created": 1609969741.141877, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 141.8769359588623, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4306.692838668823, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:01,142", - "created": 1609969741.142073, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 142.0729160308838, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4306.888818740845, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:01,142", - "created": 1609969741.142235, + "asctime": "2021-01-11 07:30:16,796", + "created": 1610346616.796189, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 142.23504066467285, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 796.1890697479248, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4307.050943374634, - "thread": 140012350113600, + "relativeCreated": 2729.7310829162598, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:01,142", - "created": 1609969741.142633, + "asctime": "2021-01-11 07:30:16,796", + "created": 1610346616.796531, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 142.63296127319336, + "msecs": 796.5309619903564, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4307.448863983154, - "thread": 140012350113600, + "relativeCreated": 2730.0729751586914, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:01,142", - "created": 1609969741.142825, + "asctime": "2021-01-11 07:30:16,796", + "created": 1610346616.796673, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 142.82488822937012, + "msecs": 796.673059463501, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4307.640790939331, - "thread": 140012350113600, + "relativeCreated": 2730.215072631836, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:01,143", - "created": 1609969741.143062, + "asctime": "2021-01-11 07:30:16,796", + "created": 1610346616.796843, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 143.06211471557617, + "msecs": 796.8430519104004, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4307.878017425537, - "thread": 140012350113600, + "relativeCreated": 2730.3850650787354, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:01,143", - "created": 1609969741.14324, + "asctime": "2021-01-11 07:30:16,796", + "created": 1610346616.79698, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 143.23997497558594, + "msecs": 796.9799041748047, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4308.055877685547, - "thread": 140012350113600, + "relativeCreated": 2730.5219173431396, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:01,143", - "created": 1609969741.143399, + "asctime": "2021-01-11 07:30:16,797", + "created": 1610346616.797108, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 143.39900016784668, + "msecs": 797.1079349517822, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4308.214902877808, - "thread": 140012350113600, + "relativeCreated": 2730.649948120117, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:01,143", - "created": 1609969741.143557, + "asctime": "2021-01-11 07:30:16,797", + "created": 1610346616.797253, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 143.55707168579102, + "msecs": 797.252893447876, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4308.372974395752, - "thread": 140012350113600, + "relativeCreated": 2730.794906616211, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:01,143", - "created": 1609969741.14373, + "asctime": "2021-01-11 07:30:16,797", + "created": 1610346616.797404, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 143.72992515563965, + "msecs": 797.4040508270264, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4308.545827865601, - "thread": 140012350113600, + "relativeCreated": 2730.9460639953613, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:01,143", - "created": 1609969741.143917, + "asctime": "2021-01-11 07:30:16,797", + "created": 1610346616.797587, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 143.91708374023438, + "msecs": 797.5869178771973, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4308.732986450195, - "thread": 140012350113600, + "relativeCreated": 2731.128931045532, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:01,144", - "created": 1609969741.144093, + "asctime": "2021-01-11 07:30:16,797", + "created": 1610346616.79774, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 144.09303665161133, + "msecs": 797.7399826049805, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4308.908939361572, - "thread": 140012350113600, + "relativeCreated": 2731.2819957733154, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:01,144", - "created": 1609969741.144264, + "asctime": "2021-01-11 07:30:16,797", + "created": 1610346616.797898, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 144.26398277282715, + "msecs": 797.8980541229248, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4309.079885482788, - "thread": 140012350113600, + "relativeCreated": 2731.4400672912598, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:01,144", - "created": 1609969741.144419, + "asctime": "2021-01-11 07:30:16,798", + "created": 1610346616.798046, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 144.41895484924316, + "msecs": 798.0461120605469, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4309.234857559204, - "thread": 140012350113600, + "relativeCreated": 2731.588125228882, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:01,144", - "created": 1609969741.144601, + "asctime": "2021-01-11 07:30:16,798", + "created": 1610346616.798205, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 144.60110664367676, + "msecs": 798.2048988342285, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4309.417009353638, - "thread": 140012350113600, + "relativeCreated": 2731.7469120025635, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:01,144", - "created": 1609969741.144791, + "asctime": "2021-01-11 07:30:16,798", + "created": 1610346616.79836, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 144.7908878326416, + "msecs": 798.3601093292236, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4309.6067905426025, - "thread": 140012350113600, + "relativeCreated": 2731.9021224975586, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:01,144", - "created": 1609969741.144951, + "asctime": "2021-01-11 07:30:16,798", + "created": 1610346616.79851, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 144.95110511779785, + "msecs": 798.5100746154785, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4309.767007827759, - "thread": 140012350113600, + "relativeCreated": 2732.0520877838135, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:01,145", - "created": 1609969741.145118, + "asctime": "2021-01-11 07:30:16,798", + "created": 1610346616.798685, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 145.11799812316895, + "msecs": 798.6850738525391, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4309.93390083313, - "thread": 140012350113600, + "relativeCreated": 2732.227087020874, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:01,145", - "created": 1609969741.145291, + "asctime": "2021-01-11 07:30:16,798", + "created": 1610346616.798852, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 145.29109001159668, + "msecs": 798.8519668579102, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4310.106992721558, - "thread": 140012350113600, + "relativeCreated": 2732.393980026245, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:01,145", - "created": 1609969741.145477, + "asctime": "2021-01-11 07:30:16,799", + "created": 1610346616.799005, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 145.4770565032959, + "msecs": 799.0050315856934, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4310.292959213257, - "thread": 140012350113600, + "relativeCreated": 2732.5470447540283, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:01,145", - "created": 1609969741.145636, + "asctime": "2021-01-11 07:30:16,799", + "created": 1610346616.799112, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 145.63608169555664, + "msecs": 799.11208152771, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4310.451984405518, - "thread": 140012350113600, + "relativeCreated": 2732.654094696045, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:01,145", - "created": 1609969741.145818, + "asctime": "2021-01-11 07:30:16,799", + "created": 1610346616.799211, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 145.81799507141113, + "msecs": 799.2110252380371, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4310.633897781372, - "thread": 140012350113600, + "relativeCreated": 2732.753038406372, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:01,145", - "created": 1609969741.145866, + "asctime": "2021-01-11 07:30:16,799", + "created": 1610346616.799311, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 145.86591720581055, + "msecs": 799.3109226226807, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4310.6818199157715, - "thread": 140012350113600, + "relativeCreated": 2732.8529357910156, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:16,799", + "created": 1610346616.799564, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 799.5638847351074, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2733.1058979034424, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:16,799", + "created": 1610346616.799683, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 799.6830940246582, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2733.225107192993, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:16,799", + "created": 1610346616.799824, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 799.8239994049072, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2733.366012573242, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:16,799", + "created": 1610346616.79993, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 799.9300956726074, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2733.4721088409424, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:16,800", + "created": 1610346616.80003, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 800.029993057251, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2733.572006225586, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:16,800", + "created": 1610346616.800136, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 800.1360893249512, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2733.678102493286, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:16,800", + "created": 1610346616.800249, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 800.2490997314453, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2733.7911128997803, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:16,800", + "created": 1610346616.800358, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 800.3580570220947, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2733.9000701904297, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:16,800", + "created": 1610346616.800466, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 800.4660606384277, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2734.0080738067627, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:16,800", + "created": 1610346616.80058, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 800.5800247192383, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2734.1220378875732, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:16,800", + "created": 1610346616.800686, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 800.6858825683594, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2734.2278957366943, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:16,800", + "created": 1610346616.800819, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 800.818920135498, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2734.360933303833, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:16,800", + "created": 1610346616.800963, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 800.9629249572754, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2734.5049381256104, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:16,801", + "created": 1610346616.801129, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 801.1291027069092, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2734.671115875244, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:16,801", + "created": 1610346616.801277, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 801.2769222259521, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2734.818935394287, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:16,801", + "created": 1610346616.801441, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 801.440954208374, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2734.982967376709, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:16,801", + "created": 1610346616.801893, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 801.8929958343506, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2735.4350090026855, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:16,802", + "created": 1610346616.802054, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 802.0539283752441, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2735.595941543579, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:16,802", + "created": 1610346616.802203, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 802.2029399871826, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2735.7449531555176, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:16,802", + "created": 1610346616.802345, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 802.3450374603271, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2735.887050628662, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 145.9219455718994, + "msecs": 802.4890422821045, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4310.73784828186, - "thread": 140012350113600, + "relativeCreated": 2736.0310554504395, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 5.602836608886719e-05 + "time_consumption": 0.00014400482177734375 }, { "args": [], - "asctime": "2021-01-06 22:49:01,146", - "created": 1609969741.146018, + "asctime": "2021-01-11 07:30:17,147", + "created": 1610346617.147087, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:16,802", + "created": 1610346616.802792, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 802.7920722961426, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2736.3340854644775, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:16,802", + "created": 1610346616.802907, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 802.9069900512695, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2736.4490032196045, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:16,803", + "created": 1610346616.803017, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 803.0169010162354, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2736.5589141845703, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:16,803", + "created": 1610346616.803201, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 803.2009601593018, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2736.7429733276367, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:16,803", + "created": 1610346616.803547, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 803.5469055175781, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2737.088918685913, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:16,803", + "created": 1610346616.803672, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 803.6720752716064, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2737.2140884399414, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:16,803", + "created": 1610346616.803782, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 803.7819862365723, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2737.323999404907, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:16,806", + "created": 1610346616.806807, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 806.8070411682129, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2740.349054336548, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:16,807", + "created": 1610346616.807003, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 807.0030212402344, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2740.5450344085693, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,807", + "created": 1610346616.80714, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 807.1401119232178, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2740.6821250915527, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:16,807", + "created": 1610346616.807258, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 807.257890701294, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2740.799903869629, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,807", + "created": 1610346616.807367, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 807.3670864105225, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2740.9090995788574, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,807", + "created": 1610346616.807432, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 807.4319362640381, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2740.973949432373, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,807", + "created": 1610346616.807523, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 807.5230121612549, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2741.06502532959, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,807", + "created": 1610346616.807584, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 807.5840473175049, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2741.12606048584, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,807", + "created": 1610346616.807666, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 807.6660633087158, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2741.208076477051, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,807", + "created": 1610346616.807726, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 807.7259063720703, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2741.2679195404053, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,807", + "created": 1610346616.807814, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 807.8138828277588, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2741.3558959960938, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,807", + "created": 1610346616.807903, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 807.9030513763428, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2741.4450645446777, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-client:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,807", + "created": 1610346616.807993, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 807.9929351806641, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2741.534948348999, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,808", + "created": 1610346616.808058, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 808.0580234527588, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2741.6000366210938, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,808", + "created": 1610346616.808112, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 808.1119060516357, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2741.6539192199707, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:16,808", + "created": 1610346616.808163, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 808.1629276275635, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2741.7049407958984, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" + ], + "asctime": "2021-01-11 07:30:16,808", + "created": 1610346616.808264, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", + "module": "stp", + "msecs": 808.2640171051025, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2741.8060302734375, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:16,808", + "created": 1610346616.808398, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 808.3980083465576, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2741.9400215148926, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:16,808", + "created": 1610346616.80849, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 808.4900379180908, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2742.032051086426, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:16,808", + "created": 1610346616.808583, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 808.5830211639404, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2742.1250343322754, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:16,814", + "created": 1610346616.814817, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 814.816951751709, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2748.358964920044, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:16,814", + "created": 1610346616.814976, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 814.9759769439697, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2748.5179901123047, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,815", + "created": 1610346616.81507, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 815.0699138641357, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2748.6119270324707, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:16,815", + "created": 1610346616.815159, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 815.1590824127197, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2748.7010955810547, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,815", + "created": 1610346616.815262, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 815.2620792388916, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2748.8040924072266, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,815", + "created": 1610346616.815334, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 815.3340816497803, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2748.8760948181152, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,815", + "created": 1610346616.815437, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 815.4370784759521, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2748.979091644287, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,815", + "created": 1610346616.815504, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 815.5040740966797, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2749.0460872650146, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,815", + "created": 1610346616.815594, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 815.593957901001, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2749.135971069336, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,815", + "created": 1610346616.815673, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 815.6731128692627, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2749.2151260375977, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,815", + "created": 1610346616.815742, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 815.742015838623, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2749.284029006958, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,815", + "created": 1610346616.815794, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 815.7939910888672, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2749.336004257202, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,815", + "created": 1610346616.815871, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 815.871000289917, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2749.413013458252, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,815", + "created": 1610346616.815968, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 815.9680366516113, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2749.5100498199463, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,816", + "created": 1610346616.816039, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 816.0390853881836, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2749.5810985565186, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:16,816", + "created": 1610346616.816099, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 816.0989284515381, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2749.640941619873, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:16,816", + "created": 1610346616.816222, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 816.2219524383545, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2749.7639656066895, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:16,816", + "created": 1610346616.816351, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 816.3509368896484, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2749.8929500579834, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:16,816", + "created": 1610346616.816432, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 816.431999206543, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2749.974012374878, + "thread": 140634451068672, + "threadName": "Thread-8" + } + ], + "msecs": 147.08709716796875, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3080.6291103363037, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.3306550979614258 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:17,147", + "created": 1610346617.147652, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -5059,14 +8481,14 @@ "message": "Identical secrets set and automatic authentification", "module": "test_communication", "moduleLogger": [], - "msecs": 146.01802825927734, + "msecs": 147.65191078186035, "msg": "Identical secrets set and automatic authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4310.833930969238, - "thread": 140012350113600, + "relativeCreated": 3081.1939239501953, + "thread": 140634736203584, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -5075,8 +8497,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:01,146", - "created": 1609969741.146197, + "asctime": "2021-01-11 07:30:17,148", + "created": 1610346617.14833, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5093,8 +8515,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:01,146", - "created": 1609969741.146097, + "asctime": "2021-01-11 07:30:17,147", + "created": 1610346617.147958, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5104,14 +8526,14 @@ "lineno": 22, "message": "Result (Authentification state of server): False ()", "module": "test", - "msecs": 146.09694480895996, + "msecs": 147.95804023742676, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4310.912847518921, - "thread": 140012350113600, + "relativeCreated": 3081.5000534057617, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -5120,8 +8542,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:01,146", - "created": 1609969741.146146, + "asctime": "2021-01-11 07:30:17,148", + "created": 1610346617.148146, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5131,35 +8553,35 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = False ()", "module": "test", - "msecs": 146.14605903625488, + "msecs": 148.1459140777588, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4310.961961746216, - "thread": 140012350113600, + "relativeCreated": 3081.6879272460938, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 146.19708061218262, + "msecs": 148.3299732208252, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4311.012983322144, - "thread": 140012350113600, + "relativeCreated": 3081.87198638916, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 5.1021575927734375e-05 + "time_consumption": 0.00018405914306640625 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:01,146", - "created": 1609969741.146368, + "asctime": "2021-01-11 07:30:17,148", + "created": 1610346617.148915, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5176,8 +8598,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:01,146", - "created": 1609969741.146274, + "asctime": "2021-01-11 07:30:17,148", + "created": 1610346617.148587, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5187,14 +8609,14 @@ "lineno": 22, "message": "Result (Authentification state of client): False ()", "module": "test", - "msecs": 146.27408981323242, + "msecs": 148.58698844909668, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4311.089992523193, - "thread": 140012350113600, + "relativeCreated": 3082.1290016174316, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -5203,8 +8625,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:01,146", - "created": 1609969741.146321, + "asctime": "2021-01-11 07:30:17,148", + "created": 1610346617.148745, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5214,32 +8636,32 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = False ()", "module": "test", - "msecs": 146.32105827331543, + "msecs": 148.74505996704102, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4311.136960983276, - "thread": 140012350113600, + "relativeCreated": 3082.287073135376, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 146.36802673339844, + "msecs": 148.91505241394043, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4311.183929443359, - "thread": 140012350113600, + "relativeCreated": 3082.4570655822754, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 4.696846008300781e-05 + "time_consumption": 0.00016999244689941406 }, { "args": [], - "asctime": "2021-01-06 22:49:01,850", - "created": 1609969741.850409, + "asctime": "2021-01-11 07:30:19,501", + "created": 1610346619.501187, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -5247,871 +8669,3651 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 139, - "message": "Server and Client connect callback triggered", + "message": "Connecting Server and Client", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:01,146", - "created": 1609969741.146446, + "asctime": "2021-01-11 07:30:17,149", + "created": 1610346617.149294, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 149.2938995361328, + "msg": "%s Connection Lost...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3082.835912704468, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:17,149", + "created": 1610346617.149679, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 149.67894554138184, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3083.220958709717, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:17,149", + "created": 1610346617.149877, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 149.87707138061523, + "msg": "%s Connection Lost...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3083.41908454895, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:17,150", + "created": 1610346617.150052, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 150.05207061767578, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3083.5940837860107, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:17,150", + "created": 1610346617.150253, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 150.2530574798584, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3083.7950706481934, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:17,150", + "created": 1610346617.150421, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 150.4209041595459, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3083.962917327881, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:17,150", + "created": 1610346617.150591, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 146.44598960876465, + "msecs": 150.5908966064453, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4311.261892318726, - "thread": 140012350113600, + "relativeCreated": 3084.1329097747803, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" - ], - "asctime": "2021-01-06 22:49:01,146", - "created": 1609969741.146508, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 146.50797843933105, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4311.323881149292, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: channel name request, data_id: name", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:01,146", - "created": 1609969741.146577, + "asctime": "2021-01-11 07:30:17,150", + "created": 1610346617.15089, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 146.5768814086914, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 150.89011192321777, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4311.392784118652, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:01,146", - "created": 1609969741.146729, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", - "module": "test_helpers", - "msecs": 146.7289924621582, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4311.544895172119, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:01,146", - "created": 1609969741.146839, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", - "module": "test_helpers", - "msecs": 146.83890342712402, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4311.654806137085, - "thread": 140012350113600, + "relativeCreated": 3084.4321250915527, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "prot-client:", + "TX ->", + "service: authentification request, data_id: seed", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:17,151", + "created": 1610346617.151532, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 151.53193473815918, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3085.073947906494, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:17,173", + "created": 1610346617.173784, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 173.7840175628662, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3107.326030731201, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:17,174", + "created": 1610346617.174153, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 174.15308952331543, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3107.6951026916504, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:17,174", + "created": 1610346617.174291, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 174.29089546203613, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3107.832908630371, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:17,174", + "created": 1610346617.174412, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 174.41201210021973, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3107.9540252685547, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:17,174", + "created": 1610346617.174555, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 174.55506324768066, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3108.0970764160156, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:17,174", + "created": 1610346617.17467, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 174.66998100280762, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3108.2119941711426, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:17,174", + "created": 1610346617.174822, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 174.8220920562744, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3108.3641052246094, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:17,174", + "created": 1610346617.174927, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 174.9269962310791, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3108.469009399414, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:17,175", + "created": 1610346617.17507, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 175.07004737854004, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3108.612060546875, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:17,175", + "created": 1610346617.175173, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 175.1730442047119, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3108.715057373047, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:17,175", + "created": 1610346617.175317, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 175.31704902648926, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3108.859062194824, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:17,175", + "created": 1610346617.175422, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 175.42195320129395, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3108.963966369629, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-client:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:17,175", + "created": 1610346617.175588, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 175.58789253234863, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3109.1299057006836, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:17,175", + "created": 1610346617.175721, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 175.7209300994873, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3109.2629432678223, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:17,175", + "created": 1610346617.175839, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 175.83894729614258, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3109.3809604644775, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:17,175", + "created": 1610346617.175943, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 175.94289779663086, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3109.484910964966, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" + ], + "asctime": "2021-01-11 07:30:17,176", + "created": 1610346617.17616, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", + "module": "stp", + "msecs": 176.16009712219238, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3109.7021102905273, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: channel name request, data_id: name", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:01,146", - "created": 1609969741.146946, + "asctime": "2021-01-11 07:30:17,176", + "created": 1610346617.176472, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 146.94595336914062, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 176.47194862365723, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4311.761856079102, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 3110.013961791992, + "thread": 140634459461376, + "threadName": "Thread-7" }, { "args": [ - "SP server:", + "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-06 22:49:01,147", - "created": 1609969741.147011, + "asctime": "2021-01-11 07:30:17,176", + "created": 1610346617.176616, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __channel_name_request__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 147.01104164123535, - "msg": "%s RX <- Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4311.826944351196, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:01,147", - "created": 1609969741.147083, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 147.08304405212402, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4311.898946762085, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:01,147", - "created": 1609969741.147217, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "module": "test_helpers", - "msecs": 147.2170352935791, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4312.03293800354, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:01,147", - "created": 1609969741.147329, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "module": "test_helpers", - "msecs": 147.32909202575684, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4312.144994735718, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:01,147", - "created": 1609969741.147403, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 147.40300178527832, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4312.218904495239, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "__channel_name_response__" - ], - "asctime": "2021-01-06 22:49:01,147", - "created": 1609969741.147455, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 147.45497703552246, + "msecs": 176.61595344543457, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4312.270879745483, - "thread": 140012350113600, + "relativeCreated": 3110.1579666137695, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:17,176", + "created": 1610346617.176795, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 176.79500579833984, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 3110.337018966675, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:19,157", + "created": 1610346619.157282, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 157.28211402893066, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5090.824127197266, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "comm-server:" + ], + "asctime": "2021-01-11 07:30:19,157", + "created": 1610346619.157677, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 157.67693519592285, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5091.218948364258, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:19,157", + "created": 1610346619.157902, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 157.90200233459473, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5091.44401550293, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:19,182", + "created": 1610346619.182259, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 182.25908279418945, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5115.801095962524, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:19,182", + "created": 1610346619.182777, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 182.77692794799805, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5116.318941116333, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,182", + "created": 1610346619.182989, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 182.98888206481934, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5116.530895233154, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:19,183", + "created": 1610346619.183164, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 183.16388130187988, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5116.705894470215, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,183", + "created": 1610346619.183377, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 183.37702751159668, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5116.919040679932, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,183", + "created": 1610346619.183538, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 183.53796005249023, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5117.079973220825, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,183", + "created": 1610346619.183754, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 183.75396728515625, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5117.295980453491, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,183", + "created": 1610346619.183941, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 183.94088745117188, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5117.482900619507, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,184", + "created": 1610346619.184136, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 184.13591384887695, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5117.677927017212, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,184", + "created": 1610346619.184285, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 184.28492546081543, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5117.82693862915, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,184", + "created": 1610346619.184497, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 184.49711799621582, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5118.039131164551, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,184", + "created": 1610346619.184657, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 184.65709686279297, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5118.199110031128, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-client:", + "(6): 10 4d cd 55 3a 3e" + ], + "asctime": "2021-01-11 07:30:19,184", + "created": 1610346619.184886, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 10 4d cd 55 3a 3e", + "module": "__init__", + "msecs": 184.88597869873047, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5118.427991867065, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(6): 10 4d cd 55 3a 3e" + ], + "asctime": "2021-01-11 07:30:19,185", + "created": 1610346619.185071, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 10 4d cd 55 3a 3e", + "module": "__init__", + "msecs": 185.07099151611328, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5118.613004684448, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,185", + "created": 1610346619.185244, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 185.24408340454102, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5118.786096572876, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:19,185", + "created": 1610346619.185397, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 185.39690971374512, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5118.93892288208, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55" + ], + "asctime": "2021-01-11 07:30:19,185", + "created": 1610346619.185764, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", + "module": "stp", + "msecs": 185.76407432556152, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5119.3060874938965, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:01,147", - "created": 1609969741.147515, + "asctime": "2021-01-11 07:30:19,186", + "created": 1610346619.186197, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 445, + "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 147.51505851745605, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 186.19704246520996, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4312.330961227417, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:01,147", - "created": 1609969741.147624, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "module": "test_helpers", - "msecs": 147.62401580810547, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4312.439918518066, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:01,147", - "created": 1609969741.147709, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "module": "test_helpers", - "msecs": 147.70889282226562, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4312.524795532227, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 5119.739055633545, + "thread": 140634459461376, + "threadName": "Thread-7" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:01,147", - "created": 1609969741.147783, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 147.7830410003662, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4312.598943710327, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", + "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-06 22:49:01,147", - "created": 1609969741.147834, + "asctime": "2021-01-11 07:30:19,186", + "created": 1610346619.186414, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __authentificate_create_seed__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 147.83406257629395, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 186.41400337219238, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4312.649965286255, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 5119.956016540527, + "thread": 140634459461376, + "threadName": "Thread-7" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: authentification response, data_id: seed", "status: okay", - "'1d385cd82db5453445fc2fdf5970407c7420bbc060e4e225b09f079189dfa42c'" + "'1dc8483c3a1bf1fc7e154481a48e1d0c026e3c351cc01d98c8cc75bc9af1b3a8'" ], - "asctime": "2021-01-06 22:49:01,147", - "created": 1609969741.147896, + "asctime": "2021-01-11 07:30:19,186", + "created": 1610346619.186741, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: authentification response, data_id: seed, status: okay, data: \"'1d385cd82db5453445fc2fdf5970407c7420bbc060e4e225b09f079189dfa42c'\"", + "lineno": 445, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'1dc8483c3a1bf1fc7e154481a48e1d0c026e3c351cc01d98c8cc75bc9af1b3a8'\"", "module": "__init__", - "msecs": 147.89605140686035, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 186.74111366271973, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4312.711954116821, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:01,148", - "created": 1609969741.148049, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 31 64 33 38 35 63 64 38 32 64 62 35 34 35 33 34 34 35 66 63 32 66 64 66 35 39 37 30 34 30 37 63 37 34 32 30 62 62 63 30 36 30 65 34 65 32 32 35 62 30 39 66 30 37 39 31 38 39 64 66 61 34 32 63 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d f0 6a a1 06", - "module": "test_helpers", - "msecs": 148.04911613464355, - "msg": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 31 64 33 38 35 63 64 38 32 64 62 35 34 35 33 34 34 35 66 63 32 66 64 66 35 39 37 30 34 30 37 63 37 34 32 30 62 62 63 30 36 30 65 34 65 32 32 35 62 30 39 66 30 37 39 31 38 39 64 66 61 34 32 63 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d f0 6a a1 06", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4312.8650188446045, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:01,148", - "created": 1609969741.148185, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 31 64 33 38 35 63 64 38 32 64 62 35 34 35 33 34 34 35 66 63 32 66 64 66 35 39 37 30 34 30 37 63 37 34 32 30 62 62 63 30 36 30 65 34 65 32 32 35 62 30 39 66 30 37 39 31 38 39 64 66 61 34 32 63 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d f0 6a a1 06", - "module": "test_helpers", - "msecs": 148.18501472473145, - "msg": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 31 64 33 38 35 63 64 38 32 64 62 35 34 35 33 34 34 35 66 63 32 66 64 66 35 39 37 30 34 30 37 63 37 34 32 30 62 62 63 30 36 30 65 34 65 32 32 35 62 30 39 66 30 37 39 31 38 39 64 66 61 34 32 63 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d f0 6a a1 06", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4313.000917434692, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 5120.283126831055, + "thread": 140634459461376, + "threadName": "Thread-7" }, { "args": [ - "SP client:", - "service: authentification response, data_id: seed", - "status: okay", - "u'1d385cd82db5453445fc2fdf5970407c7420bbc060e4e225b09f079189dfa42c'" + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" ], - "asctime": "2021-01-06 22:49:01,148", - "created": 1609969741.148263, + "asctime": "2021-01-11 07:30:19,188", + "created": 1610346619.188128, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 188.12799453735352, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5121.6700077056885, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:19,188", + "created": 1610346619.188779, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 188.77911567687988, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5122.321128845215, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,189", + "created": 1610346619.189053, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 189.05305862426758, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5122.5950717926025, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:19,189", + "created": 1610346619.189293, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 189.29290771484375, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5122.834920883179, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,189", + "created": 1610346619.189639, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 189.63909149169922, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5123.181104660034, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,189", + "created": 1610346619.189878, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 189.87798690795898, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5123.420000076294, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,190", + "created": 1610346619.190235, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 190.23489952087402, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5123.776912689209, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,190", + "created": 1610346619.190483, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 190.48309326171875, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5124.025106430054, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,190", + "created": 1610346619.190781, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 190.7811164855957, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5124.323129653931, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,190", + "created": 1610346619.190998, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 190.99807739257812, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5124.540090560913, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,191", + "created": 1610346619.19135, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 191.34998321533203, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5124.891996383667, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,191", + "created": 1610346619.191506, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 191.50590896606445, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5125.047922134399, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:19,191", + "created": 1610346619.191755, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 191.7550563812256, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5125.297069549561, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:19,191", + "created": 1610346619.191943, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 191.94293022155762, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5125.484943389893, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,192", + "created": 1610346619.192115, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 192.11506843566895, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5125.657081604004, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:19,192", + "created": 1610346619.192276, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 192.2760009765625, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5125.8180141448975, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:19,192", + "created": 1610346619.192428, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 192.4281120300293, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5125.970125198364, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:19,192", + "created": 1610346619.192575, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 192.57497787475586, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5126.116991043091, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:19,192", + "created": 1610346619.192667, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'1d385cd82db5453445fc2fdf5970407c7420bbc060e4e225b09f079189dfa42c'\"", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 148.26297760009766, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 192.66700744628906, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4313.078880310059, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 5126.209020614624, + "thread": 140634451068672, + "threadName": "Thread-8" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 31 64 63 38 34 38 33 63 33 61 31 62 66 31 66 63 37 65 31" + ], + "asctime": "2021-01-11 07:30:19,192", + "created": 1610346619.192857, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 31 64 63 38 34 38 33 63 33 61 31 62 66 31 66 63 37 65 31", + "module": "__init__", + "msecs": 192.857027053833, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5126.399040222168, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 31 64 63 38 34 38 33 63 33 61 31 62 66 31 66 63 37 65 31" + ], + "asctime": "2021-01-11 07:30:19,193", + "created": 1610346619.19302, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 31 64 63 38 34 38 33 63 33 61 31 62 66 31 66 63 37 65 31", + "module": "__init__", + "msecs": 193.02010536193848, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5126.562118530273, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,193", + "created": 1610346619.193096, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 193.09592247009277, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5126.637935638428, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:19,193", + "created": 1610346619.193177, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 193.1769847869873, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5126.718997955322, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,193", + "created": 1610346619.193264, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 193.26400756835938, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5126.806020736694, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,193", + "created": 1610346619.193336, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 193.33600997924805, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5126.878023147583, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,193", + "created": 1610346619.193405, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 193.4049129486084, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5126.946926116943, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,193", + "created": 1610346619.193456, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 193.45593452453613, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5126.997947692871, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,193", + "created": 1610346619.193512, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 193.511962890625, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5127.05397605896, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,193", + "created": 1610346619.193558, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 193.5579776763916, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5127.099990844727, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-server:", + "(64): 35 34 34 38 31 61 34 38 65 31 64 30 63 30 32 36 65 33 63 33 35 31 63 63 30 31 64 39 38 63 38 63 63 37 35 62 63 39 61 66 31 62 33 61 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 23 67" + ], + "asctime": "2021-01-11 07:30:19,193", + "created": 1610346619.193685, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 35 34 34 38 31 61 34 38 65 31 64 30 63 30 32 36 65 33 63 33 35 31 63 63 30 31 64 39 38 63 38 63 63 37 35 62 63 39 61 66 31 62 33 61 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 23 67", + "module": "__init__", + "msecs": 193.68505477905273, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5127.227067947388, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-client:", + "(64): 35 34 34 38 31 61 34 38 65 31 64 30 63 30 32 36 65 33 63 33 35 31 63 63 30 31 64 39 38 63 38 63 63 37 35 62 63 39 61 66 31 62 33 61 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 23 67" + ], + "asctime": "2021-01-11 07:30:19,193", + "created": 1610346619.193793, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 35 34 34 38 31 61 34 38 65 31 64 30 63 30 32 36 65 33 63 33 35 31 63 63 30 31 64 39 38 63 38 63 63 37 35 62 63 39 61 66 31 62 33 61 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 23 67", + "module": "__init__", + "msecs": 193.79305839538574, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5127.335071563721, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,193", + "created": 1610346619.1939, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 193.90010833740234, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5127.442121505737, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,193", + "created": 1610346619.193945, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 193.94493103027344, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5127.486944198608, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-server:", + "(4): 43 73 3a 3e" + ], + "asctime": "2021-01-11 07:30:19,194", + "created": 1610346619.194013, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (4): 43 73 3a 3e", + "module": "__init__", + "msecs": 194.01311874389648, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5127.555131912231, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-client:", + "(4): 43 73 3a 3e" + ], + "asctime": "2021-01-11 07:30:19,194", + "created": 1610346619.194063, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (4): 43 73 3a 3e", + "module": "__init__", + "msecs": 194.0629482269287, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5127.604961395264, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,194", + "created": 1610346619.19411, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 194.10991668701172, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5127.651929855347, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:19,194", + "created": 1610346619.194156, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 194.15593147277832, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5127.697944641113, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + "(124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 31 64 63 38 34 38 33 63 33 61 31 62 66 31 66 63 37 65 31 35 34 34 38 31 61 34 38 65 31 64 30 63 30 32 36 65 33 63 33 35 31 63 63 30 31 64 39 38 63 38 63 63 37 35 62 63 39 61 66 31 62 33 61 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 23 67 43 73" + ], + "asctime": "2021-01-11 07:30:19,194", + "created": 1610346619.194349, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 31 64 63 38 34 38 33 63 33 61 31 62 66 31 66 63 37 65 31 35 34 34 38 31 61 34 38 65 31 64 30 63 30 32 36 65 33 63 33 35 31 63 63 30 31 64 39 38 63 38 63 63 37 35 62 63 39 61 66 31 62 33 61 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 23 67 43 73", + "module": "stp", + "msecs": 194.3490505218506, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5127.891063690186, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: seed", + "status: okay", + "u'1dc8483c3a1bf1fc7e154481a48e1d0c026e3c351cc01d98c8cc75bc9af1b3a8'" + ], + "asctime": "2021-01-11 07:30:19,194", + "created": 1610346619.194468, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'1dc8483c3a1bf1fc7e154481a48e1d0c026e3c351cc01d98c8cc75bc9af1b3a8'\"", + "module": "__init__", + "msecs": 194.46802139282227, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5128.010034561157, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-01-06 22:49:01,148", - "created": 1609969741.148315, + "asctime": "2021-01-11 07:30:19,194", + "created": 1610346619.194542, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __authentificate_create_key__ to process received data", + "lineno": 492, + "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 148.3149528503418, + "msecs": 194.54193115234375, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4313.130855560303, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 5128.083944320679, + "thread": 140634451068672, + "threadName": "Thread-8" }, { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: authentification request, data_id: key", "status: okay", - "'bb3c1734a939e72078fa19ef1ee787c91935c91d9dab373dfcbcf8847e96e1ab8622e77d2f9c5921cba1fbeaab0b36b93b4d45d6ac2998c7516aa6bdbfdd99db'" + "'41ae5a3e375f6ef26562ec7f1c203d6e8110fa0bd72bb37be24bb45739fdfe9b7069b5746c953a4b07538e7f16e2364f25a62ab2f28004455695dccea4690950'" ], - "asctime": "2021-01-06 22:49:01,148", - "created": 1609969741.148392, + "asctime": "2021-01-11 07:30:19,194", + "created": 1610346619.194651, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: authentification request, data_id: key, status: okay, data: \"'bb3c1734a939e72078fa19ef1ee787c91935c91d9dab373dfcbcf8847e96e1ab8622e77d2f9c5921cba1fbeaab0b36b93b4d45d6ac2998c7516aa6bdbfdd99db'\"", + "lineno": 445, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'41ae5a3e375f6ef26562ec7f1c203d6e8110fa0bd72bb37be24bb45739fdfe9b7069b5746c953a4b07538e7f16e2364f25a62ab2f28004455695dccea4690950'\"", "module": "__init__", - "msecs": 148.3919620513916, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 194.65088844299316, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4313.2078647613525, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:01,148", - "created": 1609969741.148582, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 62 62 33 63 31 37 33 34 61 39 33 39 65 37 32 30 37 38 66 61 31 39 65 66 31 65 65 37 38 37 63 39 31 39 33 35 63 39 31 64 39 64 61 62 33 37 33 64 66 63 62 63 66 38 38 34 37 65 39 36 65 31 61 62 38 36 32 32 65 37 37 64 32 66 39 63 35 39 32 31 63 62 61 31 66 62 65 61 61 62 30 62 33 36 62 39 33 62 34 64 34 35 64 36 61 63 32 39 39 38 63 37 35 31 36 61 61 36 62 64 62 66 64 64 39 39 64 62 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d e9 b3 7a 9d", - "module": "test_helpers", - "msecs": 148.58198165893555, - "msg": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 62 62 33 63 31 37 33 34 61 39 33 39 65 37 32 30 37 38 66 61 31 39 65 66 31 65 65 37 38 37 63 39 31 39 33 35 63 39 31 64 39 64 61 62 33 37 33 64 66 63 62 63 66 38 38 34 37 65 39 36 65 31 61 62 38 36 32 32 65 37 37 64 32 66 39 63 35 39 32 31 63 62 61 31 66 62 65 61 61 62 30 62 33 36 62 39 33 62 34 64 34 35 64 36 61 63 32 39 39 38 63 37 35 31 36 61 61 36 62 64 62 66 64 64 39 39 64 62 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d e9 b3 7a 9d", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4313.3978843688965, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:01,148", - "created": 1609969741.148752, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 62 62 33 63 31 37 33 34 61 39 33 39 65 37 32 30 37 38 66 61 31 39 65 66 31 65 65 37 38 37 63 39 31 39 33 35 63 39 31 64 39 64 61 62 33 37 33 64 66 63 62 63 66 38 38 34 37 65 39 36 65 31 61 62 38 36 32 32 65 37 37 64 32 66 39 63 35 39 32 31 63 62 61 31 66 62 65 61 61 62 30 62 33 36 62 39 33 62 34 64 34 35 64 36 61 63 32 39 39 38 63 37 35 31 36 61 61 36 62 64 62 66 64 64 39 39 64 62 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d e9 b3 7a 9d", - "module": "test_helpers", - "msecs": 148.75197410583496, - "msg": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 62 62 33 63 31 37 33 34 61 39 33 39 65 37 32 30 37 38 66 61 31 39 65 66 31 65 65 37 38 37 63 39 31 39 33 35 63 39 31 64 39 64 61 62 33 37 33 64 66 63 62 63 66 38 38 34 37 65 39 36 65 31 61 62 38 36 32 32 65 37 37 64 32 66 39 63 35 39 32 31 63 62 61 31 66 62 65 61 61 62 30 62 33 36 62 39 33 62 34 64 34 35 64 36 61 63 32 39 39 38 63 37 35 31 36 61 61 36 62 64 62 66 64 64 39 39 64 62 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d e9 b3 7a 9d", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4313.567876815796, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 5128.192901611328, + "thread": 140634451068672, + "threadName": "Thread-8" }, { "args": [ - "SP server:", - "service: authentification request, data_id: key", - "status: okay", - "u'bb3c1734a939e72078fa19ef1ee787c91935c91d9dab373dfcbcf8847e96e1ab8622e77d2f9c5921cba1fbeaab0b36b93b4d45d6ac2998c7516aa6bdbfdd99db'" + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 31 61 65 35 61 33 65 33 37 35 66 36 65 66 32 36 35 36" ], - "asctime": "2021-01-06 22:49:01,148", - "created": 1609969741.148831, + "asctime": "2021-01-11 07:30:19,195", + "created": 1610346619.19545, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__tx__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'bb3c1734a939e72078fa19ef1ee787c91935c91d9dab373dfcbcf8847e96e1ab8622e77d2f9c5921cba1fbeaab0b36b93b4d45d6ac2998c7516aa6bdbfdd99db'\"", + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 31 61 65 35 61 33 65 33 37 35 66 36 65 66 32 36 35 36", "module": "__init__", - "msecs": 148.83089065551758, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 195.4500675201416, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4313.6467933654785, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 5128.992080688477, + "thread": 140634459461376, + "threadName": "Thread-7" }, { "args": [ - "SP server:", + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 31 61 65 35 61 33 65 33 37 35 66 36 65 66 32 36 35 36" + ], + "asctime": "2021-01-11 07:30:19,195", + "created": 1610346619.195563, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 31 61 65 35 61 33 65 33 37 35 66 36 65 66 32 36 35 36", + "module": "__init__", + "msecs": 195.56307792663574, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5129.105091094971, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,195", + "created": 1610346619.195612, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 195.61195373535156, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5129.1539669036865, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:19,195", + "created": 1610346619.195657, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 195.65701484680176, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5129.199028015137, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,195", + "created": 1610346619.195716, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 195.71590423583984, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5129.257917404175, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,195", + "created": 1610346619.195759, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 195.75905799865723, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5129.301071166992, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,195", + "created": 1610346619.195817, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 195.8169937133789, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5129.359006881714, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,195", + "created": 1610346619.195861, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 195.8611011505127, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5129.403114318848, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,195", + "created": 1610346619.195912, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 195.91188430786133, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5129.453897476196, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,195", + "created": 1610346619.195956, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 195.95599174499512, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5129.49800491333, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-client:", + "(64): 32 65 63 37 66 31 63 32 30 33 64 36 65 38 31 31 30 66 61 30 62 64 37 32 62 62 33 37 62 65 32 34 62 62 34 35 37 33 39 66 64 66 65 39 62 37 30 36 39 62 35 37 34 36 63 39 35 33 61 34 62 30 37 35" + ], + "asctime": "2021-01-11 07:30:19,196", + "created": 1610346619.19611, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 32 65 63 37 66 31 63 32 30 33 64 36 65 38 31 31 30 66 61 30 62 64 37 32 62 62 33 37 62 65 32 34 62 62 34 35 37 33 39 66 64 66 65 39 62 37 30 36 39 62 35 37 34 36 63 39 35 33 61 34 62 30 37 35", + "module": "__init__", + "msecs": 196.11001014709473, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5129.65202331543, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(64): 32 65 63 37 66 31 63 32 30 33 64 36 65 38 31 31 30 66 61 30 62 64 37 32 62 62 33 37 62 65 32 34 62 62 34 35 37 33 39 66 64 66 65 39 62 37 30 36 39 62 35 37 34 36 63 39 35 33 61 34 62 30 37 35" + ], + "asctime": "2021-01-11 07:30:19,196", + "created": 1610346619.196231, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 32 65 63 37 66 31 63 32 30 33 64 36 65 38 31 31 30 66 61 30 62 64 37 32 62 62 33 37 62 65 32 34 62 62 34 35 37 33 39 66 64 66 65 39 62 37 30 36 39 62 35 37 34 36 63 39 35 33 61 34 62 30 37 35", + "module": "__init__", + "msecs": 196.23088836669922, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5129.772901535034, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-client:", + "(64): 33 38 65 37 66 31 36 65 32 33 36 34 66 32 35 61 36 32 61 62 32 66 32 38 30 30 34 34 35 35 36 39 35 64 63 63 65 61 34 36 39 30 39 35 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 58 7d" + ], + "asctime": "2021-01-11 07:30:19,196", + "created": 1610346619.196401, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 33 38 65 37 66 31 36 65 32 33 36 34 66 32 35 61 36 32 61 62 32 66 32 38 30 30 34 34 35 35 36 39 35 64 63 63 65 61 34 36 39 30 39 35 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 58 7d", + "module": "__init__", + "msecs": 196.40088081359863, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5129.942893981934, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(64): 33 38 65 37 66 31 36 65 32 33 36 34 66 32 35 61 36 32 61 62 32 66 32 38 30 30 34 34 35 35 36 39 35 64 63 63 65 61 34 36 39 30 39 35 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 58 7d" + ], + "asctime": "2021-01-11 07:30:19,196", + "created": 1610346619.196497, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 33 38 65 37 66 31 36 65 32 33 36 34 66 32 35 61 36 32 61 62 32 66 32 38 30 30 34 34 35 35 36 39 35 64 63 63 65 61 34 36 39 30 39 35 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 58 7d", + "module": "__init__", + "msecs": 196.49696350097656, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5130.0389766693115, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,196", + "created": 1610346619.196596, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 196.5959072113037, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5130.137920379639, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,196", + "created": 1610346619.196638, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 196.6381072998047, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5130.18012046814, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-client:", + "(4): be 39 3a 3e" + ], + "asctime": "2021-01-11 07:30:19,196", + "created": 1610346619.196698, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (4): be 39 3a 3e", + "module": "__init__", + "msecs": 196.69795036315918, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5130.239963531494, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(4): be 39 3a 3e" + ], + "asctime": "2021-01-11 07:30:19,196", + "created": 1610346619.196744, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (4): be 39 3a 3e", + "module": "__init__", + "msecs": 196.74396514892578, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5130.285978317261, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,196", + "created": 1610346619.19679, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 196.78997993469238, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5130.331993103027, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:19,196", + "created": 1610346619.196833, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 196.83289527893066, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5130.374908447266, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + "(188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 31 61 65 35 61 33 65 33 37 35 66 36 65 66 32 36 35 36 32 65 63 37 66 31 63 32 30 33 64 36 65 38 31 31 30 66 61 30 62 64 37 32 62 62 33 37 62 65 32 34 62 62 34 35 37 33 39 66 64 66 65 39 62 37 30 36 39 62 35 37 34 36 63 39 35 33 61 34 62 30 37 35 33 38 65 37 66 31 36 65 32 33 36 34 66 32 35 61 36 32 61 62 32 66 32 38 30 30 34 34 35 35 36 39 35 64 63 63 65 61 34 36 39 30 39 35 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 58 7d be 39" + ], + "asctime": "2021-01-11 07:30:19,197", + "created": 1610346619.197005, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 31 61 65 35 61 33 65 33 37 35 66 36 65 66 32 36 35 36 32 65 63 37 66 31 63 32 30 33 64 36 65 38 31 31 30 66 61 30 62 64 37 32 62 62 33 37 62 65 32 34 62 62 34 35 37 33 39 66 64 66 65 39 62 37 30 36 39 62 35 37 34 36 63 39 35 33 61 34 62 30 37 35 33 38 65 37 66 31 36 65 32 33 36 34 66 32 35 61 36 32 61 62 32 66 32 38 30 30 34 34 35 35 36 39 35 64 63 63 65 61 34 36 39 30 39 35 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 58 7d be 39", + "module": "stp", + "msecs": 197.005033493042, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5130.547046661377, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: authentification request, data_id: key", + "status: okay", + "u'41ae5a3e375f6ef26562ec7f1c203d6e8110fa0bd72bb37be24bb45739fdfe9b7069b5746c953a4b07538e7f16e2364f25a62ab2f28004455695dccea4690950'" + ], + "asctime": "2021-01-11 07:30:19,197", + "created": 1610346619.197102, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'41ae5a3e375f6ef26562ec7f1c203d6e8110fa0bd72bb37be24bb45739fdfe9b7069b5746c953a4b07538e7f16e2364f25a62ab2f28004455695dccea4690950'\"", + "module": "__init__", + "msecs": 197.10206985473633, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5130.644083023071, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-01-06 22:49:01,148", - "created": 1609969741.148885, + "asctime": "2021-01-11 07:30:19,197", + "created": 1610346619.197157, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __authentificate_check_key__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 148.88501167297363, - "msg": "%s RX <- Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4313.700914382935, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-01-06 22:49:01,148", - "created": 1609969741.14895, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 148.95009994506836, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4313.766002655029, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:01,149", - "created": 1609969741.149059, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", - "module": "test_helpers", - "msecs": 149.05905723571777, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4313.874959945679, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:01,149", - "created": 1609969741.149148, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", - "module": "test_helpers", - "msecs": 149.14798736572266, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4313.963890075684, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-01-06 22:49:01,149", - "created": 1609969741.149221, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 149.22094345092773, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 4314.036846160889, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "__authentificate_process_feedback__" - ], - "asctime": "2021-01-06 22:49:01,149", - "created": 1609969741.149272, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __authentificate_process_feedback__ to process received data", - "module": "__init__", - "msecs": 149.27196502685547, + "msecs": 197.1569061279297, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4314.087867736816, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 5130.698919296265, + "thread": 140634459461376, + "threadName": "Thread-7" }, { "args": [ - "SP client:" + "prot-server:", + "TX ->", + "service: authentification response, data_id: key", + "status: okay", + "True" ], - "asctime": "2021-01-06 22:49:01,149", - "created": 1609969741.149316, + "asctime": "2021-01-11 07:30:19,197", + "created": 1610346619.197249, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 197.2489356994629, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5130.790948867798, + "thread": 140634459461376, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" + ], + "asctime": "2021-01-11 07:30:19,198", + "created": 1610346619.198329, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", + "module": "__init__", + "msecs": 198.32897186279297, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5131.870985031128, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" + ], + "asctime": "2021-01-11 07:30:19,198", + "created": 1610346619.198475, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", + "module": "__init__", + "msecs": 198.47488403320312, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5132.016897201538, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,198", + "created": 1610346619.198556, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 198.55594635009766, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5132.097959518433, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:19,198", + "created": 1610346619.198631, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 198.63104820251465, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5132.17306137085, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,198", + "created": 1610346619.198725, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 198.72498512268066, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5132.266998291016, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,198", + "created": 1610346619.198802, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 198.80199432373047, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5132.344007492065, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,198", + "created": 1610346619.19891, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 198.90999794006348, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5132.452011108398, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,198", + "created": 1610346619.198986, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 198.98605346679688, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5132.528066635132, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,199", + "created": 1610346619.199082, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 199.0818977355957, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5132.623910903931, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,199", + "created": 1610346619.199152, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 199.15199279785156, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5132.6940059661865, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,199", + "created": 1610346619.199258, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 199.25808906555176, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5132.800102233887, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,199", + "created": 1610346619.199333, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 199.33295249938965, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5132.874965667725, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-server:", + "(6): 11 d3 26 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:19,199", + "created": 1610346619.199424, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 11 d3 26 78 3a 3e", + "module": "__init__", + "msecs": 199.42402839660645, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5132.966041564941, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-client:", + "(6): 11 d3 26 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:19,199", + "created": 1610346619.1995, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 11 d3 26 78 3a 3e", + "module": "__init__", + "msecs": 199.50008392333984, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5133.042097091675, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,199", + "created": 1610346619.199546, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 199.54609870910645, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5133.088111877441, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:19,199", + "created": 1610346619.199586, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 199.5859146118164, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5133.127927780151, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78" + ], + "asctime": "2021-01-11 07:30:19,199", + "created": 1610346619.199669, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", + "module": "stp", + "msecs": 199.66888427734375, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5133.210897445679, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: key", + "status: okay", + "True" + ], + "asctime": "2021-01-11 07:30:19,199", + "created": 1610346619.199755, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 199.7549533843994, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5133.296966552734, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "prot-client:", + "__authentificate_process_feedback__" + ], + "asctime": "2021-01-11 07:30:19,199", + "created": 1610346619.199806, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", + "module": "__init__", + "msecs": 199.80597496032715, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5133.347988128662, + "thread": 140634451068672, + "threadName": "Thread-8" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:19,199", + "created": 1610346619.199853, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "INFO", "levelno": 20, - "lineno": 350, - "message": "SP client: Got positive authentification feedback", + "lineno": 360, + "message": "prot-client: Got positive authentification feedback", "module": "__init__", - "msecs": 149.31607246398926, + "msecs": 199.85294342041016, "msg": "%s Got positive authentification feedback", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4314.13197517395, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 5133.394956588745, + "thread": 140634451068672, + "threadName": "Thread-8" } ], - "msecs": 850.4090309143066, - "msg": "Server and Client connect callback triggered", + "msecs": 501.1870861053467, + "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5015.224933624268, - "thread": 140012350113600, + "relativeCreated": 5434.729099273682, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.7010929584503174 + "time_consumption": 0.3013341426849365 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:01,851", - "created": 1609969741.851376, + "asctime": "2021-01-11 07:30:19,502", + "created": 1610346619.502449, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6128,8 +12330,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:01,850", - "created": 1609969741.850959, + "asctime": "2021-01-11 07:30:19,501", + "created": 1610346619.501972, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6139,14 +12341,14 @@ "lineno": 22, "message": "Result (Authentification state of server): True ()", "module": "test", - "msecs": 850.959062576294, + "msecs": 501.971960067749, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5015.774965286255, - "thread": 140012350113600, + "relativeCreated": 5435.513973236084, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -6155,8 +12357,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:01,851", - "created": 1609969741.851165, + "asctime": "2021-01-11 07:30:19,502", + "created": 1610346619.502237, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6166,35 +12368,35 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = True ()", "module": "test", - "msecs": 851.1650562286377, + "msecs": 502.23708152770996, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5015.980958938599, - "thread": 140012350113600, + "relativeCreated": 5435.779094696045, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 851.3760566711426, + "msecs": 502.44903564453125, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5016.1919593811035, - "thread": 140012350113600, + "relativeCreated": 5435.991048812866, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0002110004425048828 + "time_consumption": 0.00021195411682128906 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:01,852", - "created": 1609969741.852004, + "asctime": "2021-01-11 07:30:19,503", + "created": 1610346619.503334, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6211,8 +12413,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:01,851", - "created": 1609969741.851665, + "asctime": "2021-01-11 07:30:19,503", + "created": 1610346619.503009, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6222,14 +12424,14 @@ "lineno": 22, "message": "Result (Authentification state of client): True ()", "module": "test", - "msecs": 851.6650199890137, + "msecs": 503.0090808868408, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5016.480922698975, - "thread": 140012350113600, + "relativeCreated": 5436.551094055176, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -6238,8 +12440,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:01,851", - "created": 1609969741.851841, + "asctime": "2021-01-11 07:30:19,503", + "created": 1610346619.503183, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6249,39 +12451,39 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = True ()", "module": "test", - "msecs": 851.8409729003906, + "msecs": 503.18288803100586, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5016.656875610352, - "thread": 140012350113600, + "relativeCreated": 5436.724901199341, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 852.0040512084961, + "msecs": 503.33404541015625, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5016.819953918457, - "thread": 140012350113600, + "relativeCreated": 5436.876058578491, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00016307830810546875 + "time_consumption": 0.00015115737915039062 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.7137961387634277, - "time_finished": "2021-01-06 22:49:01,852", - "time_start": "2021-01-06 22:49:01,138" + "time_consumption": 2.709181070327759, + "time_finished": "2021-01-11 07:30:19,503", + "time_start": "2021-01-11 07:30:16,794" }, "_7izDUEzYEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:48:56,877", - "created": 1609969736.877298, + "asctime": "2021-01-11 07:30:14,108", + "created": 1610346614.108684, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -6292,20 +12494,20 @@ "message": "_7izDUEzYEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 877.29811668396, + "msecs": 108.68406295776367, "msg": "_7izDUEzYEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 42.1140193939209, + "relativeCreated": 42.22607612609863, "testcaseLogger": [ { "args": [ "{'status': None, 'service_id': None, 'data': None, 'data_id': None}" ], - "asctime": "2021-01-06 22:48:56,877", - "created": 1609969736.877378, + "asctime": "2021-01-11 07:30:14,108", + "created": 1610346614.108765, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -6316,14 +12518,14 @@ "message": "Creating empty message object: {'status': None, 'service_id': None, 'data': None, 'data_id': None}", "module": "test_message_object", "moduleLogger": [], - "msecs": 877.377986907959, + "msecs": 108.7648868560791, "msg": "Creating empty message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 42.19388961791992, - "thread": 140012350113600, + "relativeCreated": 42.30690002441406, + "thread": 140634736203584, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -6331,8 +12533,8 @@ "args": [ "'service_id'" ], - "asctime": "2021-01-06 22:48:56,877", - "created": 1609969736.877529, + "asctime": "2021-01-11 07:30:14,108", + "created": 1610346614.108915, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6349,8 +12551,8 @@ "{'status': None, 'service_id': None, 'data': None, 'data_id': None}", "" ], - "asctime": "2021-01-06 22:48:56,877", - "created": 1609969736.877448, + "asctime": "2021-01-11 07:30:14,108", + "created": 1610346614.108836, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6360,14 +12562,14 @@ "lineno": 22, "message": "Result (service_id is part of the message object): {'status': None, 'service_id': None, 'data': None, 'data_id': None} ()", "module": "test", - "msecs": 877.4480819702148, + "msecs": 108.83593559265137, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 42.26398468017578, - "thread": 140012350113600, + "relativeCreated": 42.37794876098633, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -6375,8 +12577,8 @@ "service_id is part of the message object", "'service_id'" ], - "asctime": "2021-01-06 22:48:56,877", - "created": 1609969736.87749, + "asctime": "2021-01-11 07:30:14,108", + "created": 1610346614.108877, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6386,34 +12588,34 @@ "lineno": 30, "message": "Expectation (service_id is part of the message object): 'service_id' in result", "module": "test", - "msecs": 877.4900436401367, + "msecs": 108.87694358825684, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 42.305946350097656, - "thread": 140012350113600, + "relativeCreated": 42.4189567565918, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 877.5289058685303, + "msecs": 108.91509056091309, "msg": "service_id is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 42.34480857849121, - "thread": 140012350113600, + "relativeCreated": 42.45710372924805, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 3.886222839355469e-05 + "time_consumption": 3.814697265625e-05 }, { "args": [ "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}" ], - "asctime": "2021-01-06 22:48:56,877", - "created": 1609969736.877603, + "asctime": "2021-01-11 07:30:14,108", + "created": 1610346614.108988, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -6424,14 +12626,14 @@ "message": "Creating a maximum message object: {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", "module": "test_message_object", "moduleLogger": [], - "msecs": 877.6030540466309, + "msecs": 108.98804664611816, "msg": "Creating a maximum message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 42.4189567565918, - "thread": 140012350113600, + "relativeCreated": 42.530059814453125, + "thread": 140634736203584, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -6439,8 +12641,8 @@ "args": [ "'service_id'" ], - "asctime": "2021-01-06 22:48:56,877", - "created": 1609969736.877751, + "asctime": "2021-01-11 07:30:14,109", + "created": 1610346614.109136, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6457,8 +12659,8 @@ "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", "" ], - "asctime": "2021-01-06 22:48:56,877", - "created": 1609969736.877671, + "asctime": "2021-01-11 07:30:14,109", + "created": 1610346614.109057, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6468,14 +12670,14 @@ "lineno": 22, "message": "Result (service_id is part of the message object): {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'} ()", "module": "test", - "msecs": 877.6710033416748, + "msecs": 109.05694961547852, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 42.48690605163574, - "thread": 140012350113600, + "relativeCreated": 42.59896278381348, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -6483,8 +12685,8 @@ "service_id is part of the message object", "'service_id'" ], - "asctime": "2021-01-06 22:48:56,877", - "created": 1609969736.87771, + "asctime": "2021-01-11 07:30:14,109", + "created": 1610346614.109099, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6494,35 +12696,35 @@ "lineno": 30, "message": "Expectation (service_id is part of the message object): 'service_id' in result", "module": "test", - "msecs": 877.7101039886475, + "msecs": 109.09891128540039, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 42.5260066986084, - "thread": 140012350113600, + "relativeCreated": 42.64092445373535, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 877.7511119842529, + "msecs": 109.13610458374023, "msg": "service_id is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 42.56701469421387, - "thread": 140012350113600, + "relativeCreated": 42.678117752075195, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 4.100799560546875e-05 + "time_consumption": 3.719329833984375e-05 }, { "args": [ "'SID'", "" ], - "asctime": "2021-01-06 22:48:56,878", - "created": 1609969736.878006, + "asctime": "2021-01-11 07:30:14,109", + "created": 1610346614.109286, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6539,8 +12741,8 @@ "'SID'", "" ], - "asctime": "2021-01-06 22:48:56,877", - "created": 1609969736.877924, + "asctime": "2021-01-11 07:30:14,109", + "created": 1610346614.109208, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6550,14 +12752,14 @@ "lineno": 22, "message": "Result (Content in message object for service_id): 'SID' ()", "module": "test", - "msecs": 877.9239654541016, + "msecs": 109.2081069946289, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 42.7398681640625, - "thread": 140012350113600, + "relativeCreated": 42.75012016296387, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -6566,8 +12768,8 @@ "'SID'", "" ], - "asctime": "2021-01-06 22:48:56,877", - "created": 1609969736.877966, + "asctime": "2021-01-11 07:30:14,109", + "created": 1610346614.109247, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6577,39 +12779,39 @@ "lineno": 26, "message": "Expectation (Content in message object for service_id): result = 'SID' ()", "module": "test", - "msecs": 877.9659271240234, + "msecs": 109.24696922302246, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 42.781829833984375, - "thread": 140012350113600, + "relativeCreated": 42.78898239135742, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 878.0059814453125, + "msecs": 109.28606986999512, "msg": "Content in message object for service_id is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 42.82188415527344, - "thread": 140012350113600, + "relativeCreated": 42.82808303833008, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 4.00543212890625e-05 + "time_consumption": 3.910064697265625e-05 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0007078647613525391, - "time_finished": "2021-01-06 22:48:56,878", - "time_start": "2021-01-06 22:48:56,877" + "time_consumption": 0.0006020069122314453, + "time_finished": "2021-01-11 07:30:14,109", + "time_start": "2021-01-11 07:30:14,108" }, "_AlIUwEzZEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:48:56,878", - "created": 1609969736.878866, + "asctime": "2021-01-11 07:30:14,110", + "created": 1610346614.110166, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -6620,20 +12822,20 @@ "message": "_AlIUwEzZEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 878.8659572601318, + "msecs": 110.16607284545898, "msg": "_AlIUwEzZEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 43.68185997009277, + "relativeCreated": 43.708086013793945, "testcaseLogger": [ { "args": [ "{'status': None, 'service_id': None, 'data': None, 'data_id': None}" ], - "asctime": "2021-01-06 22:48:56,878", - "created": 1609969736.878942, + "asctime": "2021-01-11 07:30:14,110", + "created": 1610346614.11024, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -6644,14 +12846,14 @@ "message": "Creating empty message object: {'status': None, 'service_id': None, 'data': None, 'data_id': None}", "module": "test_message_object", "moduleLogger": [], - "msecs": 878.9420127868652, + "msecs": 110.23998260498047, "msg": "Creating empty message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 43.75791549682617, - "thread": 140012350113600, + "relativeCreated": 43.78199577331543, + "thread": 140634736203584, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -6659,8 +12861,8 @@ "args": [ "'data'" ], - "asctime": "2021-01-06 22:48:56,879", - "created": 1609969736.879094, + "asctime": "2021-01-11 07:30:14,110", + "created": 1610346614.110387, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6677,8 +12879,8 @@ "{'status': None, 'service_id': None, 'data': None, 'data_id': None}", "" ], - "asctime": "2021-01-06 22:48:56,879", - "created": 1609969736.879014, + "asctime": "2021-01-11 07:30:14,110", + "created": 1610346614.110309, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6688,14 +12890,14 @@ "lineno": 22, "message": "Result (data is part of the message object): {'status': None, 'service_id': None, 'data': None, 'data_id': None} ()", "module": "test", - "msecs": 879.0140151977539, + "msecs": 110.30888557434082, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 43.829917907714844, - "thread": 140012350113600, + "relativeCreated": 43.85089874267578, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -6703,8 +12905,8 @@ "data is part of the message object", "'data'" ], - "asctime": "2021-01-06 22:48:56,879", - "created": 1609969736.879055, + "asctime": "2021-01-11 07:30:14,110", + "created": 1610346614.110349, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6714,34 +12916,34 @@ "lineno": 30, "message": "Expectation (data is part of the message object): 'data' in result", "module": "test", - "msecs": 879.0550231933594, + "msecs": 110.34893989562988, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 43.87092590332031, - "thread": 140012350113600, + "relativeCreated": 43.890953063964844, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 879.0938854217529, + "msecs": 110.38708686828613, "msg": "data is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 43.90978813171387, - "thread": 140012350113600, + "relativeCreated": 43.929100036621094, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 3.886222839355469e-05 + "time_consumption": 3.814697265625e-05 }, { "args": [ "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}" ], - "asctime": "2021-01-06 22:48:56,879", - "created": 1609969736.879168, + "asctime": "2021-01-11 07:30:14,110", + "created": 1610346614.110463, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -6752,14 +12954,14 @@ "message": "Creating a maximum message object: {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", "module": "test_message_object", "moduleLogger": [], - "msecs": 879.1680335998535, + "msecs": 110.46290397644043, "msg": "Creating a maximum message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 43.98393630981445, - "thread": 140012350113600, + "relativeCreated": 44.00491714477539, + "thread": 140634736203584, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -6767,8 +12969,8 @@ "args": [ "'data'" ], - "asctime": "2021-01-06 22:48:56,879", - "created": 1609969736.879314, + "asctime": "2021-01-11 07:30:14,110", + "created": 1610346614.110607, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6785,8 +12987,8 @@ "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", "" ], - "asctime": "2021-01-06 22:48:56,879", - "created": 1609969736.879237, + "asctime": "2021-01-11 07:30:14,110", + "created": 1610346614.110531, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6796,14 +12998,14 @@ "lineno": 22, "message": "Result (data is part of the message object): {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'} ()", "module": "test", - "msecs": 879.2369365692139, + "msecs": 110.53109169006348, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 44.052839279174805, - "thread": 140012350113600, + "relativeCreated": 44.07310485839844, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -6811,8 +13013,8 @@ "data is part of the message object", "'data'" ], - "asctime": "2021-01-06 22:48:56,879", - "created": 1609969736.879276, + "asctime": "2021-01-11 07:30:14,110", + "created": 1610346614.11057, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6822,35 +13024,35 @@ "lineno": 30, "message": "Expectation (data is part of the message object): 'data' in result", "module": "test", - "msecs": 879.2760372161865, + "msecs": 110.56995391845703, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 44.09193992614746, - "thread": 140012350113600, + "relativeCreated": 44.11196708679199, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 879.3139457702637, + "msecs": 110.60690879821777, "msg": "data is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 44.12984848022461, - "thread": 140012350113600, + "relativeCreated": 44.148921966552734, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 3.790855407714844e-05 + "time_consumption": 3.695487976074219e-05 }, { "args": [ "'D'", "" ], - "asctime": "2021-01-06 22:48:56,879", - "created": 1609969736.879467, + "asctime": "2021-01-11 07:30:14,110", + "created": 1610346614.110758, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6867,8 +13069,8 @@ "'D'", "" ], - "asctime": "2021-01-06 22:48:56,879", - "created": 1609969736.879384, + "asctime": "2021-01-11 07:30:14,110", + "created": 1610346614.110677, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6878,14 +13080,14 @@ "lineno": 22, "message": "Result (Content in message object for data): 'D' ()", "module": "test", - "msecs": 879.3840408325195, + "msecs": 110.67700386047363, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 44.19994354248047, - "thread": 140012350113600, + "relativeCreated": 44.219017028808594, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -6894,8 +13096,8 @@ "'D'", "" ], - "asctime": "2021-01-06 22:48:56,879", - "created": 1609969736.879424, + "asctime": "2021-01-11 07:30:14,110", + "created": 1610346614.110716, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6905,39 +13107,39 @@ "lineno": 26, "message": "Expectation (Content in message object for data): result = 'D' ()", "module": "test", - "msecs": 879.4240951538086, + "msecs": 110.71610450744629, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 44.23999786376953, - "thread": 140012350113600, + "relativeCreated": 44.25811767578125, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 879.4670104980469, + "msecs": 110.75806617736816, "msg": "Content in message object for data is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 44.28291320800781, - "thread": 140012350113600, + "relativeCreated": 44.300079345703125, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 4.291534423828125e-05 + "time_consumption": 4.1961669921875e-05 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0006010532379150391, - "time_finished": "2021-01-06 22:48:56,879", - "time_start": "2021-01-06 22:48:56,878" + "time_consumption": 0.0005919933319091797, + "time_finished": "2021-01-11 07:30:14,110", + "time_start": "2021-01-11 07:30:14,110" }, "_CZeooE0YEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:49:03,189", - "created": 1609969743.189239, + "asctime": "2021-01-11 07:30:21,480", + "created": 1610346621.480687, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -6948,1112 +13150,2427 @@ "message": "_CZeooE0YEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 189.2390251159668, + "msecs": 480.68690299987793, "msg": "_CZeooE0YEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6354.054927825928, + "relativeCreated": 7414.228916168213, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:03,197", - "created": 1609969743.197869, + "asctime": "2021-01-11 07:30:21,490", + "created": 1610346621.49019, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:03,189", - "created": 1609969743.189771, + "asctime": "2021-01-11 07:30:21,481", + "created": 1610346621.48184, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 189.77093696594238, + "msecs": 481.8398952484131, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6354.586839675903, - "thread": 140012350113600, + "relativeCreated": 7415.381908416748, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:03,190", - "created": 1609969743.190052, + "asctime": "2021-01-11 07:30:21,483", + "created": 1610346621.483743, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 190.05203247070312, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 483.74295234680176, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6354.867935180664, - "thread": 140012350113600, + "relativeCreated": 7417.284965515137, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:03,190", - "created": 1609969743.190303, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 190.30308723449707, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6355.118989944458, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:03,190", - "created": 1609969743.190504, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 190.5040740966797, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6355.319976806641, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:03,190", - "created": 1609969743.190672, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 190.6719207763672, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6355.487823486328, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:03,190", - "created": 1609969743.190832, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 190.83189964294434, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6355.647802352905, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:03,191", - "created": 1609969743.191011, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 191.0109519958496, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6355.826854705811, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:03,191", - "created": 1609969743.191207, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 191.2069320678711, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6356.022834777832, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:03,191", - "created": 1609969743.191384, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 191.38407707214355, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6356.1999797821045, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:03,191", - "created": 1609969743.191558, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 191.5578842163086, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6356.3737869262695, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:03,191", - "created": 1609969743.191736, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 191.73598289489746, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6356.551885604858, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:03,191", - "created": 1609969743.191931, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 191.93100929260254, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6356.7469120025635, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:03,192", - "created": 1609969743.192118, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 192.11792945861816, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6356.933832168579, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:03,192", - "created": 1609969743.19228, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 192.28005409240723, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6357.095956802368, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:03,192", - "created": 1609969743.19246, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 192.4600601196289, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6357.27596282959, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:03,192", - "created": 1609969743.192635, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 192.63505935668945, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6357.45096206665, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:03,192", - "created": 1609969743.192813, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 192.81291961669922, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6357.62882232666, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:03,192", - "created": 1609969743.192973, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 192.97289848327637, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6357.788801193237, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:03,193", - "created": 1609969743.193128, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 193.12810897827148, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6357.944011688232, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:03,193", - "created": 1609969743.193327, + "asctime": "2021-01-11 07:30:21,484", + "created": 1610346621.484094, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 193.3269500732422, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 484.09390449523926, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6358.142852783203, - "thread": 140012350113600, + "relativeCreated": 7417.635917663574, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:03,193", - "created": 1609969743.193695, + "asctime": "2021-01-11 07:30:21,484", + "created": 1610346621.484558, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 193.695068359375, + "msecs": 484.55810546875, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6358.510971069336, - "thread": 140012350113600, + "relativeCreated": 7418.100118637085, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:03,193", - "created": 1609969743.193904, + "asctime": "2021-01-11 07:30:21,484", + "created": 1610346621.484781, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 193.90392303466797, + "msecs": 484.78102684020996, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6358.719825744629, - "thread": 140012350113600, + "relativeCreated": 7418.323040008545, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:03,194", - "created": 1609969743.194146, + "asctime": "2021-01-11 07:30:21,485", + "created": 1610346621.485066, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 194.14591789245605, + "msecs": 485.0659370422363, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6358.961820602417, - "thread": 140012350113600, + "relativeCreated": 7418.607950210571, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:03,194", - "created": 1609969743.194324, + "asctime": "2021-01-11 07:30:21,485", + "created": 1610346621.485285, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 194.32401657104492, + "msecs": 485.28504371643066, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6359.139919281006, - "thread": 140012350113600, + "relativeCreated": 7418.827056884766, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:03,194", - "created": 1609969743.194481, + "asctime": "2021-01-11 07:30:21,485", + "created": 1610346621.485592, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 194.48089599609375, + "msecs": 485.5918884277344, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6359.296798706055, - "thread": 140012350113600, + "relativeCreated": 7419.133901596069, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:03,194", - "created": 1609969743.194637, + "asctime": "2021-01-11 07:30:21,485", + "created": 1610346621.485868, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 194.63706016540527, + "msecs": 485.867977142334, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6359.452962875366, - "thread": 140012350113600, + "relativeCreated": 7419.409990310669, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:03,194", - "created": 1609969743.194822, + "asctime": "2021-01-11 07:30:21,486", + "created": 1610346621.486147, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 194.8220729827881, + "msecs": 486.1469268798828, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6359.637975692749, - "thread": 140012350113600, + "relativeCreated": 7419.688940048218, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:03,194", - "created": 1609969743.195, + "asctime": "2021-01-11 07:30:21,486", + "created": 1610346621.486424, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 194.99993324279785, + "msecs": 486.4239692687988, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6359.815835952759, - "thread": 140012350113600, + "relativeCreated": 7419.965982437134, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:03,195", - "created": 1609969743.195818, + "asctime": "2021-01-11 07:30:21,486", + "created": 1610346621.48668, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 195.8179473876953, + "msecs": 486.6800308227539, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6360.633850097656, - "thread": 140012350113600, + "relativeCreated": 7420.222043991089, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:03,196", - "created": 1609969743.196037, + "asctime": "2021-01-11 07:30:21,486", + "created": 1610346621.486941, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 196.03705406188965, + "msecs": 486.9410991668701, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6360.852956771851, - "thread": 140012350113600, + "relativeCreated": 7420.483112335205, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:03,196", - "created": 1609969743.196218, + "asctime": "2021-01-11 07:30:21,487", + "created": 1610346621.487165, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 196.21801376342773, + "msecs": 487.1649742126465, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6361.033916473389, - "thread": 140012350113600, + "relativeCreated": 7420.706987380981, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:03,196", - "created": 1609969743.196418, + "asctime": "2021-01-11 07:30:21,487", + "created": 1610346621.487435, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 196.41804695129395, + "msecs": 487.43510246276855, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6361.233949661255, - "thread": 140012350113600, + "relativeCreated": 7420.9771156311035, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:03,196", - "created": 1609969743.196609, + "asctime": "2021-01-11 07:30:21,487", + "created": 1610346621.487833, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 196.6090202331543, + "msecs": 487.83302307128906, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6361.424922943115, - "thread": 140012350113600, + "relativeCreated": 7421.375036239624, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:03,196", - "created": 1609969743.196775, + "asctime": "2021-01-11 07:30:21,487", + "created": 1610346621.48793, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 196.77495956420898, + "msecs": 487.9300594329834, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6361.59086227417, - "thread": 140012350113600, + "relativeCreated": 7421.472072601318, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:03,196", - "created": 1609969743.19695, + "asctime": "2021-01-11 07:30:21,488", + "created": 1610346621.488024, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 196.94995880126953, + "msecs": 488.0239963531494, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6361.7658615112305, - "thread": 140012350113600, + "relativeCreated": 7421.566009521484, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:03,197", - "created": 1609969743.197129, + "asctime": "2021-01-11 07:30:21,488", + "created": 1610346621.488095, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 197.1290111541748, + "msecs": 488.0950450897217, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6361.944913864136, - "thread": 140012350113600, + "relativeCreated": 7421.637058258057, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:03,197", - "created": 1609969743.1973, + "asctime": "2021-01-11 07:30:21,488", + "created": 1610346621.488224, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 197.29995727539062, + "msecs": 488.2240295410156, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6362.115859985352, - "thread": 140012350113600, + "relativeCreated": 7421.766042709351, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:03,197", - "created": 1609969743.197468, + "asctime": "2021-01-11 07:30:21,488", + "created": 1610346621.488351, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 197.46804237365723, + "msecs": 488.35110664367676, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6362.283945083618, - "thread": 140012350113600, + "relativeCreated": 7421.893119812012, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:03,197", - "created": 1609969743.197626, + "asctime": "2021-01-11 07:30:21,488", + "created": 1610346621.488484, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 197.62611389160156, + "msecs": 488.4839057922363, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6362.4420166015625, - "thread": 140012350113600, + "relativeCreated": 7422.025918960571, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:03,197", - "created": 1609969743.197816, + "asctime": "2021-01-11 07:30:21,488", + "created": 1610346621.488565, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 197.8158950805664, + "msecs": 488.56496810913086, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6362.631797790527, - "thread": 140012350113600, + "relativeCreated": 7422.106981277466, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:21,488", + "created": 1610346621.48879, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 488.79003524780273, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7422.332048416138, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:21,488", + "created": 1610346621.488894, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 488.893985748291, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7422.435998916626, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:21,489", + "created": 1610346621.489073, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 489.0730381011963, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7422.615051269531, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:21,489", + "created": 1610346621.48914, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 489.1400337219238, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7422.682046890259, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:21,489", + "created": 1610346621.489207, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 489.20702934265137, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7422.749042510986, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:21,489", + "created": 1610346621.489277, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 489.2768859863281, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7422.818899154663, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:21,489", + "created": 1610346621.489334, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 489.3341064453125, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7422.8761196136475, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:21,489", + "created": 1610346621.489392, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 489.3920421600342, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7422.934055328369, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:21,489", + "created": 1610346621.489473, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 489.4731044769287, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7423.015117645264, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:21,489", + "created": 1610346621.489522, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 489.52198028564453, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7423.0639934539795, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:21,489", + "created": 1610346621.489565, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 489.5648956298828, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7423.106908798218, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:21,489", + "created": 1610346621.489614, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 489.61400985717773, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7423.156023025513, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:21,489", + "created": 1610346621.489661, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 489.66097831726074, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7423.202991485596, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:21,489", + "created": 1610346621.489708, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 489.70794677734375, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7423.249959945679, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:21,489", + "created": 1610346621.489752, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 489.75205421447754, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7423.2940673828125, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:21,489", + "created": 1610346621.489798, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 489.79806900024414, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7423.340082168579, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:21,489", + "created": 1610346621.489842, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 489.8419380187988, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7423.383951187134, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:21,489", + "created": 1610346621.489971, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 489.9709224700928, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7423.512935638428, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:21,490", + "created": 1610346621.490043, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 490.04292488098145, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7423.584938049316, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:21,490", + "created": 1610346621.490115, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 490.1149272918701, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7423.656940460205, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 197.86906242370605, + "msecs": 490.1900291442871, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6362.684965133667, - "thread": 140012350113600, + "relativeCreated": 7423.732042312622, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 5.316734313964844e-05 + "time_consumption": 7.510185241699219e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:03,197", - "created": 1609969743.197974, + "asctime": "2021-01-11 07:30:21,834", + "created": 1610346621.834482, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:21,490", + "created": 1610346621.49032, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 490.31996726989746, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7423.861980438232, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:21,490", + "created": 1610346621.490441, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 490.44108390808105, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7423.983097076416, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:21,490", + "created": 1610346621.490553, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 490.5529022216797, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7424.094915390015, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:21,490", + "created": 1610346621.490731, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 490.73100090026855, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7424.2730140686035, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:21,490", + "created": 1610346621.490962, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 490.96202850341797, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7424.504041671753, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:21,491", + "created": 1610346621.491042, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 491.041898727417, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7424.583911895752, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:21,491", + "created": 1610346621.491165, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 491.1649227142334, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7424.706935882568, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:21,491", + "created": 1610346621.491855, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 491.8549060821533, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7425.396919250488, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:21,492", + "created": 1610346621.492031, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 492.0310974121094, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7425.573110580444, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,492", + "created": 1610346621.492112, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 492.1119213104248, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7425.65393447876, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:21,492", + "created": 1610346621.492186, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 492.1860694885254, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7425.72808265686, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,492", + "created": 1610346621.492287, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 492.28692054748535, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7425.82893371582, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,492", + "created": 1610346621.492345, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 492.34509468078613, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7425.887107849121, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,492", + "created": 1610346621.492415, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 492.4149513244629, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7425.956964492798, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,492", + "created": 1610346621.492462, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 492.4619197845459, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7426.003932952881, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,492", + "created": 1610346621.49252, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 492.5200939178467, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7426.062107086182, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,492", + "created": 1610346621.492565, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 492.5649166107178, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7426.106929779053, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,492", + "created": 1610346621.492629, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 492.6290512084961, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7426.171064376831, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,492", + "created": 1610346621.492677, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 492.6769733428955, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7426.2189865112305, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-client:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:21,492", + "created": 1610346621.492747, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 492.74706840515137, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7426.289081573486, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-server:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:21,492", + "created": 1610346621.492802, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 492.8019046783447, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7426.34391784668, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,492", + "created": 1610346621.492853, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 492.85292625427246, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7426.394939422607, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:21,492", + "created": 1610346621.492902, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 492.9020404815674, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7426.444053649902, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" + ], + "asctime": "2021-01-11 07:30:21,493", + "created": 1610346621.493003, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", + "module": "stp", + "msecs": 493.00289154052734, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7426.544904708862, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:21,493", + "created": 1610346621.493123, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 493.12305450439453, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7426.6650676727295, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:21,493", + "created": 1610346621.493186, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 493.18599700927734, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7426.728010177612, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:21,493", + "created": 1610346621.493267, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 493.2670593261719, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7426.809072494507, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:21,500", + "created": 1610346621.500399, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 500.399112701416, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7433.941125869751, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:21,500", + "created": 1610346621.500535, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 500.5350112915039, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7434.077024459839, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,500", + "created": 1610346621.500601, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 500.60105323791504, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7434.14306640625, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:21,500", + "created": 1610346621.500685, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 500.6849765777588, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7434.226989746094, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,500", + "created": 1610346621.500779, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 500.7789134979248, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7434.32092666626, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,500", + "created": 1610346621.500851, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 500.8509159088135, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7434.392929077148, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,500", + "created": 1610346621.500958, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 500.9579658508301, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7434.499979019165, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,501", + "created": 1610346621.501035, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 501.0349750518799, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7434.576988220215, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,501", + "created": 1610346621.501132, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 501.1320114135742, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7434.674024581909, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,501", + "created": 1610346621.501204, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 501.2040138244629, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7434.746026992798, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,501", + "created": 1610346621.501308, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 501.3079643249512, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7434.849977493286, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,501", + "created": 1610346621.501379, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 501.37901306152344, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7434.921026229858, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:21,501", + "created": 1610346621.501516, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 501.51610374450684, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7435.058116912842, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:21,501", + "created": 1610346621.50161, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 501.61004066467285, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7435.152053833008, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,501", + "created": 1610346621.501699, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 501.69897079467773, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7435.240983963013, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:21,501", + "created": 1610346621.501777, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 501.77693367004395, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7435.318946838379, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:21,501", + "created": 1610346621.501932, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 501.93190574645996, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7435.473918914795, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:21,502", + "created": 1610346621.502125, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 502.1250247955322, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7435.667037963867, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:21,502", + "created": 1610346621.502214, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 502.2139549255371, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7435.755968093872, + "thread": 140633872267008, + "threadName": "Thread-12" + } + ], + "msecs": 834.481954574585, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7768.02396774292, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.33226799964904785 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:21,835", + "created": 1610346621.835468, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -8064,21 +15581,21 @@ "message": "Identical secrets set", "module": "test_communication", "moduleLogger": [], - "msecs": 197.97396659851074, + "msecs": 835.468053817749, "msg": "Identical secrets set", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6362.789869308472, - "thread": 140012350113600, + "relativeCreated": 7769.010066986084, + "thread": 140634736203584, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-06 22:49:03,499", - "created": 1609969743.499295, + "asctime": "2021-01-11 07:30:22,137", + "created": 1610346622.137686, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -8091,79 +15608,79 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:03,198", - "created": 1609969743.198071, + "asctime": "2021-01-11 07:30:21,836", + "created": 1610346621.836027, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 724, - "message": "SP client: TX -> Authentification is required. Message service: 17, data_id: 34, status: okay, data: 'msg1_data_to_be_transfered' will be ignored.", + "lineno": 736, + "message": "prot-client: Authentification is required. TX-Message service: 17, data_id: 34, status: okay, data: 'msg1_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 198.07100296020508, - "msg": "%s TX -> Authentification is required. Message %s, %s, data: %s will be ignored.", + "msecs": 836.0269069671631, + "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6362.886905670166, - "thread": 140012350113600, + "relativeCreated": 7769.568920135498, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "0.25", + "prot-server:", + "0.28705533596837945", "17", "34" ], - "asctime": "2021-01-06 22:49:03,498", - "created": 1609969743.498927, + "asctime": "2021-01-11 07:30:22,137", + "created": 1610346622.137295, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP server: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 34) not in buffer.", + "lineno": 668, + "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 498.92711639404297, + "msecs": 137.29500770568848, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6663.743019104004, - "thread": 140012350113600, + "relativeCreated": 8070.837020874023, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 499.2949962615967, + "msecs": 137.68601417541504, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6664.110898971558, - "thread": 140012350113600, + "relativeCreated": 8071.22802734375, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00036787986755371094 + "time_consumption": 0.0003910064697265625 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:03,500", - "created": 1609969743.500034, + "asctime": "2021-01-11 07:30:22,138", + "created": 1610346622.138416, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8180,8 +15697,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:03,499", - "created": 1609969743.499654, + "asctime": "2021-01-11 07:30:22,138", + "created": 1610346622.138058, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8191,14 +15708,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): False ()", "module": "test", - "msecs": 499.65405464172363, + "msecs": 138.05794715881348, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6664.469957351685, - "thread": 140012350113600, + "relativeCreated": 8071.599960327148, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -8207,8 +15724,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:03,499", - "created": 1609969743.499853, + "asctime": "2021-01-11 07:30:22,138", + "created": 1610346622.138245, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8218,35 +15735,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = False ()", "module": "test", - "msecs": 499.85289573669434, + "msecs": 138.2451057434082, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6664.668798446655, - "thread": 140012350113600, + "relativeCreated": 8071.787118911743, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 500.0340938568115, + "msecs": 138.41605186462402, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6664.8499965667725, - "thread": 140012350113600, + "relativeCreated": 8071.958065032959, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0001811981201171875 + "time_consumption": 0.0001709461212158203 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:03,500", - "created": 1609969743.500624, + "asctime": "2021-01-11 07:30:22,139", + "created": 1610346622.139127, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8263,8 +15780,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:03,500", - "created": 1609969743.500303, + "asctime": "2021-01-11 07:30:22,138", + "created": 1610346622.138686, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8274,14 +15791,14 @@ "lineno": 22, "message": "Result (Received message on server side): None ()", "module": "test", - "msecs": 500.3030300140381, + "msecs": 138.685941696167, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6665.118932723999, - "thread": 140012350113600, + "relativeCreated": 8072.227954864502, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -8290,8 +15807,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:03,500", - "created": 1609969743.500466, + "asctime": "2021-01-11 07:30:22,138", + "created": 1610346622.138959, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8301,32 +15818,32 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = None ()", "module": "test", - "msecs": 500.46610832214355, + "msecs": 138.95893096923828, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6665.2820110321045, - "thread": 140012350113600, + "relativeCreated": 8072.500944137573, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 500.6239414215088, + "msecs": 139.12701606750488, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6665.43984413147, - "thread": 140012350113600, + "relativeCreated": 8072.66902923584, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00015783309936523438 + "time_consumption": 0.00016808509826660156 }, { "args": [], - "asctime": "2021-01-06 22:49:03,802", - "created": 1609969743.802396, + "asctime": "2021-01-11 07:30:22,441", + "created": 1610346622.441026, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -8339,79 +15856,79 @@ "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:03,500", - "created": 1609969743.500941, + "asctime": "2021-01-11 07:30:22,139", + "created": 1610346622.139461, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 724, - "message": "SP server: TX -> Authentification is required. Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", + "lineno": 736, + "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 500.94103813171387, - "msg": "%s TX -> Authentification is required. Message %s, %s, data: %s will be ignored.", + "msecs": 139.46104049682617, + "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6665.756940841675, - "thread": 140012350113600, + "relativeCreated": 8073.003053665161, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", - "0.25", + "prot-client:", + "0.28705533596837945", "17", "35" ], - "asctime": "2021-01-06 22:49:03,802", - "created": 1609969743.802052, + "asctime": "2021-01-11 07:30:22,440", + "created": 1610346622.440613, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP client: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 35) not in buffer.", + "lineno": 668, + "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 802.0520210266113, + "msecs": 440.6130313873291, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6966.867923736572, - "thread": 140012350113600, + "relativeCreated": 8374.155044555664, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 802.3960590362549, + "msecs": 441.025972366333, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6967.211961746216, - "thread": 140012350113600, + "relativeCreated": 8374.567985534668, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0003440380096435547 + "time_consumption": 0.00041294097900390625 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:03,803", - "created": 1609969743.803101, + "asctime": "2021-01-11 07:30:22,441", + "created": 1610346622.441798, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8428,8 +15945,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:03,802", - "created": 1609969743.80274, + "asctime": "2021-01-11 07:30:22,441", + "created": 1610346622.44139, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8439,14 +15956,14 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): False ()", "module": "test", - "msecs": 802.7400970458984, + "msecs": 441.3900375366211, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6967.555999755859, - "thread": 140012350113600, + "relativeCreated": 8374.932050704956, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -8455,8 +15972,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:03,802", - "created": 1609969743.802927, + "asctime": "2021-01-11 07:30:22,441", + "created": 1610346622.441623, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8466,35 +15983,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = False ()", "module": "test", - "msecs": 802.9270172119141, + "msecs": 441.6229724884033, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6967.742919921875, - "thread": 140012350113600, + "relativeCreated": 8375.164985656738, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 803.1010627746582, + "msecs": 441.79797172546387, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6967.916965484619, - "thread": 140012350113600, + "relativeCreated": 8375.339984893799, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00017404556274414062 + "time_consumption": 0.00017499923706054688 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:03,803", - "created": 1609969743.803695, + "asctime": "2021-01-11 07:30:22,442", + "created": 1610346622.442548, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8511,8 +16028,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:03,803", - "created": 1609969743.803376, + "asctime": "2021-01-11 07:30:22,442", + "created": 1610346622.442135, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8522,14 +16039,14 @@ "lineno": 22, "message": "Result (Received message on client side): None ()", "module": "test", - "msecs": 803.3759593963623, + "msecs": 442.1350955963135, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6968.191862106323, - "thread": 140012350113600, + "relativeCreated": 8375.677108764648, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -8538,8 +16055,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:03,803", - "created": 1609969743.803536, + "asctime": "2021-01-11 07:30:22,442", + "created": 1610346622.442326, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8549,35 +16066,35 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = None ()", "module": "test", - "msecs": 803.5359382629395, + "msecs": 442.3260688781738, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6968.3518409729, - "thread": 140012350113600, + "relativeCreated": 8375.868082046509, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 803.6949634552002, + "msecs": 442.5480365753174, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6968.510866165161, - "thread": 140012350113600, + "relativeCreated": 8376.090049743652, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0001590251922607422 + "time_consumption": 0.0002219676971435547 }, { "args": [ 17, 34 ], - "asctime": "2021-01-06 22:49:03,804", - "created": 1609969743.804139, + "asctime": "2021-01-11 07:30:22,443", + "created": 1610346622.443257, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -8590,46 +16107,46 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", "service: 17, data_id: 34" ], - "asctime": "2021-01-06 22:49:03,803", - "created": 1609969743.803978, + "asctime": "2021-01-11 07:30:22,443", + "created": 1610346622.443074, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: 17, data_id: 34) to the authentification whitelist", + "lineno": 556, + "message": "prot-client: Adding Message (service: 17, data_id: 34) to the authentification whitelist", "module": "__init__", - "msecs": 803.9779663085938, + "msecs": 443.07398796081543, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6968.793869018555, - "thread": 140012350113600, + "relativeCreated": 8376.61600112915, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 804.1388988494873, + "msecs": 443.25709342956543, "msg": "Added msg1 to client whitelist (sid=%d, did=%d)", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6968.954801559448, - "thread": 140012350113600, + "relativeCreated": 8376.7991065979, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0001609325408935547 + "time_consumption": 0.00018310546875 }, { "args": [], - "asctime": "2021-01-06 22:49:04,106", - "created": 1609969744.106978, + "asctime": "2021-01-11 07:30:22,745", + "created": 1610346622.745616, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -8642,150 +16159,582 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:03,804", - "created": 1609969743.804442, + "asctime": "2021-01-11 07:30:22,443", + "created": 1610346622.443627, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 445, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 804.4419288635254, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 443.62711906433105, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6969.257831573486, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:03,804", - "created": 1609969743.804984, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "test_helpers", - "msecs": 804.9840927124023, - "msg": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6969.799995422363, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:03,805", - "created": 1609969743.805401, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "test_helpers", - "msecs": 805.401086807251, - "msg": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6970.216989517212, - "thread": 140012350113600, + "relativeCreated": 8377.169132232666, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:" + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-06 22:49:03,805", - "created": 1609969743.805711, + "asctime": "2021-01-11 07:30:22,460", + "created": 1610346622.460415, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 460.4148864746094, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 8393.956899642944, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:22,460", + "created": 1610346622.460924, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 460.9239101409912, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 8394.465923309326, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:22,461", + "created": 1610346622.461133, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 461.1330032348633, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 8394.675016403198, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:22,461", + "created": 1610346622.461325, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 461.32493019104004, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 8394.866943359375, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:22,461", + "created": 1610346622.461647, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 461.64703369140625, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 8395.189046859741, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:22,461", + "created": 1610346622.461878, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 461.87806129455566, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 8395.42007446289, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:22,462", + "created": 1610346622.462156, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 462.1560573577881, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 8395.698070526123, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:22,462", + "created": 1610346622.462442, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 462.44192123413086, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 8395.983934402466, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:22,462", + "created": 1610346622.462652, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 462.65196800231934, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 8396.193981170654, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:22,462", + "created": 1610346622.462809, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 462.80908584594727, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 8396.351099014282, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-client:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" + ], + "asctime": "2021-01-11 07:30:22,463", + "created": 1610346622.463202, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", + "module": "__init__", + "msecs": 463.20199966430664, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 8396.744012832642, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-server:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" + ], + "asctime": "2021-01-11 07:30:22,463", + "created": 1610346622.463466, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", + "module": "__init__", + "msecs": 463.46592903137207, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 8397.007942199707, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:22,463", + "created": 1610346622.463705, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 463.70506286621094, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 8397.247076034546, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:22,463", + "created": 1610346622.463916, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 463.9160633087158, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 8397.45807647705, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:22,464", + "created": 1610346622.464109, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 464.108943939209, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 8397.650957107544, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:22,464", + "created": 1610346622.464265, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 464.2651081085205, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 8397.807121276855, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + "(88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b" + ], + "asctime": "2021-01-11 07:30:22,464", + "created": 1610346622.464664, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", + "module": "stp", + "msecs": 464.6639823913574, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 8398.205995559692, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: 17, data_id: 34", + "status: okay", + "u'msg1_data_to_be_transfered'" + ], + "asctime": "2021-01-11 07:30:22,465", + "created": 1610346622.465087, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 465.0869369506836, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 8398.628950119019, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:22,465", + "created": 1610346622.465284, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 441, - "message": "SP server: RX <- Authentification is required. Message will be ignored.", + "lineno": 463, + "message": "prot-server: Authentification is required. Incomming message will be ignored.", "module": "__init__", - "msecs": 805.711030960083, - "msg": "%s RX <- Authentification is required. Message will be ignored.", + "msecs": 465.2841091156006, + "msg": "%s Authentification is required. Incomming message will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6970.526933670044, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 8398.826122283936, + "thread": 140634425890560, + "threadName": "Thread-11" }, { "args": [ - "SP server:", - "0.25", + "prot-server:", + "0.28705533596837945", "17", "34" ], - "asctime": "2021-01-06 22:49:04,106", - "created": 1609969744.106603, + "asctime": "2021-01-11 07:30:22,745", + "created": 1610346622.745235, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP server: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 34) not in buffer.", + "lineno": 668, + "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 106.60290718078613, + "msecs": 745.2349662780762, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7271.418809890747, - "thread": 140012350113600, + "relativeCreated": 8678.776979446411, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 106.97793960571289, + "msecs": 745.6159591674805, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7271.793842315674, - "thread": 140012350113600, + "relativeCreated": 8679.157972335815, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0003750324249267578 + "time_consumption": 0.0003809928894042969 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:04,107", - "created": 1609969744.107718, + "asctime": "2021-01-11 07:30:22,746", + "created": 1610346622.746383, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8802,8 +16751,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:04,107", - "created": 1609969744.107352, + "asctime": "2021-01-11 07:30:22,746", + "created": 1610346622.746011, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8813,14 +16762,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 107.35201835632324, + "msecs": 746.0110187530518, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7272.167921066284, - "thread": 140012350113600, + "relativeCreated": 8679.553031921387, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -8829,8 +16778,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:04,107", - "created": 1609969744.107543, + "asctime": "2021-01-11 07:30:22,746", + "created": 1610346622.746204, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8840,35 +16789,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 107.5429916381836, + "msecs": 746.2038993835449, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7272.3588943481445, - "thread": 140012350113600, + "relativeCreated": 8679.74591255188, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 107.71799087524414, + "msecs": 746.3829517364502, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7272.533893585205, - "thread": 140012350113600, + "relativeCreated": 8679.924964904785, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00017499923706054688 + "time_consumption": 0.00017905235290527344 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:04,108", - "created": 1609969744.108334, + "asctime": "2021-01-11 07:30:22,747", + "created": 1610346622.747007, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8885,8 +16834,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:04,107", - "created": 1609969744.107997, + "asctime": "2021-01-11 07:30:22,746", + "created": 1610346622.74666, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8896,14 +16845,14 @@ "lineno": 22, "message": "Result (Received message on server side): None ()", "module": "test", - "msecs": 107.99694061279297, + "msecs": 746.6599941253662, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7272.812843322754, - "thread": 140012350113600, + "relativeCreated": 8680.202007293701, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -8912,8 +16861,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:04,108", - "created": 1609969744.108162, + "asctime": "2021-01-11 07:30:22,746", + "created": 1610346622.746834, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8923,32 +16872,32 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = None ()", "module": "test", - "msecs": 108.16192626953125, + "msecs": 746.8340396881104, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7272.977828979492, - "thread": 140012350113600, + "relativeCreated": 8680.376052856445, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 108.33406448364258, + "msecs": 747.006893157959, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7273.1499671936035, - "thread": 140012350113600, + "relativeCreated": 8680.548906326294, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00017213821411132812 + "time_consumption": 0.0001728534698486328 }, { "args": [], - "asctime": "2021-01-06 22:49:04,410", - "created": 1609969744.410064, + "asctime": "2021-01-11 07:30:23,048", + "created": 1610346623.048847, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -8961,79 +16910,79 @@ "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:04,108", - "created": 1609969744.108662, + "asctime": "2021-01-11 07:30:22,747", + "created": 1610346622.74734, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 724, - "message": "SP server: TX -> Authentification is required. Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", + "lineno": 736, + "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 108.66189002990723, - "msg": "%s TX -> Authentification is required. Message %s, %s, data: %s will be ignored.", + "msecs": 747.3399639129639, + "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7273.477792739868, - "thread": 140012350113600, + "relativeCreated": 8680.881977081299, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", - "0.25", + "prot-client:", + "0.28705533596837945", "17", "35" ], - "asctime": "2021-01-06 22:49:04,409", - "created": 1609969744.409705, + "asctime": "2021-01-11 07:30:23,048", + "created": 1610346623.048501, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP client: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 35) not in buffer.", + "lineno": 668, + "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 409.70492362976074, + "msecs": 48.501014709472656, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7574.520826339722, - "thread": 140012350113600, + "relativeCreated": 8982.043027877808, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 410.0639820098877, + "msecs": 48.84696006774902, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7574.879884719849, - "thread": 140012350113600, + "relativeCreated": 8982.388973236084, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0003590583801269531 + "time_consumption": 0.0003459453582763672 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:04,410", - "created": 1609969744.41079, + "asctime": "2021-01-11 07:30:23,049", + "created": 1610346623.04964, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9050,8 +16999,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:04,410", - "created": 1609969744.410424, + "asctime": "2021-01-11 07:30:23,049", + "created": 1610346623.049224, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9061,14 +17010,14 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): False ()", "module": "test", - "msecs": 410.42399406433105, + "msecs": 49.223899841308594, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7575.239896774292, - "thread": 140012350113600, + "relativeCreated": 8982.765913009644, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -9077,8 +17026,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:04,410", - "created": 1609969744.410613, + "asctime": "2021-01-11 07:30:23,049", + "created": 1610346623.049411, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9088,35 +17037,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = False ()", "module": "test", - "msecs": 410.6130599975586, + "msecs": 49.41105842590332, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7575.4289627075195, - "thread": 140012350113600, + "relativeCreated": 8982.953071594238, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 410.78996658325195, + "msecs": 49.63994026184082, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7575.605869293213, - "thread": 140012350113600, + "relativeCreated": 8983.181953430176, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00017690658569335938 + "time_consumption": 0.0002288818359375 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:04,411", - "created": 1609969744.411389, + "asctime": "2021-01-11 07:30:23,050", + "created": 1610346623.050232, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9133,8 +17082,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:04,411", - "created": 1609969744.411054, + "asctime": "2021-01-11 07:30:23,049", + "created": 1610346623.049911, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9144,14 +17093,14 @@ "lineno": 22, "message": "Result (Received message on client side): None ()", "module": "test", - "msecs": 411.0538959503174, + "msecs": 49.9110221862793, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7575.869798660278, - "thread": 140012350113600, + "relativeCreated": 8983.453035354614, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -9160,8 +17109,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:04,411", - "created": 1609969744.411226, + "asctime": "2021-01-11 07:30:23,050", + "created": 1610346623.050073, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9171,35 +17120,35 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = None ()", "module": "test", - "msecs": 411.2260341644287, + "msecs": 50.07290840148926, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7576.04193687439, - "thread": 140012350113600, + "relativeCreated": 8983.614921569824, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 411.3891124725342, + "msecs": 50.23193359375, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7576.205015182495, - "thread": 140012350113600, + "relativeCreated": 8983.773946762085, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00016307830810546875 + "time_consumption": 0.0001590251922607422 }, { "args": [ 17, 34 ], - "asctime": "2021-01-06 22:49:04,411", - "created": 1609969744.411835, + "asctime": "2021-01-11 07:30:23,050", + "created": 1610346623.050702, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -9212,46 +17161,46 @@ "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "service: 17, data_id: 34" ], - "asctime": "2021-01-06 22:49:04,411", - "created": 1609969744.411674, + "asctime": "2021-01-11 07:30:23,050", + "created": 1610346623.050534, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: 17, data_id: 34) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: 17, data_id: 34) to the authentification whitelist", "module": "__init__", - "msecs": 411.67402267456055, + "msecs": 50.53400993347168, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7576.4899253845215, - "thread": 140012350113600, + "relativeCreated": 8984.076023101807, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 411.8349552154541, + "msecs": 50.70209503173828, "msg": "Added msg1 to server whitelist (sid=%d, did=%d)", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7576.650857925415, - "thread": 140012350113600, + "relativeCreated": 8984.244108200073, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0001609325408935547 + "time_consumption": 0.00016808509826660156 }, { "args": [], - "asctime": "2021-01-06 22:49:04,514", - "created": 1609969744.514283, + "asctime": "2021-01-11 07:30:23,252", + "created": 1610346623.252376, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -9264,150 +17213,554 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:04,412", - "created": 1609969744.412144, + "asctime": "2021-01-11 07:30:23,051", + "created": 1610346623.0511, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 445, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 412.1439456939697, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 51.10001564025879, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7576.959848403931, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:04,412", - "created": 1609969744.412684, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "test_helpers", - "msecs": 412.68396377563477, - "msg": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 7577.499866485596, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:04,413", - "created": 1609969744.4131, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "test_helpers", - "msecs": 413.100004196167, - "msg": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 7577.915906906128, - "thread": 140012350113600, + "relativeCreated": 8984.642028808594, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:23,067", + "created": 1610346623.067382, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 67.3820972442627, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9000.924110412598, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:23,067", + "created": 1610346623.067936, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 67.93594360351562, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9001.47795677185, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,068", + "created": 1610346623.068149, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 68.14908981323242, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9001.691102981567, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:23,068", + "created": 1610346623.068332, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 68.33195686340332, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9001.873970031738, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,068", + "created": 1610346623.068572, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 68.5720443725586, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9002.114057540894, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:23,068", + "created": 1610346623.068731, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 68.73106956481934, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9002.273082733154, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,068", + "created": 1610346623.068949, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 68.94898414611816, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9002.490997314453, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:23,069", + "created": 1610346623.069104, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 69.10395622253418, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9002.64596939087, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,069", + "created": 1610346623.069312, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 69.31209564208984, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9002.854108810425, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:23,069", + "created": 1610346623.069514, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 69.51403617858887, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9003.056049346924, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-client:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" + ], + "asctime": "2021-01-11 07:30:23,069", + "created": 1610346623.069907, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", + "module": "__init__", + "msecs": 69.90694999694824, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9003.448963165283, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-server:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" + ], + "asctime": "2021-01-11 07:30:23,070", + "created": 1610346623.070168, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", + "module": "__init__", + "msecs": 70.16801834106445, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9003.7100315094, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,070", + "created": 1610346623.070423, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 70.42288780212402, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9003.964900970459, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:23,070", + "created": 1610346623.070582, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 70.58191299438477, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9004.12392616272, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,070", + "created": 1610346623.070788, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 70.78790664672852, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9004.329919815063, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:23,070", + "created": 1610346623.070984, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 70.98388671875, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9004.525899887085, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + "(88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b" + ], + "asctime": "2021-01-11 07:30:23,071", + "created": 1610346623.071533, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", + "module": "stp", + "msecs": 71.5329647064209, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9005.074977874756, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: 17, data_id: 34", "status: okay", "u'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:04,413", - "created": 1609969744.413435, + "asctime": "2021-01-11 07:30:23,071", + "created": 1610346623.071954, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", + "lineno": 445, + "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 413.4349822998047, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 71.95401191711426, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7578.250885009766, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 9005.49602508545, + "thread": 140634425890560, + "threadName": "Thread-11" }, { "args": [ - "SP server:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:04,413", - "created": 1609969744.413692, + "asctime": "2021-01-11 07:30:23,072", + "created": 1610346623.072079, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP server: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 413.6919975280762, + "msecs": 72.07894325256348, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7578.507900238037, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 9005.620956420898, + "thread": 140634425890560, + "threadName": "Thread-11" } ], - "msecs": 514.2829418182373, + "msecs": 252.37607955932617, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7679.098844528198, - "thread": 140012350113600, + "relativeCreated": 9185.918092727661, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.10059094429016113 + "time_consumption": 0.1802971363067627 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:04,515", - "created": 1609969744.515171, + "asctime": "2021-01-11 07:30:23,253", + "created": 1610346623.253321, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9424,8 +17777,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:04,514", - "created": 1609969744.514786, + "asctime": "2021-01-11 07:30:23,252", + "created": 1610346623.252926, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9435,14 +17788,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 514.7860050201416, + "msecs": 252.92611122131348, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7679.6019077301025, - "thread": 140012350113600, + "relativeCreated": 9186.468124389648, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -9451,8 +17804,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:04,514", - "created": 1609969744.51499, + "asctime": "2021-01-11 07:30:23,253", + "created": 1610346623.253132, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9462,35 +17815,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 514.9900913238525, + "msecs": 253.13210487365723, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7679.8059940338135, - "thread": 140012350113600, + "relativeCreated": 9186.674118041992, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 515.1710510253906, + "msecs": 253.32093238830566, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7679.986953735352, - "thread": 140012350113600, + "relativeCreated": 9186.86294555664, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00018095970153808594 + "time_consumption": 0.0001888275146484375 }, { "args": [ "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", "" ], - "asctime": "2021-01-06 22:49:04,515", - "created": 1609969744.515834, + "asctime": "2021-01-11 07:30:23,254", + "created": 1610346623.254032, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9507,8 +17860,8 @@ "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", "" ], - "asctime": "2021-01-06 22:49:04,515", - "created": 1609969744.51546, + "asctime": "2021-01-11 07:30:23,253", + "created": 1610346623.253645, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9518,14 +17871,14 @@ "lineno": 22, "message": "Result (Received message on server side): {u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34} ()", "module": "test", - "msecs": 515.4600143432617, + "msecs": 253.6449432373047, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7680.275917053223, - "thread": 140012350113600, + "relativeCreated": 9187.18695640564, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -9534,8 +17887,8 @@ "{'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34}", "" ], - "asctime": "2021-01-06 22:49:04,515", - "created": 1609969744.515641, + "asctime": "2021-01-11 07:30:23,253", + "created": 1610346623.253851, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9545,32 +17898,32 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34} ()", "module": "test", - "msecs": 515.6409740447998, + "msecs": 253.85093688964844, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7680.456876754761, - "thread": 140012350113600, + "relativeCreated": 9187.392950057983, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 515.8340930938721, + "msecs": 254.03189659118652, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7680.649995803833, - "thread": 140012350113600, + "relativeCreated": 9187.573909759521, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00019311904907226562 + "time_consumption": 0.00018095970153808594 }, { "args": [], - "asctime": "2021-01-06 22:49:04,817", - "created": 1609969744.817701, + "asctime": "2021-01-11 07:30:23,555", + "created": 1610346623.55583, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -9583,79 +17936,79 @@ "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:04,516", - "created": 1609969744.516187, + "asctime": "2021-01-11 07:30:23,254", + "created": 1610346623.254365, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 724, - "message": "SP server: TX -> Authentification is required. Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", + "lineno": 736, + "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 516.1869525909424, - "msg": "%s TX -> Authentification is required. Message %s, %s, data: %s will be ignored.", + "msecs": 254.3649673461914, + "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7681.002855300903, - "thread": 140012350113600, + "relativeCreated": 9187.906980514526, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", - "0.25", + "prot-client:", + "0.28705533596837945", "17", "35" ], - "asctime": "2021-01-06 22:49:04,817", - "created": 1609969744.817368, + "asctime": "2021-01-11 07:30:23,555", + "created": 1610346623.555481, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP client: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 35) not in buffer.", + "lineno": 668, + "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 817.3680305480957, + "msecs": 555.48095703125, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7982.183933258057, - "thread": 140012350113600, + "relativeCreated": 9489.022970199585, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 817.7011013031006, + "msecs": 555.8300018310547, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7982.5170040130615, - "thread": 140012350113600, + "relativeCreated": 9489.37201499939, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0003330707550048828 + "time_consumption": 0.0003490447998046875 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:04,818", - "created": 1609969744.818478, + "asctime": "2021-01-11 07:30:23,556", + "created": 1610346623.556785, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9672,8 +18025,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:04,818", - "created": 1609969744.818103, + "asctime": "2021-01-11 07:30:23,556", + "created": 1610346623.556189, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9683,14 +18036,14 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): False ()", "module": "test", - "msecs": 818.1030750274658, + "msecs": 556.1890602111816, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7982.918977737427, - "thread": 140012350113600, + "relativeCreated": 9489.731073379517, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -9699,8 +18052,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:04,818", - "created": 1609969744.818293, + "asctime": "2021-01-11 07:30:23,556", + "created": 1610346623.556517, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9710,35 +18063,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = False ()", "module": "test", - "msecs": 818.2930946350098, + "msecs": 556.5168857574463, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7983.108997344971, - "thread": 140012350113600, + "relativeCreated": 9490.058898925781, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 818.4781074523926, + "msecs": 556.7851066589355, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7983.2940101623535, - "thread": 140012350113600, + "relativeCreated": 9490.32711982727, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0001850128173828125 + "time_consumption": 0.0002682209014892578 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:04,819", - "created": 1609969744.81907, + "asctime": "2021-01-11 07:30:23,557", + "created": 1610346623.557801, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9755,8 +18108,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:04,818", - "created": 1609969744.818745, + "asctime": "2021-01-11 07:30:23,557", + "created": 1610346623.557336, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9766,14 +18119,14 @@ "lineno": 22, "message": "Result (Received message on client side): None ()", "module": "test", - "msecs": 818.7448978424072, + "msecs": 557.3360919952393, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7983.560800552368, - "thread": 140012350113600, + "relativeCreated": 9490.878105163574, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -9782,8 +18135,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:04,818", - "created": 1609969744.818909, + "asctime": "2021-01-11 07:30:23,557", + "created": 1610346623.557651, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9793,35 +18146,35 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = None ()", "module": "test", - "msecs": 818.9089298248291, + "msecs": 557.6510429382324, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7983.72483253479, - "thread": 140012350113600, + "relativeCreated": 9491.193056106567, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 819.0701007843018, + "msecs": 557.8010082244873, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7983.886003494263, - "thread": 140012350113600, + "relativeCreated": 9491.343021392822, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00016117095947265625 + "time_consumption": 0.0001499652862548828 }, { "args": [ 17, 35 ], - "asctime": "2021-01-06 22:49:04,819", - "created": 1609969744.819711, + "asctime": "2021-01-11 07:30:23,558", + "created": 1610346623.558343, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -9834,72 +18187,72 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", "service: 17, data_id: 35" ], - "asctime": "2021-01-06 22:49:04,819", - "created": 1609969744.819362, + "asctime": "2021-01-11 07:30:23,558", + "created": 1610346623.558061, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: 17, data_id: 35) to the authentification whitelist", + "lineno": 556, + "message": "prot-client: Adding Message (service: 17, data_id: 35) to the authentification whitelist", "module": "__init__", - "msecs": 819.3619251251221, + "msecs": 558.060884475708, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7984.177827835083, - "thread": 140012350113600, + "relativeCreated": 9491.602897644043, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "prot-server:", "service: 17, data_id: 35" ], - "asctime": "2021-01-06 22:49:04,819", - "created": 1609969744.819548, + "asctime": "2021-01-11 07:30:23,558", + "created": 1610346623.558216, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: 17, data_id: 35) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: 17, data_id: 35) to the authentification whitelist", "module": "__init__", - "msecs": 819.5478916168213, + "msecs": 558.2160949707031, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7984.363794326782, - "thread": 140012350113600, + "relativeCreated": 9491.758108139038, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 819.7109699249268, + "msecs": 558.3429336547852, "msg": "Added msg2 to client and server whitelist (sid=%d, did=%d)", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7984.526872634888, - "thread": 140012350113600, + "relativeCreated": 9491.88494682312, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00016307830810546875 + "time_consumption": 0.00012683868408203125 }, { "args": [], - "asctime": "2021-01-06 22:49:04,922", - "created": 1609969744.92209, + "asctime": "2021-01-11 07:30:23,759", + "created": 1610346623.759709, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -9912,150 +18265,554 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:04,820", - "created": 1609969744.820012, + "asctime": "2021-01-11 07:30:23,558", + "created": 1610346623.558657, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 445, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 820.012092590332, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 558.6569309234619, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7984.827995300293, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:04,820", - "created": 1609969744.820563, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "test_helpers", - "msecs": 820.5630779266357, - "msg": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 7985.378980636597, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:04,820", - "created": 1609969744.82098, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "test_helpers", - "msecs": 820.9800720214844, - "msg": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 7985.795974731445, - "thread": 140012350113600, + "relativeCreated": 9492.198944091797, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:23,573", + "created": 1610346623.573722, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 573.7218856811523, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9507.263898849487, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:23,574", + "created": 1610346623.574272, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 574.2719173431396, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9507.813930511475, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,574", + "created": 1610346623.574526, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 574.5260715484619, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9508.068084716797, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:23,574", + "created": 1610346623.574744, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 574.7439861297607, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9508.285999298096, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,575", + "created": 1610346623.575041, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 575.0410556793213, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9508.583068847656, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:23,575", + "created": 1610346623.575307, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 575.3068923950195, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9508.848905563354, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,575", + "created": 1610346623.5757, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 575.700044631958, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9509.242057800293, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:23,575", + "created": 1610346623.575865, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 575.8650302886963, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9509.407043457031, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,576", + "created": 1610346623.576107, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 576.1070251464844, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9509.64903831482, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:23,576", + "created": 1610346623.576304, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 576.3039588928223, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9509.845972061157, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-client:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" + ], + "asctime": "2021-01-11 07:30:23,576", + "created": 1610346623.576922, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", + "module": "__init__", + "msecs": 576.9219398498535, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9510.463953018188, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-server:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" + ], + "asctime": "2021-01-11 07:30:23,577", + "created": 1610346623.577269, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", + "module": "__init__", + "msecs": 577.2690773010254, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9510.81109046936, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,577", + "created": 1610346623.57756, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 577.5599479675293, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9511.101961135864, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:23,577", + "created": 1610346623.577816, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 577.8160095214844, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9511.35802268982, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,578", + "created": 1610346623.578091, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 578.0909061431885, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9511.632919311523, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:23,578", + "created": 1610346623.578306, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 578.3059597015381, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9511.847972869873, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + "(88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b" + ], + "asctime": "2021-01-11 07:30:23,578", + "created": 1610346623.578834, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", + "module": "stp", + "msecs": 578.834056854248, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9512.376070022583, + "thread": 140634425890560, + "threadName": "Thread-11" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: 17, data_id: 34", "status: okay", "u'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:04,821", - "created": 1609969744.821305, + "asctime": "2021-01-11 07:30:23,579", + "created": 1610346623.579348, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", + "lineno": 445, + "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 821.3050365447998, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 579.348087310791, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7986.120939254761, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 9512.890100479126, + "thread": 140634425890560, + "threadName": "Thread-11" }, { "args": [ - "SP server:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:04,821", - "created": 1609969744.821543, + "asctime": "2021-01-11 07:30:23,579", + "created": 1610346623.579745, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP server: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 821.5429782867432, + "msecs": 579.7450542449951, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 7986.358880996704, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 9513.28706741333, + "thread": 140634425890560, + "threadName": "Thread-11" } ], - "msecs": 922.0900535583496, + "msecs": 759.7088813781738, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8086.905956268311, - "thread": 140012350113600, + "relativeCreated": 9693.250894546509, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.10054707527160645 + "time_consumption": 0.1799638271331787 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:04,922", - "created": 1609969744.922968, + "asctime": "2021-01-11 07:30:23,760", + "created": 1610346623.760588, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10072,8 +18829,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:04,922", - "created": 1609969744.922579, + "asctime": "2021-01-11 07:30:23,760", + "created": 1610346623.760196, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10083,14 +18840,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 922.5790500640869, + "msecs": 760.1959705352783, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8087.394952774048, - "thread": 140012350113600, + "relativeCreated": 9693.737983703613, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -10099,8 +18856,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:04,922", - "created": 1609969744.922785, + "asctime": "2021-01-11 07:30:23,760", + "created": 1610346623.760399, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10110,35 +18867,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 922.7850437164307, + "msecs": 760.3991031646729, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8087.600946426392, - "thread": 140012350113600, + "relativeCreated": 9693.941116333008, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 922.9679107666016, + "msecs": 760.5879306793213, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8087.7838134765625, - "thread": 140012350113600, + "relativeCreated": 9694.129943847656, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00018286705017089844 + "time_consumption": 0.0001888275146484375 }, { "args": [ "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", "" ], - "asctime": "2021-01-06 22:49:04,923", - "created": 1609969744.923612, + "asctime": "2021-01-11 07:30:23,761", + "created": 1610346623.761263, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10155,8 +18912,8 @@ "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", "" ], - "asctime": "2021-01-06 22:49:04,923", - "created": 1609969744.923256, + "asctime": "2021-01-11 07:30:23,760", + "created": 1610346623.760889, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10166,14 +18923,14 @@ "lineno": 22, "message": "Result (Received message on server side): {u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34} ()", "module": "test", - "msecs": 923.2559204101562, + "msecs": 760.8890533447266, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8088.071823120117, - "thread": 140012350113600, + "relativeCreated": 9694.431066513062, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -10182,8 +18939,8 @@ "{'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34}", "" ], - "asctime": "2021-01-06 22:49:04,923", - "created": 1609969744.923435, + "asctime": "2021-01-11 07:30:23,761", + "created": 1610346623.761071, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10193,32 +18950,32 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34} ()", "module": "test", - "msecs": 923.4349727630615, + "msecs": 761.070966720581, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8088.2508754730225, - "thread": 140012350113600, + "relativeCreated": 9694.612979888916, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 923.612117767334, + "msecs": 761.2628936767578, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8088.428020477295, - "thread": 140012350113600, + "relativeCreated": 9694.804906845093, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00017714500427246094 + "time_consumption": 0.0001919269561767578 }, { "args": [], - "asctime": "2021-01-06 22:49:05,026", - "created": 1609969745.026295, + "asctime": "2021-01-11 07:30:23,962", + "created": 1610346623.962912, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -10231,176 +18988,554 @@ "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:04,923", - "created": 1609969744.923942, + "asctime": "2021-01-11 07:30:23,761", + "created": 1610346623.761716, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 923.9420890808105, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 761.7158889770508, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8088.7579917907715, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:04,924", - "created": 1609969744.924501, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "module": "test_helpers", - "msecs": 924.5009422302246, - "msg": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8089.316844940186, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:04,924", - "created": 1609969744.924921, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "module": "test_helpers", - "msecs": 924.9210357666016, - "msg": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8089.7369384765625, - "thread": 140012350113600, + "relativeCreated": 9695.257902145386, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:23,772", + "created": 1610346623.772771, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 772.770881652832, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9706.312894821167, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:23,773", + "created": 1610346623.77311, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 773.1099128723145, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9706.65192604065, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,773", + "created": 1610346623.773277, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 773.2770442962646, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9706.8190574646, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:23,773", + "created": 1610346623.773385, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 773.3850479125977, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9706.927061080933, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,773", + "created": 1610346623.773615, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 773.6148834228516, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9707.156896591187, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:23,773", + "created": 1610346623.773768, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 773.7679481506348, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9707.30996131897, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,774", + "created": 1610346623.774023, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 774.0230560302734, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9707.565069198608, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:23,774", + "created": 1610346623.774207, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 774.2071151733398, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9707.749128341675, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,774", + "created": 1610346623.77446, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 774.4600772857666, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9708.002090454102, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:23,774", + "created": 1610346623.774946, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 774.9459743499756, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9708.48798751831, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "comm-server:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" + ], + "asctime": "2021-01-11 07:30:23,775", + "created": 1610346623.775324, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", + "module": "__init__", + "msecs": 775.3241062164307, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9708.866119384766, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "comm-client:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" + ], + "asctime": "2021-01-11 07:30:23,775", + "created": 1610346623.77571, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", + "module": "__init__", + "msecs": 775.7101058959961, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9709.252119064331, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,776", + "created": 1610346623.776041, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 776.0410308837891, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9709.583044052124, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:23,776", + "created": 1610346623.776252, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 776.252031326294, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9709.794044494629, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,776", + "created": 1610346623.776478, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 776.4780521392822, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9710.020065307617, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:23,776", + "created": 1610346623.77667, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 776.669979095459, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9710.211992263794, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + "(88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8" + ], + "asctime": "2021-01-11 07:30:23,777", + "created": 1610346623.777065, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", + "module": "stp", + "msecs": 777.0650386810303, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9710.607051849365, + "thread": 140633872267008, + "threadName": "Thread-12" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: 17, data_id: 35", "status: service or data unknown", "u'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:04,925", - "created": 1609969744.925247, + "asctime": "2021-01-11 07:30:23,777", + "created": 1610346623.777685, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 925.2469539642334, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 777.6849269866943, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8090.062856674194, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 9711.22694015503, + "thread": 140633872267008, + "threadName": "Thread-12" }, { "args": [ - "SP client:", - "status: service or data unknown" + "prot-client:" ], - "asctime": "2021-01-06 22:49:04,925", - "created": 1609969744.925441, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: service or data unknown", - "module": "__init__", - "msecs": 925.4410266876221, - "msg": "%s RX <- Message has a peculiar status: %s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8090.256929397583, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:" - ], - "asctime": "2021-01-06 22:49:04,925", - "created": 1609969744.925704, + "asctime": "2021-01-11 07:30:23,778", + "created": 1610346623.778028, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 925.7040023803711, + "msecs": 778.0280113220215, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8090.519905090332, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 9711.570024490356, + "thread": 140633872267008, + "threadName": "Thread-12" } ], - "msecs": 26.294946670532227, + "msecs": 962.9120826721191, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8191.110849380493, - "thread": 140012350113600, + "relativeCreated": 9896.454095840454, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.10059094429016113 + "time_consumption": 0.18488407135009766 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:05,027", - "created": 1609969745.027171, + "asctime": "2021-01-11 07:30:23,963", + "created": 1610346623.963713, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10417,8 +19552,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:05,026", - "created": 1609969745.026782, + "asctime": "2021-01-11 07:30:23,963", + "created": 1610346623.963335, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10428,14 +19563,14 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 26.78203582763672, + "msecs": 963.3350372314453, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8191.597938537598, - "thread": 140012350113600, + "relativeCreated": 9896.87705039978, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -10444,8 +19579,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:05,026", - "created": 1609969745.026987, + "asctime": "2021-01-11 07:30:23,963", + "created": 1610346623.963523, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10455,35 +19590,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 26.987075805664062, + "msecs": 963.5229110717773, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8191.802978515625, - "thread": 140012350113600, + "relativeCreated": 9897.064924240112, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 27.170896530151367, + "msecs": 963.7129306793213, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8191.986799240112, - "thread": 140012350113600, + "relativeCreated": 9897.254943847656, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0001838207244873047 + "time_consumption": 0.0001900196075439453 }, { "args": [ "{u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35}", "" ], - "asctime": "2021-01-06 22:49:05,027", - "created": 1609969745.027878, + "asctime": "2021-01-11 07:30:23,964", + "created": 1610346623.964454, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10500,8 +19635,8 @@ "{u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35}", "" ], - "asctime": "2021-01-06 22:49:05,027", - "created": 1609969745.027477, + "asctime": "2021-01-11 07:30:23,964", + "created": 1610346623.964051, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10511,14 +19646,14 @@ "lineno": 22, "message": "Result (Received message on client side): {u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35} ()", "module": "test", - "msecs": 27.477025985717773, + "msecs": 964.0510082244873, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8192.292928695679, - "thread": 140012350113600, + "relativeCreated": 9897.593021392822, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -10527,8 +19662,8 @@ "{'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35}", "" ], - "asctime": "2021-01-06 22:49:05,027", - "created": 1609969745.027676, + "asctime": "2021-01-11 07:30:23,964", + "created": 1610346623.964261, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10538,39 +19673,39 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = {'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35} ()", "module": "test", - "msecs": 27.676105499267578, + "msecs": 964.2610549926758, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8192.492008209229, - "thread": 140012350113600, + "relativeCreated": 9897.80306816101, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 27.8780460357666, + "msecs": 964.453935623169, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8192.693948745728, - "thread": 140012350113600, + "relativeCreated": 9897.995948791504, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00020194053649902344 + "time_consumption": 0.00019288063049316406 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 1.8386390209197998, - "time_finished": "2021-01-06 22:49:05,027", - "time_start": "2021-01-06 22:49:03,189" + "time_consumption": 2.483767032623291, + "time_finished": "2021-01-11 07:30:23,964", + "time_start": "2021-01-11 07:30:21,480" }, "_Lmn-kE0hEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:49:05,028", - "created": 1609969745.028513, + "asctime": "2021-01-11 07:30:23,965", + "created": 1610346623.965319, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -10581,1112 +19716,2427 @@ "message": "_Lmn-kE0hEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 28.512954711914062, + "msecs": 965.3189182281494, "msg": "_Lmn-kE0hEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8193.328857421875, + "relativeCreated": 9898.860931396484, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:05,036", - "created": 1609969745.036485, + "asctime": "2021-01-11 07:30:23,972", + "created": 1610346623.972131, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:05,029", - "created": 1609969745.02905, + "asctime": "2021-01-11 07:30:23,966", + "created": 1610346623.966451, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 29.050111770629883, + "msecs": 966.4509296417236, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8193.86601448059, - "thread": 140012350113600, + "relativeCreated": 9899.992942810059, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:05,029", - "created": 1609969745.029287, + "asctime": "2021-01-11 07:30:23,966", + "created": 1610346623.966997, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 29.287099838256836, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 966.9969081878662, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8194.103002548218, - "thread": 140012350113600, + "relativeCreated": 9900.538921356201, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:05,029", - "created": 1609969745.029533, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 29.532909393310547, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8194.348812103271, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:05,029", - "created": 1609969745.029721, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 29.72102165222168, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8194.536924362183, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:05,029", - "created": 1609969745.029928, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 29.927968978881836, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8194.743871688843, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:05,030", - "created": 1609969745.030104, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 30.10392189025879, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8194.91982460022, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:05,030", - "created": 1609969745.030285, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 30.284881591796875, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8195.100784301758, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:05,030", - "created": 1609969745.030469, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 30.46894073486328, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8195.284843444824, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:05,030", - "created": 1609969745.030671, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 30.670881271362305, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8195.486783981323, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:05,030", - "created": 1609969745.030856, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 30.855894088745117, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8195.671796798706, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:05,031", - "created": 1609969745.031015, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 31.01491928100586, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8195.830821990967, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:05,031", - "created": 1609969745.031213, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 31.213045120239258, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8196.0289478302, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:05,031", - "created": 1609969745.031406, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 31.405925750732422, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8196.221828460693, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:05,031", - "created": 1609969745.031571, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 31.570911407470703, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8196.386814117432, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:05,031", - "created": 1609969745.031742, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 31.742095947265625, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8196.557998657227, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:05,031", - "created": 1609969745.031916, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 31.915903091430664, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8196.731805801392, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:05,032", - "created": 1609969745.032095, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 32.09495544433594, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8196.910858154297, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:05,032", - "created": 1609969745.032257, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 32.257080078125, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8197.072982788086, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:05,032", - "created": 1609969745.032414, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 32.41395950317383, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8197.229862213135, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:05,032", - "created": 1609969745.032573, + "asctime": "2021-01-11 07:30:23,967", + "created": 1610346623.967155, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 32.57298469543457, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 967.1549797058105, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8197.388887405396, - "thread": 140012350113600, + "relativeCreated": 9900.696992874146, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:05,032", - "created": 1609969745.032954, + "asctime": "2021-01-11 07:30:23,967", + "created": 1610346623.967601, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 32.95397758483887, + "msecs": 967.6010608673096, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8197.7698802948, - "thread": 140012350113600, + "relativeCreated": 9901.143074035645, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:05,033", - "created": 1609969745.033141, + "asctime": "2021-01-11 07:30:23,967", + "created": 1610346623.967798, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 33.14089775085449, + "msecs": 967.7979946136475, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8197.956800460815, - "thread": 140012350113600, + "relativeCreated": 9901.340007781982, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:05,033", - "created": 1609969745.033375, + "asctime": "2021-01-11 07:30:23,968", + "created": 1610346623.968037, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 33.37502479553223, + "msecs": 968.0368900299072, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8198.190927505493, - "thread": 140012350113600, + "relativeCreated": 9901.578903198242, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:05,033", - "created": 1609969745.033543, + "asctime": "2021-01-11 07:30:23,968", + "created": 1610346623.968237, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 33.54310989379883, + "msecs": 968.2369232177734, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8198.35901260376, - "thread": 140012350113600, + "relativeCreated": 9901.778936386108, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:05,033", - "created": 1609969745.033704, + "asctime": "2021-01-11 07:30:23,968", + "created": 1610346623.968426, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 33.70404243469238, + "msecs": 968.425989151001, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8198.519945144653, - "thread": 140012350113600, + "relativeCreated": 9901.968002319336, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:05,033", - "created": 1609969745.033898, + "asctime": "2021-01-11 07:30:23,968", + "created": 1610346623.968565, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 33.898115158081055, + "msecs": 968.5649871826172, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8198.714017868042, - "thread": 140012350113600, + "relativeCreated": 9902.107000350952, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:05,034", - "created": 1609969745.03408, + "asctime": "2021-01-11 07:30:23,968", + "created": 1610346623.968689, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 34.08002853393555, + "msecs": 968.68896484375, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8198.895931243896, - "thread": 140012350113600, + "relativeCreated": 9902.230978012085, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:05,034", - "created": 1609969745.03426, + "asctime": "2021-01-11 07:30:23,968", + "created": 1610346623.968825, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 34.26003456115723, + "msecs": 968.825101852417, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8199.075937271118, - "thread": 140012350113600, + "relativeCreated": 9902.367115020752, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:05,034", - "created": 1609969745.034434, + "asctime": "2021-01-11 07:30:23,968", + "created": 1610346623.968928, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 34.43408012390137, + "msecs": 968.9280986785889, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8199.249982833862, - "thread": 140012350113600, + "relativeCreated": 9902.470111846924, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:05,034", - "created": 1609969745.034605, + "asctime": "2021-01-11 07:30:23,969", + "created": 1610346623.969018, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 34.60502624511719, + "msecs": 969.0179824829102, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8199.420928955078, - "thread": 140012350113600, + "relativeCreated": 9902.559995651245, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:05,034", - "created": 1609969745.03476, + "asctime": "2021-01-11 07:30:23,969", + "created": 1610346623.969102, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 34.7599983215332, + "msecs": 969.1019058227539, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8199.575901031494, - "thread": 140012350113600, + "relativeCreated": 9902.643918991089, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:05,034", - "created": 1609969745.034951, + "asctime": "2021-01-11 07:30:23,969", + "created": 1610346623.969202, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 34.950971603393555, + "msecs": 969.2020416259766, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8199.766874313354, - "thread": 140012350113600, + "relativeCreated": 9902.744054794312, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:05,035", - "created": 1609969745.035141, + "asctime": "2021-01-11 07:30:23,969", + "created": 1610346623.969303, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 35.1409912109375, + "msecs": 969.3028926849365, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8199.956893920898, - "thread": 140012350113600, + "relativeCreated": 9902.844905853271, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:05,035", - "created": 1609969745.035303, + "asctime": "2021-01-11 07:30:23,969", + "created": 1610346623.969387, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 35.30311584472656, + "msecs": 969.3870544433594, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8200.119018554688, - "thread": 140012350113600, + "relativeCreated": 9902.929067611694, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:05,035", - "created": 1609969745.03547, + "asctime": "2021-01-11 07:30:23,969", + "created": 1610346623.969498, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 35.470008850097656, + "msecs": 969.4979190826416, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8200.285911560059, - "thread": 140012350113600, + "relativeCreated": 9903.039932250977, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:05,035", - "created": 1609969745.035644, + "asctime": "2021-01-11 07:30:23,969", + "created": 1610346623.969604, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 35.6440544128418, + "msecs": 969.6040153503418, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8200.459957122803, - "thread": 140012350113600, + "relativeCreated": 9903.146028518677, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:05,035", - "created": 1609969745.035823, + "asctime": "2021-01-11 07:30:23,969", + "created": 1610346623.969723, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 35.82310676574707, + "msecs": 969.7229862213135, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8200.639009475708, - "thread": 140012350113600, + "relativeCreated": 9903.264999389648, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:05,035", - "created": 1609969745.035981, + "asctime": "2021-01-11 07:30:23,969", + "created": 1610346623.969828, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 35.980939865112305, + "msecs": 969.8278903961182, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8200.796842575073, - "thread": 140012350113600, + "relativeCreated": 9903.369903564453, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:05,036", - "created": 1609969745.036144, + "asctime": "2021-01-11 07:30:23,969", + "created": 1610346623.96991, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 36.14401817321777, + "msecs": 969.9099063873291, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8200.959920883179, - "thread": 140012350113600, + "relativeCreated": 9903.451919555664, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:05,036", - "created": 1609969745.03632, + "asctime": "2021-01-11 07:30:23,970", + "created": 1610346623.970003, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 36.31997108459473, + "msecs": 970.0028896331787, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8201.135873794556, - "thread": 140012350113600, + "relativeCreated": 9903.544902801514, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:23,970", + "created": 1610346623.970202, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 970.2019691467285, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9903.743982315063, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:23,970", + "created": 1610346623.970298, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 970.2980518341064, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9903.840065002441, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:23,970", + "created": 1610346623.970415, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 970.4151153564453, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9903.95712852478, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:23,970", + "created": 1610346623.970515, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 970.5150127410889, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9904.057025909424, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:23,970", + "created": 1610346623.970598, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 970.5979824066162, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9904.139995574951, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:23,970", + "created": 1610346623.970679, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 970.6790447235107, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9904.221057891846, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:23,970", + "created": 1610346623.970772, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 970.7720279693604, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9904.314041137695, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:23,970", + "created": 1610346623.97087, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 970.8700180053711, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9904.412031173706, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:23,970", + "created": 1610346623.970983, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 970.9830284118652, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9904.5250415802, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:23,971", + "created": 1610346623.971092, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 971.0919857025146, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9904.63399887085, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:23,971", + "created": 1610346623.971191, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 971.1909294128418, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9904.732942581177, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:23,971", + "created": 1610346623.971348, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 971.3480472564697, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9904.890060424805, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:23,971", + "created": 1610346623.971445, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 971.4450836181641, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9904.987096786499, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:23,971", + "created": 1610346623.97153, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 971.5299606323242, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9905.07197380066, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:23,971", + "created": 1610346623.971617, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 971.6169834136963, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9905.158996582031, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:23,971", + "created": 1610346623.971713, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 971.7130661010742, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9905.25507926941, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:23,971", + "created": 1610346623.971799, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 971.7988967895508, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9905.340909957886, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:23,971", + "created": 1610346623.97188, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 971.8799591064453, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9905.42197227478, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:23,971", + "created": 1610346623.971959, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 971.959114074707, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9905.501127243042, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:23,972", + "created": 1610346623.972048, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 972.0480442047119, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9905.590057373047, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 36.48495674133301, + "msecs": 972.1310138702393, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8201.300859451294, - "thread": 140012350113600, + "relativeCreated": 9905.673027038574, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00016498565673828125 + "time_consumption": 8.296966552734375e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:05,036", - "created": 1609969745.036815, + "asctime": "2021-01-11 07:30:24,316", + "created": 1610346624.316449, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:23,972", + "created": 1610346623.972306, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 972.3060131072998, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9905.848026275635, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:23,972", + "created": 1610346623.972398, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 972.398042678833, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9905.940055847168, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:23,972", + "created": 1610346623.972485, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 972.4850654602051, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9906.02707862854, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:23,972", + "created": 1610346623.972636, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 972.6359844207764, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9906.177997589111, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:23,972", + "created": 1610346623.972915, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 972.9149341583252, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9906.45694732666, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:23,973", + "created": 1610346623.973015, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 973.0150699615479, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9906.557083129883, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:23,973", + "created": 1610346623.973106, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 973.1059074401855, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9906.64792060852, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:23,973", + "created": 1610346623.973932, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 973.9320278167725, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9907.474040985107, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:23,974", + "created": 1610346623.974226, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 974.2259979248047, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9907.76801109314, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,974", + "created": 1610346623.974351, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 974.3509292602539, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9907.892942428589, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:23,974", + "created": 1610346623.974503, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 974.5030403137207, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9908.045053482056, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,974", + "created": 1610346623.974644, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 974.6439456939697, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9908.185958862305, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:23,974", + "created": 1610346623.974741, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 974.7409820556641, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9908.282995223999, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,974", + "created": 1610346623.97487, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 974.869966506958, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9908.411979675293, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:23,974", + "created": 1610346623.974973, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 974.9729633331299, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9908.514976501465, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,975", + "created": 1610346623.97513, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 975.1300811767578, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9908.672094345093, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:23,975", + "created": 1610346623.975356, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 975.3561019897461, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9908.898115158081, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,975", + "created": 1610346623.97555, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 975.5499362945557, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9909.09194946289, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:23,975", + "created": 1610346623.97568, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 975.6801128387451, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9909.22212600708, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-client:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:23,975", + "created": 1610346623.975875, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 975.8749008178711, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9909.416913986206, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:23,976", + "created": 1610346623.97613, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 976.1300086975098, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9909.672021865845, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,976", + "created": 1610346623.9764, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 976.3998985290527, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9909.941911697388, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:23,976", + "created": 1610346623.976614, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 976.6139984130859, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9910.15601158142, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" + ], + "asctime": "2021-01-11 07:30:23,976", + "created": 1610346623.976893, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", + "module": "stp", + "msecs": 976.8929481506348, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9910.43496131897, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:23,977", + "created": 1610346623.977202, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 977.2019386291504, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9910.743951797485, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:23,977", + "created": 1610346623.977334, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 977.3340225219727, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9910.876035690308, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:23,977", + "created": 1610346623.97751, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 977.5099754333496, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9911.051988601685, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:23,984", + "created": 1610346623.984265, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 984.2650890350342, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9917.80710220337, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:23,984", + "created": 1610346623.984585, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 984.5850467681885, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9918.127059936523, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,984", + "created": 1610346623.984715, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 984.7149848937988, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9918.256998062134, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:23,984", + "created": 1610346623.984784, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 984.7838878631592, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9918.325901031494, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,984", + "created": 1610346623.984856, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 984.8558902740479, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9918.397903442383, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:23,984", + "created": 1610346623.984908, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 984.9081039428711, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9918.450117111206, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,984", + "created": 1610346623.984978, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 984.9779605865479, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9918.519973754883, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:23,985", + "created": 1610346623.985027, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 985.0270748138428, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9918.569087982178, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,985", + "created": 1610346623.985108, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 985.1078987121582, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9918.649911880493, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:23,985", + "created": 1610346623.985165, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 985.1651191711426, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9918.707132339478, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,985", + "created": 1610346623.985232, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 985.2321147918701, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9918.774127960205, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:23,985", + "created": 1610346623.98528, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 985.2800369262695, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9918.822050094604, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:23,985", + "created": 1610346623.985363, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 985.3630065917969, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9918.905019760132, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:23,985", + "created": 1610346623.985421, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 985.4209423065186, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9918.962955474854, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:23,985", + "created": 1610346623.985493, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 985.4929447174072, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9919.034957885742, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:23,985", + "created": 1610346623.985543, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 985.5430126190186, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9919.085025787354, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:23,985", + "created": 1610346623.985643, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 985.6429100036621, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9919.184923171997, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:23,985", + "created": 1610346623.98576, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 985.759973526001, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9919.301986694336, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:23,985", + "created": 1610346623.985831, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 985.8310222625732, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 9919.373035430908, + "thread": 140633855481600, + "threadName": "Thread-14" + } + ], + "msecs": 316.4489269256592, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10249.990940093994, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.33061790466308594 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:24,316", + "created": 1610346624.316966, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -11697,356 +22147,24 @@ "message": "Setting no Channel name for server and client", "module": "test_communication", "moduleLogger": [], - "msecs": 36.81492805480957, + "msecs": 316.96605682373047, "msg": "Setting no Channel name for server and client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8201.63083076477, - "thread": 140012350113600, + "relativeCreated": 10250.508069992065, + "thread": 140634736203584, "threadName": "MainThread", "time_consumption": 0.0 }, - { - "args": [], - "asctime": "2021-01-06 22:49:05,639", - "created": 1609969745.639474, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 265, - "message": "Server and Client connect callback triggered", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:05,037", - "created": 1609969745.03707, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 37.07003593444824, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8201.88593864441, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:" - ], - "asctime": "2021-01-06 22:49:05,037", - "created": 1609969745.03726, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 37.26005554199219, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8202.075958251953, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:05,037", - "created": 1609969745.037474, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 37.47391700744629, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8202.289819717407, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:05,037", - "created": 1609969745.037863, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", - "module": "test_helpers", - "msecs": 37.86301612854004, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8202.678918838501, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:05,037", - "created": 1609969745.037969, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", - "module": "test_helpers", - "msecs": 37.969112396240234, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8202.785015106201, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:05,038", - "created": 1609969745.038071, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 38.0709171295166, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8202.886819839478, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "__channel_name_request__" - ], - "asctime": "2021-01-06 22:49:05,038", - "created": 1609969745.038136, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 38.13600540161133, - "msg": "%s RX <- Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8202.951908111572, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:05,038", - "created": 1609969745.038203, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 38.20300102233887, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8203.0189037323, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:05,038", - "created": 1609969745.038335, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "module": "test_helpers", - "msecs": 38.33508491516113, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8203.150987625122, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:05,038", - "created": 1609969745.038445, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "module": "test_helpers", - "msecs": 38.44499588012695, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8203.260898590088, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:05,038", - "created": 1609969745.038532, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 38.53201866149902, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8203.34792137146, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "__channel_name_response__" - ], - "asctime": "2021-01-06 22:49:05,038", - "created": 1609969745.038595, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 38.594961166381836, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8203.410863876343, - "thread": 140012350113600, - "threadName": "MainThread" - } - ], - "msecs": 639.4739151000977, - "msg": "Server and Client connect callback triggered", - "name": "__tLogger__", - "pathname": "src/tests/test_communication.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8804.289817810059, - "thread": 140012350113600, - "threadName": "MainThread", - "time_consumption": 0.6008789539337158 - }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:05,640", - "created": 1609969745.640394, + "asctime": "2021-01-11 07:30:24,317", + "created": 1610346624.317565, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12063,8 +22181,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:05,639", - "created": 1609969745.639993, + "asctime": "2021-01-11 07:30:24,317", + "created": 1610346624.317242, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12074,14 +22192,14 @@ "lineno": 22, "message": "Result (Channel name of server): None ()", "module": "test", - "msecs": 639.9929523468018, + "msecs": 317.241907119751, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8804.808855056763, - "thread": 140012350113600, + "relativeCreated": 10250.783920288086, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -12090,8 +22208,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:05,640", - "created": 1609969745.640199, + "asctime": "2021-01-11 07:30:24,317", + "created": 1610346624.317414, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12101,35 +22219,35 @@ "lineno": 26, "message": "Expectation (Channel name of server): result = None ()", "module": "test", - "msecs": 640.1989459991455, + "msecs": 317.4140453338623, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8805.014848709106, - "thread": 140012350113600, + "relativeCreated": 10250.956058502197, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 640.3939723968506, + "msecs": 317.5649642944336, "msg": "Channel name of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8805.209875106812, - "thread": 140012350113600, + "relativeCreated": 10251.106977462769, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00019502639770507812 + "time_consumption": 0.00015091896057128906 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:05,641", - "created": 1609969745.641023, + "asctime": "2021-01-11 07:30:24,318", + "created": 1610346624.318159, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12146,8 +22264,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:05,640", - "created": 1609969745.64067, + "asctime": "2021-01-11 07:30:24,317", + "created": 1610346624.317842, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12157,14 +22275,14 @@ "lineno": 22, "message": "Result (Channel name of client): None ()", "module": "test", - "msecs": 640.6700611114502, + "msecs": 317.8420066833496, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8805.485963821411, - "thread": 140012350113600, + "relativeCreated": 10251.384019851685, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -12173,8 +22291,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:05,640", - "created": 1609969745.640838, + "asctime": "2021-01-11 07:30:24,318", + "created": 1610346624.318001, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12184,32 +22302,57 @@ "lineno": 26, "message": "Expectation (Channel name of client): result = None ()", "module": "test", - "msecs": 640.8379077911377, + "msecs": 318.00103187561035, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8805.653810501099, - "thread": 140012350113600, + "relativeCreated": 10251.543045043945, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 641.0229206085205, + "msecs": 318.1591033935547, "msg": "Channel name of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8805.838823318481, - "thread": 140012350113600, + "relativeCreated": 10251.70111656189, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0001850128173828125 + "time_consumption": 0.00015807151794433594 }, { "args": [], - "asctime": "2021-01-06 22:49:05,641", - "created": 1609969745.641524, + "asctime": "2021-01-11 07:30:24,318", + "created": 1610346624.318845, + "exc_info": null, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "channel_name_exchange", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 267, + "message": "Setting different Channel names for client and Server", + "module": "test_communication", + "moduleLogger": [], + "msecs": 318.8450336456299, + "msg": "Setting different Channel names for client and Server", + "name": "__tLogger__", + "pathname": "src/tests/test_communication.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10252.387046813965, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:24,665", + "created": 1610346624.665414, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -12217,386 +22360,1369 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 271, - "message": "Setting different Channel names for client and Server", - "module": "test_communication", - "moduleLogger": [], - "msecs": 641.524076461792, - "msg": "Setting different Channel names for client and Server", - "name": "__tLogger__", - "pathname": "src/tests/test_communication.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8806.339979171753, - "thread": 140012350113600, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-01-06 22:49:06,246", - "created": 1609969746.24647, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 275, - "message": "Server and Client connect callback triggered", + "message": "Connecting Server and Client", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:05,641", - "created": 1609969745.641815, + "asctime": "2021-01-11 07:30:24,319", + "created": 1610346624.31907, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", "module": "__init__", - "msecs": 641.8149471282959, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.server", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 319.07010078430176, + "msg": "%s Connection Lost...", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8806.630849838257, - "thread": 140012350113600, + "relativeCreated": 10252.612113952637, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-client:" ], - "asctime": "2021-01-06 22:49:05,642", - "created": 1609969745.642037, + "asctime": "2021-01-11 07:30:24,319", + "created": 1610346624.319294, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 319.2939758300781, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.client", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10252.835988998413, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:24,319", + "created": 1610346624.319532, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 319.5319175720215, + "msg": "%s Connection Lost...", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10253.073930740356, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:24,319", + "created": 1610346624.319719, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 319.7190761566162, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.server", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10253.261089324951, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:24,319", + "created": 1610346624.319923, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 319.92292404174805, + "msg": "%s Connection established...", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10253.464937210083, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:24,320", + "created": 1610346624.320104, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 320.10388374328613, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10253.645896911621, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:24,320", + "created": 1610346624.320486, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 642.0369148254395, + "msecs": 320.48606872558594, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8806.8528175354, - "thread": 140012350113600, + "relativeCreated": 10254.02808189392, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: channel name request, data_id: name", "status: okay", "'client'" ], - "asctime": "2021-01-06 22:49:05,642", - "created": 1609969745.642266, + "asctime": "2021-01-11 07:30:24,320", + "created": 1610346624.320907, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: channel name request, data_id: name, status: okay, data: \"'client'\"", + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"'client'\"", "module": "__init__", - "msecs": 642.266035079956, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 320.9071159362793, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8807.081937789917, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:05,642", - "created": 1609969745.642746, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 93 56 e3 b4", - "module": "test_helpers", - "msecs": 642.7459716796875, - "msg": "Send data: (66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 93 56 e3 b4", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8807.561874389648, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:05,643", - "created": 1609969745.643117, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 93 56 e3 b4", - "module": "test_helpers", - "msecs": 643.1169509887695, - "msg": "Receive data (66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 93 56 e3 b4", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8807.93285369873, - "thread": 140012350113600, + "relativeCreated": 10254.449129104614, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-server:" + ], + "asctime": "2021-01-11 07:30:24,321", + "created": 1610346624.321682, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 321.6819763183594, + "msg": "%s Connection established...", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10255.223989486694, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:24,321", + "created": 1610346624.3219, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 321.8998908996582, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10255.441904067993, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:24,322", + "created": 1610346624.322053, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 322.0529556274414, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.server", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10255.594968795776, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a" + ], + "asctime": "2021-01-11 07:30:24,342", + "created": 1610346624.342487, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a", + "module": "__init__", + "msecs": 342.487096786499, + "msg": "%s TX -> %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10276.029109954834, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a" + ], + "asctime": "2021-01-11 07:30:24,343", + "created": 1610346624.343468, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a", + "module": "__init__", + "msecs": 343.46795082092285, + "msg": "%s RX <- %s", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10277.009963989258, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,343", + "created": 1610346624.343868, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 343.8680171966553, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10277.41003036499, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:24,344", + "created": 1610346624.344231, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 344.23089027404785, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10277.772903442383, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,345", + "created": 1610346624.345123, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 345.1230525970459, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10278.66506576538, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:24,345", + "created": 1610346624.345322, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 345.3218936920166, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10278.863906860352, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,345", + "created": 1610346624.345678, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 345.67809104919434, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10279.22010421753, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:24,345", + "created": 1610346624.345915, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 345.9150791168213, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10279.457092285156, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,346", + "created": 1610346624.346162, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 346.1620807647705, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10279.704093933105, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:24,346", + "created": 1610346624.346348, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 346.3480472564697, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10279.890060424805, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,346", + "created": 1610346624.346607, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 346.606969833374, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10280.148983001709, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-client:", + "(10): 3d 20 30 7d 93 56 e3 b4 3a 3e" + ], + "asctime": "2021-01-11 07:30:24,346", + "created": 1610346624.346825, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (10): 3d 20 30 7d 93 56 e3 b4 3a 3e", + "module": "__init__", + "msecs": 346.82488441467285, + "msg": "%s TX -> %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10280.366897583008, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(10): 3d 20 30 7d 93 56 e3 b4 3a 3e" + ], + "asctime": "2021-01-11 07:30:24,347", + "created": 1610346624.347048, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (10): 3d 20 30 7d 93 56 e3 b4 3a 3e", + "module": "__init__", + "msecs": 347.0480442047119, + "msg": "%s RX <- %s", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10280.590057373047, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:24,347", + "created": 1610346624.347244, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 347.2440242767334, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10280.786037445068, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,347", + "created": 1610346624.34743, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 347.4299907684326, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10280.972003936768, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:24,347", + "created": 1610346624.347591, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 347.5909233093262, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10281.132936477661, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + "(66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 93 56 e3 b4" + ], + "asctime": "2021-01-11 07:30:24,348", + "created": 1610346624.348082, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 93 56 e3 b4", + "module": "stp", + "msecs": 348.0820655822754, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10281.62407875061, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: channel name request, data_id: name", "status: okay", "u'client'" ], - "asctime": "2021-01-06 22:49:05,643", - "created": 1609969745.64345, + "asctime": "2021-01-11 07:30:24,348", + "created": 1610346624.348815, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: channel name request, data_id: name, status: okay, data: \"u'client'\"", + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"u'client'\"", "module": "__init__", - "msecs": 643.4500217437744, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 348.8149642944336, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8808.265924453735, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 10282.356977462769, + "thread": 140633863874304, + "threadName": "Thread-13" }, { "args": [ - "SP server:", + "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-06 22:49:05,643", - "created": 1609969745.643675, + "asctime": "2021-01-11 07:30:24,349", + "created": 1610346624.349274, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __channel_name_request__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 643.6750888824463, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 349.2739200592041, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8808.490991592407, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 10282.815933227539, + "thread": 140633863874304, + "threadName": "Thread-13" }, { "args": [ - "SP server:", + "prot-server:", "'server'", "u'client'" ], - "asctime": "2021-01-06 22:49:05,643", - "created": 1609969745.643993, + "asctime": "2021-01-11 07:30:24,349", + "created": 1610346624.349941, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__channel_name_request__", "levelname": "WARNING", "levelno": 30, - "lineno": 408, - "message": "SP server: overwriting user defined channel name from 'server' to u'client'", + "lineno": 418, + "message": "prot-server: overwriting user defined channel name from 'server' to u'client'", "module": "__init__", - "msecs": 643.9929008483887, + "msecs": 349.9410152435303, "msg": "%s overwriting user defined channel name from %s to %s", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8808.80880355835, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 10283.483028411865, + "thread": 140633863874304, + "threadName": "Thread-13" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: channel name response, data_id: name", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:05,644", - "created": 1609969745.644207, + "asctime": "2021-01-11 07:30:24,350", + "created": 1610346624.350309, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 644.2070007324219, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 350.308895111084, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8809.022903442383, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:05,644", - "created": 1609969745.644634, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "module": "test_helpers", - "msecs": 644.6340084075928, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8809.449911117554, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:05,644", - "created": 1609969745.644978, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "module": "test_helpers", - "msecs": 644.9780464172363, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 8809.793949127197, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 10283.850908279419, + "thread": 140633863874304, + "threadName": "Thread-13" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:24,353", + "created": 1610346624.353947, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 353.9469242095947, + "msg": "%s TX -> %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10287.48893737793, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:24,354", + "created": 1610346624.354438, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 354.43806648254395, + "msg": "%s RX <- %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10287.980079650879, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,354", + "created": 1610346624.354706, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 354.7060489654541, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10288.248062133789, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:24,354", + "created": 1610346624.354985, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 354.98499870300293, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10288.527011871338, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,355", + "created": 1610346624.355301, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 355.3009033203125, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10288.842916488647, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:24,355", + "created": 1610346624.355588, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 355.5879592895508, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10289.129972457886, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,355", + "created": 1610346624.355849, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 355.849027633667, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10289.391040802002, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:24,355", + "created": 1610346624.355992, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 355.99207878112793, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10289.534091949463, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,356", + "created": 1610346624.35616, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 356.15992546081543, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10289.70193862915, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:24,356", + "created": 1610346624.356288, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 356.28795623779297, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10289.829969406128, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,356", + "created": 1610346624.356473, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 356.4729690551758, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10290.01498222351, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:24,356", + "created": 1610346624.356627, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 356.6269874572754, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10290.16900062561, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:24,356", + "created": 1610346624.356781, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 356.781005859375, + "msg": "%s TX -> %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10290.32301902771, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:24,356", + "created": 1610346624.356879, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 356.87899589538574, + "msg": "%s RX <- %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10290.42100906372, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,356", + "created": 1610346624.356947, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 356.9469451904297, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10290.488958358765, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:24,357", + "created": 1610346624.35701, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 357.0098876953125, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10290.551900863647, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:24,357", + "created": 1610346624.357129, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 357.1290969848633, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10290.671110153198, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: channel name response, data_id: name", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:05,645", - "created": 1609969745.645263, + "asctime": "2021-01-11 07:30:24,357", + "created": 1610346624.357282, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 645.2629566192627, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 357.2819232940674, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8810.078859329224, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 10290.823936462402, + "thread": 140633855481600, + "threadName": "Thread-14" }, { "args": [ - "SP client:", + "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-06 22:49:05,645", - "created": 1609969745.645464, + "asctime": "2021-01-11 07:30:24,357", + "created": 1610346624.357358, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __channel_name_response__ to process received data", + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 645.4639434814453, + "msecs": 357.3579788208008, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 8810.279846191406, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 10290.899991989136, + "thread": 140633855481600, + "threadName": "Thread-14" } ], - "msecs": 246.46997451782227, - "msg": "Server and Client connect callback triggered", + "msecs": 665.4140949249268, + "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 9411.285877227783, - "thread": 140012350113600, + "relativeCreated": 10598.956108093262, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.601006031036377 + "time_consumption": 0.308056116104126 }, { "args": [ "'client'", "" ], - "asctime": "2021-01-06 22:49:06,247", - "created": 1609969746.24739, + "asctime": "2021-01-11 07:30:24,666", + "created": 1610346624.66686, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12613,8 +23739,8 @@ "'client'", "" ], - "asctime": "2021-01-06 22:49:06,246", - "created": 1609969746.246971, + "asctime": "2021-01-11 07:30:24,666", + "created": 1610346624.666369, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12624,14 +23750,14 @@ "lineno": 22, "message": "Result (Channel name of server): 'client' ()", "module": "test", - "msecs": 246.97089195251465, + "msecs": 666.3689613342285, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 9411.786794662476, - "thread": 140012350113600, + "relativeCreated": 10599.910974502563, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -12640,8 +23766,8 @@ "'client'", "" ], - "asctime": "2021-01-06 22:49:06,247", - "created": 1609969746.247203, + "asctime": "2021-01-11 07:30:24,666", + "created": 1610346624.666627, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12651,35 +23777,35 @@ "lineno": 26, "message": "Expectation (Channel name of server): result = 'client' ()", "module": "test", - "msecs": 247.20311164855957, + "msecs": 666.6269302368164, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 9412.01901435852, - "thread": 140012350113600, + "relativeCreated": 10600.168943405151, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 247.3900318145752, + "msecs": 666.8601036071777, "msg": "Channel name of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 9412.205934524536, - "thread": 140012350113600, + "relativeCreated": 10600.402116775513, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.000186920166015625 + "time_consumption": 0.00023317337036132812 }, { "args": [ "'client'", "" ], - "asctime": "2021-01-06 22:49:06,248", - "created": 1609969746.248012, + "asctime": "2021-01-11 07:30:24,667", + "created": 1610346624.66781, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12696,8 +23822,8 @@ "'client'", "" ], - "asctime": "2021-01-06 22:49:06,247", - "created": 1609969746.247685, + "asctime": "2021-01-11 07:30:24,667", + "created": 1610346624.66737, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12707,14 +23833,14 @@ "lineno": 22, "message": "Result (Channel name of client): 'client' ()", "module": "test", - "msecs": 247.68495559692383, + "msecs": 667.370080947876, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 9412.500858306885, - "thread": 140012350113600, + "relativeCreated": 10600.912094116211, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -12723,8 +23849,8 @@ "'client'", "" ], - "asctime": "2021-01-06 22:49:06,247", - "created": 1609969746.247852, + "asctime": "2021-01-11 07:30:24,667", + "created": 1610346624.667555, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12734,32 +23860,57 @@ "lineno": 26, "message": "Expectation (Channel name of client): result = 'client' ()", "module": "test", - "msecs": 247.85208702087402, + "msecs": 667.5550937652588, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 9412.667989730835, - "thread": 140012350113600, + "relativeCreated": 10601.097106933594, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 248.01206588745117, + "msecs": 667.8099632263184, "msg": "Channel name of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 9412.827968597412, - "thread": 140012350113600, + "relativeCreated": 10601.351976394653, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00015997886657714844 + "time_consumption": 0.0002548694610595703 }, { "args": [], - "asctime": "2021-01-06 22:49:06,248", - "created": 1609969746.248493, + "asctime": "2021-01-11 07:30:24,668", + "created": 1610346624.668493, + "exc_info": null, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "channel_name_exchange", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 277, + "message": "Setting identical Channel names for client and server", + "module": "test_communication", + "moduleLogger": [], + "msecs": 668.4930324554443, + "msg": "Setting identical Channel names for client and server", + "name": "__tLogger__", + "pathname": "src/tests/test_communication.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10602.03504562378, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:25,014", + "created": 1610346625.01434, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -12767,359 +23918,1342 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 281, - "message": "Setting identical Channel names for client and server", - "module": "test_communication", - "moduleLogger": [], - "msecs": 248.49295616149902, - "msg": "Setting identical Channel names for client and server", - "name": "__tLogger__", - "pathname": "src/tests/test_communication.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 9413.30885887146, - "thread": 140012350113600, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-01-06 22:49:06,853", - "created": 1609969746.853355, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 285, - "message": "Server and Client connect callback triggered", + "message": "Connecting Server and Client", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:06,248", - "created": 1609969746.24876, + "asctime": "2021-01-11 07:30:24,668", + "created": 1610346624.668764, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 668.7641143798828, + "msg": "%s Connection Lost...", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10602.306127548218, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:24,668", + "created": 1610346624.668971, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 668.971061706543, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.unittest", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10602.513074874878, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:24,669", + "created": 1610346624.669158, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 669.1579818725586, + "msg": "%s Connection Lost...", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10602.699995040894, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:24,669", + "created": 1610346624.66934, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 669.3398952484131, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.unittest", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10602.881908416748, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:24,669", + "created": 1610346624.669575, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 669.5749759674072, + "msg": "%s Connection established...", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10603.116989135742, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:24,669", + "created": 1610346624.669746, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 669.745922088623, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10603.287935256958, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:24,669", + "created": 1610346624.669924, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 248.75998497009277, + "msecs": 669.9240207672119, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 9413.575887680054, - "thread": 140012350113600, + "relativeCreated": 10603.466033935547, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" - ], - "asctime": "2021-01-06 22:49:06,248", - "created": 1609969746.248984, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 248.98409843444824, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.unittest", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 9413.80000114441, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: channel name request, data_id: name", "status: okay", "'unittest'" ], - "asctime": "2021-01-06 22:49:06,249", - "created": 1609969746.249219, + "asctime": "2021-01-11 07:30:24,670", + "created": 1610346624.670217, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: channel name request, data_id: name, status: okay, data: \"'unittest'\"", + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"'unittest'\"", "module": "__init__", - "msecs": 249.21894073486328, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 670.2170372009277, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 9414.034843444824, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:06,249", - "created": 1609969746.24971, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (68): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d b0 bd 92 06", - "module": "test_helpers", - "msecs": 249.7100830078125, - "msg": "Send data: (68): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d b0 bd 92 06", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 9414.525985717773, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:06,250", - "created": 1609969746.250111, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (68): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d b0 bd 92 06", - "module": "test_helpers", - "msecs": 250.11110305786133, - "msg": "Receive data (68): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d b0 bd 92 06", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 9414.927005767822, - "thread": 140012350113600, + "relativeCreated": 10603.759050369263, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-server:" + ], + "asctime": "2021-01-11 07:30:24,670", + "created": 1610346624.670741, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 670.741081237793, + "msg": "%s Connection established...", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10604.283094406128, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:24,670", + "created": 1610346624.670938, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 670.9380149841309, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10604.480028152466, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:24,671", + "created": 1610346624.67112, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 671.1199283599854, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.unittest", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10604.66194152832, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64" + ], + "asctime": "2021-01-11 07:30:24,684", + "created": 1610346624.684697, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64", + "module": "__init__", + "msecs": 684.6969127655029, + "msg": "%s TX -> %s", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10618.238925933838, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64" + ], + "asctime": "2021-01-11 07:30:24,685", + "created": 1610346624.685115, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64", + "module": "__init__", + "msecs": 685.1150989532471, + "msg": "%s RX <- %s", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10618.657112121582, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,685", + "created": 1610346624.685251, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 685.250997543335, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10618.79301071167, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:24,685", + "created": 1610346624.685351, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 685.3508949279785, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10618.892908096313, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,685", + "created": 1610346624.685547, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 685.5471134185791, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10619.089126586914, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:24,685", + "created": 1610346624.685651, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 685.6510639190674, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10619.193077087402, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,685", + "created": 1610346624.685777, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 685.776948928833, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10619.318962097168, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:24,685", + "created": 1610346624.685867, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 685.8670711517334, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10619.409084320068, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,686", + "created": 1610346624.686015, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 686.0148906707764, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10619.556903839111, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:24,686", + "created": 1610346624.686142, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 686.1419677734375, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10619.683980941772, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-client:", + "(12): 22 3a 3d 20 30 7d b0 bd 92 06 3a 3e" + ], + "asctime": "2021-01-11 07:30:24,686", + "created": 1610346624.68638, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (12): 22 3a 3d 20 30 7d b0 bd 92 06 3a 3e", + "module": "__init__", + "msecs": 686.3799095153809, + "msg": "%s TX -> %s", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10619.921922683716, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(12): 22 3a 3d 20 30 7d b0 bd 92 06 3a 3e" + ], + "asctime": "2021-01-11 07:30:24,686", + "created": 1610346624.686478, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (12): 22 3a 3d 20 30 7d b0 bd 92 06 3a 3e", + "module": "__init__", + "msecs": 686.4778995513916, + "msg": "%s RX <- %s", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10620.019912719727, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,686", + "created": 1610346624.686554, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 686.553955078125, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10620.09596824646, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:24,686", + "created": 1610346624.686641, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 686.6409778594971, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10620.182991027832, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,686", + "created": 1610346624.686723, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 686.722993850708, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10620.265007019043, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:24,686", + "created": 1610346624.686792, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 686.7918968200684, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10620.333909988403, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + "(68): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d b0 bd 92 06" + ], + "asctime": "2021-01-11 07:30:24,686", + "created": 1610346624.686942, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (68): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d b0 bd 92 06", + "module": "stp", + "msecs": 686.9421005249023, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10620.484113693237, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: channel name request, data_id: name", "status: okay", "u'unittest'" ], - "asctime": "2021-01-06 22:49:06,250", - "created": 1609969746.250442, + "asctime": "2021-01-11 07:30:24,687", + "created": 1610346624.687144, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: channel name request, data_id: name, status: okay, data: \"u'unittest'\"", + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"u'unittest'\"", "module": "__init__", - "msecs": 250.4420280456543, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 687.1440410614014, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 9415.257930755615, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 10620.686054229736, + "thread": 140633863874304, + "threadName": "Thread-13" }, { "args": [ - "SP server:", + "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-06 22:49:06,250", - "created": 1609969746.250663, + "asctime": "2021-01-11 07:30:24,687", + "created": 1610346624.687244, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __channel_name_request__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 250.66304206848145, - "msg": "%s RX <- Executing callback %s to process received data", - "name": "root.socket_protocol.unittest", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 9415.478944778442, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:06,251", - "created": 1609969746.251057, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 251.05690956115723, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.unittest", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 9415.872812271118, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:06,251", - "created": 1609969746.251493, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "module": "test_helpers", - "msecs": 251.49297714233398, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 9416.308879852295, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:06,251", - "created": 1609969746.251838, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "module": "test_helpers", - "msecs": 251.83796882629395, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 9416.653871536255, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:06,252", - "created": 1609969746.25214, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 252.14004516601562, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.unittest", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 9416.955947875977, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "__channel_name_response__" - ], - "asctime": "2021-01-06 22:49:06,252", - "created": 1609969746.25235, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 252.3500919342041, + "msecs": 687.2439384460449, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 9417.165994644165, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 10620.78595161438, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:24,687", + "created": 1610346624.687447, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 687.4470710754395, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.unittest", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10620.989084243774, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:24,690", + "created": 1610346624.690377, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 690.3769969940186, + "msg": "%s TX -> %s", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10623.919010162354, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:24,691", + "created": 1610346624.691022, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 691.0219192504883, + "msg": "%s RX <- %s", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10624.563932418823, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,691", + "created": 1610346624.691307, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 691.3070678710938, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10624.849081039429, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:24,691", + "created": 1610346624.69155, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 691.5500164031982, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10625.092029571533, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,691", + "created": 1610346624.691821, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 691.8210983276367, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10625.363111495972, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:24,692", + "created": 1610346624.692044, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 692.0440196990967, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10625.586032867432, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,692", + "created": 1610346624.69236, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 692.3599243164062, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10625.901937484741, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:24,692", + "created": 1610346624.692592, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 692.5919055938721, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10626.133918762207, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,692", + "created": 1610346624.692881, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 692.8811073303223, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10626.423120498657, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:24,693", + "created": 1610346624.693091, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 693.0909156799316, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10626.632928848267, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,693", + "created": 1610346624.693377, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 693.3770179748535, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10626.919031143188, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:24,693", + "created": 1610346624.693609, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 693.6089992523193, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10627.151012420654, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:24,693", + "created": 1610346624.693944, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 693.943977355957, + "msg": "%s TX -> %s", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10627.485990524292, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:24,694", + "created": 1610346624.694205, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 694.2050457000732, + "msg": "%s RX <- %s", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10627.747058868408, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:24,694", + "created": 1610346624.694546, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 694.5459842681885, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10628.087997436523, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:24,694", + "created": 1610346624.694732, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 694.7319507598877, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10628.273963928223, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:24,695", + "created": 1610346624.695144, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 695.1439380645752, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10628.68595123291, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:24,695", + "created": 1610346624.695573, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 695.573091506958, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.unittest", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10629.115104675293, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:24,695", + "created": 1610346624.695816, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 695.8160400390625, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.unittest", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10629.358053207397, + "thread": 140633855481600, + "threadName": "Thread-14" } ], - "msecs": 853.3549308776855, - "msg": "Server and Client connect callback triggered", + "msecs": 14.339923858642578, + "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10018.170833587646, - "thread": 140012350113600, + "relativeCreated": 10947.881937026978, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.6010048389434814 + "time_consumption": 0.3185238838195801 }, { "args": [ "'unittest'", "" ], - "asctime": "2021-01-06 22:49:06,854", - "created": 1609969746.854316, + "asctime": "2021-01-11 07:30:25,015", + "created": 1610346625.015059, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13136,8 +25270,8 @@ "'unittest'", "" ], - "asctime": "2021-01-06 22:49:06,853", - "created": 1609969746.85391, + "asctime": "2021-01-11 07:30:25,014", + "created": 1610346625.014791, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13147,14 +25281,14 @@ "lineno": 22, "message": "Result (Channel name of server): 'unittest' ()", "module": "test", - "msecs": 853.909969329834, + "msecs": 14.791011810302734, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10018.725872039795, - "thread": 140012350113600, + "relativeCreated": 10948.333024978638, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -13163,8 +25297,8 @@ "'unittest'", "" ], - "asctime": "2021-01-06 22:49:06,854", - "created": 1609969746.854124, + "asctime": "2021-01-11 07:30:25,014", + "created": 1610346625.014943, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13174,35 +25308,35 @@ "lineno": 26, "message": "Expectation (Channel name of server): result = 'unittest' ()", "module": "test", - "msecs": 854.1240692138672, + "msecs": 14.94288444519043, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10018.939971923828, - "thread": 140012350113600, + "relativeCreated": 10948.484897613525, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 854.315996170044, + "msecs": 15.05899429321289, "msg": "Channel name of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10019.131898880005, - "thread": 140012350113600, + "relativeCreated": 10948.601007461548, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0001919269561767578 + "time_consumption": 0.00011610984802246094 }, { "args": [ "'unittest'", "" ], - "asctime": "2021-01-06 22:49:06,854", - "created": 1609969746.85495, + "asctime": "2021-01-11 07:30:25,015", + "created": 1610346625.015483, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13219,8 +25353,8 @@ "'unittest'", "" ], - "asctime": "2021-01-06 22:49:06,854", - "created": 1609969746.854616, + "asctime": "2021-01-11 07:30:25,015", + "created": 1610346625.015261, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13230,14 +25364,14 @@ "lineno": 22, "message": "Result (Channel name of client): 'unittest' ()", "module": "test", - "msecs": 854.6159267425537, + "msecs": 15.260934829711914, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10019.431829452515, - "thread": 140012350113600, + "relativeCreated": 10948.802947998047, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -13246,8 +25380,8 @@ "'unittest'", "" ], - "asctime": "2021-01-06 22:49:06,854", - "created": 1609969746.854788, + "asctime": "2021-01-11 07:30:25,015", + "created": 1610346625.015372, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13257,32 +25391,57 @@ "lineno": 26, "message": "Expectation (Channel name of client): result = 'unittest' ()", "module": "test", - "msecs": 854.788064956665, + "msecs": 15.372037887573242, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10019.603967666626, - "thread": 140012350113600, + "relativeCreated": 10948.914051055908, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 854.949951171875, + "msecs": 15.482902526855469, "msg": "Channel name of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10019.765853881836, - "thread": 140012350113600, + "relativeCreated": 10949.02491569519, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00016188621520996094 + "time_consumption": 0.00011086463928222656 }, { "args": [], - "asctime": "2021-01-06 22:49:06,855", - "created": 1609969746.855398, + "asctime": "2021-01-11 07:30:25,015", + "created": 1610346625.015841, + "exc_info": null, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "channel_name_exchange", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 287, + "message": "Setting Channel name for client only", + "module": "test_communication", + "moduleLogger": [], + "msecs": 15.841007232666016, + "msg": "Setting Channel name for client only", + "name": "__tLogger__", + "pathname": "src/tests/test_communication.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10949.383020401001, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:25,361", + "created": 1610346625.361583, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -13290,385 +25449,1368 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 291, - "message": "Setting Channel name for client only", - "module": "test_communication", - "moduleLogger": [], - "msecs": 855.3979396820068, - "msg": "Setting Channel name for client only", - "name": "__tLogger__", - "pathname": "src/tests/test_communication.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 10020.213842391968, - "thread": 140012350113600, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-01-06 22:49:07,460", - "created": 1609969747.460261, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 295, - "message": "Server and Client connect callback triggered", + "message": "Connecting Server and Client", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:06,855", - "created": 1609969746.855665, + "asctime": "2021-01-11 07:30:25,016", + "created": 1610346625.016057, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", "module": "__init__", - "msecs": 855.6649684906006, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 16.05701446533203, + "msg": "%s Connection Lost...", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10020.480871200562, - "thread": 140012350113600, + "relativeCreated": 10949.599027633667, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-client:" ], - "asctime": "2021-01-06 22:49:06,855", - "created": 1609969746.855882, + "asctime": "2021-01-11 07:30:25,016", + "created": 1610346625.01622, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 16.2200927734375, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.client", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10949.762105941772, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:25,016", + "created": 1610346625.01634, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 16.340017318725586, + "msg": "%s Connection Lost...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10949.88203048706, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:25,016", + "created": 1610346625.016429, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 16.42894744873047, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10949.970960617065, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:25,016", + "created": 1610346625.01655, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 16.550064086914062, + "msg": "%s Connection established...", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10950.092077255249, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:25,016", + "created": 1610346625.01665, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 16.649961471557617, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10950.191974639893, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:25,016", + "created": 1610346625.016753, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 855.881929397583, + "msecs": 16.752958297729492, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10020.697832107544, - "thread": 140012350113600, + "relativeCreated": 10950.294971466064, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: channel name request, data_id: name", "status: okay", "'client'" ], - "asctime": "2021-01-06 22:49:06,856", - "created": 1609969746.856106, + "asctime": "2021-01-11 07:30:25,017", + "created": 1610346625.01709, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: channel name request, data_id: name, status: okay, data: \"'client'\"", + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"'client'\"", "module": "__init__", - "msecs": 856.1060428619385, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 17.0900821685791, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10020.9219455719, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:06,856", - "created": 1609969746.856578, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 93 56 e3 b4", - "module": "test_helpers", - "msecs": 856.5781116485596, - "msg": "Send data: (66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 93 56 e3 b4", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 10021.39401435852, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:06,856", - "created": 1609969746.856947, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 93 56 e3 b4", - "module": "test_helpers", - "msecs": 856.9469451904297, - "msg": "Receive data (66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 93 56 e3 b4", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 10021.76284790039, - "thread": 140012350113600, + "relativeCreated": 10950.632095336914, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-server:" + ], + "asctime": "2021-01-11 07:30:25,017", + "created": 1610346625.017464, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 17.46392250061035, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10951.005935668945, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:25,017", + "created": 1610346625.017795, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 17.795085906982422, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10951.337099075317, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:25,018", + "created": 1610346625.01854, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 18.539905548095703, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10952.08191871643, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a" + ], + "asctime": "2021-01-11 07:30:25,020", + "created": 1610346625.020764, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a", + "module": "__init__", + "msecs": 20.76411247253418, + "msg": "%s TX -> %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10954.30612564087, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a" + ], + "asctime": "2021-01-11 07:30:25,021", + "created": 1610346625.021516, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a", + "module": "__init__", + "msecs": 21.516084671020508, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10955.058097839355, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,021", + "created": 1610346625.021709, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 21.708965301513672, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10955.250978469849, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:25,021", + "created": 1610346625.0218, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 21.80004119873047, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10955.342054367065, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,021", + "created": 1610346625.021914, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 21.914005279541016, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10955.456018447876, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,021", + "created": 1610346625.021996, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 21.996021270751953, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10955.538034439087, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,022", + "created": 1610346625.022116, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 22.11594581604004, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10955.657958984375, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,022", + "created": 1610346625.022193, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 22.192955017089844, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10955.734968185425, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,022", + "created": 1610346625.022298, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 22.298097610473633, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10955.840110778809, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,022", + "created": 1610346625.022368, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 22.36795425415039, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10955.909967422485, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,022", + "created": 1610346625.022473, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 22.47309684753418, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10956.01511001587, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-client:", + "(10): 3d 20 30 7d 93 56 e3 b4 3a 3e" + ], + "asctime": "2021-01-11 07:30:25,022", + "created": 1610346625.022606, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (10): 3d 20 30 7d 93 56 e3 b4 3a 3e", + "module": "__init__", + "msecs": 22.60589599609375, + "msg": "%s TX -> %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10956.147909164429, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(10): 3d 20 30 7d 93 56 e3 b4 3a 3e" + ], + "asctime": "2021-01-11 07:30:25,022", + "created": 1610346625.022703, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (10): 3d 20 30 7d 93 56 e3 b4 3a 3e", + "module": "__init__", + "msecs": 22.702932357788086, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10956.244945526123, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,022", + "created": 1610346625.022781, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 22.780895233154297, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10956.32290840149, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,022", + "created": 1610346625.022853, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 22.85289764404297, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10956.394910812378, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:25,022", + "created": 1610346625.022927, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 22.927045822143555, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10956.469058990479, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + "(66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 93 56 e3 b4" + ], + "asctime": "2021-01-11 07:30:25,023", + "created": 1610346625.023088, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 93 56 e3 b4", + "module": "stp", + "msecs": 23.08797836303711, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10956.629991531372, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: channel name request, data_id: name", "status: okay", "u'client'" ], - "asctime": "2021-01-06 22:49:06,857", - "created": 1609969746.857296, + "asctime": "2021-01-11 07:30:25,023", + "created": 1610346625.023727, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: channel name request, data_id: name, status: okay, data: \"u'client'\"", + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"u'client'\"", "module": "__init__", - "msecs": 857.2959899902344, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 23.726940155029297, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10022.111892700195, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 10957.268953323364, + "thread": 140633863874304, + "threadName": "Thread-13" }, { "args": [ - "SP server:", + "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-06 22:49:06,857", - "created": 1609969746.857515, + "asctime": "2021-01-11 07:30:25,023", + "created": 1610346625.023905, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __channel_name_request__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 857.5150966644287, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 23.905038833618164, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10022.33099937439, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 10957.447052001953, + "thread": 140633863874304, + "threadName": "Thread-13" }, { "args": [ - "SP server:", + "prot-server:", "'client'" ], - "asctime": "2021-01-06 22:49:06,857", - "created": 1609969746.857859, + "asctime": "2021-01-11 07:30:25,024", + "created": 1610346625.024183, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__channel_name_request__", "levelname": "INFO", "levelno": 20, - "lineno": 410, - "message": "SP server: channel name is now 'client'", + "lineno": 420, + "message": "prot-server: channel name is now 'client'", "module": "__init__", - "msecs": 857.8588962554932, + "msecs": 24.183034896850586, "msg": "%s channel name is now %s", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10022.674798965454, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 10957.725048065186, + "thread": 140633863874304, + "threadName": "Thread-13" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: channel name response, data_id: name", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:06,858", - "created": 1609969746.858074, + "asctime": "2021-01-11 07:30:25,024", + "created": 1610346625.024322, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 858.0739498138428, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 24.322032928466797, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10022.889852523804, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:06,858", - "created": 1609969746.858497, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "module": "test_helpers", - "msecs": 858.496904373169, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 10023.31280708313, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:06,858", - "created": 1609969746.858836, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "module": "test_helpers", - "msecs": 858.8359355926514, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 10023.651838302612, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 10957.864046096802, + "thread": 140633863874304, + "threadName": "Thread-13" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:25,028", + "created": 1610346625.02875, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 28.749942779541016, + "msg": "%s TX -> %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10962.291955947876, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:25,029", + "created": 1610346625.029131, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 29.130935668945312, + "msg": "%s RX <- %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10962.67294883728, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,029", + "created": 1610346625.029345, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 29.345035552978516, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10962.887048721313, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:25,029", + "created": 1610346625.029552, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 29.551982879638672, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10963.093996047974, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,029", + "created": 1610346625.02977, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 29.7698974609375, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10963.311910629272, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,029", + "created": 1610346625.029929, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 29.928922653198242, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10963.470935821533, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,030", + "created": 1610346625.030223, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 30.22289276123047, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10963.764905929565, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,030", + "created": 1610346625.030984, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 30.983924865722656, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10964.525938034058, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,031", + "created": 1610346625.031152, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 31.152009963989258, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10964.694023132324, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,031", + "created": 1610346625.031272, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 31.271934509277344, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10964.813947677612, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,031", + "created": 1610346625.031416, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 31.415939331054688, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10964.95795249939, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,031", + "created": 1610346625.03153, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 31.529903411865234, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10965.0719165802, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:25,031", + "created": 1610346625.031721, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 31.721115112304688, + "msg": "%s TX -> %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10965.26312828064, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:25,031", + "created": 1610346625.031857, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 31.857013702392578, + "msg": "%s RX <- %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10965.399026870728, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,031", + "created": 1610346625.031968, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 31.968116760253906, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10965.510129928589, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:25,032", + "created": 1610346625.032067, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 32.067060470581055, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10965.609073638916, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:25,032", + "created": 1610346625.032259, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 32.25898742675781, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 10965.801000595093, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: channel name response, data_id: name", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:06,859", - "created": 1609969746.859121, + "asctime": "2021-01-11 07:30:25,032", + "created": 1610346625.032511, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 859.1210842132568, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 32.510995864868164, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10023.936986923218, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 10966.053009033203, + "thread": 140633855481600, + "threadName": "Thread-14" }, { "args": [ - "SP client:", + "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-06 22:49:06,859", - "created": 1609969746.859325, + "asctime": "2021-01-11 07:30:25,032", + "created": 1610346625.032626, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __channel_name_response__ to process received data", + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 859.3249320983887, + "msecs": 32.62591361999512, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10024.14083480835, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 10966.16792678833, + "thread": 140633855481600, + "threadName": "Thread-14" } ], - "msecs": 460.26110649108887, - "msg": "Server and Client connect callback triggered", + "msecs": 361.58299446105957, + "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10625.07700920105, - "thread": 140012350113600, + "relativeCreated": 11295.125007629395, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.6009361743927002 + "time_consumption": 0.32895708084106445 }, { "args": [ "'client'", "" ], - "asctime": "2021-01-06 22:49:07,461", - "created": 1609969747.461217, + "asctime": "2021-01-11 07:30:25,362", + "created": 1610346625.362772, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13685,8 +26827,8 @@ "'client'", "" ], - "asctime": "2021-01-06 22:49:07,460", - "created": 1609969747.460795, + "asctime": "2021-01-11 07:30:25,362", + "created": 1610346625.362203, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13696,14 +26838,14 @@ "lineno": 22, "message": "Result (Channel name of server): 'client' ()", "module": "test", - "msecs": 460.79492568969727, + "msecs": 362.20288276672363, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10625.610828399658, - "thread": 140012350113600, + "relativeCreated": 11295.744895935059, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -13712,8 +26854,8 @@ "'client'", "" ], - "asctime": "2021-01-06 22:49:07,461", - "created": 1609969747.461031, + "asctime": "2021-01-11 07:30:25,362", + "created": 1610346625.362519, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13723,35 +26865,35 @@ "lineno": 26, "message": "Expectation (Channel name of server): result = 'client' ()", "module": "test", - "msecs": 461.0309600830078, + "msecs": 362.5190258026123, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10625.846862792969, - "thread": 140012350113600, + "relativeCreated": 11296.061038970947, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 461.21692657470703, + "msecs": 362.77198791503906, "msg": "Channel name of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10626.032829284668, - "thread": 140012350113600, + "relativeCreated": 11296.314001083374, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00018596649169921875 + "time_consumption": 0.0002529621124267578 }, { "args": [ "'client'", "" ], - "asctime": "2021-01-06 22:49:07,461", - "created": 1609969747.461865, + "asctime": "2021-01-11 07:30:25,363", + "created": 1610346625.363617, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13768,8 +26910,8 @@ "'client'", "" ], - "asctime": "2021-01-06 22:49:07,461", - "created": 1609969747.461509, + "asctime": "2021-01-11 07:30:25,363", + "created": 1610346625.363234, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13779,14 +26921,14 @@ "lineno": 22, "message": "Result (Channel name of client): 'client' ()", "module": "test", - "msecs": 461.50898933410645, + "msecs": 363.2340431213379, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10626.324892044067, - "thread": 140012350113600, + "relativeCreated": 11296.776056289673, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -13795,8 +26937,8 @@ "'client'", "" ], - "asctime": "2021-01-06 22:49:07,461", - "created": 1609969747.461676, + "asctime": "2021-01-11 07:30:25,363", + "created": 1610346625.363422, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13806,32 +26948,57 @@ "lineno": 26, "message": "Expectation (Channel name of client): result = 'client' ()", "module": "test", - "msecs": 461.67588233947754, + "msecs": 363.4219169616699, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10626.491785049438, - "thread": 140012350113600, + "relativeCreated": 11296.963930130005, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 461.8649482727051, + "msecs": 363.616943359375, "msg": "Channel name of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10626.680850982666, - "thread": 140012350113600, + "relativeCreated": 11297.15895652771, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00018906593322753906 + "time_consumption": 0.00019502639770507812 }, { "args": [], - "asctime": "2021-01-06 22:49:07,462", - "created": 1609969747.46232, + "asctime": "2021-01-11 07:30:25,364", + "created": 1610346625.364214, + "exc_info": null, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "channel_name_exchange", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 297, + "message": "Setting Channel name for server only", + "module": "test_communication", + "moduleLogger": [], + "msecs": 364.2139434814453, + "msg": "Setting Channel name for server only", + "name": "__tLogger__", + "pathname": "src/tests/test_communication.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11297.75595664978, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:25,710", + "created": 1610346625.710879, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -13839,385 +27006,1368 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 301, - "message": "Setting Channel name for server only", - "module": "test_communication", - "moduleLogger": [], - "msecs": 462.32008934020996, - "msg": "Setting Channel name for server only", - "name": "__tLogger__", - "pathname": "src/tests/test_communication.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 10627.13599205017, - "thread": 140012350113600, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-01-06 22:49:08,067", - "created": 1609969748.067284, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 305, - "message": "Server and Client connect callback triggered", + "message": "Connecting Server and Client", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:07,462", - "created": 1609969747.462588, + "asctime": "2021-01-11 07:30:25,364", + "created": 1610346625.364508, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 364.50791358947754, + "msg": "%s Connection Lost...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11298.049926757812, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:25,364", + "created": 1610346625.364765, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 364.764928817749, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11298.306941986084, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:25,364", + "created": 1610346625.364973, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 364.9730682373047, + "msg": "%s Connection Lost...", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11298.51508140564, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:25,365", + "created": 1610346625.365135, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 365.13495445251465, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.server", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11298.67696762085, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:25,365", + "created": 1610346625.365337, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 365.3368949890137, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11298.878908157349, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:25,365", + "created": 1610346625.365616, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 365.6160831451416, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11299.158096313477, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:25,365", + "created": 1610346625.365854, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 462.5880718231201, + "msecs": 365.85402488708496, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.server", + "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10627.403974533081, - "thread": 140012350113600, + "relativeCreated": 11299.39603805542, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" ], - "asctime": "2021-01-06 22:49:07,462", - "created": 1609969747.462799, + "asctime": "2021-01-11 07:30:25,366", + "created": 1610346625.366207, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 366.2068843841553, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11299.74889755249, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:25,367", + "created": 1610346625.367011, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 367.01107025146484, + "msg": "%s Connection established...", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11300.5530834198, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:25,367", + "created": 1610346625.367304, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 367.30408668518066, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11300.846099853516, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:25,367", + "created": 1610346625.367587, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 462.799072265625, + "msecs": 367.5870895385742, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 10627.614974975586, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:07,463", - "created": 1609969747.463024, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 463.0239009857178, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 10627.839803695679, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:07,463", - "created": 1609969747.463512, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", - "module": "test_helpers", - "msecs": 463.5119438171387, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 10628.3278465271, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:07,463", - "created": 1609969747.463875, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", - "module": "test_helpers", - "msecs": 463.87505531311035, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 10628.690958023071, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:07,464", - "created": 1609969747.464194, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 464.19405937194824, - "msg": "%s RX <- %s, %s, data: \"%s\"", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10629.00996208191, - "thread": 140012350113600, + "relativeCreated": 11301.12910270691, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:25,395", + "created": 1610346625.395033, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 395.0328826904297, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11328.574895858765, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:25,395", + "created": 1610346625.395232, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 395.2319622039795, + "msg": "%s RX <- %s", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11328.773975372314, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,395", + "created": 1610346625.395326, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 395.3258991241455, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11328.86791229248, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:25,395", + "created": 1610346625.395398, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 395.3979015350342, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11328.93991470337, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,395", + "created": 1610346625.395469, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 395.46895027160645, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11329.010963439941, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,395", + "created": 1610346625.395522, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 395.5221176147461, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11329.064130783081, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,395", + "created": 1610346625.395593, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 395.59292793273926, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11329.134941101074, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,395", + "created": 1610346625.395644, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 395.643949508667, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11329.185962677002, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,395", + "created": 1610346625.395702, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 395.7018852233887, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11329.243898391724, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,395", + "created": 1610346625.395753, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 395.7529067993164, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11329.294919967651, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,395", + "created": 1610346625.395814, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 395.8139419555664, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11329.355955123901, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,395", + "created": 1610346625.395859, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 395.8590030670166, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11329.401016235352, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-client:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:25,395", + "created": 1610346625.395938, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 395.9379196166992, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11329.479932785034, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:25,395", + "created": 1610346625.395993, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 395.9929943084717, + "msg": "%s RX <- %s", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11329.535007476807, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,396", + "created": 1610346625.396056, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 396.0559368133545, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11329.59794998169, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:25,396", + "created": 1610346625.396104, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 396.104097366333, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11329.646110534668, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" + ], + "asctime": "2021-01-11 07:30:25,396", + "created": 1610346625.396191, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", + "module": "stp", + "msecs": 396.190881729126, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11329.732894897461, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:25,396", + "created": 1610346625.39634, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 396.33989334106445, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.server", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11329.8819065094, + "thread": 140633863874304, + "threadName": "Thread-13" + }, + { + "args": [ + "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-06 22:49:07,464", - "created": 1609969747.464407, + "asctime": "2021-01-11 07:30:25,396", + "created": 1610346625.396403, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __channel_name_request__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 464.40696716308594, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 396.40307426452637, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10629.222869873047, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 11329.945087432861, + "thread": 140633863874304, + "threadName": "Thread-13" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: channel name response, data_id: name", "status: okay", "'server'" ], - "asctime": "2021-01-06 22:49:07,464", - "created": 1609969747.464626, + "asctime": "2021-01-11 07:30:25,396", + "created": 1610346625.396487, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: channel name response, data_id: name, status: okay, data: \"'server'\"", + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"'server'\"", "module": "__init__", - "msecs": 464.6260738372803, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 396.4869976043701, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10629.441976547241, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:07,465", - "created": 1609969747.465088, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 9c 48 3b b3", - "module": "test_helpers", - "msecs": 465.087890625, - "msg": "Send data: (66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 9c 48 3b b3", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 10629.903793334961, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:07,465", - "created": 1609969747.465443, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 9c 48 3b b3", - "module": "test_helpers", - "msecs": 465.4428958892822, - "msg": "Receive data (66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 9c 48 3b b3", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 10630.258798599243, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 11330.029010772705, + "thread": 140633863874304, + "threadName": "Thread-13" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a" + ], + "asctime": "2021-01-11 07:30:25,399", + "created": 1610346625.399964, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a", + "module": "__init__", + "msecs": 399.9640941619873, + "msg": "%s TX -> %s", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11333.506107330322, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a" + ], + "asctime": "2021-01-11 07:30:25,400", + "created": 1610346625.400116, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a", + "module": "__init__", + "msecs": 400.115966796875, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11333.65797996521, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,400", + "created": 1610346625.400176, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 400.1760482788086, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11333.718061447144, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:25,400", + "created": 1610346625.400231, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 400.23088455200195, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11333.772897720337, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,400", + "created": 1610346625.400309, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 400.30908584594727, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11333.851099014282, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,400", + "created": 1610346625.400374, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 400.3739356994629, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11333.915948867798, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,400", + "created": 1610346625.400467, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 400.4669189453125, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11334.008932113647, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,400", + "created": 1610346625.400525, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 400.5250930786133, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11334.067106246948, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,400", + "created": 1610346625.400598, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 400.59804916381836, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11334.140062332153, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,400", + "created": 1610346625.400657, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 400.65693855285645, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11334.198951721191, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,400", + "created": 1610346625.400854, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 400.85411071777344, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11334.396123886108, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-server:", + "(10): 3d 20 30 7d 9c 48 3b b3 3a 3e" + ], + "asctime": "2021-01-11 07:30:25,400", + "created": 1610346625.400924, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (10): 3d 20 30 7d 9c 48 3b b3 3a 3e", + "module": "__init__", + "msecs": 400.9239673614502, + "msg": "%s TX -> %s", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11334.465980529785, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-client:", + "(10): 3d 20 30 7d 9c 48 3b b3 3a 3e" + ], + "asctime": "2021-01-11 07:30:25,400", + "created": 1610346625.400982, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (10): 3d 20 30 7d 9c 48 3b b3 3a 3e", + "module": "__init__", + "msecs": 400.9819030761719, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11334.523916244507, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,401", + "created": 1610346625.401025, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 401.02505683898926, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11334.567070007324, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,401", + "created": 1610346625.401074, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 401.0739326477051, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11334.61594581604, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:25,401", + "created": 1610346625.401116, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 401.11589431762695, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11334.657907485962, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + "(66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 9c 48 3b b3" + ], + "asctime": "2021-01-11 07:30:25,401", + "created": 1610346625.401213, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (66): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 9c 48 3b b3", + "module": "stp", + "msecs": 401.2129306793213, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11334.754943847656, + "thread": 140633855481600, + "threadName": "Thread-14" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: channel name response, data_id: name", "status: okay", "u'server'" ], - "asctime": "2021-01-06 22:49:07,465", - "created": 1609969747.465727, + "asctime": "2021-01-11 07:30:25,401", + "created": 1610346625.401352, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: channel name response, data_id: name, status: okay, data: \"u'server'\"", + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"u'server'\"", "module": "__init__", - "msecs": 465.7270908355713, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 401.3519287109375, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10630.542993545532, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 11334.893941879272, + "thread": 140633855481600, + "threadName": "Thread-14" }, { "args": [ - "SP client:", + "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-06 22:49:07,465", - "created": 1609969747.465952, + "asctime": "2021-01-11 07:30:25,401", + "created": 1610346625.401444, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __channel_name_response__ to process received data", + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 465.95191955566406, + "msecs": 401.4439582824707, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10630.767822265625, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 11334.985971450806, + "thread": 140633855481600, + "threadName": "Thread-14" }, { "args": [ - "SP client:", + "prot-client:", "'server'" ], - "asctime": "2021-01-06 22:49:07,466", - "created": 1609969747.466284, + "asctime": "2021-01-11 07:30:25,401", + "created": 1610346625.401588, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__channel_name_response__", "levelname": "INFO", "levelno": 20, - "lineno": 397, - "message": "SP client: channel name is now 'server'", + "lineno": 407, + "message": "prot-client: channel name is now 'server'", "module": "__init__", - "msecs": 466.28403663635254, + "msecs": 401.58796310424805, "msg": "%s channel name is now %s", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 10631.099939346313, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 11335.129976272583, + "thread": 140633855481600, + "threadName": "Thread-14" } ], - "msecs": 67.28410720825195, - "msg": "Server and Client connect callback triggered", + "msecs": 710.8790874481201, + "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11232.100009918213, - "thread": 140012350113600, + "relativeCreated": 11644.421100616455, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.6010000705718994 + "time_consumption": 0.30929112434387207 }, { "args": [ "'server'", "" ], - "asctime": "2021-01-06 22:49:08,068", - "created": 1609969748.068224, + "asctime": "2021-01-11 07:30:25,711", + "created": 1610346625.711509, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14234,8 +28384,8 @@ "'server'", "" ], - "asctime": "2021-01-06 22:49:08,067", - "created": 1609969748.067826, + "asctime": "2021-01-11 07:30:25,711", + "created": 1610346625.71129, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14245,14 +28395,14 @@ "lineno": 22, "message": "Result (Channel name of server): 'server' ()", "module": "test", - "msecs": 67.8260326385498, + "msecs": 711.2898826599121, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11232.64193534851, - "thread": 140012350113600, + "relativeCreated": 11644.831895828247, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -14261,8 +28411,8 @@ "'server'", "" ], - "asctime": "2021-01-06 22:49:08,068", - "created": 1609969748.06804, + "asctime": "2021-01-11 07:30:25,711", + "created": 1610346625.711417, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14272,35 +28422,35 @@ "lineno": 26, "message": "Expectation (Channel name of server): result = 'server' ()", "module": "test", - "msecs": 68.0398941040039, + "msecs": 711.4169597625732, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11232.855796813965, - "thread": 140012350113600, + "relativeCreated": 11644.958972930908, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 68.22395324707031, + "msecs": 711.5089893341064, "msg": "Channel name of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11233.039855957031, - "thread": 140012350113600, + "relativeCreated": 11645.051002502441, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00018405914306640625 + "time_consumption": 9.202957153320312e-05 }, { "args": [ "'server'", "" ], - "asctime": "2021-01-06 22:49:08,068", - "created": 1609969748.068837, + "asctime": "2021-01-11 07:30:25,711", + "created": 1610346625.711769, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14317,8 +28467,8 @@ "'server'", "" ], - "asctime": "2021-01-06 22:49:08,068", - "created": 1609969748.06851, + "asctime": "2021-01-11 07:30:25,711", + "created": 1610346625.711642, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14328,14 +28478,14 @@ "lineno": 22, "message": "Result (Channel name of client): 'server' ()", "module": "test", - "msecs": 68.51005554199219, + "msecs": 711.6420269012451, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11233.325958251953, - "thread": 140012350113600, + "relativeCreated": 11645.18404006958, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -14344,8 +28494,8 @@ "'server'", "" ], - "asctime": "2021-01-06 22:49:08,068", - "created": 1609969748.068677, + "asctime": "2021-01-11 07:30:25,711", + "created": 1610346625.711709, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14355,39 +28505,39 @@ "lineno": 26, "message": "Expectation (Channel name of client): result = 'server' ()", "module": "test", - "msecs": 68.67694854736328, + "msecs": 711.7090225219727, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11233.492851257324, - "thread": 140012350113600, + "relativeCreated": 11645.251035690308, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 68.83692741394043, + "msecs": 711.7691040039062, "msg": "Channel name of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11233.652830123901, - "thread": 140012350113600, + "relativeCreated": 11645.311117172241, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00015997886657714844 + "time_consumption": 6.008148193359375e-05 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 3.0403239727020264, - "time_finished": "2021-01-06 22:49:08,068", - "time_start": "2021-01-06 22:49:05,028" + "time_consumption": 1.7464501857757568, + "time_finished": "2021-01-11 07:30:25,711", + "time_start": "2021-01-11 07:30:23,965" }, "_Pn3WgE0NEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:49:01,852", - "created": 1609969741.852509, + "asctime": "2021-01-11 07:30:19,503", + "created": 1610346619.503809, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -14398,1112 +28548,2427 @@ "message": "_Pn3WgE0NEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 852.5090217590332, + "msecs": 503.80897521972656, "msg": "_Pn3WgE0NEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5017.324924468994, + "relativeCreated": 5437.3509883880615, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:01,860", - "created": 1609969741.860582, + "asctime": "2021-01-11 07:30:19,510", + "created": 1610346619.510078, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:01,853", - "created": 1609969741.85305, + "asctime": "2021-01-11 07:30:19,504", + "created": 1610346619.504858, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 853.0499935150146, + "msecs": 504.85801696777344, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5017.865896224976, - "thread": 140012350113600, + "relativeCreated": 5438.400030136108, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:01,853", - "created": 1609969741.853279, + "asctime": "2021-01-11 07:30:19,505", + "created": 1610346619.5057, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 853.2791137695312, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 505.70011138916016, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5018.095016479492, - "thread": 140012350113600, + "relativeCreated": 5439.242124557495, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:01,853", - "created": 1609969741.853528, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 853.5280227661133, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5018.343925476074, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:01,853", - "created": 1609969741.853706, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 853.705883026123, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5018.521785736084, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:01,853", - "created": 1609969741.853957, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 853.956937789917, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5018.772840499878, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:01,854", - "created": 1609969741.854126, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 854.1259765625, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5018.941879272461, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:01,854", - "created": 1609969741.854306, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 854.3059825897217, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5019.121885299683, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:01,854", - "created": 1609969741.854492, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 854.4919490814209, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5019.307851791382, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:01,854", - "created": 1609969741.85469, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 854.6900749206543, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5019.505977630615, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:01,854", - "created": 1609969741.854879, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 854.8789024353027, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5019.694805145264, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:01,855", - "created": 1609969741.855037, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 855.0369739532471, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5019.852876663208, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:01,855", - "created": 1609969741.855229, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 855.2289009094238, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5020.044803619385, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:01,855", - "created": 1609969741.855419, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 855.4189205169678, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5020.234823226929, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:01,855", - "created": 1609969741.855595, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 855.5951118469238, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5020.411014556885, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:01,855", - "created": 1609969741.855765, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 855.7651042938232, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5020.581007003784, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:01,855", - "created": 1609969741.855948, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 855.9479713439941, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5020.763874053955, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:01,856", - "created": 1609969741.856124, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 856.1239242553711, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5020.939826965332, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:01,856", - "created": 1609969741.856293, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 856.2929630279541, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5021.108865737915, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:01,856", - "created": 1609969741.856451, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 856.4510345458984, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5021.266937255859, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:01,856", - "created": 1609969741.856611, + "asctime": "2021-01-11 07:30:19,505", + "created": 1610346619.505839, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 856.6110134124756, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 505.83910942077637, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5021.4269161224365, - "thread": 140012350113600, + "relativeCreated": 5439.381122589111, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:01,856", - "created": 1609969741.856997, + "asctime": "2021-01-11 07:30:19,506", + "created": 1610346619.506105, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 856.997013092041, + "msecs": 506.1049461364746, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5021.812915802002, - "thread": 140012350113600, + "relativeCreated": 5439.64695930481, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:01,857", - "created": 1609969741.857185, + "asctime": "2021-01-11 07:30:19,506", + "created": 1610346619.506205, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 857.184886932373, + "msecs": 506.20508193969727, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5022.000789642334, - "thread": 140012350113600, + "relativeCreated": 5439.747095108032, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:01,857", - "created": 1609969741.85741, + "asctime": "2021-01-11 07:30:19,506", + "created": 1610346619.506327, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 857.4099540710449, + "msecs": 506.32691383361816, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5022.225856781006, - "thread": 140012350113600, + "relativeCreated": 5439.868927001953, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:01,857", - "created": 1609969741.857578, + "asctime": "2021-01-11 07:30:19,506", + "created": 1610346619.506413, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 857.5780391693115, + "msecs": 506.4129829406738, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5022.3939418792725, - "thread": 140012350113600, + "relativeCreated": 5439.954996109009, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:01,857", - "created": 1609969741.857749, + "asctime": "2021-01-11 07:30:19,506", + "created": 1610346619.50649, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 857.7489852905273, + "msecs": 506.48999214172363, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5022.564888000488, - "thread": 140012350113600, + "relativeCreated": 5440.032005310059, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:01,857", - "created": 1609969741.857943, + "asctime": "2021-01-11 07:30:19,506", + "created": 1610346619.506562, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 857.943058013916, + "msecs": 506.5619945526123, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5022.758960723877, - "thread": 140012350113600, + "relativeCreated": 5440.104007720947, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:01,858", - "created": 1609969741.858131, + "asctime": "2021-01-11 07:30:19,506", + "created": 1610346619.506679, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 858.130931854248, + "msecs": 506.6790580749512, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5022.946834564209, - "thread": 140012350113600, + "relativeCreated": 5440.221071243286, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:01,858", - "created": 1609969741.858312, + "asctime": "2021-01-11 07:30:19,506", + "created": 1610346619.506785, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 858.3118915557861, + "msecs": 506.78491592407227, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5023.127794265747, - "thread": 140012350113600, + "relativeCreated": 5440.326929092407, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:01,858", - "created": 1609969741.858502, + "asctime": "2021-01-11 07:30:19,506", + "created": 1610346619.506889, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 858.5019111633301, + "msecs": 506.88910484313965, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5023.317813873291, - "thread": 140012350113600, + "relativeCreated": 5440.431118011475, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:01,858", - "created": 1609969741.858676, + "asctime": "2021-01-11 07:30:19,506", + "created": 1610346619.506996, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 858.6759567260742, + "msecs": 506.99591636657715, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5023.491859436035, - "thread": 140012350113600, + "relativeCreated": 5440.537929534912, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:01,858", - "created": 1609969741.858833, + "asctime": "2021-01-11 07:30:19,507", + "created": 1610346619.507086, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 858.8330745697021, + "msecs": 507.08603858947754, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5023.648977279663, - "thread": 140012350113600, + "relativeCreated": 5440.6280517578125, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:01,859", - "created": 1609969741.85902, + "asctime": "2021-01-11 07:30:19,507", + "created": 1610346619.507206, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 859.0199947357178, + "msecs": 507.2059631347656, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5023.835897445679, - "thread": 140012350113600, + "relativeCreated": 5440.747976303101, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:01,859", - "created": 1609969741.859206, + "asctime": "2021-01-11 07:30:19,507", + "created": 1610346619.50731, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 859.205961227417, + "msecs": 507.3099136352539, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5024.021863937378, - "thread": 140012350113600, + "relativeCreated": 5440.851926803589, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:01,859", - "created": 1609969741.85939, + "asctime": "2021-01-11 07:30:19,507", + "created": 1610346619.507409, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 859.3900203704834, + "msecs": 507.40909576416016, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5024.205923080444, - "thread": 140012350113600, + "relativeCreated": 5440.951108932495, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:01,859", - "created": 1609969741.85956, + "asctime": "2021-01-11 07:30:19,507", + "created": 1610346619.507492, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 859.5600128173828, + "msecs": 507.4920654296875, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5024.375915527344, - "thread": 140012350113600, + "relativeCreated": 5441.0340785980225, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:01,859", - "created": 1609969741.859736, + "asctime": "2021-01-11 07:30:19,507", + "created": 1610346619.507572, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 859.7359657287598, + "msecs": 507.5719356536865, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5024.551868438721, - "thread": 140012350113600, + "relativeCreated": 5441.1139488220215, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:01,859", - "created": 1609969741.859922, + "asctime": "2021-01-11 07:30:19,507", + "created": 1610346619.507652, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 859.921932220459, + "msecs": 507.65204429626465, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5024.73783493042, - "thread": 140012350113600, + "relativeCreated": 5441.1940574646, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:01,860", - "created": 1609969741.860082, + "asctime": "2021-01-11 07:30:19,507", + "created": 1610346619.507724, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 860.0819110870361, + "msecs": 507.7240467071533, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5024.897813796997, - "thread": 140012350113600, + "relativeCreated": 5441.266059875488, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:01,860", - "created": 1609969741.860239, + "asctime": "2021-01-11 07:30:19,507", + "created": 1610346619.507798, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 860.2390289306641, + "msecs": 507.7979564666748, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5025.054931640625, - "thread": 140012350113600, + "relativeCreated": 5441.33996963501, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:01,860", - "created": 1609969741.8604, + "asctime": "2021-01-11 07:30:19,507", + "created": 1610346619.50787, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 860.3999614715576, + "msecs": 507.8699588775635, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5025.215864181519, - "thread": 140012350113600, + "relativeCreated": 5441.411972045898, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:19,508", + "created": 1610346619.508054, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 508.0540180206299, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5441.596031188965, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:19,508", + "created": 1610346619.508137, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 508.1369876861572, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5441.679000854492, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:19,508", + "created": 1610346619.508246, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 508.24594497680664, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5441.787958145142, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:19,508", + "created": 1610346619.508327, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 508.3270072937012, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5441.869020462036, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:19,508", + "created": 1610346619.5084, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 508.39996337890625, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5441.941976547241, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:19,508", + "created": 1610346619.508482, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 508.4819793701172, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5442.023992538452, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:19,508", + "created": 1610346619.508558, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 508.5580348968506, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5442.100048065186, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:19,508", + "created": 1610346619.508637, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 508.6369514465332, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5442.178964614868, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:19,508", + "created": 1610346619.508716, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 508.7161064147949, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5442.25811958313, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:19,508", + "created": 1610346619.50881, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 508.81004333496094, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5442.352056503296, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:19,508", + "created": 1610346619.508881, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 508.8810920715332, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5442.423105239868, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:19,508", + "created": 1610346619.508962, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 508.96191596984863, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5442.503929138184, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:19,509", + "created": 1610346619.509043, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 509.04297828674316, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5442.584991455078, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:19,509", + "created": 1610346619.509116, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 509.11593437194824, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5442.657947540283, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:19,509", + "created": 1610346619.509203, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 509.2029571533203, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5442.744970321655, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:19,509", + "created": 1610346619.509302, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 509.30190086364746, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5442.843914031982, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:19,509", + "created": 1610346619.509653, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 509.65309143066406, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5443.195104598999, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:19,509", + "created": 1610346619.509772, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 509.77206230163574, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5443.314075469971, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:19,509", + "created": 1610346619.509873, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 509.8729133605957, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5443.414926528931, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:19,509", + "created": 1610346619.509977, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 509.9771022796631, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5443.519115447998, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 860.5821132659912, + "msecs": 510.07795333862305, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5025.398015975952, - "thread": 140012350113600, + "relativeCreated": 5443.619966506958, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00018215179443359375 + "time_consumption": 0.00010085105895996094 }, { "args": [], - "asctime": "2021-01-06 22:49:01,860", - "created": 1609969741.860903, + "asctime": "2021-01-11 07:30:19,854", + "created": 1610346619.854356, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:19,510", + "created": 1610346619.510312, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 510.3120803833008, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5443.854093551636, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:19,510", + "created": 1610346619.510412, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 510.41197776794434, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5443.953990936279, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:19,510", + "created": 1610346619.510511, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 510.5109214782715, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5444.052934646606, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:19,510", + "created": 1610346619.510659, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 510.65897941589355, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5444.2009925842285, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:19,510", + "created": 1610346619.510952, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 510.9519958496094, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5444.494009017944, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:19,511", + "created": 1610346619.511049, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 511.0490322113037, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5444.591045379639, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:19,511", + "created": 1610346619.511128, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 511.1279487609863, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5444.669961929321, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:19,515", + "created": 1610346619.515087, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 515.0868892669678, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5448.628902435303, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:19,515", + "created": 1610346619.515246, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 515.2459144592285, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5448.7879276275635, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,515", + "created": 1610346619.515331, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 515.3310298919678, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5448.873043060303, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:19,515", + "created": 1610346619.515391, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 515.3911113739014, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5448.933124542236, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,515", + "created": 1610346619.51547, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 515.470027923584, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5449.012041091919, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,515", + "created": 1610346619.515553, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 515.5529975891113, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5449.095010757446, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,515", + "created": 1610346619.515644, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 515.6440734863281, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5449.186086654663, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,515", + "created": 1610346619.51571, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 515.7101154327393, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5449.252128601074, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,515", + "created": 1610346619.515793, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 515.7930850982666, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5449.335098266602, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,515", + "created": 1610346619.515863, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 515.8629417419434, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5449.404954910278, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,515", + "created": 1610346619.515936, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 515.9358978271484, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5449.477910995483, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,515", + "created": 1610346619.51599, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 515.9900188446045, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5449.532032012939, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-client:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:19,516", + "created": 1610346619.516112, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 516.1120891571045, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5449.654102325439, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:19,516", + "created": 1610346619.516237, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 516.2370204925537, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5449.779033660889, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,516", + "created": 1610346619.516327, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 516.326904296875, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5449.86891746521, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:19,516", + "created": 1610346619.516406, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 516.4060592651367, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5449.948072433472, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" + ], + "asctime": "2021-01-11 07:30:19,516", + "created": 1610346619.516566, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", + "module": "stp", + "msecs": 516.5660381317139, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5450.108051300049, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:19,516", + "created": 1610346619.51674, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 516.740083694458, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5450.282096862793, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:19,516", + "created": 1610346619.516838, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 516.8380737304688, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5450.380086898804, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:19,516", + "created": 1610346619.51697, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 516.9699192047119, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5450.511932373047, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:19,522", + "created": 1610346619.522401, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 522.4010944366455, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5455.9431076049805, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:19,522", + "created": 1610346619.522551, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 522.5510597229004, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5456.093072891235, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,522", + "created": 1610346619.522618, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 522.6180553436279, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5456.160068511963, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:19,522", + "created": 1610346619.522674, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 522.6740837097168, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5456.216096878052, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,522", + "created": 1610346619.522745, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 522.74489402771, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5456.286907196045, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,522", + "created": 1610346619.522797, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 522.7971076965332, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5456.339120864868, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,522", + "created": 1610346619.522876, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 522.8760242462158, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5456.418037414551, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,522", + "created": 1610346619.522928, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 522.92799949646, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5456.470012664795, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,522", + "created": 1610346619.522993, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 522.9930877685547, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5456.53510093689, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,523", + "created": 1610346619.523044, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 523.0441093444824, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5456.586122512817, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,523", + "created": 1610346619.523115, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 523.1149196624756, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5456.656932830811, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,523", + "created": 1610346619.52317, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 523.169994354248, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5456.712007522583, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:19,523", + "created": 1610346619.523247, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 523.2470035552979, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5456.789016723633, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:19,523", + "created": 1610346619.523308, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 523.3080387115479, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5456.850051879883, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,523", + "created": 1610346619.523367, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 523.3669281005859, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5456.908941268921, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:19,523", + "created": 1610346619.523424, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 523.4239101409912, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5456.965923309326, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:19,523", + "created": 1610346619.523531, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 523.5309600830078, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5457.072973251343, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:19,523", + "created": 1610346619.523646, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 523.6461162567139, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5457.188129425049, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:19,523", + "created": 1610346619.523715, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 523.7150192260742, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5457.257032394409, + "thread": 140634434283264, + "threadName": "Thread-10" + } + ], + "msecs": 854.356050491333, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5787.898063659668, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.3306410312652588 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:19,854", + "created": 1610346619.854914, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -15514,21 +30979,21 @@ "message": "Setting a Server secret and no Client secret", "module": "test_communication", "moduleLogger": [], - "msecs": 860.9030246734619, + "msecs": 854.9139499664307, "msg": "Setting a Server secret and no Client secret", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5025.718927383423, - "thread": 140012350113600, + "relativeCreated": 5788.455963134766, + "thread": 140634736203584, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-06 22:49:01,962", - "created": 1609969741.96293, + "asctime": "2021-01-11 07:30:20,056", + "created": 1610346620.056598, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -15541,275 +31006,1085 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: execute request, data_id: 36", "status: okay", "'msg3_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:01,861", - "created": 1609969741.861197, + "asctime": "2021-01-11 07:30:19,855", + "created": 1610346619.855344, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: execute request, data_id: 36, status: okay, data: \"'msg3_data_to_be_transfered'\"", + "lineno": 445, + "message": "prot-client: TX -> service: execute request, data_id: 36, status: okay, data: \"'msg3_data_to_be_transfered'\"", "module": "__init__", - "msecs": 861.1969947814941, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 855.3440570831299, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5026.012897491455, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:01,861", - "created": 1609969741.861727, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 36 7d 18 82 9a 08", - "module": "test_helpers", - "msecs": 861.7269992828369, - "msg": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 36 7d 18 82 9a 08", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5026.542901992798, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:01,861", - "created": 1609969741.861937, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 36 7d 18 82 9a 08", - "module": "test_helpers", - "msecs": 861.9370460510254, - "msg": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 36 7d 18 82 9a 08", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5026.752948760986, - "thread": 140012350113600, + "relativeCreated": 5788.886070251465, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:" + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-06 22:49:01,862", - "created": 1609969741.862039, + "asctime": "2021-01-11 07:30:19,883", + "created": 1610346619.883797, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 883.7969303131104, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5817.338943481445, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:19,884", + "created": 1610346619.884302, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 884.3019008636475, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5817.843914031982, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,884", + "created": 1610346619.884508, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 884.5078945159912, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5818.049907684326, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:19,884", + "created": 1610346619.884687, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 884.6869468688965, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5818.228960037231, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,884", + "created": 1610346619.884925, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 884.9248886108398, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5818.466901779175, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,885", + "created": 1610346619.885103, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 885.1029872894287, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5818.645000457764, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,885", + "created": 1610346619.885324, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 885.3240013122559, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5818.866014480591, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,885", + "created": 1610346619.885528, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 885.5280876159668, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5819.070100784302, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,885", + "created": 1610346619.88573, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 885.7300281524658, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5819.272041320801, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,885", + "created": 1610346619.885908, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 885.9078884124756, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5819.449901580811, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-client:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 7d 18 82 9a 08 3a 3e" + ], + "asctime": "2021-01-11 07:30:19,886", + "created": 1610346619.886287, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 7d 18 82 9a 08 3a 3e", + "module": "__init__", + "msecs": 886.2869739532471, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5819.828987121582, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 7d 18 82 9a 08 3a 3e" + ], + "asctime": "2021-01-11 07:30:19,886", + "created": 1610346619.886544, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 7d 18 82 9a 08 3a 3e", + "module": "__init__", + "msecs": 886.5439891815186, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5820.0860023498535, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,886", + "created": 1610346619.886788, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 886.7878913879395, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5820.329904556274, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,886", + "created": 1610346619.886959, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 886.9590759277344, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5820.501089096069, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,887", + "created": 1610346619.887157, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 887.1569633483887, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5820.698976516724, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:19,887", + "created": 1610346619.88731, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 887.3100280761719, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5820.852041244507, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + "(88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 36 7d 18 82 9a 08" + ], + "asctime": "2021-01-11 07:30:19,887", + "created": 1610346619.887697, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 36 7d 18 82 9a 08", + "module": "stp", + "msecs": 887.6969814300537, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5821.238994598389, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: execute request, data_id: 36", + "status: okay", + "u'msg3_data_to_be_transfered'" + ], + "asctime": "2021-01-11 07:30:19,888", + "created": 1610346619.888112, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: execute request, data_id: 36, status: okay, data: \"u'msg3_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 888.1120681762695, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5821.6540813446045, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:19,888", + "created": 1610346619.888307, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 437, - "message": "SP server: RX <- Authentification is required. Just sending negative response.", + "lineno": 459, + "message": "prot-server: Authentification is required. Just sending negative response.", "module": "__init__", - "msecs": 862.0390892028809, - "msg": "%s RX <- Authentification is required. Just sending negative response.", + "msecs": 888.3070945739746, + "msg": "%s Authentification is required. Just sending negative response.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5026.854991912842, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 5821.84910774231, + "thread": 140634442675968, + "threadName": "Thread-9" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: execute response, data_id: 36", "status: authentification required", "None" ], - "asctime": "2021-01-06 22:49:01,862", - "created": 1609969741.862118, + "asctime": "2021-01-11 07:30:19,888", + "created": 1610346619.888589, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: execute response, data_id: 36, status: authentification required, data: \"None\"", - "module": "__init__", - "msecs": 862.1180057525635, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5026.933908462524, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:01,862", - "created": 1609969741.86226, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (64): 7b 22 73 74 61 74 75 73 22 3a 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 36 7d 5e 04 41 f5", - "module": "test_helpers", - "msecs": 862.260103225708, - "msg": "Send data: (64): 7b 22 73 74 61 74 75 73 22 3a 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 36 7d 5e 04 41 f5", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5027.076005935669, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:01,862", - "created": 1609969741.862368, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (64): 7b 22 73 74 61 74 75 73 22 3a 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 36 7d 5e 04 41 f5", - "module": "test_helpers", - "msecs": 862.368106842041, - "msg": "Receive data (64): 7b 22 73 74 61 74 75 73 22 3a 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 36 7d 5e 04 41 f5", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5027.184009552002, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: execute response, data_id: 36", - "status: authentification required", - "None" - ], - "asctime": "2021-01-06 22:49:01,862", - "created": 1609969741.86246, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: execute response, data_id: 36, status: authentification required, data: \"None\"", - "module": "__init__", - "msecs": 862.4598979949951, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5027.275800704956, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "status: authentification required" - ], - "asctime": "2021-01-06 22:49:01,862", - "created": 1609969741.862517, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: authentification required", + "lineno": 445, + "message": "prot-server: TX -> service: execute response, data_id: 36, status: authentification required, data: \"None\"", "module": "__init__", - "msecs": 862.5171184539795, - "msg": "%s RX <- Message has a peculiar status: %s", + "msecs": 888.5889053344727, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5027.33302116394, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 5822.130918502808, + "thread": 140634442675968, + "threadName": "Thread-9" }, { "args": [ - "SP client:" + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33" ], - "asctime": "2021-01-06 22:49:01,862", - "created": 1609969741.862586, + "asctime": "2021-01-11 07:30:19,889", + "created": 1610346619.889604, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33", + "module": "__init__", + "msecs": 889.6040916442871, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5823.146104812622, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33" + ], + "asctime": "2021-01-11 07:30:19,890", + "created": 1610346619.890154, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33", + "module": "__init__", + "msecs": 890.1538848876953, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5823.69589805603, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,890", + "created": 1610346619.890362, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 890.362024307251, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5823.904037475586, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:19,890", + "created": 1610346619.890541, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 890.5410766601562, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5824.083089828491, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,890", + "created": 1610346619.890776, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 890.7759189605713, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5824.317932128906, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,890", + "created": 1610346619.890942, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 890.9420967102051, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5824.48410987854, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,891", + "created": 1610346619.891274, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 891.2739753723145, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5824.815988540649, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,891", + "created": 1610346619.891441, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 891.4411067962646, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5824.9831199646, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,891", + "created": 1610346619.89164, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 891.6399478912354, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5825.18196105957, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,891", + "created": 1610346619.891802, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 891.8020725250244, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5825.344085693359, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,892", + "created": 1610346619.892015, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 892.0149803161621, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5825.556993484497, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:19,892", + "created": 1610346619.892169, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 892.1689987182617, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5825.711011886597, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-server:", + "(8): 36 7d 5e 04 41 f5 3a 3e" + ], + "asctime": "2021-01-11 07:30:19,892", + "created": 1610346619.892407, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (8): 36 7d 5e 04 41 f5 3a 3e", + "module": "__init__", + "msecs": 892.4069404602051, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5825.94895362854, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(8): 36 7d 5e 04 41 f5 3a 3e" + ], + "asctime": "2021-01-11 07:30:19,892", + "created": 1610346619.892608, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (8): 36 7d 5e 04 41 f5 3a 3e", + "module": "__init__", + "msecs": 892.6079273223877, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5826.149940490723, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:19,892", + "created": 1610346619.89279, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 892.7900791168213, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5826.332092285156, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:19,892", + "created": 1610346619.892944, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 892.9440975189209, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5826.486110687256, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + "(64): 7b 22 73 74 61 74 75 73 22 3a 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 36 7d 5e 04 41 f5" + ], + "asctime": "2021-01-11 07:30:19,893", + "created": 1610346619.893297, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (64): 7b 22 73 74 61 74 75 73 22 3a 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 36 7d 5e 04 41 f5", + "module": "stp", + "msecs": 893.2969570159912, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5826.838970184326, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: execute response, data_id: 36", + "status: authentification required", + "None" + ], + "asctime": "2021-01-11 07:30:19,893", + "created": 1610346619.893471, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "WARNING", + "levelno": 30, + "lineno": 445, + "message": "prot-client: RX <- service: execute response, data_id: 36, status: authentification required, data: \"None\"", + "module": "__init__", + "msecs": 893.4710025787354, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 5827.01301574707, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:19,893", + "created": 1610346619.893612, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 862.5860214233398, + "msecs": 893.6119079589844, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5027.401924133301, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 5827.153921127319, + "thread": 140634434283264, + "threadName": "Thread-10" } ], - "msecs": 962.9299640655518, + "msecs": 56.59794807434082, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5127.745866775513, - "thread": 140012350113600, + "relativeCreated": 5990.139961242676, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.10034394264221191 + "time_consumption": 0.16298604011535645 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:01,963", - "created": 1609969741.963507, + "asctime": "2021-01-11 07:30:20,057", + "created": 1610346620.057618, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15826,8 +32101,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:01,963", - "created": 1609969741.963258, + "asctime": "2021-01-11 07:30:20,057", + "created": 1610346620.057174, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15837,14 +32112,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 963.2580280303955, + "msecs": 57.173967361450195, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5128.073930740356, - "thread": 140012350113600, + "relativeCreated": 5990.715980529785, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -15853,8 +32128,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:01,963", - "created": 1609969741.963384, + "asctime": "2021-01-11 07:30:20,057", + "created": 1610346620.057379, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15864,35 +32139,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 963.3839130401611, + "msecs": 57.37900733947754, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5128.199815750122, - "thread": 140012350113600, + "relativeCreated": 5990.9210205078125, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 963.5069370269775, + "msecs": 57.617902755737305, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5128.3228397369385, - "thread": 140012350113600, + "relativeCreated": 5991.159915924072, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00012302398681640625 + "time_consumption": 0.00023889541625976562 }, { "args": [ "{u'status': 3, u'service_id': 31, u'data': None, u'data_id': 36}", "" ], - "asctime": "2021-01-06 22:49:01,963", - "created": 1609969741.963921, + "asctime": "2021-01-11 07:30:20,058", + "created": 1610346620.05836, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15909,8 +32184,8 @@ "{u'status': 3, u'service_id': 31, u'data': None, u'data_id': 36}", "" ], - "asctime": "2021-01-06 22:49:01,963", - "created": 1609969741.963685, + "asctime": "2021-01-11 07:30:20,057", + "created": 1610346620.057925, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15920,14 +32195,14 @@ "lineno": 22, "message": "Result (Received message on server side): {u'status': 3, u'service_id': 31, u'data': None, u'data_id': 36} ()", "module": "test", - "msecs": 963.6850357055664, + "msecs": 57.92498588562012, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5128.500938415527, - "thread": 140012350113600, + "relativeCreated": 5991.466999053955, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -15936,8 +32211,8 @@ "{'status': 3, 'service_id': 31, 'data': None, 'data_id': 36}", "" ], - "asctime": "2021-01-06 22:49:01,963", - "created": 1609969741.96381, + "asctime": "2021-01-11 07:30:20,058", + "created": 1610346620.058139, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15947,32 +32222,32 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'status': 3, 'service_id': 31, 'data': None, 'data_id': 36} ()", "module": "test", - "msecs": 963.8099670410156, + "msecs": 58.13908576965332, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5128.625869750977, - "thread": 140012350113600, + "relativeCreated": 5991.681098937988, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 963.921070098877, + "msecs": 58.36009979248047, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5128.736972808838, - "thread": 140012350113600, + "relativeCreated": 5991.902112960815, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00011110305786132812 + "time_consumption": 0.00022101402282714844 }, { "args": [], - "asctime": "2021-01-06 22:49:01,964", - "created": 1609969741.964076, + "asctime": "2021-01-11 07:30:20,058", + "created": 1610346620.058771, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -15983,21 +32258,21 @@ "message": "Setting no Server secret but a Client secret", "module": "test_communication", "moduleLogger": [], - "msecs": 964.076042175293, + "msecs": 58.77089500427246, "msg": "Setting no Server secret but a Client secret", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5128.891944885254, - "thread": 140012350113600, + "relativeCreated": 5992.312908172607, + "thread": 140634736203584, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-06 22:49:02,266", - "created": 1609969742.266376, + "asctime": "2021-01-11 07:30:20,361", + "created": 1610346620.361085, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -16010,150 +32285,582 @@ "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:01,964", - "created": 1609969741.964268, + "asctime": "2021-01-11 07:30:20,059", + "created": 1610346620.059165, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 964.2679691314697, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 59.165000915527344, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5129.083871841431, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:01,964", - "created": 1609969741.964611, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "module": "test_helpers", - "msecs": 964.6110534667969, - "msg": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5129.426956176758, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:01,964", - "created": 1609969741.964878, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "module": "test_helpers", - "msecs": 964.8780822753906, - "msg": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 5129.693984985352, - "thread": 140012350113600, + "relativeCreated": 5992.707014083862, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-06 22:49:01,965", - "created": 1609969741.965063, + "asctime": "2021-01-11 07:30:20,094", + "created": 1610346620.094479, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 94.47908401489258, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6028.0210971832275, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:20,095", + "created": 1610346620.095273, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 95.27301788330078, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6028.815031051636, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:20,095", + "created": 1610346620.095612, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 95.6120491027832, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6029.154062271118, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:20,095", + "created": 1610346620.095824, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 95.82400321960449, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6029.366016387939, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:20,096", + "created": 1610346620.09607, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 96.0700511932373, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6029.612064361572, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:20,096", + "created": 1610346620.096309, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 96.30894660949707, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6029.850959777832, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:20,096", + "created": 1610346620.09655, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 96.54998779296875, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6030.092000961304, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:20,096", + "created": 1610346620.096722, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 96.72188758850098, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6030.263900756836, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:20,096", + "created": 1610346620.096938, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 96.93789482116699, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6030.479907989502, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:20,097", + "created": 1610346620.097108, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 97.1078872680664, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6030.649900436401, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-server:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" + ], + "asctime": "2021-01-11 07:30:20,097", + "created": 1610346620.09772, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", + "module": "__init__", + "msecs": 97.71990776062012, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6031.261920928955, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" + ], + "asctime": "2021-01-11 07:30:20,098", + "created": 1610346620.098053, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", + "module": "__init__", + "msecs": 98.052978515625, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6031.59499168396, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:20,098", + "created": 1610346620.098268, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 98.26803207397461, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6031.81004524231, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:20,098", + "created": 1610346620.098428, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 98.42801094055176, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6031.970024108887, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:20,098", + "created": 1610346620.098575, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 98.57511520385742, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6032.117128372192, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:20,098", + "created": 1610346620.098699, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 98.69909286499023, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6032.241106033325, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + "(88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8" + ], + "asctime": "2021-01-11 07:30:20,098", + "created": 1610346620.098974, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", + "module": "stp", + "msecs": 98.97398948669434, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6032.516002655029, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: 17, data_id: 35", + "status: service or data unknown", + "u'msg2_data_to_be_transfered'" + ], + "asctime": "2021-01-11 07:30:20,099", + "created": 1610346620.099368, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 99.36809539794922, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6032.910108566284, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:20,099", + "created": 1610346620.099529, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 441, - "message": "SP client: RX <- Authentification is required. Message will be ignored.", + "lineno": 463, + "message": "prot-client: Authentification is required. Incomming message will be ignored.", "module": "__init__", - "msecs": 965.0630950927734, - "msg": "%s RX <- Authentification is required. Message will be ignored.", + "msecs": 99.52902793884277, + "msg": "%s Authentification is required. Incomming message will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5129.878997802734, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 6033.071041107178, + "thread": 140634434283264, + "threadName": "Thread-10" }, { "args": [ - "SP client:", - "0.25", + "prot-client:", + "0.28705533596837945", "17", "35" ], - "asctime": "2021-01-06 22:49:02,266", - "created": 1609969742.266071, + "asctime": "2021-01-11 07:30:20,360", + "created": 1610346620.360717, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP client: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 35) not in buffer.", + "lineno": 668, + "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 266.071081161499, + "msecs": 360.7170581817627, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5430.88698387146, - "thread": 140012350113600, + "relativeCreated": 6294.259071350098, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 266.3760185241699, + "msecs": 361.0849380493164, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5431.191921234131, - "thread": 140012350113600, + "relativeCreated": 6294.626951217651, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00030493736267089844 + "time_consumption": 0.00036787986755371094 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:02,266", - "created": 1609969742.266932, + "asctime": "2021-01-11 07:30:20,361", + "created": 1610346620.361889, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16170,8 +32877,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:02,266", - "created": 1609969742.266664, + "asctime": "2021-01-11 07:30:20,361", + "created": 1610346620.361515, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16181,14 +32888,14 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 266.6640281677246, + "msecs": 361.5150451660156, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5431.479930877686, - "thread": 140012350113600, + "relativeCreated": 6295.057058334351, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -16197,8 +32904,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:02,266", - "created": 1609969742.266822, + "asctime": "2021-01-11 07:30:20,361", + "created": 1610346620.361713, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16208,35 +32915,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 266.82209968566895, + "msecs": 361.7129325866699, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5431.63800239563, - "thread": 140012350113600, + "relativeCreated": 6295.254945755005, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 266.93201065063477, + "msecs": 361.8888854980469, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5431.747913360596, - "thread": 140012350113600, + "relativeCreated": 6295.430898666382, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00010991096496582031 + "time_consumption": 0.00017595291137695312 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:02,267", - "created": 1609969742.267339, + "asctime": "2021-01-11 07:30:20,362", + "created": 1610346620.362475, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16253,8 +32960,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:02,267", - "created": 1609969742.267136, + "asctime": "2021-01-11 07:30:20,362", + "created": 1610346620.362158, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16264,14 +32971,14 @@ "lineno": 22, "message": "Result (Received message on client side): None ()", "module": "test", - "msecs": 267.1360969543457, + "msecs": 362.15806007385254, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5431.951999664307, - "thread": 140012350113600, + "relativeCreated": 6295.7000732421875, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -16280,8 +32987,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:02,267", - "created": 1609969742.267236, + "asctime": "2021-01-11 07:30:20,362", + "created": 1610346620.362318, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16291,32 +32998,32 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = None ()", "module": "test", - "msecs": 267.23599433898926, + "msecs": 362.3180389404297, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5432.05189704895, - "thread": 140012350113600, + "relativeCreated": 6295.860052108765, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 267.33899116516113, + "msecs": 362.4749183654785, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5432.154893875122, - "thread": 140012350113600, + "relativeCreated": 6296.0169315338135, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.000102996826171875 + "time_consumption": 0.00015687942504882812 }, { "args": [], - "asctime": "2021-01-06 22:49:02,267", - "created": 1609969742.267498, + "asctime": "2021-01-11 07:30:20,362", + "created": 1610346620.362791, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -16327,21 +33034,21 @@ "message": "Identical secrets set", "module": "test_communication", "moduleLogger": [], - "msecs": 267.4980163574219, + "msecs": 362.7910614013672, "msg": "Identical secrets set", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5432.313919067383, - "thread": 140012350113600, + "relativeCreated": 6296.333074569702, + "thread": 140634736203584, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-06 22:49:02,569", - "created": 1609969742.569243, + "asctime": "2021-01-11 07:30:20,664", + "created": 1610346620.664972, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -16354,79 +33061,79 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:02,267", - "created": 1609969742.2678, + "asctime": "2021-01-11 07:30:20,363", + "created": 1610346620.363411, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 724, - "message": "SP client: TX -> Authentification is required. Message service: 17, data_id: 34, status: okay, data: 'msg1_data_to_be_transfered' will be ignored.", + "lineno": 736, + "message": "prot-client: Authentification is required. TX-Message service: 17, data_id: 34, status: okay, data: 'msg1_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 267.80009269714355, - "msg": "%s TX -> Authentification is required. Message %s, %s, data: %s will be ignored.", + "msecs": 363.41094970703125, + "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5432.6159954071045, - "thread": 140012350113600, + "relativeCreated": 6296.952962875366, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "0.25", + "prot-server:", + "0.28705533596837945", "17", "34" ], - "asctime": "2021-01-06 22:49:02,568", - "created": 1609969742.568916, + "asctime": "2021-01-11 07:30:20,664", + "created": 1610346620.664576, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP server: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 34) not in buffer.", + "lineno": 668, + "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 568.9160823822021, + "msecs": 664.5760536193848, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5733.731985092163, - "thread": 140012350113600, + "relativeCreated": 6598.11806678772, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 569.2429542541504, + "msecs": 664.9720668792725, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5734.058856964111, - "thread": 140012350113600, + "relativeCreated": 6598.514080047607, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0003268718719482422 + "time_consumption": 0.0003960132598876953 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:02,569", - "created": 1609969742.569993, + "asctime": "2021-01-11 07:30:20,665", + "created": 1610346620.66592, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16443,8 +33150,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:02,569", - "created": 1609969742.569595, + "asctime": "2021-01-11 07:30:20,665", + "created": 1610346620.665318, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16454,14 +33161,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): False ()", "module": "test", - "msecs": 569.5950984954834, + "msecs": 665.3180122375488, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5734.411001205444, - "thread": 140012350113600, + "relativeCreated": 6598.860025405884, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -16470,8 +33177,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:02,569", - "created": 1609969742.569786, + "asctime": "2021-01-11 07:30:20,665", + "created": 1610346620.665659, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16481,35 +33188,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = False ()", "module": "test", - "msecs": 569.7860717773438, + "msecs": 665.6589508056641, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5734.601974487305, - "thread": 140012350113600, + "relativeCreated": 6599.200963973999, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 569.9930191040039, + "msecs": 665.9200191497803, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5734.808921813965, - "thread": 140012350113600, + "relativeCreated": 6599.462032318115, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00020694732666015625 + "time_consumption": 0.00026106834411621094 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:02,570", - "created": 1609969742.570591, + "asctime": "2021-01-11 07:30:20,666", + "created": 1610346620.666938, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16526,8 +33233,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:02,570", - "created": 1609969742.57026, + "asctime": "2021-01-11 07:30:20,666", + "created": 1610346620.666437, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16537,14 +33244,14 @@ "lineno": 22, "message": "Result (Received message on server side): None ()", "module": "test", - "msecs": 570.2600479125977, + "msecs": 666.4369106292725, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5735.075950622559, - "thread": 140012350113600, + "relativeCreated": 6599.978923797607, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -16553,8 +33260,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:02,570", - "created": 1609969742.570423, + "asctime": "2021-01-11 07:30:20,666", + "created": 1610346620.666717, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16564,32 +33271,32 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = None ()", "module": "test", - "msecs": 570.422887802124, + "msecs": 666.7170524597168, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5735.238790512085, - "thread": 140012350113600, + "relativeCreated": 6600.259065628052, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 570.5909729003906, + "msecs": 666.938066482544, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5735.406875610352, - "thread": 140012350113600, + "relativeCreated": 6600.480079650879, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00016808509826660156 + "time_consumption": 0.00022101402282714844 }, { "args": [], - "asctime": "2021-01-06 22:49:02,872", - "created": 1609969742.872521, + "asctime": "2021-01-11 07:30:20,969", + "created": 1610346620.969552, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -16602,79 +33309,79 @@ "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:02,570", - "created": 1609969742.570909, + "asctime": "2021-01-11 07:30:20,667", + "created": 1610346620.667393, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 724, - "message": "SP server: TX -> Authentification is required. Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", + "lineno": 736, + "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 570.9090232849121, - "msg": "%s TX -> Authentification is required. Message %s, %s, data: %s will be ignored.", + "msecs": 667.3929691314697, + "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 5735.724925994873, - "thread": 140012350113600, + "relativeCreated": 6600.934982299805, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", - "0.25", + "prot-client:", + "0.28705533596837945", "17", "35" ], - "asctime": "2021-01-06 22:49:02,872", - "created": 1609969742.872083, + "asctime": "2021-01-11 07:30:20,969", + "created": 1610346620.969078, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP client: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 35) not in buffer.", + "lineno": 668, + "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 872.0829486846924, + "msecs": 969.0780639648438, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6036.898851394653, - "thread": 140012350113600, + "relativeCreated": 6902.620077133179, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 872.520923614502, + "msecs": 969.5520401000977, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6037.336826324463, - "thread": 140012350113600, + "relativeCreated": 6903.094053268433, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0004379749298095703 + "time_consumption": 0.00047397613525390625 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:02,873", - "created": 1609969742.873459, + "asctime": "2021-01-11 07:30:20,970", + "created": 1610346620.970576, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16691,8 +33398,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:02,872", - "created": 1609969742.872987, + "asctime": "2021-01-11 07:30:20,970", + "created": 1610346620.970062, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16702,14 +33409,14 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): False ()", "module": "test", - "msecs": 872.9870319366455, + "msecs": 970.0620174407959, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6037.802934646606, - "thread": 140012350113600, + "relativeCreated": 6903.604030609131, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -16718,8 +33425,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:02,873", - "created": 1609969742.873236, + "asctime": "2021-01-11 07:30:20,970", + "created": 1610346620.970327, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16729,35 +33436,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = False ()", "module": "test", - "msecs": 873.2359409332275, + "msecs": 970.3269004821777, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6038.0518436431885, - "thread": 140012350113600, + "relativeCreated": 6903.868913650513, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 873.4591007232666, + "msecs": 970.5760478973389, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6038.2750034332275, - "thread": 140012350113600, + "relativeCreated": 6904.118061065674, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0002231597900390625 + "time_consumption": 0.0002491474151611328 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:02,874", - "created": 1609969742.874284, + "asctime": "2021-01-11 07:30:20,971", + "created": 1610346620.971447, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16774,8 +33481,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:02,873", - "created": 1609969742.873855, + "asctime": "2021-01-11 07:30:20,970", + "created": 1610346620.970976, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16785,14 +33492,14 @@ "lineno": 22, "message": "Result (Received message on client side): None ()", "module": "test", - "msecs": 873.8551139831543, + "msecs": 970.9761142730713, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6038.671016693115, - "thread": 140012350113600, + "relativeCreated": 6904.518127441406, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -16801,8 +33508,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:02,874", - "created": 1609969742.874088, + "asctime": "2021-01-11 07:30:20,971", + "created": 1610346620.971214, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16812,32 +33519,32 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = None ()", "module": "test", - "msecs": 874.0880489349365, + "msecs": 971.2140560150146, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6038.9039516448975, - "thread": 140012350113600, + "relativeCreated": 6904.75606918335, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 874.284029006958, + "msecs": 971.4469909667969, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6039.099931716919, - "thread": 140012350113600, + "relativeCreated": 6904.989004135132, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00019598007202148438 + "time_consumption": 0.00023293495178222656 }, { "args": [], - "asctime": "2021-01-06 22:49:02,980", - "created": 1609969742.980092, + "asctime": "2021-01-11 07:30:21,072", + "created": 1610346621.072709, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -16850,557 +33557,2329 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:02,874", - "created": 1609969742.874697, + "asctime": "2021-01-11 07:30:20,971", + "created": 1610346620.971908, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 445, + "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 874.6969699859619, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 971.9080924987793, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6039.512872695923, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:02,875", - "created": 1609969742.875316, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "module": "test_helpers", - "msecs": 875.3159046173096, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6040.1318073272705, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:02,875", - "created": 1609969742.875761, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "module": "test_helpers", - "msecs": 875.7610321044922, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6040.576934814453, - "thread": 140012350113600, + "relativeCreated": 6905.450105667114, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:20,993", + "created": 1610346620.993405, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 993.4051036834717, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6926.947116851807, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:20,993", + "created": 1610346620.993779, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 993.7789440155029, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6927.320957183838, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:20,993", + "created": 1610346620.993935, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 993.9351081848145, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6927.477121353149, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:20,994", + "created": 1610346620.994054, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 994.0540790557861, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6927.596092224121, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:20,994", + "created": 1610346620.994198, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 994.1980838775635, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6927.740097045898, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:20,994", + "created": 1610346620.994307, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 994.3070411682129, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6927.849054336548, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:20,994", + "created": 1610346620.994461, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 994.4610595703125, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6928.0030727386475, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:20,994", + "created": 1610346620.994567, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 994.5669174194336, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6928.108930587769, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:20,994", + "created": 1610346620.994697, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 994.697093963623, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6928.239107131958, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:20,994", + "created": 1610346620.994798, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 994.797945022583, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6928.339958190918, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:20,994", + "created": 1610346620.994955, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 994.9550628662109, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6928.497076034546, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:20,995", + "created": 1610346620.995065, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 995.0649738311768, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6928.606986999512, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-client:", + "(6): 10 4d cd 55 3a 3e" + ], + "asctime": "2021-01-11 07:30:20,995", + "created": 1610346620.995225, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 10 4d cd 55 3a 3e", + "module": "__init__", + "msecs": 995.2249526977539, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6928.766965866089, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(6): 10 4d cd 55 3a 3e" + ], + "asctime": "2021-01-11 07:30:20,995", + "created": 1610346620.995351, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 10 4d cd 55 3a 3e", + "module": "__init__", + "msecs": 995.3510761260986, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6928.893089294434, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:20,995", + "created": 1610346620.995469, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 995.4690933227539, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6929.011106491089, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:20,995", + "created": 1610346620.995584, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 995.5840110778809, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6929.126024246216, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55" + ], + "asctime": "2021-01-11 07:30:20,995", + "created": 1610346620.995805, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", + "module": "stp", + "msecs": 995.805025100708, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6929.347038269043, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:02,876", - "created": 1609969742.876295, + "asctime": "2021-01-11 07:30:20,996", + "created": 1610346620.996083, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 445, + "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 876.2950897216797, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 996.0830211639404, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6041.110992431641, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 6929.625034332275, + "thread": 140634442675968, + "threadName": "Thread-9" }, { "args": [ - "SP server:", + "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-06 22:49:02,876", - "created": 1609969742.876583, + "asctime": "2021-01-11 07:30:20,996", + "created": 1610346620.996231, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __authentificate_create_seed__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 876.5830993652344, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 996.2310791015625, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6041.399002075195, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 6929.7730922698975, + "thread": 140634442675968, + "threadName": "Thread-9" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: authentification response, data_id: seed", "status: okay", - "'17eacd65a271a55f498a6e5b9805dcb79ff62f0f38038b34323b28daf74acc23'" + "'b0400e33eb4935de70d79719cf43210361e9ee1e635b91639c4b3b8fd1434f6f'" ], - "asctime": "2021-01-06 22:49:02,876", - "created": 1609969742.876898, + "asctime": "2021-01-11 07:30:20,996", + "created": 1610346620.99643, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: authentification response, data_id: seed, status: okay, data: \"'17eacd65a271a55f498a6e5b9805dcb79ff62f0f38038b34323b28daf74acc23'\"", + "lineno": 445, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'b0400e33eb4935de70d79719cf43210361e9ee1e635b91639c4b3b8fd1434f6f'\"", "module": "__init__", - "msecs": 876.8980503082275, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 996.4299201965332, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6041.7139530181885, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:02,877", - "created": 1609969742.877619, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 31 37 65 61 63 64 36 35 61 32 37 31 61 35 35 66 34 39 38 61 36 65 35 62 39 38 30 35 64 63 62 37 39 66 66 36 32 66 30 66 33 38 30 33 38 62 33 34 33 32 33 62 32 38 64 61 66 37 34 61 63 63 32 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d fa 0a 5a 6e", - "module": "test_helpers", - "msecs": 877.6190280914307, - "msg": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 31 37 65 61 63 64 36 35 61 32 37 31 61 35 35 66 34 39 38 61 36 65 35 62 39 38 30 35 64 63 62 37 39 66 66 36 32 66 30 66 33 38 30 33 38 62 33 34 33 32 33 62 32 38 64 61 66 37 34 61 63 63 32 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d fa 0a 5a 6e", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6042.434930801392, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:02,878", - "created": 1609969742.878015, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 31 37 65 61 63 64 36 35 61 32 37 31 61 35 35 66 34 39 38 61 36 65 35 62 39 38 30 35 64 63 62 37 39 66 66 36 32 66 30 66 33 38 30 33 38 62 33 34 33 32 33 62 32 38 64 61 66 37 34 61 63 63 32 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d fa 0a 5a 6e", - "module": "test_helpers", - "msecs": 878.0150413513184, - "msg": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 31 37 65 61 63 64 36 35 61 32 37 31 61 35 35 66 34 39 38 61 36 65 35 62 39 38 30 35 64 63 62 37 39 66 66 36 32 66 30 66 33 38 30 33 38 62 33 34 33 32 33 62 32 38 64 61 66 37 34 61 63 63 32 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d fa 0a 5a 6e", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6042.830944061279, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 6929.971933364868, + "thread": 140634442675968, + "threadName": "Thread-9" }, { "args": [ - "SP client:", - "service: authentification response, data_id: seed", - "status: okay", - "u'17eacd65a271a55f498a6e5b9805dcb79ff62f0f38038b34323b28daf74acc23'" + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 30 34 30 30 65 33 33 65 62 34 39 33 35 64 65 37 30 64" ], - "asctime": "2021-01-06 22:49:02,878", - "created": 1609969742.878309, + "asctime": "2021-01-11 07:30:21,003", + "created": 1610346621.003598, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__tx__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'17eacd65a271a55f498a6e5b9805dcb79ff62f0f38038b34323b28daf74acc23'\"", + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 30 34 30 30 65 33 33 65 62 34 39 33 35 64 65 37 30 64", "module": "__init__", - "msecs": 878.3090114593506, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 3.5979747772216797, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6043.1249141693115, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 6937.139987945557, + "thread": 140634434283264, + "threadName": "Thread-10" }, { "args": [ - "SP client:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 30 34 30 30 65 33 33 65 62 34 39 33 35 64 65 37 30 64" + ], + "asctime": "2021-01-11 07:30:21,004", + "created": 1610346621.004003, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 30 34 30 30 65 33 33 65 62 34 39 33 35 64 65 37 30 64", + "module": "__init__", + "msecs": 4.003047943115234, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6937.54506111145, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,004", + "created": 1610346621.004147, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 4.147052764892578, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6937.6890659332275, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:21,004", + "created": 1610346621.00425, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 4.250049591064453, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6937.792062759399, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,004", + "created": 1610346621.004429, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 4.429101943969727, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6937.971115112305, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,004", + "created": 1610346621.004549, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 4.5490264892578125, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6938.091039657593, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,004", + "created": 1610346621.004675, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 4.6749114990234375, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6938.216924667358, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,004", + "created": 1610346621.00476, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 4.760026931762695, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6938.302040100098, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,004", + "created": 1610346621.004892, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 4.892110824584961, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6938.43412399292, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,005", + "created": 1610346621.005002, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 5.002021789550781, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6938.544034957886, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-server:", + "(64): 37 39 37 31 39 63 66 34 33 32 31 30 33 36 31 65 39 65 65 31 65 36 33 35 62 39 31 36 33 39 63 34 62 33 62 38 66 64 31 34 33 34 66 36 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 87 e4" + ], + "asctime": "2021-01-11 07:30:21,005", + "created": 1610346621.005327, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 37 39 37 31 39 63 66 34 33 32 31 30 33 36 31 65 39 65 65 31 65 36 33 35 62 39 31 36 33 39 63 34 62 33 62 38 66 64 31 34 33 34 66 36 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 87 e4", + "module": "__init__", + "msecs": 5.326986312866211, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6938.868999481201, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(64): 37 39 37 31 39 63 66 34 33 32 31 30 33 36 31 65 39 65 65 31 65 36 33 35 62 39 31 36 33 39 63 34 62 33 62 38 66 64 31 34 33 34 66 36 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 87 e4" + ], + "asctime": "2021-01-11 07:30:21,005", + "created": 1610346621.00559, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 37 39 37 31 39 63 66 34 33 32 31 30 33 36 31 65 39 65 65 31 65 36 33 35 62 39 31 36 33 39 63 34 62 33 62 38 66 64 31 34 33 34 66 36 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 87 e4", + "module": "__init__", + "msecs": 5.589962005615234, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6939.13197517395, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,005", + "created": 1610346621.00587, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 5.87010383605957, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6939.4121170043945, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,005", + "created": 1610346621.005979, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 5.979061126708984, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6939.521074295044, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-server:", + "(4): be 8a 3a 3e" + ], + "asctime": "2021-01-11 07:30:21,006", + "created": 1610346621.006141, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (4): be 8a 3a 3e", + "module": "__init__", + "msecs": 6.140947341918945, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6939.682960510254, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(4): be 8a 3a 3e" + ], + "asctime": "2021-01-11 07:30:21,006", + "created": 1610346621.006379, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (4): be 8a 3a 3e", + "module": "__init__", + "msecs": 6.378889083862305, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6939.920902252197, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,006", + "created": 1610346621.006554, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 6.553888320922852, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6940.095901489258, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:21,006", + "created": 1610346621.006695, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 6.695032119750977, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6940.237045288086, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + "(124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 62 30 34 30 30 65 33 33 65 62 34 39 33 35 64 65 37 30 64 37 39 37 31 39 63 66 34 33 32 31 30 33 36 31 65 39 65 65 31 65 36 33 35 62 39 31 36 33 39 63 34 62 33 62 38 66 64 31 34 33 34 66 36 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 87 e4 be 8a" + ], + "asctime": "2021-01-11 07:30:21,006", + "created": 1610346621.006981, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 62 30 34 30 30 65 33 33 65 62 34 39 33 35 64 65 37 30 64 37 39 37 31 39 63 66 34 33 32 31 30 33 36 31 65 39 65 65 31 65 36 33 35 62 39 31 36 33 39 63 34 62 33 62 38 66 64 31 34 33 34 66 36 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 87 e4 be 8a", + "module": "stp", + "msecs": 6.98089599609375, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6940.522909164429, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: seed", + "status: okay", + "u'b0400e33eb4935de70d79719cf43210361e9ee1e635b91639c4b3b8fd1434f6f'" + ], + "asctime": "2021-01-11 07:30:21,007", + "created": 1610346621.007234, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'b0400e33eb4935de70d79719cf43210361e9ee1e635b91639c4b3b8fd1434f6f'\"", + "module": "__init__", + "msecs": 7.234096527099609, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6940.776109695435, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-01-06 22:49:02,878", - "created": 1609969742.878427, + "asctime": "2021-01-11 07:30:21,007", + "created": 1610346621.007356, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __authentificate_create_key__ to process received data", + "lineno": 492, + "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 878.4270286560059, + "msecs": 7.355928421020508, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6043.242931365967, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 6940.8979415893555, + "thread": 140634434283264, + "threadName": "Thread-10" }, { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: authentification request, data_id: key", "status: okay", - "'9892b2515138924258bb896c0f5d83e5bf5360bda4e875dbcd82fbceb72d5732bd97fc1b936c38aeb9d3aa7e10506a3f0ad1004f34b345bde35203fe165ef4ff'" + "'b0cf717b5315305fa5f3e061dffe6cbfd387064e0e83c88695bde8e6e18c391eb9fe831ecef725167eeb8ddb87992c79adbaec1dc800e97bf0aa05242959b1a9'" ], - "asctime": "2021-01-06 22:49:02,878", - "created": 1609969742.878523, + "asctime": "2021-01-11 07:30:21,007", + "created": 1610346621.007552, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: authentification request, data_id: key, status: okay, data: \"'9892b2515138924258bb896c0f5d83e5bf5360bda4e875dbcd82fbceb72d5732bd97fc1b936c38aeb9d3aa7e10506a3f0ad1004f34b345bde35203fe165ef4ff'\"", + "lineno": 445, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'b0cf717b5315305fa5f3e061dffe6cbfd387064e0e83c88695bde8e6e18c391eb9fe831ecef725167eeb8ddb87992c79adbaec1dc800e97bf0aa05242959b1a9'\"", "module": "__init__", - "msecs": 878.5231113433838, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 7.551908493041992, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6043.339014053345, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:02,878", - "created": 1609969742.878783, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 39 38 39 32 62 32 35 31 35 31 33 38 39 32 34 32 35 38 62 62 38 39 36 63 30 66 35 64 38 33 65 35 62 66 35 33 36 30 62 64 61 34 65 38 37 35 64 62 63 64 38 32 66 62 63 65 62 37 32 64 35 37 33 32 62 64 39 37 66 63 31 62 39 33 36 63 33 38 61 65 62 39 64 33 61 61 37 65 31 30 35 30 36 61 33 66 30 61 64 31 30 30 34 66 33 34 62 33 34 35 62 64 65 33 35 32 30 33 66 65 31 36 35 65 66 34 66 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 2e 06 7a 1c", - "module": "test_helpers", - "msecs": 878.7829875946045, - "msg": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 39 38 39 32 62 32 35 31 35 31 33 38 39 32 34 32 35 38 62 62 38 39 36 63 30 66 35 64 38 33 65 35 62 66 35 33 36 30 62 64 61 34 65 38 37 35 64 62 63 64 38 32 66 62 63 65 62 37 32 64 35 37 33 32 62 64 39 37 66 63 31 62 39 33 36 63 33 38 61 65 62 39 64 33 61 61 37 65 31 30 35 30 36 61 33 66 30 61 64 31 30 30 34 66 33 34 62 33 34 35 62 64 65 33 35 32 30 33 66 65 31 36 35 65 66 34 66 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 2e 06 7a 1c", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6043.598890304565, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:02,879", - "created": 1609969742.879009, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 39 38 39 32 62 32 35 31 35 31 33 38 39 32 34 32 35 38 62 62 38 39 36 63 30 66 35 64 38 33 65 35 62 66 35 33 36 30 62 64 61 34 65 38 37 35 64 62 63 64 38 32 66 62 63 65 62 37 32 64 35 37 33 32 62 64 39 37 66 63 31 62 39 33 36 63 33 38 61 65 62 39 64 33 61 61 37 65 31 30 35 30 36 61 33 66 30 61 64 31 30 30 34 66 33 34 62 33 34 35 62 64 65 33 35 32 30 33 66 65 31 36 35 65 66 34 66 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 2e 06 7a 1c", - "module": "test_helpers", - "msecs": 879.0090084075928, - "msg": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 39 38 39 32 62 32 35 31 35 31 33 38 39 32 34 32 35 38 62 62 38 39 36 63 30 66 35 64 38 33 65 35 62 66 35 33 36 30 62 64 61 34 65 38 37 35 64 62 63 64 38 32 66 62 63 65 62 37 32 64 35 37 33 32 62 64 39 37 66 63 31 62 39 33 36 63 33 38 61 65 62 39 64 33 61 61 37 65 31 30 35 30 36 61 33 66 30 61 64 31 30 30 34 66 33 34 62 33 34 35 62 64 65 33 35 32 30 33 66 65 31 36 35 65 66 34 66 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 2e 06 7a 1c", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6043.824911117554, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 6941.093921661377, + "thread": 140634434283264, + "threadName": "Thread-10" }, { "args": [ - "SP server:", - "service: authentification request, data_id: key", - "status: okay", - "u'9892b2515138924258bb896c0f5d83e5bf5360bda4e875dbcd82fbceb72d5732bd97fc1b936c38aeb9d3aa7e10506a3f0ad1004f34b345bde35203fe165ef4ff'" + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 30 63 66 37 31 37 62 35 33 31 35 33 30 35 66 61 35 66" ], - "asctime": "2021-01-06 22:49:02,879", - "created": 1609969742.879134, + "asctime": "2021-01-11 07:30:21,012", + "created": 1610346621.012715, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__tx__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'9892b2515138924258bb896c0f5d83e5bf5360bda4e875dbcd82fbceb72d5732bd97fc1b936c38aeb9d3aa7e10506a3f0ad1004f34b345bde35203fe165ef4ff'\"", + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 30 63 66 37 31 37 62 35 33 31 35 33 30 35 66 61 35 66", "module": "__init__", - "msecs": 879.133939743042, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 12.71510124206543, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6043.949842453003, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 6946.2571144104, + "thread": 140634442675968, + "threadName": "Thread-9" }, { "args": [ - "SP server:", + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 30 63 66 37 31 37 62 35 33 31 35 33 30 35 66 61 35 66" + ], + "asctime": "2021-01-11 07:30:21,013", + "created": 1610346621.013019, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 30 63 66 37 31 37 62 35 33 31 35 33 30 35 66 61 35 66", + "module": "__init__", + "msecs": 13.019084930419922, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6946.561098098755, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,013", + "created": 1610346621.013136, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 13.135910034179688, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6946.677923202515, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:21,013", + "created": 1610346621.013231, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 13.231039047241211, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6946.773052215576, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,013", + "created": 1610346621.013351, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 13.350963592529297, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6946.892976760864, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,013", + "created": 1610346621.013453, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 13.453006744384766, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6946.99501991272, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,013", + "created": 1610346621.013564, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 13.564109802246094, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6947.106122970581, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,013", + "created": 1610346621.013635, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 13.634920120239258, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6947.176933288574, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,013", + "created": 1610346621.013734, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 13.734102249145508, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6947.2761154174805, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,013", + "created": 1610346621.013814, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 13.813972473144531, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6947.3559856414795, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-client:", + "(64): 33 65 30 36 31 64 66 66 65 36 63 62 66 64 33 38 37 30 36 34 65 30 65 38 33 63 38 38 36 39 35 62 64 65 38 65 36 65 31 38 63 33 39 31 65 62 39 66 65 38 33 31 65 63 65 66 37 32 35 31 36 37 65 65" + ], + "asctime": "2021-01-11 07:30:21,014", + "created": 1610346621.01407, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 33 65 30 36 31 64 66 66 65 36 63 62 66 64 33 38 37 30 36 34 65 30 65 38 33 63 38 38 36 39 35 62 64 65 38 65 36 65 31 38 63 33 39 31 65 62 39 66 65 38 33 31 65 63 65 66 37 32 35 31 36 37 65 65", + "module": "__init__", + "msecs": 14.07003402709961, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6947.612047195435, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(64): 33 65 30 36 31 64 66 66 65 36 63 62 66 64 33 38 37 30 36 34 65 30 65 38 33 63 38 38 36 39 35 62 64 65 38 65 36 65 31 38 63 33 39 31 65 62 39 66 65 38 33 31 65 63 65 66 37 32 35 31 36 37 65 65" + ], + "asctime": "2021-01-11 07:30:21,014", + "created": 1610346621.014269, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 33 65 30 36 31 64 66 66 65 36 63 62 66 64 33 38 37 30 36 34 65 30 65 38 33 63 38 38 36 39 35 62 64 65 38 65 36 65 31 38 63 33 39 31 65 62 39 66 65 38 33 31 65 63 65 66 37 32 35 31 36 37 65 65", + "module": "__init__", + "msecs": 14.269113540649414, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6947.811126708984, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-client:", + "(64): 62 38 64 64 62 38 37 39 39 32 63 37 39 61 64 62 61 65 63 31 64 63 38 30 30 65 39 37 62 66 30 61 61 30 35 32 34 32 39 35 39 62 31 61 39 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d df ec" + ], + "asctime": "2021-01-11 07:30:21,014", + "created": 1610346621.014546, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 62 38 64 64 62 38 37 39 39 32 63 37 39 61 64 62 61 65 63 31 64 63 38 30 30 65 39 37 62 66 30 61 61 30 35 32 34 32 39 35 39 62 31 61 39 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d df ec", + "module": "__init__", + "msecs": 14.545917510986328, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6948.087930679321, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(64): 62 38 64 64 62 38 37 39 39 32 63 37 39 61 64 62 61 65 63 31 64 63 38 30 30 65 39 37 62 66 30 61 61 30 35 32 34 32 39 35 39 62 31 61 39 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d df ec" + ], + "asctime": "2021-01-11 07:30:21,014", + "created": 1610346621.0147, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 62 38 64 64 62 38 37 39 39 32 63 37 39 61 64 62 61 65 63 31 64 63 38 30 30 65 39 37 62 66 30 61 61 30 35 32 34 32 39 35 39 62 31 61 39 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d df ec", + "module": "__init__", + "msecs": 14.699935913085938, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6948.241949081421, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,014", + "created": 1610346621.014881, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 14.880895614624023, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6948.422908782959, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,014", + "created": 1610346621.014954, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 14.954090118408203, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6948.496103286743, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-client:", + "(4): 89 49 3a 3e" + ], + "asctime": "2021-01-11 07:30:21,015", + "created": 1610346621.015057, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (4): 89 49 3a 3e", + "module": "__init__", + "msecs": 15.057086944580078, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6948.599100112915, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(4): 89 49 3a 3e" + ], + "asctime": "2021-01-11 07:30:21,015", + "created": 1610346621.015137, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (4): 89 49 3a 3e", + "module": "__init__", + "msecs": 15.136957168579102, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6948.678970336914, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,015", + "created": 1610346621.015214, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 15.213966369628906, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6948.755979537964, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:21,015", + "created": 1610346621.015282, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 15.281915664672852, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6948.823928833008, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + "(188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 62 30 63 66 37 31 37 62 35 33 31 35 33 30 35 66 61 35 66 33 65 30 36 31 64 66 66 65 36 63 62 66 64 33 38 37 30 36 34 65 30 65 38 33 63 38 38 36 39 35 62 64 65 38 65 36 65 31 38 63 33 39 31 65 62 39 66 65 38 33 31 65 63 65 66 37 32 35 31 36 37 65 65 62 38 64 64 62 38 37 39 39 32 63 37 39 61 64 62 61 65 63 31 64 63 38 30 30 65 39 37 62 66 30 61 61 30 35 32 34 32 39 35 39 62 31 61 39 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d df ec 89 49" + ], + "asctime": "2021-01-11 07:30:21,015", + "created": 1610346621.015597, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 62 30 63 66 37 31 37 62 35 33 31 35 33 30 35 66 61 35 66 33 65 30 36 31 64 66 66 65 36 63 62 66 64 33 38 37 30 36 34 65 30 65 38 33 63 38 38 36 39 35 62 64 65 38 65 36 65 31 38 63 33 39 31 65 62 39 66 65 38 33 31 65 63 65 66 37 32 35 31 36 37 65 65 62 38 64 64 62 38 37 39 39 32 63 37 39 61 64 62 61 65 63 31 64 63 38 30 30 65 39 37 62 66 30 61 61 30 35 32 34 32 39 35 39 62 31 61 39 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d df ec 89 49", + "module": "stp", + "msecs": 15.597105026245117, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6949.13911819458, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: authentification request, data_id: key", + "status: okay", + "u'b0cf717b5315305fa5f3e061dffe6cbfd387064e0e83c88695bde8e6e18c391eb9fe831ecef725167eeb8ddb87992c79adbaec1dc800e97bf0aa05242959b1a9'" + ], + "asctime": "2021-01-11 07:30:21,015", + "created": 1610346621.015776, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'b0cf717b5315305fa5f3e061dffe6cbfd387064e0e83c88695bde8e6e18c391eb9fe831ecef725167eeb8ddb87992c79adbaec1dc800e97bf0aa05242959b1a9'\"", + "module": "__init__", + "msecs": 15.775918960571289, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6949.317932128906, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-01-06 22:49:02,879", - "created": 1609969742.879194, + "asctime": "2021-01-11 07:30:21,015", + "created": 1610346621.015875, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __authentificate_check_key__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 879.1940212249756, - "msg": "%s RX <- Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6044.0099239349365, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-01-06 22:49:02,879", - "created": 1609969742.879271, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 879.2710304260254, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6044.086933135986, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:02,879", - "created": 1609969742.879392, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", - "module": "test_helpers", - "msecs": 879.3919086456299, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6044.207811355591, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:02,879", - "created": 1609969742.879487, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", - "module": "test_helpers", - "msecs": 879.4870376586914, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6044.302940368652, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-01-06 22:49:02,879", - "created": 1609969742.879588, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 879.5878887176514, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6044.403791427612, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "__authentificate_process_feedback__" - ], - "asctime": "2021-01-06 22:49:02,879", - "created": 1609969742.879645, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __authentificate_process_feedback__ to process received data", - "module": "__init__", - "msecs": 879.6451091766357, + "msecs": 15.875101089477539, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6044.461011886597, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 6949.4171142578125, + "thread": 140634442675968, + "threadName": "Thread-9" }, { "args": [ - "SP client:" + "prot-server:", + "TX ->", + "service: authentification response, data_id: key", + "status: okay", + "True" ], - "asctime": "2021-01-06 22:49:02,879", - "created": 1609969742.879694, + "asctime": "2021-01-11 07:30:21,016", + "created": 1610346621.016015, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 16.015052795410156, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6949.557065963745, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" + ], + "asctime": "2021-01-11 07:30:21,023", + "created": 1610346621.023628, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", + "module": "__init__", + "msecs": 23.62799644470215, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6957.170009613037, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" + ], + "asctime": "2021-01-11 07:30:21,023", + "created": 1610346621.023963, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", + "module": "__init__", + "msecs": 23.962974548339844, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6957.504987716675, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,024", + "created": 1610346621.024096, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 24.096012115478516, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6957.6380252838135, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:21,024", + "created": 1610346621.02421, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 24.209976196289062, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6957.751989364624, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,024", + "created": 1610346621.024362, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 24.36208724975586, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6957.904100418091, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,024", + "created": 1610346621.024475, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 24.47509765625, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6958.017110824585, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,024", + "created": 1610346621.024627, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 24.626970291137695, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6958.168983459473, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,024", + "created": 1610346621.024727, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 24.72710609436035, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6958.269119262695, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,024", + "created": 1610346621.024854, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 24.853944778442383, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6958.395957946777, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,024", + "created": 1610346621.024958, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 24.957895278930664, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6958.499908447266, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,025", + "created": 1610346621.025098, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 25.098085403442383, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6958.640098571777, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,025", + "created": 1610346621.025208, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 25.207996368408203, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6958.750009536743, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-server:", + "(6): 11 d3 26 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:21,025", + "created": 1610346621.02537, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 11 d3 26 78 3a 3e", + "module": "__init__", + "msecs": 25.369882583618164, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6958.911895751953, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(6): 11 d3 26 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:21,025", + "created": 1610346621.025541, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 11 d3 26 78 3a 3e", + "module": "__init__", + "msecs": 25.541067123413086, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6959.083080291748, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,025", + "created": 1610346621.025716, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 25.716066360473633, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6959.258079528809, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:21,025", + "created": 1610346621.025811, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 25.810956954956055, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6959.352970123291, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78" + ], + "asctime": "2021-01-11 07:30:21,026", + "created": 1610346621.026013, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", + "module": "stp", + "msecs": 26.012897491455078, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6959.55491065979, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: key", + "status: okay", + "True" + ], + "asctime": "2021-01-11 07:30:21,026", + "created": 1610346621.026288, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 26.28803253173828, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6959.830045700073, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:", + "__authentificate_process_feedback__" + ], + "asctime": "2021-01-11 07:30:21,026", + "created": 1610346621.026427, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", + "module": "__init__", + "msecs": 26.427030563354492, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 6959.969043731689, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:21,026", + "created": 1610346621.026541, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "INFO", "levelno": 20, - "lineno": 350, - "message": "SP client: Got positive authentification feedback", + "lineno": 360, + "message": "prot-client: Got positive authentification feedback", "module": "__init__", - "msecs": 879.6939849853516, + "msecs": 26.54099464416504, "msg": "%s Got positive authentification feedback", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6044.5098876953125, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 6960.0830078125, + "thread": 140634434283264, + "threadName": "Thread-10" } ], - "msecs": 980.0920486450195, + "msecs": 72.7090835571289, "msg": "Performing Authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6144.9079513549805, - "thread": 140012350113600, + "relativeCreated": 7006.251096725464, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.10039806365966797 + "time_consumption": 0.04616808891296387 }, { "args": [], - "asctime": "2021-01-06 22:49:03,082", - "created": 1609969743.082874, + "asctime": "2021-01-11 07:30:21,274", + "created": 1610346621.274983, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -17413,150 +35892,554 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:02,980", - "created": 1609969742.98067, + "asctime": "2021-01-11 07:30:21,073", + "created": 1610346621.073573, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 445, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 980.6699752807617, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 73.57311248779297, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6145.485877990723, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:02,981", - "created": 1609969742.98126, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "test_helpers", - "msecs": 981.2600612640381, - "msg": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6146.075963973999, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:02,981", - "created": 1609969742.981706, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "test_helpers", - "msecs": 981.705904006958, - "msg": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6146.521806716919, - "thread": 140012350113600, + "relativeCreated": 7007.115125656128, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:21,080", + "created": 1610346621.080518, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 80.51800727844238, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7014.060020446777, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:21,080", + "created": 1610346621.080972, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 80.97195625305176, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7014.513969421387, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,081", + "created": 1610346621.081178, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 81.17794990539551, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7014.7199630737305, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:21,081", + "created": 1610346621.081389, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 81.38895034790039, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7014.930963516235, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,081", + "created": 1610346621.081654, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 81.65407180786133, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7015.196084976196, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,081", + "created": 1610346621.081821, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 81.82096481323242, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7015.362977981567, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,082", + "created": 1610346621.08216, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 82.15999603271484, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7015.70200920105, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,082", + "created": 1610346621.082336, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 82.3359489440918, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7015.877962112427, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,082", + "created": 1610346621.082628, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 82.62801170349121, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7016.170024871826, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,082", + "created": 1610346621.082798, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 82.79800415039062, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7016.340017318726, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-client:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" + ], + "asctime": "2021-01-11 07:30:21,083", + "created": 1610346621.083184, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", + "module": "__init__", + "msecs": 83.18400382995605, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7016.726016998291, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" + ], + "asctime": "2021-01-11 07:30:21,083", + "created": 1610346621.083451, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", + "module": "__init__", + "msecs": 83.4510326385498, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7016.993045806885, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,083", + "created": 1610346621.083702, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 83.70208740234375, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7017.244100570679, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,083", + "created": 1610346621.083859, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 83.85896682739258, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7017.4009799957275, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,084", + "created": 1610346621.084044, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 84.04397964477539, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7017.58599281311, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:21,084", + "created": 1610346621.084195, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 84.19489860534668, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7017.736911773682, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + "(88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b" + ], + "asctime": "2021-01-11 07:30:21,084", + "created": 1610346621.084606, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", + "module": "stp", + "msecs": 84.60593223571777, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7018.147945404053, + "thread": 140634442675968, + "threadName": "Thread-9" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: 17, data_id: 34", "status: okay", "u'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:02,982", - "created": 1609969742.982065, + "asctime": "2021-01-11 07:30:21,085", + "created": 1610346621.085127, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", + "lineno": 445, + "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 982.064962387085, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 85.12711524963379, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6146.880865097046, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 7018.669128417969, + "thread": 140634442675968, + "threadName": "Thread-9" }, { "args": [ - "SP server:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:02,982", - "created": 1609969742.982326, + "asctime": "2021-01-11 07:30:21,085", + "created": 1610346621.085492, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP server: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 982.3260307312012, + "msecs": 85.49189567565918, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6147.141933441162, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 7019.033908843994, + "thread": 140634442675968, + "threadName": "Thread-9" } ], - "msecs": 82.87405967712402, + "msecs": 274.9829292297363, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6247.689962387085, - "thread": 140012350113600, + "relativeCreated": 7208.524942398071, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.10054802894592285 + "time_consumption": 0.18949103355407715 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:03,083", - "created": 1609969743.083758, + "asctime": "2021-01-11 07:30:21,275", + "created": 1610346621.275947, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17573,8 +36456,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:03,083", - "created": 1609969743.083361, + "asctime": "2021-01-11 07:30:21,275", + "created": 1610346621.275558, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17584,14 +36467,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 83.36091041564941, + "msecs": 275.5579948425293, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6248.17681312561, - "thread": 140012350113600, + "relativeCreated": 7209.100008010864, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -17600,8 +36483,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:03,083", - "created": 1609969743.083564, + "asctime": "2021-01-11 07:30:21,275", + "created": 1610346621.275765, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17611,35 +36494,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 83.56404304504395, + "msecs": 275.76494216918945, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6248.379945755005, - "thread": 140012350113600, + "relativeCreated": 7209.306955337524, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 83.75811576843262, + "msecs": 275.94709396362305, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6248.574018478394, - "thread": 140012350113600, + "relativeCreated": 7209.489107131958, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00019407272338867188 + "time_consumption": 0.00018215179443359375 }, { "args": [ "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", "" ], - "asctime": "2021-01-06 22:49:03,084", - "created": 1609969743.084406, + "asctime": "2021-01-11 07:30:21,276", + "created": 1610346621.2766, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17656,8 +36539,8 @@ "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", "" ], - "asctime": "2021-01-06 22:49:03,084", - "created": 1609969743.084044, + "asctime": "2021-01-11 07:30:21,276", + "created": 1610346621.276235, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17667,14 +36550,14 @@ "lineno": 22, "message": "Result (Received message on server side): {u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34} ()", "module": "test", - "msecs": 84.04397964477539, + "msecs": 276.23510360717773, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6248.859882354736, - "thread": 140012350113600, + "relativeCreated": 7209.777116775513, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -17683,8 +36566,8 @@ "{'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34}", "" ], - "asctime": "2021-01-06 22:49:03,084", - "created": 1609969743.084226, + "asctime": "2021-01-11 07:30:21,276", + "created": 1610346621.276421, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17694,32 +36577,32 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34} ()", "module": "test", - "msecs": 84.22589302062988, + "msecs": 276.42107009887695, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6249.041795730591, - "thread": 140012350113600, + "relativeCreated": 7209.963083267212, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 84.40589904785156, + "msecs": 276.5998840332031, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6249.2218017578125, - "thread": 140012350113600, + "relativeCreated": 7210.141897201538, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0001800060272216797 + "time_consumption": 0.00017881393432617188 }, { "args": [], - "asctime": "2021-01-06 22:49:03,187", - "created": 1609969743.187045, + "asctime": "2021-01-11 07:30:21,478", + "created": 1610346621.478422, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -17732,176 +36615,554 @@ "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:03,084", - "created": 1609969743.084734, + "asctime": "2021-01-11 07:30:21,276", + "created": 1610346621.276986, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 84.73396301269531, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 276.98588371276855, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6249.549865722656, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:03,085", - "created": 1609969743.085282, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "module": "test_helpers", - "msecs": 85.2820873260498, - "msg": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6250.097990036011, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:03,085", - "created": 1609969743.08571, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "module": "test_helpers", - "msecs": 85.71004867553711, - "msg": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6250.525951385498, - "thread": 140012350113600, + "relativeCreated": 7210.5278968811035, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:21,291", + "created": 1610346621.291635, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 291.63503646850586, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7225.177049636841, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:21,291", + "created": 1610346621.291996, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 291.9960021972656, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7225.538015365601, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,292", + "created": 1610346621.292152, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 292.15192794799805, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7225.693941116333, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:21,292", + "created": 1610346621.292251, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 292.2511100769043, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7225.793123245239, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,292", + "created": 1610346621.292375, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 292.3750877380371, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7225.917100906372, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,292", + "created": 1610346621.292463, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 292.4630641937256, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7226.005077362061, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,292", + "created": 1610346621.292584, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 292.5839424133301, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7226.125955581665, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,292", + "created": 1610346621.292672, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 292.67191886901855, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7226.2139320373535, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,292", + "created": 1610346621.292777, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 292.77706146240234, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7226.319074630737, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,292", + "created": 1610346621.292863, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 292.8628921508789, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7226.404905319214, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-server:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" + ], + "asctime": "2021-01-11 07:30:21,293", + "created": 1610346621.293065, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", + "module": "__init__", + "msecs": 293.06507110595703, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7226.607084274292, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" + ], + "asctime": "2021-01-11 07:30:21,293", + "created": 1610346621.293209, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", + "module": "__init__", + "msecs": 293.2090759277344, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7226.751089096069, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,293", + "created": 1610346621.293344, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 293.34402084350586, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7226.886034011841, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:21,293", + "created": 1610346621.293452, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 293.45202445983887, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7226.994037628174, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:21,293", + "created": 1610346621.293555, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 293.55502128601074, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7227.097034454346, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:21,293", + "created": 1610346621.293676, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 293.67589950561523, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7227.21791267395, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + "(88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8" + ], + "asctime": "2021-01-11 07:30:21,293", + "created": 1610346621.293996, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", + "module": "stp", + "msecs": 293.99609565734863, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 7227.538108825684, + "thread": 140634434283264, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: 17, data_id: 35", "status: service or data unknown", "u'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:03,086", - "created": 1609969743.086087, + "asctime": "2021-01-11 07:30:21,294", + "created": 1610346621.294317, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 86.08698844909668, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 294.31700706481934, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6250.902891159058, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 7227.859020233154, + "thread": 140634434283264, + "threadName": "Thread-10" }, { "args": [ - "SP client:", - "status: service or data unknown" + "prot-client:" ], - "asctime": "2021-01-06 22:49:03,086", - "created": 1609969743.086288, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: service or data unknown", - "module": "__init__", - "msecs": 86.2879753112793, - "msg": "%s RX <- Message has a peculiar status: %s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 6251.10387802124, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:" - ], - "asctime": "2021-01-06 22:49:03,086", - "created": 1609969743.086519, + "asctime": "2021-01-11 07:30:21,294", + "created": 1610346621.294561, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 86.51900291442871, + "msecs": 294.56090927124023, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6251.33490562439, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 7228.102922439575, + "thread": 140634434283264, + "threadName": "Thread-10" } ], - "msecs": 187.04509735107422, + "msecs": 478.4219264984131, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6351.861000061035, - "thread": 140012350113600, + "relativeCreated": 7411.963939666748, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.10052609443664551 + "time_consumption": 0.18386101722717285 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:03,187", - "created": 1609969743.187921, + "asctime": "2021-01-11 07:30:21,479", + "created": 1610346621.479355, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17918,8 +37179,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:03,187", - "created": 1609969743.187532, + "asctime": "2021-01-11 07:30:21,478", + "created": 1610346621.478968, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17929,14 +37190,14 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 187.5319480895996, + "msecs": 478.96790504455566, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6352.347850799561, - "thread": 140012350113600, + "relativeCreated": 7412.509918212891, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -17945,8 +37206,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:03,187", - "created": 1609969743.187736, + "asctime": "2021-01-11 07:30:21,479", + "created": 1610346621.479175, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17956,35 +37217,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 187.73603439331055, + "msecs": 479.1750907897949, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6352.5519371032715, - "thread": 140012350113600, + "relativeCreated": 7412.71710395813, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 187.92104721069336, + "msecs": 479.3550968170166, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6352.736949920654, - "thread": 140012350113600, + "relativeCreated": 7412.897109985352, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0001850128173828125 + "time_consumption": 0.0001800060272216797 }, { "args": [ "{u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35}", "" ], - "asctime": "2021-01-06 22:49:03,188", - "created": 1609969743.188621, + "asctime": "2021-01-11 07:30:21,480", + "created": 1610346621.48004, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18001,8 +37262,8 @@ "{u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35}", "" ], - "asctime": "2021-01-06 22:49:03,188", - "created": 1609969743.188217, + "asctime": "2021-01-11 07:30:21,479", + "created": 1610346621.479668, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18012,14 +37273,14 @@ "lineno": 22, "message": "Result (Received message on client side): {u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35} ()", "module": "test", - "msecs": 188.2169246673584, + "msecs": 479.66790199279785, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6353.032827377319, - "thread": 140012350113600, + "relativeCreated": 7413.209915161133, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -18028,8 +37289,8 @@ "{'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35}", "" ], - "asctime": "2021-01-06 22:49:03,188", - "created": 1609969743.188402, + "asctime": "2021-01-11 07:30:21,479", + "created": 1610346621.479859, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18039,39 +37300,39 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = {'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35} ()", "module": "test", - "msecs": 188.4019374847412, + "msecs": 479.8591136932373, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6353.217840194702, - "thread": 140012350113600, + "relativeCreated": 7413.401126861572, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 188.62104415893555, + "msecs": 480.0400733947754, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 6353.4369468688965, - "thread": 140012350113600, + "relativeCreated": 7413.58208656311, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00021910667419433594 + "time_consumption": 0.00018095970153808594 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 1.3361120223999023, - "time_finished": "2021-01-06 22:49:03,188", - "time_start": "2021-01-06 22:49:01,852" + "time_consumption": 1.9762310981750488, + "time_finished": "2021-01-11 07:30:21,480", + "time_start": "2021-01-11 07:30:19,503" }, "_Tb-78E4LEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-06 22:49:09,007", - "created": 1609969749.007999, + "asctime": "2021-01-11 07:30:27,913", + "created": 1610346627.91394, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -18082,1450 +37343,3573 @@ "message": "_Tb-78E4LEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 7.998943328857422, + "msecs": 913.9399528503418, "msg": "_Tb-78E4LEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12172.814846038818, + "relativeCreated": 13847.481966018677, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:09,014", - "created": 1609969749.014265, + "asctime": "2021-01-11 07:30:27,924", + "created": 1610346627.924801, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:09,008", - "created": 1609969749.008398, + "asctime": "2021-01-11 07:30:27,914", + "created": 1610346627.914978, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 8.398056030273438, + "msecs": 914.97802734375, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12173.213958740234, - "thread": 140012350113600, + "relativeCreated": 13848.520040512085, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:09,008", - "created": 1609969749.008567, + "asctime": "2021-01-11 07:30:27,915", + "created": 1610346627.915816, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 8.567094802856445, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 915.816068649292, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12173.382997512817, - "thread": 140012350113600, + "relativeCreated": 13849.358081817627, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:09,008", - "created": 1609969749.008752, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 8.752107620239258, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12173.5680103302, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:09,008", - "created": 1609969749.008885, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 8.884906768798828, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12173.70080947876, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:09,009", - "created": 1609969749.009007, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 9.006977081298828, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12173.82287979126, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:09,009", - "created": 1609969749.009139, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 9.139060974121094, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12173.954963684082, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:09,009", - "created": 1609969749.009274, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 9.274005889892578, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12174.089908599854, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:09,009", - "created": 1609969749.009415, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 9.414911270141602, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12174.230813980103, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:09,009", - "created": 1609969749.009545, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 9.545087814331055, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12174.360990524292, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:09,009", - "created": 1609969749.009681, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 9.680986404418945, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12174.49688911438, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:09,009", - "created": 1609969749.009834, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 9.834051132202148, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12174.649953842163, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:09,009", - "created": 1609969749.00999, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 9.98997688293457, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12174.805879592896, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:09,010", - "created": 1609969749.010138, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 10.13803482055664, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12174.953937530518, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:09,010", - "created": 1609969749.010277, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 10.277032852172852, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12175.092935562134, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:09,010", - "created": 1609969749.01042, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 10.420083999633789, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12175.235986709595, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:09,010", - "created": 1609969749.010561, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 10.560989379882812, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12175.376892089844, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:09,010", - "created": 1609969749.010695, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 10.69498062133789, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12175.510883331299, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:09,010", - "created": 1609969749.010829, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 10.828971862792969, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12175.644874572754, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:09,010", - "created": 1609969749.010954, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 10.953903198242188, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12175.769805908203, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:09,011", - "created": 1609969749.011081, + "asctime": "2021-01-11 07:30:27,916", + "created": 1610346627.916087, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 11.08098030090332, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 916.0869121551514, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12175.896883010864, - "thread": 140012350113600, + "relativeCreated": 13849.628925323486, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,011", - "created": 1609969749.011397, + "asctime": "2021-01-11 07:30:27,916", + "created": 1610346627.916819, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 11.39688491821289, + "msecs": 916.8190956115723, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12176.212787628174, - "thread": 140012350113600, + "relativeCreated": 13850.361108779907, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:09,011", - "created": 1609969749.011548, + "asctime": "2021-01-11 07:30:27,917", + "created": 1610346627.917068, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 11.548042297363281, + "msecs": 917.0680046081543, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12176.363945007324, - "thread": 140012350113600, + "relativeCreated": 13850.61001777649, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:09,011", - "created": 1609969749.011729, + "asctime": "2021-01-11 07:30:27,917", + "created": 1610346627.917321, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 11.729001998901367, + "msecs": 917.320966720581, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12176.544904708862, - "thread": 140012350113600, + "relativeCreated": 13850.862979888916, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:09,011", - "created": 1609969749.011863, + "asctime": "2021-01-11 07:30:27,917", + "created": 1610346627.917523, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 11.862993240356445, + "msecs": 917.5229072570801, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12176.678895950317, - "thread": 140012350113600, + "relativeCreated": 13851.064920425415, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:09,012", - "created": 1609969749.012, + "asctime": "2021-01-11 07:30:27,917", + "created": 1610346627.917704, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 12.000083923339844, + "msecs": 917.7041053771973, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12176.8159866333, - "thread": 140012350113600, + "relativeCreated": 13851.246118545532, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:09,012", - "created": 1609969749.012127, + "asctime": "2021-01-11 07:30:27,917", + "created": 1610346627.917911, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 12.126922607421875, + "msecs": 917.9110527038574, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12176.942825317383, - "thread": 140012350113600, + "relativeCreated": 13851.453065872192, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:09,012", - "created": 1609969749.012275, + "asctime": "2021-01-11 07:30:27,918", + "created": 1610346627.918062, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 12.274980545043945, + "msecs": 918.0619716644287, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12177.090883255005, - "thread": 140012350113600, + "relativeCreated": 13851.603984832764, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:09,012", - "created": 1609969749.012425, + "asctime": "2021-01-11 07:30:27,918", + "created": 1610346627.918214, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 12.424945831298828, + "msecs": 918.2140827178955, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12177.24084854126, - "thread": 140012350113600, + "relativeCreated": 13851.75609588623, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:09,012", - "created": 1609969749.012581, + "asctime": "2021-01-11 07:30:27,918", + "created": 1610346627.918365, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 12.581110000610352, + "msecs": 918.3650016784668, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12177.397012710571, - "thread": 140012350113600, + "relativeCreated": 13851.907014846802, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:09,012", - "created": 1609969749.012728, + "asctime": "2021-01-11 07:30:27,918", + "created": 1610346627.918508, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 12.727975845336914, + "msecs": 918.5080528259277, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12177.543878555298, - "thread": 140012350113600, + "relativeCreated": 13852.050065994263, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,012", - "created": 1609969749.012852, + "asctime": "2021-01-11 07:30:27,918", + "created": 1610346627.918654, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 12.851953506469727, + "msecs": 918.6539649963379, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12177.66785621643, - "thread": 140012350113600, + "relativeCreated": 13852.195978164673, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:09,012", - "created": 1609969749.012999, + "asctime": "2021-01-11 07:30:27,918", + "created": 1610346627.918863, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 12.99905776977539, + "msecs": 918.86305809021, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12177.814960479736, - "thread": 140012350113600, + "relativeCreated": 13852.405071258545, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:09,013", - "created": 1609969749.013145, + "asctime": "2021-01-11 07:30:27,919", + "created": 1610346627.919078, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 13.144969940185547, + "msecs": 919.0781116485596, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12177.960872650146, - "thread": 140012350113600, + "relativeCreated": 13852.620124816895, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:09,013", - "created": 1609969749.013305, + "asctime": "2021-01-11 07:30:27,919", + "created": 1610346627.919293, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 13.304948806762695, + "msecs": 919.2929267883301, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12178.120851516724, - "thread": 140012350113600, + "relativeCreated": 13852.834939956665, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:09,013", - "created": 1609969749.013448, + "asctime": "2021-01-11 07:30:27,919", + "created": 1610346627.919435, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 13.447999954223633, + "msecs": 919.4350242614746, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12178.263902664185, - "thread": 140012350113600, + "relativeCreated": 13852.97703742981, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:09,013", - "created": 1609969749.013589, + "asctime": "2021-01-11 07:30:27,919", + "created": 1610346627.919587, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 13.588905334472656, + "msecs": 919.5868968963623, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12178.404808044434, - "thread": 140012350113600, + "relativeCreated": 13853.128910064697, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:09,013", - "created": 1609969749.01373, + "asctime": "2021-01-11 07:30:27,919", + "created": 1610346627.919731, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 13.730049133300781, + "msecs": 919.7309017181396, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12178.545951843262, - "thread": 140012350113600, + "relativeCreated": 13853.272914886475, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:09,013", - "created": 1609969749.013873, + "asctime": "2021-01-11 07:30:27,919", + "created": 1610346627.91986, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 13.873100280761719, + "msecs": 919.8598861694336, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12178.689002990723, - "thread": 140012350113600, + "relativeCreated": 13853.401899337769, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:09,013", - "created": 1609969749.013999, + "asctime": "2021-01-11 07:30:27,920", + "created": 1610346627.92001, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 13.998985290527344, + "msecs": 920.0100898742676, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12178.814888000488, - "thread": 140012350113600, + "relativeCreated": 13853.552103042603, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,014", - "created": 1609969749.014125, + "asctime": "2021-01-11 07:30:27,920", + "created": 1610346627.920169, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 14.12510871887207, + "msecs": 920.1691150665283, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12178.941011428833, - "thread": 140012350113600, + "relativeCreated": 13853.711128234863, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:27,920", + "created": 1610346627.920812, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 920.8118915557861, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13854.353904724121, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:27,921", + "created": 1610346627.921045, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 921.0450649261475, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13854.587078094482, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:27,921", + "created": 1610346627.921303, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 921.3030338287354, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13854.84504699707, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:27,921", + "created": 1610346627.921512, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 921.5118885040283, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13855.053901672363, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:27,921", + "created": 1610346627.921709, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 921.7090606689453, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13855.25107383728, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:27,921", + "created": 1610346627.921882, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 921.881914138794, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13855.423927307129, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:27,922", + "created": 1610346627.922076, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 922.0759868621826, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13855.618000030518, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:27,922", + "created": 1610346627.922287, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 922.2869873046875, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13855.829000473022, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:27,922", + "created": 1610346627.922483, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 922.482967376709, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13856.024980545044, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:27,922", + "created": 1610346627.922738, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 922.7380752563477, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13856.280088424683, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:27,922", + "created": 1610346627.9229, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 922.8999614715576, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13856.441974639893, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:27,923", + "created": 1610346627.923099, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 923.0990409851074, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13856.641054153442, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:27,923", + "created": 1610346627.923302, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 923.3019351959229, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13856.843948364258, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:27,923", + "created": 1610346627.923478, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 923.4778881072998, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13857.019901275635, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:27,923", + "created": 1610346627.923672, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 923.6719608306885, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13857.213973999023, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:27,923", + "created": 1610346627.923898, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 923.8979816436768, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13857.439994812012, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:27,924", + "created": 1610346627.924108, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 924.1080284118652, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13857.6500415802, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:27,924", + "created": 1610346627.924289, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 924.2889881134033, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13857.831001281738, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:27,924", + "created": 1610346627.924602, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 924.6020317077637, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13858.144044876099, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:27,924", + "created": 1610346627.924699, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 924.699068069458, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13858.241081237793, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 14.265060424804688, + "msecs": 924.8011112213135, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12179.080963134766, - "thread": 140012350113600, + "relativeCreated": 13858.343124389648, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0001399517059326172 + "time_consumption": 0.00010204315185546875 }, { "args": [], - "asctime": "2021-01-06 22:49:09,014", - "created": 1609969749.014693, + "asctime": "2021-01-11 07:30:28,268", + "created": 1610346628.268916, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:27,925", + "created": 1610346627.925037, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 925.0369071960449, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13858.57892036438, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:27,925", + "created": 1610346627.925141, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 925.1410961151123, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13858.683109283447, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:27,925", + "created": 1610346627.925247, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 925.2469539642334, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13858.788967132568, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:27,925", + "created": 1610346627.925402, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 925.4019260406494, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13858.943939208984, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:27,925", + "created": 1610346627.925716, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 925.7159233093262, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13859.257936477661, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:27,925", + "created": 1610346627.925815, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 925.8151054382324, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13859.357118606567, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:27,925", + "created": 1610346627.925908, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 925.908088684082, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13859.450101852417, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:27,932", + "created": 1610346627.93266, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 932.6601028442383, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13866.202116012573, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:27,932", + "created": 1610346627.932876, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 932.8761100769043, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13866.41812324524, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,932", + "created": 1610346627.932951, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 932.9509735107422, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13866.492986679077, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:27,933", + "created": 1610346627.933012, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 933.0120086669922, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13866.554021835327, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,933", + "created": 1610346627.933079, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 933.0790042877197, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13866.621017456055, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,933", + "created": 1610346627.933135, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 933.1350326538086, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13866.677045822144, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,933", + "created": 1610346627.933473, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 933.4731101989746, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13867.01512336731, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,933", + "created": 1610346627.933532, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 933.5319995880127, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13867.074012756348, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,933", + "created": 1610346627.933601, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 933.600902557373, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13867.142915725708, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,933", + "created": 1610346627.933651, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 933.6509704589844, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13867.19298362732, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,933", + "created": 1610346627.933723, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 933.722972869873, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13867.264986038208, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,933", + "created": 1610346627.933771, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 933.7708950042725, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13867.312908172607, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "comm-client:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:27,933", + "created": 1610346627.933845, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 933.845043182373, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13867.387056350708, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "comm-server:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:27,933", + "created": 1610346627.933907, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 933.9070320129395, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13867.449045181274, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,933", + "created": 1610346627.933961, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 933.9609146118164, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13867.502927780151, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:27,934", + "created": 1610346627.934009, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 934.0090751647949, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13867.55108833313, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" + ], + "asctime": "2021-01-11 07:30:27,934", + "created": 1610346627.934117, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", + "module": "stp", + "msecs": 934.1170787811279, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13867.659091949463, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:27,934", + "created": 1610346627.934232, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 934.2319965362549, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13867.77400970459, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:27,934", + "created": 1610346627.93429, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 934.2899322509766, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13867.831945419312, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:27,934", + "created": 1610346627.93436, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 934.3600273132324, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13867.902040481567, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:27,948", + "created": 1610346627.948769, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 948.7690925598145, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13882.31110572815, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:27,949", + "created": 1610346627.949143, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 949.1429328918457, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13882.68494606018, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,949", + "created": 1610346627.949256, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 949.2559432983398, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13882.797956466675, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:27,949", + "created": 1610346627.949346, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 949.3460655212402, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13882.888078689575, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,949", + "created": 1610346627.949509, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 949.5089054107666, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13883.050918579102, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,949", + "created": 1610346627.949619, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 949.6190547943115, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13883.161067962646, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,949", + "created": 1610346627.949754, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 949.753999710083, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13883.296012878418, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,949", + "created": 1610346627.949879, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 949.8789310455322, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13883.420944213867, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,950", + "created": 1610346627.950078, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 950.078010559082, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13883.620023727417, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,950", + "created": 1610346627.950339, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 950.3390789031982, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13883.881092071533, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,950", + "created": 1610346627.950629, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 950.6289958953857, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13884.17100906372, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,950", + "created": 1610346627.950767, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 950.7670402526855, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13884.30905342102, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:27,950", + "created": 1610346627.950978, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 950.9780406951904, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13884.520053863525, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:27,951", + "created": 1610346627.951147, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 951.1470794677734, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13884.689092636108, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,951", + "created": 1610346627.95131, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 951.3099193572998, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13884.851932525635, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:27,951", + "created": 1610346627.951447, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 951.4470100402832, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13884.989023208618, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:27,951", + "created": 1610346627.951733, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 951.7331123352051, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13885.27512550354, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:27,952", + "created": 1610346627.952039, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 952.0390033721924, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13885.581016540527, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:27,952", + "created": 1610346627.952268, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 952.2678852081299, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13885.809898376465, + "thread": 140633310217984, + "threadName": "Thread-22" + } + ], + "msecs": 268.91589164733887, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14202.457904815674, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.316648006439209 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:28,269", + "created": 1610346628.269894, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "all_did_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 131, + "lineno": 132, "message": "Registering a correct working Callback", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "'__callback__'", "10", "None" ], - "asctime": "2021-01-06 22:49:09,014", - "created": 1609969749.01456, + "asctime": "2021-01-11 07:30:28,269", + "created": 1610346628.269664, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__callback__' for SID=10 and DID=None", + "lineno": 170, + "message": "prot-server: Adding callback '__callback__' for SID=10 and DID=None", "module": "__init__", - "msecs": 14.55998420715332, + "msecs": 269.66404914855957, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12179.375886917114, - "thread": 140012350113600, + "relativeCreated": 14203.206062316895, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 14.693021774291992, + "msecs": 269.8938846588135, "msg": "Registering a correct working Callback", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12179.508924484253, - "thread": 140012350113600, + "relativeCreated": 14203.435897827148, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00013303756713867188 + "time_consumption": 0.00022983551025390625 }, { "args": [], - "asctime": "2021-01-06 22:49:09,117", - "created": 1609969749.117766, + "asctime": "2021-01-11 07:30:28,471", + "created": 1610346628.471834, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "all_did_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 134, + "lineno": 135, "message": "Transfering data", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:09,014", - "created": 1609969749.014924, + "asctime": "2021-01-11 07:30:28,270", + "created": 1610346628.270341, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 445, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 14.924049377441406, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 270.3409194946289, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12179.739952087402, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,015", - "created": 1609969749.015295, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "test_helpers", - "msecs": 15.295028686523438, - "msg": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12180.110931396484, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,015", - "created": 1609969749.015569, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "test_helpers", - "msecs": 15.568971633911133, - "msg": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12180.384874343872, - "thread": 140012350113600, + "relativeCreated": 14203.882932662964, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" + ], + "asctime": "2021-01-11 07:30:28,299", + "created": 1610346628.299764, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", + "module": "__init__", + "msecs": 299.76391792297363, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14233.305931091309, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" + ], + "asctime": "2021-01-11 07:30:28,300", + "created": 1610346628.300517, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", + "module": "__init__", + "msecs": 300.51708221435547, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14234.05909538269, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,300", + "created": 1610346628.300918, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 300.9181022644043, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14234.46011543274, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:28,301", + "created": 1610346628.301178, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 301.177978515625, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14234.71999168396, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,301", + "created": 1610346628.301513, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 301.5129566192627, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14235.054969787598, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,301", + "created": 1610346628.301834, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 301.8341064453125, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14235.376119613647, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,302", + "created": 1610346628.302085, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 302.08492279052734, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14235.626935958862, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,302", + "created": 1610346628.302264, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 302.2639751434326, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14235.805988311768, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,302", + "created": 1610346628.302504, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 302.5040626525879, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14236.046075820923, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,302", + "created": 1610346628.302698, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 302.69789695739746, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14236.239910125732, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,303", + "created": 1610346628.303008, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 303.0080795288086, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14236.550092697144, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,303", + "created": 1610346628.303283, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 303.2829761505127, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14236.824989318848, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "comm-client:", + "(5): 17 fc 16 3a 3e" + ], + "asctime": "2021-01-11 07:30:28,303", + "created": 1610346628.303816, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", + "module": "__init__", + "msecs": 303.8160800933838, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14237.358093261719, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "comm-server:", + "(5): 17 fc 16 3a 3e" + ], + "asctime": "2021-01-11 07:30:28,304", + "created": 1610346628.30404, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", + "module": "__init__", + "msecs": 304.03995513916016, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14237.581968307495, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,304", + "created": 1610346628.304181, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 304.1810989379883, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14237.723112106323, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:28,304", + "created": 1610346628.30431, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 304.3100833892822, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14237.852096557617, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" + ], + "asctime": "2021-01-11 07:30:28,304", + "created": 1610346628.304573, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", + "module": "stp", + "msecs": 304.57305908203125, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14238.115072250366, + "thread": 140633318610688, + "threadName": "Thread-21" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:09,015", - "created": 1609969749.015811, + "asctime": "2021-01-11 07:30:28,304", + "created": 1610346628.304963, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 445, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 15.810966491699219, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 304.9631118774414, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12180.62686920166, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 14238.505125045776, + "thread": 140633318610688, + "threadName": "Thread-21" }, { "args": [ - "SP server:", + "prot-server:", "__callback__" ], - "asctime": "2021-01-06 22:49:09,015", - "created": 1609969749.015979, + "asctime": "2021-01-11 07:30:28,305", + "created": 1610346628.305119, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __callback__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 15.97905158996582, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 305.1190376281738, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12180.794954299927, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 14238.661050796509, + "thread": 140633318610688, + "threadName": "Thread-21" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: read data response, data_id: 0", "status: okay", "33" ], - "asctime": "2021-01-06 22:49:09,016", - "created": 1609969749.016154, + "asctime": "2021-01-11 07:30:28,305", + "created": 1610346628.305322, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "lineno": 445, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 16.154050827026367, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 305.32193183898926, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12180.969953536987, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,016", - "created": 1609969749.016487, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "module": "test_helpers", - "msecs": 16.48688316345215, - "msg": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12181.302785873413, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,016", - "created": 1609969749.016755, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "module": "test_helpers", - "msecs": 16.755104064941406, - "msg": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12181.571006774902, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 14238.863945007324, + "thread": 140633318610688, + "threadName": "Thread-21" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" + ], + "asctime": "2021-01-11 07:30:28,317", + "created": 1610346628.317233, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", + "module": "__init__", + "msecs": 317.2330856323242, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14250.77509880066, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" + ], + "asctime": "2021-01-11 07:30:28,317", + "created": 1610346628.317599, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", + "module": "__init__", + "msecs": 317.5990581512451, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14251.14107131958, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,317", + "created": 1610346628.317773, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 317.77310371398926, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14251.315116882324, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:28,317", + "created": 1610346628.317965, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 317.965030670166, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14251.507043838501, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,318", + "created": 1610346628.318158, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 318.1579113006592, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14251.699924468994, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,318", + "created": 1610346628.318305, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 318.30501556396484, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14251.8470287323, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,318", + "created": 1610346628.318498, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 318.497896194458, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14252.039909362793, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,318", + "created": 1610346628.318631, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 318.6309337615967, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14252.172946929932, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,318", + "created": 1610346628.318802, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 318.8021183013916, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14252.344131469727, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,318", + "created": 1610346628.318935, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 318.9349174499512, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14252.476930618286, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,319", + "created": 1610346628.319113, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 319.11301612854004, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14252.655029296875, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,319", + "created": 1610346628.319242, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 319.242000579834, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14252.784013748169, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "comm-server:", + "(5): 02 24 68 3a 3e" + ], + "asctime": "2021-01-11 07:30:28,319", + "created": 1610346628.319482, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (5): 02 24 68 3a 3e", + "module": "__init__", + "msecs": 319.48208808898926, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14253.024101257324, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "comm-client:", + "(5): 02 24 68 3a 3e" + ], + "asctime": "2021-01-11 07:30:28,319", + "created": 1610346628.319625, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (5): 02 24 68 3a 3e", + "module": "__init__", + "msecs": 319.6249008178711, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14253.166913986206, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,319", + "created": 1610346628.319741, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 319.74101066589355, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14253.283023834229, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:28,319", + "created": 1610346628.319854, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 319.8540210723877, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14253.396034240723, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68" + ], + "asctime": "2021-01-11 07:30:28,320", + "created": 1610346628.320085, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", + "module": "stp", + "msecs": 320.0850486755371, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14253.627061843872, + "thread": 140633310217984, + "threadName": "Thread-22" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: read data response, data_id: 0", "status: okay", "33" ], - "asctime": "2021-01-06 22:49:09,016", - "created": 1609969749.016987, + "asctime": "2021-01-11 07:30:28,320", + "created": 1610346628.320362, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "lineno": 445, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 16.987085342407227, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 320.3620910644531, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12181.802988052368, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 14253.904104232788, + "thread": 140633310217984, + "threadName": "Thread-22" }, { "args": [ - "SP client:" + "prot-client:" ], - "asctime": "2021-01-06 22:49:09,017", - "created": 1609969749.017176, + "asctime": "2021-01-11 07:30:28,320", + "created": 1610346628.320531, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 17.175912857055664, + "msecs": 320.53089141845703, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12181.991815567017, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 14254.072904586792, + "thread": 140633310217984, + "threadName": "Thread-22" } ], - "msecs": 117.76590347290039, + "msecs": 471.8339443206787, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12282.581806182861, - "thread": 140012350113600, + "relativeCreated": 14405.375957489014, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.10058999061584473 + "time_consumption": 0.15130305290222168 }, { "args": [ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,119", - "created": 1609969749.119193, + "asctime": "2021-01-11 07:30:28,473", + "created": 1610346628.473149, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19542,8 +40926,8 @@ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,118", - "created": 1609969749.118508, + "asctime": "2021-01-11 07:30:28,472", + "created": 1610346628.472483, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19553,14 +40937,14 @@ "lineno": 22, "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", "module": "test", - "msecs": 118.50810050964355, + "msecs": 472.48291969299316, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12283.324003219604, - "thread": 140012350113600, + "relativeCreated": 14406.024932861328, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -19569,8 +40953,8 @@ "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,118", - "created": 1609969749.118854, + "asctime": "2021-01-11 07:30:28,472", + "created": 1610346628.472903, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19580,35 +40964,35 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", "module": "test", - "msecs": 118.85404586791992, + "msecs": 472.9030132293701, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12283.66994857788, - "thread": 140012350113600, + "relativeCreated": 14406.445026397705, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 119.19307708740234, + "msecs": 473.14906120300293, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12284.008979797363, - "thread": 140012350113600, + "relativeCreated": 14406.691074371338, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0003390312194824219 + "time_consumption": 0.0002460479736328125 }, { "args": [ "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,120", - "created": 1609969749.120229, + "asctime": "2021-01-11 07:30:28,473", + "created": 1610346628.473902, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19625,8 +41009,8 @@ "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,119", - "created": 1609969749.119644, + "asctime": "2021-01-11 07:30:28,473", + "created": 1610346628.473487, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19636,14 +41020,14 @@ "lineno": 22, "message": "Result (Message received by client): {u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0} ()", "module": "test", - "msecs": 119.6439266204834, + "msecs": 473.48690032958984, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12284.459829330444, - "thread": 140012350113600, + "relativeCreated": 14407.028913497925, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -19652,8 +41036,8 @@ "{'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,119", - "created": 1609969749.119923, + "asctime": "2021-01-11 07:30:28,473", + "created": 1610346628.473688, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19663,39 +41047,39 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0} ()", "module": "test", - "msecs": 119.92311477661133, + "msecs": 473.68788719177246, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12284.739017486572, - "thread": 140012350113600, + "relativeCreated": 14407.229900360107, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 120.22900581359863, + "msecs": 473.90198707580566, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12285.04490852356, - "thread": 140012350113600, + "relativeCreated": 14407.44400024414, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0003058910369873047 + "time_consumption": 0.00021409988403320312 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.11223006248474121, - "time_finished": "2021-01-06 22:49:09,120", - "time_start": "2021-01-06 22:49:09,007" + "time_consumption": 0.5599620342254639, + "time_finished": "2021-01-11 07:30:28,473", + "time_start": "2021-01-11 07:30:27,913" }, "_XzMFcHYZEem_kd-7nxt1sg": { "args": null, - "asctime": "2021-01-06 22:48:56,876", - "created": 1609969736.876325, + "asctime": "2021-01-11 07:30:14,107", + "created": 1610346614.107691, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -19706,20 +41090,20 @@ "message": "_XzMFcHYZEem_kd-7nxt1sg", "module": "__init__", "moduleLogger": [], - "msecs": 876.3248920440674, + "msecs": 107.69104957580566, "msg": "_XzMFcHYZEem_kd-7nxt1sg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 41.14079475402832, + "relativeCreated": 41.233062744140625, "testcaseLogger": [ { "args": [ "{'status': None, 'service_id': None, 'data': None, 'data_id': None}" ], - "asctime": "2021-01-06 22:48:56,876", - "created": 1609969736.87652, + "asctime": "2021-01-11 07:30:14,107", + "created": 1610346614.107888, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -19730,14 +41114,14 @@ "message": "Creating empty message object: {'status': None, 'service_id': None, 'data': None, 'data_id': None}", "module": "test_message_object", "moduleLogger": [], - "msecs": 876.5199184417725, + "msecs": 107.88798332214355, "msg": "Creating empty message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 41.3358211517334, - "thread": 140012350113600, + "relativeCreated": 41.429996490478516, + "thread": 140634736203584, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -19745,8 +41129,8 @@ "args": [ "'status'" ], - "asctime": "2021-01-06 22:48:56,876", - "created": 1609969736.876769, + "asctime": "2021-01-11 07:30:14,108", + "created": 1610346614.108175, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19763,8 +41147,8 @@ "{'status': None, 'service_id': None, 'data': None, 'data_id': None}", "" ], - "asctime": "2021-01-06 22:48:56,876", - "created": 1609969736.876669, + "asctime": "2021-01-11 07:30:14,108", + "created": 1610346614.108069, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19774,14 +41158,14 @@ "lineno": 22, "message": "Result (status is part of the message object): {'status': None, 'service_id': None, 'data': None, 'data_id': None} ()", "module": "test", - "msecs": 876.6689300537109, + "msecs": 108.06894302368164, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 41.484832763671875, - "thread": 140012350113600, + "relativeCreated": 41.6109561920166, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -19789,8 +41173,8 @@ "status is part of the message object", "'status'" ], - "asctime": "2021-01-06 22:48:56,876", - "created": 1609969736.876723, + "asctime": "2021-01-11 07:30:14,108", + "created": 1610346614.10813, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19800,34 +41184,34 @@ "lineno": 30, "message": "Expectation (status is part of the message object): 'status' in result", "module": "test", - "msecs": 876.723051071167, + "msecs": 108.12997817993164, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 41.53895378112793, - "thread": 140012350113600, + "relativeCreated": 41.6719913482666, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 876.7690658569336, + "msecs": 108.17503929138184, "msg": "status is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 41.58496856689453, - "thread": 140012350113600, + "relativeCreated": 41.7170524597168, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 4.601478576660156e-05 + "time_consumption": 4.506111145019531e-05 }, { "args": [ "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}" ], - "asctime": "2021-01-06 22:48:56,876", - "created": 1609969736.876848, + "asctime": "2021-01-11 07:30:14,108", + "created": 1610346614.108255, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -19838,14 +41222,14 @@ "message": "Creating a maximum message object: {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", "module": "test_message_object", "moduleLogger": [], - "msecs": 876.8479824066162, + "msecs": 108.25490951538086, "msg": "Creating a maximum message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 41.66388511657715, - "thread": 140012350113600, + "relativeCreated": 41.79692268371582, + "thread": 140634736203584, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -19853,8 +41237,8 @@ "args": [ "'status'" ], - "asctime": "2021-01-06 22:48:56,877", - "created": 1609969736.877013, + "asctime": "2021-01-11 07:30:14,108", + "created": 1610346614.108409, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19871,8 +41255,8 @@ "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", "" ], - "asctime": "2021-01-06 22:48:56,876", - "created": 1609969736.87692, + "asctime": "2021-01-11 07:30:14,108", + "created": 1610346614.108326, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19882,14 +41266,14 @@ "lineno": 22, "message": "Result (status is part of the message object): {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'} ()", "module": "test", - "msecs": 876.9199848175049, + "msecs": 108.32595825195312, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 41.73588752746582, - "thread": 140012350113600, + "relativeCreated": 41.867971420288086, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -19897,8 +41281,8 @@ "status is part of the message object", "'status'" ], - "asctime": "2021-01-06 22:48:56,876", - "created": 1609969736.876974, + "asctime": "2021-01-11 07:30:14,108", + "created": 1610346614.108368, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19908,35 +41292,35 @@ "lineno": 30, "message": "Expectation (status is part of the message object): 'status' in result", "module": "test", - "msecs": 876.9741058349609, + "msecs": 108.367919921875, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 41.790008544921875, - "thread": 140012350113600, + "relativeCreated": 41.90993309020996, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 877.0129680633545, + "msecs": 108.40892791748047, "msg": "status is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 41.82887077331543, - "thread": 140012350113600, + "relativeCreated": 41.95094108581543, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 3.886222839355469e-05 + "time_consumption": 4.100799560546875e-05 }, { "args": [ "'S'", "" ], - "asctime": "2021-01-06 22:48:56,877", - "created": 1609969736.877169, + "asctime": "2021-01-11 07:30:14,108", + "created": 1610346614.108563, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19953,8 +41337,8 @@ "'S'", "" ], - "asctime": "2021-01-06 22:48:56,877", - "created": 1609969736.877088, + "asctime": "2021-01-11 07:30:14,108", + "created": 1610346614.10848, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19964,14 +41348,14 @@ "lineno": 22, "message": "Result (Content in message object for status): 'S' ()", "module": "test", - "msecs": 877.0880699157715, + "msecs": 108.47997665405273, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 41.90397262573242, - "thread": 140012350113600, + "relativeCreated": 42.021989822387695, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -19980,8 +41364,8 @@ "'S'", "" ], - "asctime": "2021-01-06 22:48:56,877", - "created": 1609969736.877129, + "asctime": "2021-01-11 07:30:14,108", + "created": 1610346614.10852, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19991,39 +41375,39 @@ "lineno": 26, "message": "Expectation (Content in message object for status): result = 'S' ()", "module": "test", - "msecs": 877.129077911377, + "msecs": 108.5200309753418, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 41.94498062133789, - "thread": 140012350113600, + "relativeCreated": 42.06204414367676, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 877.1688938140869, + "msecs": 108.56294631958008, "msg": "Content in message object for status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 41.98479652404785, - "thread": 140012350113600, + "relativeCreated": 42.10495948791504, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 3.981590270996094e-05 + "time_consumption": 4.291534423828125e-05 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0008440017700195312, - "time_finished": "2021-01-06 22:48:56,877", - "time_start": "2021-01-06 22:48:56,876" + "time_consumption": 0.0008718967437744141, + "time_finished": "2021-01-11 07:30:14,108", + "time_start": "2021-01-11 07:30:14,107" }, "_YfrfUE4LEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-06 22:49:09,121", - "created": 1609969749.121299, + "asctime": "2021-01-11 07:30:28,474", + "created": 1610346628.474557, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -20034,1450 +41418,3573 @@ "message": "_YfrfUE4LEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 121.29902839660645, + "msecs": 474.55692291259766, "msg": "_YfrfUE4LEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12286.114931106567, + "relativeCreated": 14408.098936080933, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:09,125", - "created": 1609969749.125898, + "asctime": "2021-01-11 07:30:28,486", + "created": 1610346628.486557, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:09,121", - "created": 1609969749.121645, + "asctime": "2021-01-11 07:30:28,475", + "created": 1610346628.475739, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 121.64497375488281, + "msecs": 475.7390022277832, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12286.460876464844, - "thread": 140012350113600, + "relativeCreated": 14409.281015396118, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:09,121", - "created": 1609969749.121767, + "asctime": "2021-01-11 07:30:28,476", + "created": 1610346628.476891, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 121.76704406738281, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 476.89104080200195, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12286.582946777344, - "thread": 140012350113600, + "relativeCreated": 14410.433053970337, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:09,121", - "created": 1609969749.121936, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 121.93608283996582, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12286.751985549927, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:09,122", - "created": 1609969749.122033, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 122.03311920166016, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12286.849021911621, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:09,122", - "created": 1609969749.122128, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 122.12800979614258, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12286.943912506104, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:09,122", - "created": 1609969749.122229, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 122.22909927368164, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12287.045001983643, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:09,122", - "created": 1609969749.122324, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 122.32398986816406, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12287.139892578125, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:09,122", - "created": 1609969749.122398, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 122.39789962768555, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12287.213802337646, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:09,122", - "created": 1609969749.122511, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 122.51091003417969, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12287.32681274414, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:09,122", - "created": 1609969749.122625, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 122.62511253356934, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12287.44101524353, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:09,122", - "created": 1609969749.12269, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 122.68996238708496, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12287.505865097046, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:09,122", - "created": 1609969749.122793, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 122.79295921325684, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12287.608861923218, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:09,122", - "created": 1609969749.122916, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 122.91598320007324, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12287.731885910034, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:09,123", - "created": 1609969749.123014, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 123.01397323608398, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12287.829875946045, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:09,123", - "created": 1609969749.123082, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 123.08192253112793, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12287.897825241089, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:09,123", - "created": 1609969749.123187, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 123.18706512451172, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12288.002967834473, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:09,123", - "created": 1609969749.123298, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 123.29792976379395, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12288.113832473755, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:09,123", - "created": 1609969749.123378, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 123.37803840637207, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12288.193941116333, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:09,123", - "created": 1609969749.123448, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 123.44789505004883, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12288.26379776001, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:09,123", - "created": 1609969749.123545, + "asctime": "2021-01-11 07:30:28,477", + "created": 1610346628.477196, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 123.54493141174316, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 477.19597816467285, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12288.360834121704, - "thread": 140012350113600, + "relativeCreated": 14410.737991333008, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,123", - "created": 1609969749.123797, + "asctime": "2021-01-11 07:30:28,477", + "created": 1610346628.47782, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 123.79693984985352, + "msecs": 477.81991958618164, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12288.612842559814, - "thread": 140012350113600, + "relativeCreated": 14411.361932754517, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:09,123", - "created": 1609969749.123913, + "asctime": "2021-01-11 07:30:28,478", + "created": 1610346628.478152, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 123.91304969787598, + "msecs": 478.1520366668701, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12288.728952407837, - "thread": 140012350113600, + "relativeCreated": 14411.694049835205, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:09,124", - "created": 1609969749.124055, + "asctime": "2021-01-11 07:30:28,478", + "created": 1610346628.478532, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 124.0549087524414, + "msecs": 478.532075881958, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12288.870811462402, - "thread": 140012350113600, + "relativeCreated": 14412.074089050293, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:09,124", - "created": 1609969749.124164, + "asctime": "2021-01-11 07:30:28,478", + "created": 1610346628.478803, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 124.16410446166992, + "msecs": 478.8029193878174, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12288.98000717163, - "thread": 140012350113600, + "relativeCreated": 14412.344932556152, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:09,124", - "created": 1609969749.124262, + "asctime": "2021-01-11 07:30:28,479", + "created": 1610346628.479037, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 124.26209449768066, + "msecs": 479.0370464324951, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12289.077997207642, - "thread": 140012350113600, + "relativeCreated": 14412.57905960083, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:09,124", - "created": 1609969749.12436, + "asctime": "2021-01-11 07:30:28,479", + "created": 1610346628.479253, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 124.3600845336914, + "msecs": 479.25305366516113, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12289.175987243652, - "thread": 140012350113600, + "relativeCreated": 14412.795066833496, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:09,124", - "created": 1609969749.124465, + "asctime": "2021-01-11 07:30:28,479", + "created": 1610346628.47952, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 124.4649887084961, + "msecs": 479.5200824737549, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12289.280891418457, - "thread": 140012350113600, + "relativeCreated": 14413.06209564209, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:09,124", - "created": 1609969749.124586, + "asctime": "2021-01-11 07:30:28,479", + "created": 1610346628.479851, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 124.58610534667969, + "msecs": 479.85100746154785, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12289.40200805664, - "thread": 140012350113600, + "relativeCreated": 14413.393020629883, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:09,124", - "created": 1609969749.124698, + "asctime": "2021-01-11 07:30:28,480", + "created": 1610346628.480086, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 124.69792366027832, + "msecs": 480.086088180542, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12289.51382637024, - "thread": 140012350113600, + "relativeCreated": 14413.628101348877, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:09,124", - "created": 1609969749.124808, + "asctime": "2021-01-11 07:30:28,480", + "created": 1610346628.48064, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 124.80807304382324, + "msecs": 480.6399345397949, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12289.623975753784, - "thread": 140012350113600, + "relativeCreated": 14414.18194770813, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,124", - "created": 1609969749.124906, + "asctime": "2021-01-11 07:30:28,480", + "created": 1610346628.480959, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 124.90606307983398, + "msecs": 480.9589385986328, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12289.721965789795, - "thread": 140012350113600, + "relativeCreated": 14414.500951766968, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:09,125", - "created": 1609969749.125027, + "asctime": "2021-01-11 07:30:28,481", + "created": 1610346628.481279, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 125.02694129943848, + "msecs": 481.2788963317871, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12289.8428440094, - "thread": 140012350113600, + "relativeCreated": 14414.820909500122, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:09,125", - "created": 1609969749.125139, + "asctime": "2021-01-11 07:30:28,481", + "created": 1610346628.481635, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 125.13899803161621, + "msecs": 481.63509368896484, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12289.954900741577, - "thread": 140012350113600, + "relativeCreated": 14415.1771068573, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:09,125", - "created": 1609969749.125232, + "asctime": "2021-01-11 07:30:28,481", + "created": 1610346628.481912, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 125.23198127746582, + "msecs": 481.91189765930176, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12290.047883987427, - "thread": 140012350113600, + "relativeCreated": 14415.453910827637, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:09,125", - "created": 1609969749.125334, + "asctime": "2021-01-11 07:30:28,482", + "created": 1610346628.482184, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 125.33402442932129, + "msecs": 482.18393325805664, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12290.149927139282, - "thread": 140012350113600, + "relativeCreated": 14415.725946426392, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:09,125", - "created": 1609969749.125445, + "asctime": "2021-01-11 07:30:28,482", + "created": 1610346628.482461, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 125.44488906860352, + "msecs": 482.46097564697266, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12290.260791778564, - "thread": 140012350113600, + "relativeCreated": 14416.002988815308, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:09,125", - "created": 1609969749.125561, + "asctime": "2021-01-11 07:30:28,482", + "created": 1610346628.48272, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 125.56099891662598, + "msecs": 482.71989822387695, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12290.376901626587, - "thread": 140012350113600, + "relativeCreated": 14416.261911392212, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:09,125", - "created": 1609969749.12566, + "asctime": "2021-01-11 07:30:28,482", + "created": 1610346628.482966, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 125.65994262695312, + "msecs": 482.96594619750977, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12290.475845336914, - "thread": 140012350113600, + "relativeCreated": 14416.507959365845, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:09,125", - "created": 1609969749.125748, + "asctime": "2021-01-11 07:30:28,483", + "created": 1610346628.483223, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 125.7479190826416, + "msecs": 483.22296142578125, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12290.563821792603, - "thread": 140012350113600, + "relativeCreated": 14416.764974594116, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,125", - "created": 1609969749.125833, + "asctime": "2021-01-11 07:30:28,483", + "created": 1610346628.483466, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 125.83303451538086, + "msecs": 483.46590995788574, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12290.648937225342, - "thread": 140012350113600, + "relativeCreated": 14417.00792312622, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:28,484", + "created": 1610346628.484204, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 484.2040538787842, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14417.74606704712, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:28,484", + "created": 1610346628.484455, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 484.4551086425781, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14417.997121810913, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:28,484", + "created": 1610346628.484808, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 484.80796813964844, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14418.349981307983, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:28,485", + "created": 1610346628.485065, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 485.0649833679199, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14418.606996536255, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:28,485", + "created": 1610346628.485292, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 485.2919578552246, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14418.83397102356, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:28,485", + "created": 1610346628.485491, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 485.4910373687744, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14419.03305053711, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:28,485", + "created": 1610346628.485582, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 485.5821132659912, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14419.124126434326, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:28,485", + "created": 1610346628.485671, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 485.6710433959961, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14419.213056564331, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:28,485", + "created": 1610346628.485758, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 485.75806617736816, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14419.300079345703, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:28,485", + "created": 1610346628.485852, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 485.8520030975342, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14419.39401626587, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:28,485", + "created": 1610346628.485913, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 485.9130382537842, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14419.45505142212, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:28,485", + "created": 1610346628.485982, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 485.98194122314453, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14419.52395439148, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:28,486", + "created": 1610346628.486047, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 486.04702949523926, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14419.589042663574, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:28,486", + "created": 1610346628.486109, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 486.10901832580566, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14419.65103149414, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:28,486", + "created": 1610346628.486196, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 486.19604110717773, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14419.738054275513, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:28,486", + "created": 1610346628.486263, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 486.2630367279053, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14419.80504989624, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:28,486", + "created": 1610346628.486325, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 486.3250255584717, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14419.867038726807, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:28,486", + "created": 1610346628.486381, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 486.38105392456055, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14419.923067092896, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:28,486", + "created": 1610346628.486443, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 486.44304275512695, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14419.985055923462, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:28,486", + "created": 1610346628.486499, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 486.4990711212158, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14420.04108428955, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 125.89788436889648, + "msecs": 486.5570068359375, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12290.713787078857, - "thread": 140012350113600, + "relativeCreated": 14420.099020004272, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 6.4849853515625e-05 + "time_consumption": 5.793571472167969e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:09,126", - "created": 1609969749.126203, + "asctime": "2021-01-11 07:30:28,830", + "created": 1610346628.830494, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:28,486", + "created": 1610346628.486686, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 486.68599128723145, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14420.228004455566, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:28,486", + "created": 1610346628.48675, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 486.74988746643066, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14420.291900634766, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:28,486", + "created": 1610346628.48681, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 486.80996894836426, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14420.3519821167, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:28,486", + "created": 1610346628.48691, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 486.9101047515869, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14420.452117919922, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:28,487", + "created": 1610346628.487098, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 487.09797859191895, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14420.639991760254, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:28,487", + "created": 1610346628.487167, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 487.1668815612793, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14420.708894729614, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:28,487", + "created": 1610346628.487229, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 487.2291088104248, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14420.77112197876, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:28,493", + "created": 1610346628.493994, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 493.99399757385254, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14427.536010742188, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:28,494", + "created": 1610346628.494158, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 494.1580295562744, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14427.70004272461, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,494", + "created": 1610346628.494224, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 494.22407150268555, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14427.76608467102, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:28,494", + "created": 1610346628.494278, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 494.2779541015625, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14427.819967269897, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,494", + "created": 1610346628.494347, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 494.34709548950195, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14427.889108657837, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,494", + "created": 1610346628.494398, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 494.3981170654297, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14427.940130233765, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,494", + "created": 1610346628.494472, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 494.4720268249512, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14428.014039993286, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,494", + "created": 1610346628.49452, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 494.5199489593506, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14428.061962127686, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,494", + "created": 1610346628.494579, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 494.5790767669678, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14428.121089935303, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,494", + "created": 1610346628.49463, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 494.6300983428955, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14428.17211151123, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,494", + "created": 1610346628.494696, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 494.69590187072754, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14428.237915039062, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,494", + "created": 1610346628.494744, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 494.74406242370605, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14428.286075592041, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "comm-client:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:28,494", + "created": 1610346628.49482, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 494.82011795043945, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14428.362131118774, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "comm-server:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:28,494", + "created": 1610346628.494881, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 494.88091468811035, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14428.422927856445, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,494", + "created": 1610346628.494935, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 494.9350357055664, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14428.477048873901, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:28,494", + "created": 1610346628.494982, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 494.9820041656494, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14428.524017333984, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" + ], + "asctime": "2021-01-11 07:30:28,495", + "created": 1610346628.495087, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", + "module": "stp", + "msecs": 495.0869083404541, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14428.628921508789, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:28,495", + "created": 1610346628.495205, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 495.2049255371094, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14428.746938705444, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:28,495", + "created": 1610346628.495275, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 495.27502059936523, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14428.8170337677, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:28,495", + "created": 1610346628.495348, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 495.3479766845703, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14428.889989852905, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:28,498", + "created": 1610346628.498411, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 498.4109401702881, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14431.952953338623, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:28,498", + "created": 1610346628.498536, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 498.5361099243164, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14432.078123092651, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,498", + "created": 1610346628.498592, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 498.5918998718262, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14432.133913040161, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:28,498", + "created": 1610346628.49868, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 498.68011474609375, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14432.222127914429, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,498", + "created": 1610346628.498744, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 498.74401092529297, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14432.286024093628, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,498", + "created": 1610346628.498794, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 498.7940788269043, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14432.33609199524, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,498", + "created": 1610346628.498883, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 498.8830089569092, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14432.425022125244, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,498", + "created": 1610346628.498943, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 498.9430904388428, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14432.485103607178, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,499", + "created": 1610346628.499023, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 499.0229606628418, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14432.564973831177, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,499", + "created": 1610346628.499083, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 499.0830421447754, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14432.62505531311, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,499", + "created": 1610346628.499168, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 499.16791915893555, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14432.70993232727, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,499", + "created": 1610346628.499227, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 499.22704696655273, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14432.769060134888, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:28,499", + "created": 1610346628.499366, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 499.36604499816895, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14432.908058166504, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:28,499", + "created": 1610346628.499435, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 499.4349479675293, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14432.976961135864, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,499", + "created": 1610346628.499494, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 499.4940757751465, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14433.036088943481, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:28,499", + "created": 1610346628.499583, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 499.58300590515137, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14433.125019073486, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:28,499", + "created": 1610346628.499881, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 499.8810291290283, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14433.423042297363, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:28,500", + "created": 1610346628.500133, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 500.1330375671387, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14433.675050735474, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:28,500", + "created": 1610346628.500298, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 500.29802322387695, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14433.840036392212, + "thread": 140633293432576, + "threadName": "Thread-24" + } + ], + "msecs": 830.4939270019531, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14764.035940170288, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.33019590377807617 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:28,831", + "created": 1610346628.831369, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "all_sid_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 144, + "lineno": 145, "message": "Registering a correct working Callback", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "'__callback__'", "None", "0" ], - "asctime": "2021-01-06 22:49:09,126", - "created": 1609969749.126103, + "asctime": "2021-01-11 07:30:28,831", + "created": 1610346628.831138, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__callback__' for SID=None and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__callback__' for SID=None and DID=0", "module": "__init__", - "msecs": 126.10292434692383, + "msecs": 831.1378955841064, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12290.918827056885, - "thread": 140012350113600, + "relativeCreated": 14764.679908752441, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 126.20306015014648, + "msecs": 831.3689231872559, "msg": "Registering a correct working Callback", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12291.018962860107, - "thread": 140012350113600, + "relativeCreated": 14764.91093635559, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00010013580322265625 + "time_consumption": 0.00023102760314941406 }, { "args": [], - "asctime": "2021-01-06 22:49:09,228", - "created": 1609969749.228367, + "asctime": "2021-01-11 07:30:29,033", + "created": 1610346629.033422, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "all_sid_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 147, + "lineno": 148, "message": "Transfering data", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:09,126", - "created": 1609969749.126394, + "asctime": "2021-01-11 07:30:28,831", + "created": 1610346628.831809, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 445, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 126.39403343200684, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 831.8090438842773, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12291.209936141968, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,126", - "created": 1609969749.126684, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "test_helpers", - "msecs": 126.68395042419434, - "msg": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12291.499853134155, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,126", - "created": 1609969749.126911, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "test_helpers", - "msecs": 126.91092491149902, - "msg": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12291.72682762146, - "thread": 140012350113600, + "relativeCreated": 14765.351057052612, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" + ], + "asctime": "2021-01-11 07:30:28,860", + "created": 1610346628.860614, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", + "module": "__init__", + "msecs": 860.6140613555908, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14794.156074523926, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" + ], + "asctime": "2021-01-11 07:30:28,861", + "created": 1610346628.861148, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", + "module": "__init__", + "msecs": 861.1481189727783, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14794.690132141113, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,861", + "created": 1610346628.86137, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 861.3700866699219, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14794.912099838257, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:28,861", + "created": 1610346628.861697, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 861.6969585418701, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14795.238971710205, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,862", + "created": 1610346628.862119, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 862.1189594268799, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14795.660972595215, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,862", + "created": 1610346628.862335, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 862.3349666595459, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14795.87697982788, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,862", + "created": 1610346628.86266, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 862.6599311828613, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14796.201944351196, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,862", + "created": 1610346628.862859, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 862.8590106964111, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14796.401023864746, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,863", + "created": 1610346628.863121, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 863.1210327148438, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14796.663045883179, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,863", + "created": 1610346628.863314, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 863.3139133453369, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14796.855926513672, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,863", + "created": 1610346628.863597, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 863.5969161987305, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14797.138929367065, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,863", + "created": 1610346628.863937, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 863.9369010925293, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14797.478914260864, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "comm-client:", + "(5): 17 fc 16 3a 3e" + ], + "asctime": "2021-01-11 07:30:28,864", + "created": 1610346628.864244, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", + "module": "__init__", + "msecs": 864.2439842224121, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14797.785997390747, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "comm-server:", + "(5): 17 fc 16 3a 3e" + ], + "asctime": "2021-01-11 07:30:28,864", + "created": 1610346628.864488, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", + "module": "__init__", + "msecs": 864.487886428833, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14798.029899597168, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,864", + "created": 1610346628.864705, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 864.7050857543945, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14798.24709892273, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:28,864", + "created": 1610346628.86492, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 864.919900894165, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14798.4619140625, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" + ], + "asctime": "2021-01-11 07:30:28,865", + "created": 1610346628.86539, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", + "module": "stp", + "msecs": 865.3900623321533, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14798.932075500488, + "thread": 140633301825280, + "threadName": "Thread-23" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:09,127", - "created": 1609969749.127112, + "asctime": "2021-01-11 07:30:28,865", + "created": 1610346628.865927, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 445, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 127.11191177368164, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 865.92698097229, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12291.927814483643, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 14799.468994140625, + "thread": 140633301825280, + "threadName": "Thread-23" }, { "args": [ - "SP server:", + "prot-server:", "__callback__" ], - "asctime": "2021-01-06 22:49:09,127", - "created": 1609969749.127251, + "asctime": "2021-01-11 07:30:28,866", + "created": 1610346628.866223, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __callback__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 127.25090980529785, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 866.2230968475342, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12292.066812515259, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 14799.76511001587, + "thread": 140633301825280, + "threadName": "Thread-23" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: read data response, data_id: 0", "status: okay", "33" ], - "asctime": "2021-01-06 22:49:09,127", - "created": 1609969749.127383, + "asctime": "2021-01-11 07:30:28,866", + "created": 1610346628.866563, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "lineno": 445, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 127.38299369812012, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 866.563081741333, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12292.198896408081, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,127", - "created": 1609969749.127581, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "module": "test_helpers", - "msecs": 127.58088111877441, - "msg": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12292.396783828735, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,127", - "created": 1609969749.127777, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "module": "test_helpers", - "msecs": 127.777099609375, - "msg": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12292.593002319336, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 14800.105094909668, + "thread": 140633301825280, + "threadName": "Thread-23" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" + ], + "asctime": "2021-01-11 07:30:28,867", + "created": 1610346628.867752, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", + "module": "__init__", + "msecs": 867.7520751953125, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14801.294088363647, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" + ], + "asctime": "2021-01-11 07:30:28,868", + "created": 1610346628.86838, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", + "module": "__init__", + "msecs": 868.380069732666, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14801.922082901001, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,868", + "created": 1610346628.868922, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 868.9219951629639, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14802.464008331299, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:28,869", + "created": 1610346628.869152, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 869.1520690917969, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14802.694082260132, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,869", + "created": 1610346628.86938, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 869.379997253418, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14802.922010421753, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,869", + "created": 1610346628.869617, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 869.6169853210449, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14803.15899848938, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,870", + "created": 1610346628.870087, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 870.0869083404541, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14803.628921508789, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,870", + "created": 1610346628.870344, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 870.3439235687256, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14803.88593673706, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,870", + "created": 1610346628.870659, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 870.6591129302979, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14804.201126098633, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,870", + "created": 1610346628.870884, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 870.8839416503906, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14804.425954818726, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,871", + "created": 1610346628.871258, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 871.258020401001, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14804.800033569336, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:28,871", + "created": 1610346628.871584, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 871.5839385986328, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14805.125951766968, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "comm-server:", + "(5): 02 24 68 3a 3e" + ], + "asctime": "2021-01-11 07:30:28,872", + "created": 1610346628.872103, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (5): 02 24 68 3a 3e", + "module": "__init__", + "msecs": 872.1029758453369, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14805.644989013672, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "comm-client:", + "(5): 02 24 68 3a 3e" + ], + "asctime": "2021-01-11 07:30:28,872", + "created": 1610346628.872266, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (5): 02 24 68 3a 3e", + "module": "__init__", + "msecs": 872.2660541534424, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14805.808067321777, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:28,872", + "created": 1610346628.872415, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 872.4150657653809, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14805.957078933716, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:28,872", + "created": 1610346628.872601, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 872.6010322570801, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14806.143045425415, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68" + ], + "asctime": "2021-01-11 07:30:28,872", + "created": 1610346628.872779, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", + "module": "stp", + "msecs": 872.7788925170898, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14806.320905685425, + "thread": 140633293432576, + "threadName": "Thread-24" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: read data response, data_id: 0", "status: okay", "33" ], - "asctime": "2021-01-06 22:49:09,127", - "created": 1609969749.127937, + "asctime": "2021-01-11 07:30:28,873", + "created": 1610346628.873236, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "lineno": 445, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 127.93707847595215, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 873.2359409332275, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12292.752981185913, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 14806.777954101562, + "thread": 140633293432576, + "threadName": "Thread-24" }, { "args": [ - "SP client:" + "prot-client:" ], - "asctime": "2021-01-06 22:49:09,128", - "created": 1609969749.128079, + "asctime": "2021-01-11 07:30:28,873", + "created": 1610346628.873484, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 128.07893753051758, + "msecs": 873.4838962554932, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12292.894840240479, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 14807.025909423828, + "thread": 140633293432576, + "threadName": "Thread-24" } ], - "msecs": 228.36709022521973, + "msecs": 33.421993255615234, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12393.18299293518, - "thread": 140012350113600, + "relativeCreated": 14966.96400642395, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.10028815269470215 + "time_consumption": 0.15993809700012207 }, { "args": [ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,228", - "created": 1609969749.228986, + "asctime": "2021-01-11 07:30:29,035", + "created": 1610346629.035048, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21494,8 +45001,8 @@ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,228", - "created": 1609969749.228709, + "asctime": "2021-01-11 07:30:29,034", + "created": 1610346629.034565, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21505,14 +45012,14 @@ "lineno": 22, "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", "module": "test", - "msecs": 228.70898246765137, + "msecs": 34.564971923828125, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12393.524885177612, - "thread": 140012350113600, + "relativeCreated": 14968.106985092163, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -21521,8 +45028,8 @@ "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,228", - "created": 1609969749.228858, + "asctime": "2021-01-11 07:30:29,034", + "created": 1610346629.034809, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21532,35 +45039,35 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", "module": "test", - "msecs": 228.85799407958984, + "msecs": 34.809112548828125, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12393.67389678955, - "thread": 140012350113600, + "relativeCreated": 14968.351125717163, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 228.98602485656738, + "msecs": 35.04800796508789, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12393.801927566528, - "thread": 140012350113600, + "relativeCreated": 14968.590021133423, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00012803077697753906 + "time_consumption": 0.00023889541625976562 }, { "args": [ "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,229", - "created": 1609969749.229379, + "asctime": "2021-01-11 07:30:29,036", + "created": 1610346629.036095, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21577,8 +45084,8 @@ "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,229", - "created": 1609969749.22917, + "asctime": "2021-01-11 07:30:29,035", + "created": 1610346629.035522, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21588,14 +45095,14 @@ "lineno": 22, "message": "Result (Message received by client): {u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0} ()", "module": "test", - "msecs": 229.1700839996338, + "msecs": 35.5219841003418, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12393.985986709595, - "thread": 140012350113600, + "relativeCreated": 14969.063997268677, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -21604,8 +45111,8 @@ "{'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,229", - "created": 1609969749.229279, + "asctime": "2021-01-11 07:30:29,035", + "created": 1610346629.035837, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21615,39 +45122,39 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0} ()", "module": "test", - "msecs": 229.2790412902832, + "msecs": 35.83693504333496, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12394.094944000244, - "thread": 140012350113600, + "relativeCreated": 14969.37894821167, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 229.37893867492676, + "msecs": 36.09490394592285, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12394.194841384888, - "thread": 140012350113600, + "relativeCreated": 14969.636917114258, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 9.989738464355469e-05 + "time_consumption": 0.0002579689025878906 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.10807991027832031, - "time_finished": "2021-01-06 22:49:09,229", - "time_start": "2021-01-06 22:49:09,121" + "time_consumption": 0.5615379810333252, + "time_finished": "2021-01-11 07:30:29,036", + "time_start": "2021-01-11 07:30:28,474" }, "_YhmzIE4lEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-06 22:49:09,912", - "created": 1609969749.912346, + "asctime": "2021-01-11 07:30:32,749", + "created": 1610346632.749445, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -21658,1268 +45165,2195 @@ "message": "_YhmzIE4lEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 912.3458862304688, + "msecs": 749.4449615478516, "msg": "_YhmzIE4lEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13077.16178894043, + "relativeCreated": 18682.986974716187, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:09,915", - "created": 1609969749.915058, + "asctime": "2021-01-11 07:30:32,757", + "created": 1610346632.757526, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:09,912", - "created": 1609969749.912677, + "asctime": "2021-01-11 07:30:32,750", + "created": 1610346632.750343, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 912.6770496368408, + "msecs": 750.3430843353271, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13077.492952346802, - "thread": 140012350113600, + "relativeCreated": 18683.885097503662, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:09,912", - "created": 1609969749.912848, + "asctime": "2021-01-11 07:30:32,751", + "created": 1610346632.751022, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 912.8479957580566, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 751.0221004486084, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13077.663898468018, - "thread": 140012350113600, + "relativeCreated": 18684.564113616943, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:09,912", - "created": 1609969749.912978, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 912.977933883667, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13077.793836593628, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:09,913", - "created": 1609969749.913039, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 913.038969039917, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13077.854871749878, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:09,913", - "created": 1609969749.913109, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 913.1090641021729, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13077.924966812134, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:09,913", - "created": 1609969749.913151, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 913.1510257720947, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13077.966928482056, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:09,913", - "created": 1609969749.913203, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 913.2030010223389, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13078.0189037323, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:09,913", - "created": 1609969749.913253, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 913.2530689239502, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13078.068971633911, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:09,913", - "created": 1609969749.913299, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 913.2990837097168, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13078.114986419678, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:09,913", - "created": 1609969749.913344, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 913.3439064025879, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13078.159809112549, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:09,913", - "created": 1609969749.913385, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 913.3849143981934, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13078.200817108154, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:09,913", - "created": 1609969749.913434, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 913.4340286254883, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13078.24993133545, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:09,913", - "created": 1609969749.913489, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 913.4891033172607, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13078.305006027222, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:09,913", - "created": 1609969749.913531, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 913.5310649871826, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13078.346967697144, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:09,913", - "created": 1609969749.913575, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 913.5749340057373, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13078.390836715698, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:09,913", - "created": 1609969749.913623, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 913.6230945587158, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13078.438997268677, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:09,913", - "created": 1609969749.913669, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 913.6691093444824, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13078.485012054443, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:09,913", - "created": 1609969749.913711, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 913.7110710144043, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13078.526973724365, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:09,913", - "created": 1609969749.913753, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 913.7530326843262, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13078.568935394287, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:09,913", - "created": 1609969749.913817, + "asctime": "2021-01-11 07:30:32,751", + "created": 1610346632.751223, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 913.8169288635254, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 751.223087310791, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13078.632831573486, - "thread": 140012350113600, + "relativeCreated": 18684.765100479126, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,913", - "created": 1609969749.913932, + "asctime": "2021-01-11 07:30:32,751", + "created": 1610346632.751691, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 913.9320850372314, + "msecs": 751.6911029815674, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13078.747987747192, - "thread": 140012350113600, + "relativeCreated": 18685.233116149902, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:09,913", - "created": 1609969749.91398, + "asctime": "2021-01-11 07:30:32,751", + "created": 1610346632.751839, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 913.9800071716309, + "msecs": 751.8389225006104, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13078.795909881592, - "thread": 140012350113600, + "relativeCreated": 18685.380935668945, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:09,914", - "created": 1609969749.914038, + "asctime": "2021-01-11 07:30:32,752", + "created": 1610346632.752061, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 914.0379428863525, + "msecs": 752.0608901977539, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13078.853845596313, - "thread": 140012350113600, + "relativeCreated": 18685.60290336609, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:09,914", - "created": 1609969749.914084, + "asctime": "2021-01-11 07:30:32,752", + "created": 1610346632.752228, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 914.0839576721191, + "msecs": 752.2280216217041, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13078.89986038208, - "thread": 140012350113600, + "relativeCreated": 18685.77003479004, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:09,914", - "created": 1609969749.914129, + "asctime": "2021-01-11 07:30:32,752", + "created": 1610346632.752381, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 914.1290187835693, + "msecs": 752.3810863494873, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13078.94492149353, - "thread": 140012350113600, + "relativeCreated": 18685.923099517822, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:09,914", - "created": 1609969749.91417, + "asctime": "2021-01-11 07:30:32,752", + "created": 1610346632.75252, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 914.1700267791748, + "msecs": 752.5200843811035, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13078.985929489136, - "thread": 140012350113600, + "relativeCreated": 18686.06209754944, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:09,914", - "created": 1609969749.914217, + "asctime": "2021-01-11 07:30:32,752", + "created": 1610346632.752684, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 914.2169952392578, + "msecs": 752.6841163635254, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13079.032897949219, - "thread": 140012350113600, + "relativeCreated": 18686.22612953186, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:09,914", - "created": 1609969749.914265, + "asctime": "2021-01-11 07:30:32,752", + "created": 1610346632.752833, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 914.2649173736572, + "msecs": 752.8328895568848, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13079.080820083618, - "thread": 140012350113600, + "relativeCreated": 18686.37490272522, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:09,914", - "created": 1609969749.914311, + "asctime": "2021-01-11 07:30:32,752", + "created": 1610346632.752998, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 914.3109321594238, + "msecs": 752.9981136322021, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13079.126834869385, - "thread": 140012350113600, + "relativeCreated": 18686.540126800537, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:09,914", - "created": 1609969749.914355, + "asctime": "2021-01-11 07:30:32,753", + "created": 1610346632.753142, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 914.3550395965576, + "msecs": 753.1421184539795, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13079.170942306519, - "thread": 140012350113600, + "relativeCreated": 18686.684131622314, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,914", - "created": 1609969749.914397, + "asctime": "2021-01-11 07:30:32,753", + "created": 1610346632.753517, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 914.3970012664795, + "msecs": 753.5169124603271, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13079.21290397644, - "thread": 140012350113600, + "relativeCreated": 18687.058925628662, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:09,914", - "created": 1609969749.914445, + "asctime": "2021-01-11 07:30:32,753", + "created": 1610346632.753731, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 914.4449234008789, + "msecs": 753.7310123443604, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13079.26082611084, - "thread": 140012350113600, + "relativeCreated": 18687.273025512695, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:09,914", - "created": 1609969749.914496, + "asctime": "2021-01-11 07:30:32,753", + "created": 1610346632.753918, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 914.4959449768066, + "msecs": 753.917932510376, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13079.311847686768, - "thread": 140012350113600, + "relativeCreated": 18687.45994567871, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:09,914", - "created": 1609969749.914538, + "asctime": "2021-01-11 07:30:32,754", + "created": 1610346632.754086, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 914.5379066467285, + "msecs": 754.0860176086426, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13079.35380935669, - "thread": 140012350113600, + "relativeCreated": 18687.628030776978, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:09,914", - "created": 1609969749.914582, + "asctime": "2021-01-11 07:30:32,754", + "created": 1610346632.754243, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 914.5820140838623, + "msecs": 754.2428970336914, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13079.397916793823, - "thread": 140012350113600, + "relativeCreated": 18687.784910202026, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:09,914", - "created": 1609969749.914626, + "asctime": "2021-01-11 07:30:32,754", + "created": 1610346632.754409, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 914.625883102417, + "msecs": 754.4090747833252, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13079.441785812378, - "thread": 140012350113600, + "relativeCreated": 18687.95108795166, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:09,914", - "created": 1609969749.914854, + "asctime": "2021-01-11 07:30:32,754", + "created": 1610346632.754571, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 914.8540496826172, + "msecs": 754.5709609985352, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13079.669952392578, - "thread": 140012350113600, + "relativeCreated": 18688.11297416687, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:09,914", - "created": 1609969749.914907, + "asctime": "2021-01-11 07:30:32,754", + "created": 1610346632.754712, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 914.9069786071777, + "msecs": 754.7121047973633, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13079.722881317139, - "thread": 140012350113600, + "relativeCreated": 18688.2541179657, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:09,914", - "created": 1609969749.914953, + "asctime": "2021-01-11 07:30:32,755", + "created": 1610346632.755059, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 914.9529933929443, + "msecs": 755.059003829956, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13079.768896102905, - "thread": 140012350113600, + "relativeCreated": 18688.60101699829, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,914", - "created": 1609969749.914997, + "asctime": "2021-01-11 07:30:32,755", + "created": 1610346632.755197, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 914.9971008300781, + "msecs": 755.1970481872559, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13079.813003540039, - "thread": 140012350113600, + "relativeCreated": 18688.73906135559, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:32,755", + "created": 1610346632.755524, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 755.5239200592041, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18689.06593322754, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:32,755", + "created": 1610346632.755611, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 755.6109428405762, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18689.15295600891, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:32,755", + "created": 1610346632.755711, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 755.7110786437988, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18689.253091812134, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:32,755", + "created": 1610346632.75579, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 755.7899951934814, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18689.332008361816, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:32,755", + "created": 1610346632.755859, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 755.8588981628418, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18689.400911331177, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:32,755", + "created": 1610346632.75594, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 755.9399604797363, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18689.48197364807, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:32,756", + "created": 1610346632.756042, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 756.0420036315918, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18689.584016799927, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:32,756", + "created": 1610346632.756138, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 756.1380863189697, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18689.680099487305, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:32,756", + "created": 1610346632.756233, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 756.2329769134521, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18689.774990081787, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:32,756", + "created": 1610346632.756326, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 756.3259601593018, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18689.867973327637, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:32,756", + "created": 1610346632.756395, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 756.3951015472412, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18689.937114715576, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:32,756", + "created": 1610346632.756582, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 756.5820217132568, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18690.12403488159, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:32,756", + "created": 1610346632.756699, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 756.6990852355957, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18690.24109840393, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:32,756", + "created": 1610346632.756808, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 756.8080425262451, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18690.35005569458, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:32,756", + "created": 1610346632.75692, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 756.9200992584229, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18690.462112426758, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:32,757", + "created": 1610346632.757048, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 757.0478916168213, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18690.589904785156, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:32,757", + "created": 1610346632.757138, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 757.1380138397217, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18690.680027008057, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:32,757", + "created": 1610346632.757225, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 757.2250366210938, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18690.76704978943, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:32,757", + "created": 1610346632.757314, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 757.3139667510986, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18690.855979919434, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:32,757", + "created": 1610346632.757415, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 757.4150562286377, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18690.957069396973, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 915.057897567749, + "msecs": 757.5259208679199, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13079.87380027771, - "thread": 140012350113600, + "relativeCreated": 18691.067934036255, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 6.079673767089844e-05 + "time_consumption": 0.00011086463928222656 }, { "args": [], - "asctime": "2021-01-06 22:49:10,217", - "created": 1609969750.217157, + "asctime": "2021-01-11 07:30:33,102", + "created": 1610346633.102372, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:32,757", + "created": 1610346632.757727, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 757.7269077301025, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18691.268920898438, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:32,757", + "created": 1610346632.757908, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 757.9081058502197, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18691.450119018555, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:32,758", + "created": 1610346632.758037, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 758.0370903015137, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18691.57910346985, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:32,758", + "created": 1610346632.758204, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 758.2039833068848, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18691.74599647522, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:32,758", + "created": 1610346632.758484, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 758.48388671875, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18692.025899887085, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:32,758", + "created": 1610346632.758635, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 758.6350440979004, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18692.177057266235, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:32,759", + "created": 1610346632.7591, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 759.0999603271484, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18692.641973495483, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e" + ], + "asctime": "2021-01-11 07:30:32,759", + "created": 1610346632.759645, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e", + "module": "__init__", + "msecs": 759.6449851989746, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18693.18699836731, + "thread": 140632379086592, + "threadName": "Thread-35" + }, + { + "args": [ + "comm-server:", + "(21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e" + ], + "asctime": "2021-01-11 07:30:32,759", + "created": 1610346632.759788, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e", + "module": "__init__", + "msecs": 759.7880363464355, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18693.33004951477, + "thread": 140632379086592, + "threadName": "Thread-35" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,759", + "created": 1610346632.759909, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 759.90891456604, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18693.450927734375, + "thread": 140632379086592, + "threadName": "Thread-35" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:32,760", + "created": 1610346632.760006, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 760.0059509277344, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18693.54796409607, + "thread": 140632379086592, + "threadName": "Thread-35" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,760", + "created": 1610346632.760157, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 760.1571083068848, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18693.69912147522, + "thread": 140632379086592, + "threadName": "Thread-35" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:32,760", + "created": 1610346632.760254, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 760.25390625, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18693.795919418335, + "thread": 140632379086592, + "threadName": "Thread-35" + }, + { + "args": [ + "STP:", + "(17): 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13" + ], + "asctime": "2021-01-11 07:30:32,760", + "created": 1610346632.760375, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (17): 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13", + "module": "stp", + "msecs": 760.3750228881836, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18693.91703605652, + "thread": 140632379086592, + "threadName": "Thread-35" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:32,760", + "created": 1610346632.760587, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 760.5869770050049, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18694.12899017334, + "thread": 140632379086592, + "threadName": "Thread-35" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:32,760", + "created": 1610346632.760734, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 760.7340812683105, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18694.276094436646, + "thread": 140632379086592, + "threadName": "Thread-35" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:32,760", + "created": 1610346632.760887, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 760.8869075775146, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18694.42892074585, + "thread": 140632379086592, + "threadName": "Thread-35" + }, + { + "args": [ + "comm-server:", + "(21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e" + ], + "asctime": "2021-01-11 07:30:32,762", + "created": 1610346632.7627, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e", + "module": "__init__", + "msecs": 762.700080871582, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18696.242094039917, + "thread": 140632370693888, + "threadName": "Thread-36" + }, + { + "args": [ + "comm-client:", + "(21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e" + ], + "asctime": "2021-01-11 07:30:32,762", + "created": 1610346632.762831, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e", + "module": "__init__", + "msecs": 762.8309726715088, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18696.372985839844, + "thread": 140632370693888, + "threadName": "Thread-36" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,762", + "created": 1610346632.76291, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 762.9098892211914, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18696.451902389526, + "thread": 140632370693888, + "threadName": "Thread-36" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:32,762", + "created": 1610346632.762982, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 762.9818916320801, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18696.523904800415, + "thread": 140632370693888, + "threadName": "Thread-36" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,763", + "created": 1610346632.76308, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 763.0798816680908, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18696.621894836426, + "thread": 140632370693888, + "threadName": "Thread-36" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:32,763", + "created": 1610346632.763146, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 763.145923614502, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18696.687936782837, + "thread": 140632370693888, + "threadName": "Thread-36" + }, + { + "args": [ + "STP:", + "(17): 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12" + ], + "asctime": "2021-01-11 07:30:32,763", + "created": 1610346632.763241, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (17): 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12", + "module": "stp", + "msecs": 763.2410526275635, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18696.7830657959, + "thread": 140632370693888, + "threadName": "Thread-36" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:32,763", + "created": 1610346632.763431, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 763.4310722351074, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18696.973085403442, + "thread": 140632370693888, + "threadName": "Thread-36" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:32,763", + "created": 1610346632.763542, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 763.5419368743896, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18697.083950042725, + "thread": 140632370693888, + "threadName": "Thread-36" + } + ], + "msecs": 102.3719310760498, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 19035.913944244385, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.33882999420166016 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:33,304", + "created": 1610346633.304341, "exc_info": null, "exc_text": null, "filename": "test_communication.py", - "funcName": "send_message_with_invalid_checksum", + "funcName": "send_message_object", "levelname": "DEBUG", "levelno": 10, - "lineno": 70, + "lineno": 53, "message": "Transfering a message client -> server", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:09,915", - "created": 1609969749.915188, + "asctime": "2021-01-11 07:30:33,103", + "created": 1610346633.103038, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 445, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 915.1880741119385, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 103.03807258605957, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13080.0039768219, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,915", - "created": 1609969749.915314, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (41): 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d", - "module": "test_helpers", - "msecs": 915.3139591217041, - "msg": "Send data: (41): 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13080.129861831665, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,915", - "created": 1609969749.915389, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (41): 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7e", - "module": "test_helpers", - "msecs": 915.3890609741211, - "msg": "Receive data (41): 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7e", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13080.204963684082, - "thread": 140012350113600, + "relativeCreated": 19036.580085754395, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:" + "comm-client:", + "(45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e" ], - "asctime": "2021-01-06 22:49:09,915", - "created": 1609969749.915487, + "asctime": "2021-01-11 07:30:33,127", + "created": 1610346633.127656, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 432, - "message": "SP server: RX <- Received message has a wrong checksum. Message will be ignored.", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e", "module": "__init__", - "msecs": 915.4870510101318, - "msg": "%s RX <- Received message has a wrong checksum. Message will be ignored.", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 127.6559829711914, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13080.302953720093, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 19061.197996139526, + "thread": 140632379086592, + "threadName": "Thread-35" }, { "args": [ - "SP server:", - "0.25", - "17", - "34" + "comm-server:", + "(45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e" ], - "asctime": "2021-01-06 22:49:10,216", - "created": 1609969750.216551, + "asctime": "2021-01-11 07:30:33,128", + "created": 1610346633.128428, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 651, - "message": "SP server: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 34) not in buffer.", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e", "module": "__init__", - "msecs": 216.5510654449463, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", + "msecs": 128.42798233032227, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 19061.969995498657, + "thread": 140632379086592, + "threadName": "Thread-35" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:33,128", + "created": 1610346633.128724, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 128.7240982055664, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 19062.2661113739, + "thread": 140632379086592, + "threadName": "Thread-35" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:33,129", + "created": 1610346633.129009, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 129.00900840759277, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 19062.551021575928, + "thread": 140632379086592, + "threadName": "Thread-35" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:33,129", + "created": 1610346633.129537, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 129.53710556030273, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 19063.079118728638, + "thread": 140632379086592, + "threadName": "Thread-35" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:33,129", + "created": 1610346633.129809, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 129.80890274047852, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 19063.350915908813, + "thread": 140632379086592, + "threadName": "Thread-35" + }, + { + "args": [ + "STP:", + "(41): 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d" + ], + "asctime": "2021-01-11 07:30:33,130", + "created": 1610346633.130614, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (41): 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d", + "module": "stp", + "msecs": 130.6140422821045, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 19064.15605545044, + "thread": 140632379086592, + "threadName": "Thread-35" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: 17, data_id: 34", + "status: okay", + "u'msg1_data_to_be_transfered'" + ], + "asctime": "2021-01-11 07:30:33,131", + "created": 1610346633.131133, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 131.1330795288086, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13381.366968154907, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 19064.675092697144, + "thread": 140632379086592, + "threadName": "Thread-35" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:33,131", + "created": 1610346633.131442, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__buffer_received_data__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 385, + "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", + "module": "__init__", + "msecs": 131.44207000732422, + "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 19064.98408317566, + "thread": 140632379086592, + "threadName": "Thread-35" } ], - "msecs": 217.15688705444336, + "msecs": 304.34107780456543, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13381.972789764404, - "thread": 140012350113600, + "relativeCreated": 19237.8830909729, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0006058216094970703 + "time_consumption": 0.1728990077972412 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:10,218", - "created": 1609969750.21868, + "asctime": "2021-01-11 07:30:33,305", + "created": 1610346633.305527, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -22936,8 +47370,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:10,217", - "created": 1609969750.217756, + "asctime": "2021-01-11 07:30:33,304", + "created": 1610346633.304981, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -22947,14 +47381,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 217.7560329437256, + "msecs": 304.980993270874, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13382.571935653687, - "thread": 140012350113600, + "relativeCreated": 19238.52300643921, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -22963,8 +47397,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:10,218", - "created": 1609969750.218324, + "asctime": "2021-01-11 07:30:33,305", + "created": 1610346633.305226, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -22974,35 +47408,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 218.3239459991455, + "msecs": 305.22608757019043, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13383.139848709106, - "thread": 140012350113600, + "relativeCreated": 19238.768100738525, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 218.67990493774414, + "msecs": 305.5269718170166, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13383.495807647705, - "thread": 140012350113600, + "relativeCreated": 19239.06898498535, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0003559589385986328 + "time_consumption": 0.0003008842468261719 }, { "args": [ - "None", - "" + "{'status': 0, 'service_id': 17, 'data': u'msg1_data_to_be_transfered', 'data_id': 34}", + "" ], - "asctime": "2021-01-06 22:49:10,219", - "created": 1609969750.219466, + "asctime": "2021-01-11 07:30:33,306", + "created": 1610346633.306735, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23010,17 +47444,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 144, - "message": "Checksum Error -> No message received by server is correct (Content None and Type is ).", + "message": "Received message on server side is correct (Content {'status': 0, 'service_id': 17, 'data': u'msg1_data_to_be_transfered', 'data_id': 34} and Type is ).", "module": "test", "moduleLogger": [ { "args": [ - "Checksum Error -> No message received by server", - "None", - "" + "Received message on server side", + "{'status': 0, 'service_id': 17, 'data': u'msg1_data_to_be_transfered', 'data_id': 34}", + "" ], - "asctime": "2021-01-06 22:49:10,219", - "created": 1609969750.219054, + "asctime": "2021-01-11 07:30:33,305", + "created": 1610346633.305971, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23028,26 +47462,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Checksum Error -> No message received by server): None ()", + "message": "Result (Received message on server side): {'status': 0, 'service_id': 17, 'data': u'msg1_data_to_be_transfered', 'data_id': 34} ()", "module": "test", - "msecs": 219.0539836883545, + "msecs": 305.9709072113037, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13383.869886398315, - "thread": 140012350113600, + "relativeCreated": 19239.51292037964, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "Checksum Error -> No message received by server", - "None", - "" + "Received message on server side", + "{'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34}", + "" ], - "asctime": "2021-01-06 22:49:10,219", - "created": 1609969750.219278, + "asctime": "2021-01-11 07:30:33,306", + "created": 1610346633.306404, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23055,244 +47489,330 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 26, - "message": "Expectation (Checksum Error -> No message received by server): result = None ()", + "message": "Expectation (Received message on server side): result = {'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34} ()", "module": "test", - "msecs": 219.27809715270996, + "msecs": 306.40411376953125, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13384.09399986267, - "thread": 140012350113600, + "relativeCreated": 19239.946126937866, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 219.465970993042, - "msg": "Checksum Error -> No message received by server is correct (Content %s and Type is %s).", + "msecs": 306.7350387573242, + "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13384.281873703003, - "thread": 140012350113600, + "relativeCreated": 19240.27705192566, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00018787384033203125 + "time_consumption": 0.00033092498779296875 }, { "args": [], - "asctime": "2021-01-06 22:49:10,524", - "created": 1609969750.524037, + "asctime": "2021-01-11 07:30:33,508", + "created": 1610346633.508315, "exc_info": null, "exc_text": null, "filename": "test_communication.py", - "funcName": "send_message_with_invalid_checksum", + "funcName": "send_message_object", "levelname": "DEBUG", "levelno": 10, - "lineno": 76, + "lineno": 59, "message": "Transfering a message server -> client", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:10,219", - "created": 1609969750.219899, + "asctime": "2021-01-11 07:30:33,307", + "created": 1610346633.307129, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 219.89893913269043, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 307.12890625, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13384.714841842651, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:10,220", - "created": 1609969750.220517, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (41): 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b", - "module": "test_helpers", - "msecs": 220.51692008972168, - "msg": "Send data: (41): 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13385.332822799683, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:10,220", - "created": 1609969750.220903, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (41): 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b", - "module": "test_helpers", - "msecs": 220.9029197692871, - "msg": "Receive data (41): 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13385.718822479248, - "thread": 140012350113600, + "relativeCreated": 19240.670919418335, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "comm-server:", + "(45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e" + ], + "asctime": "2021-01-11 07:30:33,328", + "created": 1610346633.328682, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e", + "module": "__init__", + "msecs": 328.68194580078125, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 19262.223958969116, + "thread": 140632370693888, + "threadName": "Thread-36" + }, + { + "args": [ + "comm-client:", + "(45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e" + ], + "asctime": "2021-01-11 07:30:33,329", + "created": 1610346633.329258, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e", + "module": "__init__", + "msecs": 329.2579650878906, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 19262.799978256226, + "thread": 140632370693888, + "threadName": "Thread-36" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:33,329", + "created": 1610346633.32979, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 329.7901153564453, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 19263.33212852478, + "thread": 140632370693888, + "threadName": "Thread-36" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:33,330", + "created": 1610346633.330035, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 330.0349712371826, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 19263.576984405518, + "thread": 140632370693888, + "threadName": "Thread-36" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:33,330", + "created": 1610346633.330507, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 330.5070400238037, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 19264.04905319214, + "thread": 140632370693888, + "threadName": "Thread-36" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:33,330", + "created": 1610346633.330753, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 330.7530879974365, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 19264.29510116577, + "thread": 140632370693888, + "threadName": "Thread-36" + }, + { + "args": [ + "STP:", + "(41): 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b" + ], + "asctime": "2021-01-11 07:30:33,331", + "created": 1610346633.33139, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (41): 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b", + "module": "stp", + "msecs": 331.3899040222168, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 19264.93191719055, + "thread": 140632370693888, + "threadName": "Thread-36" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: 17, data_id: 35", "status: service or data unknown", "u'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:10,221", - "created": 1609969750.221518, + "asctime": "2021-01-11 07:30:33,332", + "created": 1610346633.332163, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 221.51803970336914, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 332.16309547424316, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13386.33394241333, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 19265.705108642578, + "thread": 140632370693888, + "threadName": "Thread-36" }, { "args": [ - "SP client:", - "status: service or data unknown" + "prot-client:" ], - "asctime": "2021-01-06 22:49:10,221", - "created": 1609969750.22184, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: service or data unknown", - "module": "__init__", - "msecs": 221.83990478515625, - "msg": "%s RX <- Message has a peculiar status: %s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13386.655807495117, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:" - ], - "asctime": "2021-01-06 22:49:10,222", - "created": 1609969750.222202, + "asctime": "2021-01-11 07:30:33,332", + "created": 1610346633.332556, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 222.20206260681152, + "msecs": 332.55600929260254, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13387.017965316772, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "0.25", - "17", - "35" - ], - "asctime": "2021-01-06 22:49:10,523", - "created": 1609969750.523498, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 651, - "message": "SP server: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 35) not in buffer.", - "module": "__init__", - "msecs": 523.4980583190918, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13688.313961029053, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 19266.098022460938, + "thread": 140632370693888, + "threadName": "Thread-36" } ], - "msecs": 524.0368843078613, + "msecs": 508.3150863647461, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13688.852787017822, - "thread": 140012350113600, + "relativeCreated": 19441.85709953308, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0005388259887695312 + "time_consumption": 0.17575907707214355 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:10,524", - "created": 1609969750.524974, + "asctime": "2021-01-11 07:30:33,509", + "created": 1610346633.509619, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23309,8 +47829,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:10,524", - "created": 1609969750.524557, + "asctime": "2021-01-11 07:30:33,509", + "created": 1610346633.509025, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23320,14 +47840,14 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 524.5571136474609, + "msecs": 509.02509689331055, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13689.373016357422, - "thread": 140012350113600, + "relativeCreated": 19442.567110061646, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -23336,8 +47856,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:10,524", - "created": 1609969750.524789, + "asctime": "2021-01-11 07:30:33,509", + "created": 1610346633.509314, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23347,35 +47867,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 524.7890949249268, + "msecs": 509.31406021118164, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13689.604997634888, - "thread": 140012350113600, + "relativeCreated": 19442.856073379517, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 524.9741077423096, + "msecs": 509.61899757385254, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13689.79001045227, - "thread": 140012350113600, + "relativeCreated": 19443.161010742188, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0001850128173828125 + "time_consumption": 0.00030493736267089844 }, { "args": [ - "None", - "" + "{'status': 4, 'service_id': 17, 'data': u'msg2_data_to_be_transfered', 'data_id': 35}", + "" ], - "asctime": "2021-01-06 22:49:10,525", - "created": 1609969750.525633, + "asctime": "2021-01-11 07:30:33,510", + "created": 1610346633.510768, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23383,17 +47903,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 144, - "message": "Checksum Error -> No message received by client is correct (Content None and Type is ).", + "message": "Received message on client side is correct (Content {'status': 4, 'service_id': 17, 'data': u'msg2_data_to_be_transfered', 'data_id': 35} and Type is ).", "module": "test", "moduleLogger": [ { "args": [ - "Checksum Error -> No message received by client", - "None", - "" + "Received message on client side", + "{'status': 4, 'service_id': 17, 'data': u'msg2_data_to_be_transfered', 'data_id': 35}", + "" ], - "asctime": "2021-01-06 22:49:10,525", - "created": 1609969750.525284, + "asctime": "2021-01-11 07:30:33,510", + "created": 1610346633.510243, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23401,26 +47921,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Checksum Error -> No message received by client): None ()", + "message": "Result (Received message on client side): {'status': 4, 'service_id': 17, 'data': u'msg2_data_to_be_transfered', 'data_id': 35} ()", "module": "test", - "msecs": 525.2840518951416, + "msecs": 510.2429389953613, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13690.099954605103, - "thread": 140012350113600, + "relativeCreated": 19443.784952163696, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "Checksum Error -> No message received by client", - "None", - "" + "Received message on client side", + "{'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35}", + "" ], - "asctime": "2021-01-06 22:49:10,525", - "created": 1609969750.52546, + "asctime": "2021-01-11 07:30:33,510", + "created": 1610346633.510474, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23428,41 +47948,41 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 26, - "message": "Expectation (Checksum Error -> No message received by client): result = None ()", + "message": "Expectation (Received message on client side): result = {'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35} ()", "module": "test", - "msecs": 525.4600048065186, + "msecs": 510.47396659851074, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13690.27590751648, - "thread": 140012350113600, + "relativeCreated": 19444.015979766846, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 525.6330966949463, - "msg": "Checksum Error -> No message received by client is correct (Content %s and Type is %s).", + "msecs": 510.76793670654297, + "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13690.448999404907, - "thread": 140012350113600, + "relativeCreated": 19444.309949874878, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00017309188842773438 + "time_consumption": 0.00029397010803222656 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.6132872104644775, - "time_finished": "2021-01-06 22:49:10,525", - "time_start": "2021-01-06 22:49:09,912" + "time_consumption": 0.7613229751586914, + "time_finished": "2021-01-11 07:30:33,510", + "time_start": "2021-01-11 07:30:32,749" }, "_ZJMD8EzaEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:48:57,088", - "created": 1609969737.088078, + "asctime": "2021-01-11 07:30:14,865", + "created": 1610346614.865725, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -23473,1112 +47993,2427 @@ "message": "_ZJMD8EzaEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 88.07802200317383, + "msecs": 865.725040435791, "msg": "_ZJMD8EzaEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 252.89392471313477, + "relativeCreated": 799.267053604126, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:48:57,096", - "created": 1609969737.096559, + "asctime": "2021-01-11 07:30:14,873", + "created": 1610346614.873678, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:48:57,088", - "created": 1609969737.088614, + "asctime": "2021-01-11 07:30:14,866", + "created": 1610346614.866897, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 88.61398696899414, + "msecs": 866.8971061706543, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 253.42988967895508, - "thread": 140012350113600, + "relativeCreated": 800.4391193389893, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:48:57,088", - "created": 1609969737.088845, + "asctime": "2021-01-11 07:30:14,868", + "created": 1610346614.868065, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 88.84501457214355, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 868.0651187896729, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 253.6609172821045, - "thread": 140012350113600, + "relativeCreated": 801.6071319580078, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:48:57,089", - "created": 1609969737.0891, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 89.09988403320312, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 253.91578674316406, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:48:57,089", - "created": 1609969737.08928, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 89.2798900604248, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 254.09579277038574, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:48:57,089", - "created": 1609969737.089456, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 89.45608139038086, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 254.2719841003418, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:48:57,089", - "created": 1609969737.089619, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 89.61892127990723, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 254.43482398986816, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:48:57,089", - "created": 1609969737.089826, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 89.82610702514648, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 254.64200973510742, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:48:57,090", - "created": 1609969737.090019, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 90.01898765563965, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 254.8348903656006, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:48:57,090", - "created": 1609969737.090218, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 90.21806716918945, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 255.0339698791504, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:48:57,090", - "created": 1609969737.090395, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 90.39497375488281, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 255.21087646484375, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:48:57,090", - "created": 1609969737.090554, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 90.55399894714355, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 255.3699016571045, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:48:57,090", - "created": 1609969737.090745, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 90.7449722290039, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 255.56087493896484, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:48:57,090", - "created": 1609969737.090939, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 90.93904495239258, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 255.75494766235352, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:48:57,091", - "created": 1609969737.091104, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 91.10403060913086, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 255.9199333190918, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:48:57,091", - "created": 1609969737.091274, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 91.27402305603027, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 256.0899257659912, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:48:57,091", - "created": 1609969737.091458, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 91.45808219909668, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 256.2739849090576, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:48:57,091", - "created": 1609969737.091641, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 91.64094924926758, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 256.4568519592285, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:48:57,091", - "created": 1609969737.091813, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 91.8130874633789, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 256.62899017333984, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:48:57,091", - "created": 1609969737.091973, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 91.97306632995605, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 256.788969039917, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:48:57,092", - "created": 1609969737.092134, + "asctime": "2021-01-11 07:30:14,868", + "created": 1610346614.868336, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 92.13399887084961, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 868.3359622955322, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 256.94990158081055, - "thread": 140012350113600, + "relativeCreated": 801.8779754638672, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:48:57,092", - "created": 1609969737.092519, + "asctime": "2021-01-11 07:30:14,868", + "created": 1610346614.868812, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 92.51904487609863, + "msecs": 868.812084197998, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 257.33494758605957, - "thread": 140012350113600, + "relativeCreated": 802.354097366333, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:48:57,093", - "created": 1609969737.093128, + "asctime": "2021-01-11 07:30:14,869", + "created": 1610346614.869035, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 93.12796592712402, + "msecs": 869.035005569458, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 257.94386863708496, - "thread": 140012350113600, + "relativeCreated": 802.577018737793, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:48:57,093", - "created": 1609969737.093393, + "asctime": "2021-01-11 07:30:14,869", + "created": 1610346614.869464, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 93.39308738708496, + "msecs": 869.4639205932617, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 258.2089900970459, - "thread": 140012350113600, + "relativeCreated": 803.0059337615967, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:48:57,093", - "created": 1609969737.093581, + "asctime": "2021-01-11 07:30:14,869", + "created": 1610346614.869568, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 93.58096122741699, + "msecs": 869.5681095123291, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 258.39686393737793, - "thread": 140012350113600, + "relativeCreated": 803.1101226806641, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:48:57,093", - "created": 1609969737.093748, + "asctime": "2021-01-11 07:30:14,869", + "created": 1610346614.869658, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 93.74809265136719, + "msecs": 869.6579933166504, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 258.5639953613281, - "thread": 140012350113600, + "relativeCreated": 803.2000064849854, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:48:57,093", - "created": 1609969737.093932, + "asctime": "2021-01-11 07:30:14,869", + "created": 1610346614.869744, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 93.93191337585449, + "msecs": 869.744062423706, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 258.74781608581543, - "thread": 140012350113600, + "relativeCreated": 803.286075592041, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:48:57,094", - "created": 1609969737.094122, + "asctime": "2021-01-11 07:30:14,869", + "created": 1610346614.869847, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 94.12193298339844, + "msecs": 869.8470592498779, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 258.9378356933594, - "thread": 140012350113600, + "relativeCreated": 803.3890724182129, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:48:57,094", - "created": 1609969737.094307, + "asctime": "2021-01-11 07:30:14,869", + "created": 1610346614.869949, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 94.30694580078125, + "msecs": 869.9491024017334, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 259.1228485107422, - "thread": 140012350113600, + "relativeCreated": 803.4911155700684, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:48:57,094", - "created": 1609969737.094501, + "asctime": "2021-01-11 07:30:14,870", + "created": 1610346614.870081, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 94.50101852416992, + "msecs": 870.0809478759766, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 259.31692123413086, - "thread": 140012350113600, + "relativeCreated": 803.6229610443115, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:48:57,094", - "created": 1609969737.094679, + "asctime": "2021-01-11 07:30:14,870", + "created": 1610346614.870149, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 94.67911720275879, + "msecs": 870.1488971710205, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 259.4950199127197, - "thread": 140012350113600, + "relativeCreated": 803.6909103393555, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:48:57,094", - "created": 1609969737.094845, + "asctime": "2021-01-11 07:30:14,870", + "created": 1610346614.870208, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 94.84505653381348, + "msecs": 870.2080249786377, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 259.6609592437744, - "thread": 140012350113600, + "relativeCreated": 803.7500381469727, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:48:57,095", - "created": 1609969737.095035, + "asctime": "2021-01-11 07:30:14,870", + "created": 1610346614.870283, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 95.03507614135742, + "msecs": 870.2828884124756, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 259.85097885131836, - "thread": 140012350113600, + "relativeCreated": 803.8249015808105, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:48:57,095", - "created": 1609969737.095219, + "asctime": "2021-01-11 07:30:14,870", + "created": 1610346614.870354, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 95.21889686584473, + "msecs": 870.3539371490479, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 260.03479957580566, - "thread": 140012350113600, + "relativeCreated": 803.8959503173828, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:48:57,095", - "created": 1609969737.095383, + "asctime": "2021-01-11 07:30:14,870", + "created": 1610346614.870452, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 95.3829288482666, + "msecs": 870.4519271850586, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 260.19883155822754, - "thread": 140012350113600, + "relativeCreated": 803.9939403533936, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:48:57,095", - "created": 1609969737.095552, + "asctime": "2021-01-11 07:30:14,870", + "created": 1610346614.870537, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 95.55196762084961, + "msecs": 870.5370426177979, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 260.36787033081055, - "thread": 140012350113600, + "relativeCreated": 804.0790557861328, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:48:57,095", - "created": 1609969737.095739, + "asctime": "2021-01-11 07:30:14,870", + "created": 1610346614.870606, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 95.73888778686523, + "msecs": 870.6059455871582, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 260.5547904968262, - "thread": 140012350113600, + "relativeCreated": 804.1479587554932, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:48:57,095", - "created": 1609969737.09591, + "asctime": "2021-01-11 07:30:14,870", + "created": 1610346614.870671, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 95.91007232666016, + "msecs": 870.6710338592529, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 260.7259750366211, - "thread": 140012350113600, + "relativeCreated": 804.2130470275879, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:48:57,096", - "created": 1609969737.096066, + "asctime": "2021-01-11 07:30:14,870", + "created": 1610346614.870735, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 96.06599807739258, + "msecs": 870.7349300384521, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 260.8819007873535, - "thread": 140012350113600, + "relativeCreated": 804.2769432067871, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:48:57,096", - "created": 1609969737.096234, + "asctime": "2021-01-11 07:30:14,870", + "created": 1610346614.870793, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 96.23408317565918, + "msecs": 870.7931041717529, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 261.0499858856201, - "thread": 140012350113600, + "relativeCreated": 804.3351173400879, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:48:57,096", - "created": 1609969737.096393, + "asctime": "2021-01-11 07:30:14,870", + "created": 1610346614.870855, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 96.39310836791992, + "msecs": 870.8550930023193, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 261.20901107788086, - "thread": 140012350113600, + "relativeCreated": 804.3971061706543, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:14,871", + "created": 1610346614.871016, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 871.0160255432129, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 804.5580387115479, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:14,871", + "created": 1610346614.871084, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 871.0839748382568, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 804.6259880065918, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:14,871", + "created": 1610346614.871172, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 871.1719512939453, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 804.7139644622803, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:14,871", + "created": 1610346614.871235, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 871.2348937988281, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 804.7769069671631, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:14,871", + "created": 1610346614.871298, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 871.29807472229, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 804.840087890625, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:14,871", + "created": 1610346614.871356, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 871.3560104370117, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 804.8980236053467, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:14,871", + "created": 1610346614.871419, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 871.4189529418945, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 804.9609661102295, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:14,871", + "created": 1610346614.871488, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 871.488094329834, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 805.030107498169, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:14,871", + "created": 1610346614.871556, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 871.5560436248779, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 805.0980567932129, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:14,871", + "created": 1610346614.871619, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 871.6189861297607, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 805.1609992980957, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:14,871", + "created": 1610346614.871682, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 871.6819286346436, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 805.2239418029785, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:14,872", + "created": 1610346614.872941, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 872.9410171508789, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 806.4830303192139, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:14,873", + "created": 1610346614.873064, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 873.0640411376953, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 806.6060543060303, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:14,873", + "created": 1610346614.873168, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 873.1679916381836, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 806.7100048065186, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:14,873", + "created": 1610346614.873274, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 873.2740879058838, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 806.8161010742188, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:14,873", + "created": 1610346614.873347, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 873.3470439910889, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 806.8890571594238, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:14,873", + "created": 1610346614.873415, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 873.4149932861328, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 806.9570064544678, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:14,873", + "created": 1610346614.873491, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 873.4910488128662, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 807.0330619812012, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:14,873", + "created": 1610346614.873555, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 873.5549449920654, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 807.0969581604004, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:14,873", + "created": 1610346614.873615, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 873.615026473999, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 807.157039642334, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 96.55904769897461, + "msecs": 873.6779689788818, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 261.37495040893555, - "thread": 140012350113600, + "relativeCreated": 807.2199821472168, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0001659393310546875 + "time_consumption": 6.29425048828125e-05 }, { "args": [], - "asctime": "2021-01-06 22:48:57,399", - "created": 1609969737.399186, + "asctime": "2021-01-11 07:30:15,217", + "created": 1610346615.21766, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:14,873", + "created": 1610346614.873809, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 873.8090991973877, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 807.3511123657227, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:14,873", + "created": 1610346614.873877, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 873.8770484924316, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 807.4190616607666, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:14,873", + "created": 1610346614.873944, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 873.9440441131592, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 807.4860572814941, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:14,874", + "created": 1610346614.874053, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 874.0530014038086, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 807.5950145721436, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:14,874", + "created": 1610346614.874276, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 874.2759227752686, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 807.8179359436035, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:14,874", + "created": 1610346614.874362, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 874.3619918823242, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 807.9040050506592, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:14,874", + "created": 1610346614.874444, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 874.4440078735352, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 807.9860210418701, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:14,874", + "created": 1610346614.874646, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 874.6459484100342, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 808.1879615783691, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:14,874", + "created": 1610346614.87483, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 874.8300075531006, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 808.3720207214355, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,874", + "created": 1610346614.874906, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 874.906063079834, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 808.448076248169, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:14,874", + "created": 1610346614.87497, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 874.9699592590332, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 808.5119724273682, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,875", + "created": 1610346614.875051, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 875.0510215759277, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 808.5930347442627, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,875", + "created": 1610346614.87511, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 875.1099109649658, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 808.6519241333008, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,875", + "created": 1610346614.875193, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 875.1931190490723, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 808.7351322174072, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,875", + "created": 1610346614.875254, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 875.2539157867432, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 808.7959289550781, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,875", + "created": 1610346614.875323, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 875.3230571746826, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 808.8650703430176, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,875", + "created": 1610346614.875379, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 875.3790855407715, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 808.9210987091064, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,875", + "created": 1610346614.875456, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 875.4560947418213, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 808.9981079101562, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,875", + "created": 1610346614.875511, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 875.5109310150146, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 809.0529441833496, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "comm-client:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:14,875", + "created": 1610346614.875594, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 875.593900680542, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 809.135913848877, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "comm-server:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:14,875", + "created": 1610346614.875665, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 875.6649494171143, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 809.2069625854492, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,875", + "created": 1610346614.875743, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 875.7429122924805, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 809.2849254608154, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:14,875", + "created": 1610346614.875825, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 875.8249282836914, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 809.3669414520264, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" + ], + "asctime": "2021-01-11 07:30:14,875", + "created": 1610346614.875946, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", + "module": "stp", + "msecs": 875.946044921875, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 809.48805809021, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:14,876", + "created": 1610346614.87609, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 876.0900497436523, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 809.6320629119873, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:14,876", + "created": 1610346614.876169, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 876.168966293335, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 809.7109794616699, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:14,876", + "created": 1610346614.876268, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 876.2679100036621, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 809.8099231719971, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:14,877", + "created": 1610346614.877398, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 877.3980140686035, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 810.9400272369385, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:14,877", + "created": 1610346614.877574, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 877.5739669799805, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 811.1159801483154, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,877", + "created": 1610346614.877649, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 877.6490688323975, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 811.1910820007324, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:14,877", + "created": 1610346614.87772, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 877.7201175689697, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 811.2621307373047, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,877", + "created": 1610346614.877816, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 877.8159618377686, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 811.3579750061035, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,877", + "created": 1610346614.877886, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 877.8860569000244, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 811.4280700683594, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,877", + "created": 1610346614.877984, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 877.9840469360352, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 811.5260601043701, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,878", + "created": 1610346614.878049, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 878.0488967895508, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 811.5909099578857, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,878", + "created": 1610346614.878122, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 878.122091293335, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 811.6641044616699, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,878", + "created": 1610346614.87818, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 878.1800270080566, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 811.7220401763916, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,878", + "created": 1610346614.878262, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 878.2620429992676, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 811.8040561676025, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:14,878", + "created": 1610346614.878317, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 878.31711769104, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 811.859130859375, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:14,878", + "created": 1610346614.878401, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 878.4010410308838, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 811.9430541992188, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:14,878", + "created": 1610346614.878468, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 878.4680366516113, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 812.0100498199463, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:14,878", + "created": 1610346614.878536, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 878.5359859466553, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 812.0779991149902, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:14,878", + "created": 1610346614.878592, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 878.5920143127441, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 812.1340274810791, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:14,878", + "created": 1610346614.87871, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 878.7100315093994, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 812.2520446777344, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:14,878", + "created": 1610346614.878839, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 878.8390159606934, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 812.3810291290283, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:14,878", + "created": 1610346614.878913, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 878.9129257202148, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 812.4549388885498, + "thread": 140634689730304, + "threadName": "Thread-4" + } + ], + "msecs": 217.65995025634766, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1151.2019634246826, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.3387470245361328 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:15,520", + "created": 1610346615.52047, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -24591,150 +50426,553 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:48:57,096", - "created": 1609969737.096931, + "asctime": "2021-01-11 07:30:15,218", + "created": 1610346615.218403, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 445, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 96.93098068237305, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 218.40310096740723, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 261.746883392334, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:48:57,097", - "created": 1609969737.09746, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "test_helpers", - "msecs": 97.46003150939941, - "msg": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 262.27593421936035, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:48:57,097", - "created": 1609969737.09785, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9c", - "module": "test_helpers", - "msecs": 97.85008430480957, - "msg": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9c", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 262.6659870147705, - "thread": 140012350113600, + "relativeCreated": 1151.9451141357422, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:" + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" ], - "asctime": "2021-01-06 22:48:57,097", - "created": 1609969737.097939, + "asctime": "2021-01-11 07:30:15,242", + "created": 1610346615.24222, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 242.2199249267578, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1175.7619380950928, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:15,242", + "created": 1610346615.2428, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 242.7999973297119, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1176.3420104980469, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,243", + "created": 1610346615.243032, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 243.03197860717773, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1176.5739917755127, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:15,243", + "created": 1610346615.243213, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 243.21293830871582, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1176.7549514770508, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,243", + "created": 1610346615.243435, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 243.43490600585938, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1176.9769191741943, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:15,243", + "created": 1610346615.243619, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 243.61896514892578, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1177.1609783172607, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,243", + "created": 1610346615.243857, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 243.85690689086914, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1177.398920059204, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:15,244", + "created": 1610346615.244016, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 244.01593208312988, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1177.5579452514648, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,244", + "created": 1610346615.244215, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 244.2150115966797, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1177.7570247650146, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:15,244", + "created": 1610346615.244423, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 244.42291259765625, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1177.9649257659912, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "comm-client:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9c 3a 3e" + ], + "asctime": "2021-01-11 07:30:15,244", + "created": 1610346615.244909, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9c 3a 3e", + "module": "__init__", + "msecs": 244.90904808044434, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1178.4510612487793, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "comm-server:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9c 3a 3e" + ], + "asctime": "2021-01-11 07:30:15,245", + "created": 1610346615.245177, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9c 3a 3e", + "module": "__init__", + "msecs": 245.1770305633545, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1178.7190437316895, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,245", + "created": 1610346615.245417, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 245.41711807250977, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1178.9591312408447, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:15,245", + "created": 1610346615.245616, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 245.61595916748047, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1179.1579723358154, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,245", + "created": 1610346615.245803, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 245.8031177520752, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1179.3451309204102, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:15,245", + "created": 1610346615.245955, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 245.9549903869629, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1179.4970035552979, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + "(88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9c" + ], + "asctime": "2021-01-11 07:30:15,246", + "created": 1610346615.246354, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9c", + "module": "stp", + "msecs": 246.3541030883789, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1179.8961162567139, + "thread": 140634698123008, + "threadName": "Thread-3" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:15,246", + "created": 1610346615.246728, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 432, - "message": "SP server: RX <- Received message has a wrong checksum. Message will be ignored.", + "levelname": "ERROR", + "levelno": 40, + "lineno": 453, + "message": "prot-server: Received message has an invalid checksum. Message will be ignored.", "module": "__init__", - "msecs": 97.93901443481445, - "msg": "%s RX <- Received message has a wrong checksum. Message will be ignored.", + "msecs": 246.72794342041016, + "msg": "%s Received message has an invalid checksum. Message will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 262.7549171447754, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 1180.2699565887451, + "thread": 140634698123008, + "threadName": "Thread-3" }, { "args": [ - "SP server:", - "0.25", + "prot-server:", + "0.28705533596837945", "17", "34" ], - "asctime": "2021-01-06 22:48:57,398", - "created": 1609969737.398857, + "asctime": "2021-01-11 07:30:15,520", + "created": 1610346615.520076, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP server: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 34) not in buffer.", + "lineno": 668, + "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 398.85711669921875, + "msecs": 520.0760364532471, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 563.6730194091797, - "thread": 140012350113600, + "relativeCreated": 1453.618049621582, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 399.1858959197998, + "msecs": 520.4699039459229, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 564.0017986297607, - "thread": 140012350113600, + "relativeCreated": 1454.0119171142578, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0003287792205810547 + "time_consumption": 0.00039386749267578125 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:48:57,399", - "created": 1609969737.399914, + "asctime": "2021-01-11 07:30:15,521", + "created": 1610346615.521273, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24751,8 +50989,8 @@ "True", "" ], - "asctime": "2021-01-06 22:48:57,399", - "created": 1609969737.399539, + "asctime": "2021-01-11 07:30:15,520", + "created": 1610346615.5209, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24762,14 +51000,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 399.5389938354492, + "msecs": 520.9000110626221, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 564.3548965454102, - "thread": 140012350113600, + "relativeCreated": 1454.442024230957, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -24778,8 +51016,8 @@ "True", "" ], - "asctime": "2021-01-06 22:48:57,399", - "created": 1609969737.39973, + "asctime": "2021-01-11 07:30:15,521", + "created": 1610346615.521093, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24789,35 +51027,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 399.72996711730957, + "msecs": 521.0928916931152, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 564.5458698272705, - "thread": 140012350113600, + "relativeCreated": 1454.6349048614502, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 399.914026260376, + "msecs": 521.2728977203369, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 564.7299289703369, - "thread": 140012350113600, + "relativeCreated": 1454.8149108886719, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00018405914306640625 + "time_consumption": 0.0001800060272216797 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:48:57,400", - "created": 1609969737.400498, + "asctime": "2021-01-11 07:30:15,521", + "created": 1610346615.521932, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24834,8 +51072,8 @@ "None", "" ], - "asctime": "2021-01-06 22:48:57,400", - "created": 1609969737.400177, + "asctime": "2021-01-11 07:30:15,521", + "created": 1610346615.521603, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24845,14 +51083,14 @@ "lineno": 22, "message": "Result (Checksum Error -> No message received by server): None ()", "module": "test", - "msecs": 400.177001953125, + "msecs": 521.6031074523926, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 564.9929046630859, - "thread": 140012350113600, + "relativeCreated": 1455.1451206207275, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -24861,8 +51099,8 @@ "None", "" ], - "asctime": "2021-01-06 22:48:57,400", - "created": 1609969737.40034, + "asctime": "2021-01-11 07:30:15,521", + "created": 1610346615.521773, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24872,32 +51110,32 @@ "lineno": 26, "message": "Expectation (Checksum Error -> No message received by server): result = None ()", "module": "test", - "msecs": 400.34008026123047, + "msecs": 521.773099899292, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 565.1559829711914, - "thread": 140012350113600, + "relativeCreated": 1455.315113067627, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 400.4979133605957, + "msecs": 521.9318866729736, "msg": "Checksum Error -> No message received by server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 565.3138160705566, - "thread": 140012350113600, + "relativeCreated": 1455.4738998413086, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00015783309936523438 + "time_consumption": 0.00015878677368164062 }, { "args": [], - "asctime": "2021-01-06 22:48:57,704", - "created": 1609969737.704147, + "asctime": "2021-01-11 07:30:15,824", + "created": 1610346615.824204, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -24910,204 +51148,582 @@ "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:48:57,400", - "created": 1609969737.400821, + "asctime": "2021-01-11 07:30:15,522", + "created": 1610346615.522303, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 400.8209705352783, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 522.3031044006348, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 565.6368732452393, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:48:57,401", - "created": 1609969737.401366, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "module": "test_helpers", - "msecs": 401.3659954071045, - "msg": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 566.1818981170654, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:48:57,401", - "created": 1609969737.40183, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "module": "test_helpers", - "msecs": 401.82995796203613, - "msg": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 566.6458606719971, - "thread": 140012350113600, + "relativeCreated": 1455.8451175689697, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:15,545", + "created": 1610346615.545608, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 545.6080436706543, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1479.1500568389893, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:15,546", + "created": 1610346615.546134, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 546.1339950561523, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1479.6760082244873, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,546", + "created": 1610346615.54635, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 546.3500022888184, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1479.8920154571533, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:15,546", + "created": 1610346615.546558, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 546.5579032897949, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1480.0999164581299, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,546", + "created": 1610346615.546781, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 546.781063079834, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1480.323076248169, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:15,546", + "created": 1610346615.546943, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 546.942949295044, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1480.484962463379, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,547", + "created": 1610346615.547171, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 547.1711158752441, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1480.713129043579, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:15,547", + "created": 1610346615.54734, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 547.339916229248, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1480.881929397583, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,547", + "created": 1610346615.547541, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 547.5409030914307, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1481.0829162597656, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:15,547", + "created": 1610346615.547694, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 547.6939678192139, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1481.2359809875488, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "comm-server:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" + ], + "asctime": "2021-01-11 07:30:15,548", + "created": 1610346615.548427, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", + "module": "__init__", + "msecs": 548.4271049499512, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1481.9691181182861, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "comm-client:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" + ], + "asctime": "2021-01-11 07:30:15,548", + "created": 1610346615.548701, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", + "module": "__init__", + "msecs": 548.7010478973389, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1482.2430610656738, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,548", + "created": 1610346615.548956, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 548.9559173583984, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1482.4979305267334, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:15,549", + "created": 1610346615.549115, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 549.1149425506592, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1482.6569557189941, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,549", + "created": 1610346615.54932, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 549.3199825286865, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1482.8619956970215, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:15,549", + "created": 1610346615.549546, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 549.5460033416748, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1483.0880165100098, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + "(88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8" + ], + "asctime": "2021-01-11 07:30:15,550", + "created": 1610346615.550049, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", + "module": "stp", + "msecs": 550.0490665435791, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1483.591079711914, + "thread": 140634689730304, + "threadName": "Thread-4" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: 17, data_id: 35", "status: service or data unknown", "u'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:48:57,402", - "created": 1609969737.402193, + "asctime": "2021-01-11 07:30:15,550", + "created": 1610346615.550502, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 402.1930694580078, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 550.5020618438721, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 567.0089721679688, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 1484.044075012207, + "thread": 140634689730304, + "threadName": "Thread-4" }, { "args": [ - "SP client:", - "status: service or data unknown" + "prot-client:" ], - "asctime": "2021-01-06 22:48:57,402", - "created": 1609969737.402403, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: service or data unknown", - "module": "__init__", - "msecs": 402.4031162261963, - "msg": "%s RX <- Message has a peculiar status: %s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 567.2190189361572, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:" - ], - "asctime": "2021-01-06 22:48:57,402", - "created": 1609969737.402643, + "asctime": "2021-01-11 07:30:15,550", + "created": 1610346615.550801, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 402.64296531677246, + "msecs": 550.8010387420654, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 567.4588680267334, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 1484.3430519104004, + "thread": 140634689730304, + "threadName": "Thread-4" }, { "args": [ - "SP server:", - "0.25", + "prot-server:", + "0.28705533596837945", "17", "35" ], - "asctime": "2021-01-06 22:48:57,703", - "created": 1609969737.703801, + "asctime": "2021-01-11 07:30:15,823", + "created": 1610346615.823857, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP server: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 35) not in buffer.", + "lineno": 668, + "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 703.8009166717529, + "msecs": 823.8570690155029, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 868.6168193817139, - "thread": 140012350113600, + "relativeCreated": 1757.399082183838, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 704.1471004486084, + "msecs": 824.2039680480957, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 868.9630031585693, - "thread": 140012350113600, + "relativeCreated": 1757.7459812164307, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00034618377685546875 + "time_consumption": 0.00034689903259277344 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:48:57,704", - "created": 1609969737.704872, + "asctime": "2021-01-11 07:30:15,824", + "created": 1610346615.824968, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25124,8 +51740,8 @@ "True", "" ], - "asctime": "2021-01-06 22:48:57,704", - "created": 1609969737.7045, + "asctime": "2021-01-11 07:30:15,824", + "created": 1610346615.824597, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25135,14 +51751,14 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 704.4999599456787, + "msecs": 824.5968818664551, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 869.3158626556396, - "thread": 140012350113600, + "relativeCreated": 1758.13889503479, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -25151,8 +51767,8 @@ "True", "" ], - "asctime": "2021-01-06 22:48:57,704", - "created": 1609969737.704699, + "asctime": "2021-01-11 07:30:15,824", + "created": 1610346615.824784, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25162,35 +51778,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 704.6990394592285, + "msecs": 824.7840404510498, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 869.5149421691895, - "thread": 140012350113600, + "relativeCreated": 1758.3260536193848, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 704.8718929290771, + "msecs": 824.9680995941162, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 869.6877956390381, - "thread": 140012350113600, + "relativeCreated": 1758.5101127624512, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0001728534698486328 + "time_consumption": 0.00018405914306640625 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:48:57,705", - "created": 1609969737.705498, + "asctime": "2021-01-11 07:30:15,825", + "created": 1610346615.825587, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25207,8 +51823,8 @@ "None", "" ], - "asctime": "2021-01-06 22:48:57,705", - "created": 1609969737.705162, + "asctime": "2021-01-11 07:30:15,825", + "created": 1610346615.825221, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25218,14 +51834,14 @@ "lineno": 22, "message": "Result (Checksum Error -> No message received by client): None ()", "module": "test", - "msecs": 705.1620483398438, + "msecs": 825.221061706543, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 869.9779510498047, - "thread": 140012350113600, + "relativeCreated": 1758.763074874878, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -25234,8 +51850,8 @@ "None", "" ], - "asctime": "2021-01-06 22:48:57,705", - "created": 1609969737.70533, + "asctime": "2021-01-11 07:30:15,825", + "created": 1610346615.825383, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25245,39 +51861,39 @@ "lineno": 26, "message": "Expectation (Checksum Error -> No message received by client): result = None ()", "module": "test", - "msecs": 705.3298950195312, + "msecs": 825.3829479217529, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 870.1457977294922, - "thread": 140012350113600, + "relativeCreated": 1758.924961090088, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 705.4979801177979, + "msecs": 825.5870342254639, "msg": "Checksum Error -> No message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 870.3138828277588, - "thread": 140012350113600, + "relativeCreated": 1759.1290473937988, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00016808509826660156 + "time_consumption": 0.0002040863037109375 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.617419958114624, - "time_finished": "2021-01-06 22:48:57,705", - "time_start": "2021-01-06 22:48:57,088" + "time_consumption": 0.9598619937896729, + "time_finished": "2021-01-11 07:30:15,825", + "time_start": "2021-01-11 07:30:14,865" }, "_ZOW3ME0vEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:49:08,685", - "created": 1609969748.685607, + "asctime": "2021-01-11 07:30:26,584", + "created": 1610346626.58446, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -25288,1275 +51904,2590 @@ "message": "_ZOW3ME0vEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 685.6069564819336, + "msecs": 584.4600200653076, "msg": "_ZOW3ME0vEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11850.422859191895, + "relativeCreated": 12518.002033233643, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:08,693", - "created": 1609969748.693672, + "asctime": "2021-01-11 07:30:26,596", + "created": 1610346626.596497, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:08,686", - "created": 1609969748.686206, + "asctime": "2021-01-11 07:30:26,585", + "created": 1610346626.585608, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 686.2061023712158, + "msecs": 585.6080055236816, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11851.022005081177, - "thread": 140012350113600, + "relativeCreated": 12519.150018692017, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:08,686", - "created": 1609969748.686445, + "asctime": "2021-01-11 07:30:26,586", + "created": 1610346626.586386, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 686.4449977874756, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 586.38596534729, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11851.260900497437, - "thread": 140012350113600, + "relativeCreated": 12519.927978515625, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:08,686", - "created": 1609969748.686708, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 686.7079734802246, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11851.523876190186, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:08,686", - "created": 1609969748.686889, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 686.8889331817627, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11851.704835891724, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:08,687", - "created": 1609969748.687065, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 687.0648860931396, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11851.8807888031, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:08,687", - "created": 1609969748.687229, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 687.2289180755615, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11852.044820785522, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:08,687", - "created": 1609969748.68741, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 687.4101161956787, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11852.22601890564, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:08,687", - "created": 1609969748.687605, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 687.6049041748047, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11852.420806884766, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:08,687", - "created": 1609969748.687782, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 687.7820491790771, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11852.597951889038, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:08,687", - "created": 1609969748.687956, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 687.9560947418213, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11852.771997451782, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:08,688", - "created": 1609969748.688116, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 688.1160736083984, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11852.93197631836, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:08,688", - "created": 1609969748.688315, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 688.3149147033691, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11853.13081741333, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:08,688", - "created": 1609969748.688511, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 688.5108947753906, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11853.326797485352, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:08,688", - "created": 1609969748.688677, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 688.6770725250244, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11853.492975234985, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:08,688", - "created": 1609969748.688847, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 688.8470649719238, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11853.662967681885, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:08,689", - "created": 1609969748.689034, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 689.0339851379395, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11853.8498878479, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:08,689", - "created": 1609969748.689238, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 689.2380714416504, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11854.053974151611, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:08,689", - "created": 1609969748.689405, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 689.4049644470215, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11854.220867156982, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:08,689", - "created": 1609969748.689564, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 689.5639896392822, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11854.379892349243, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:08,689", - "created": 1609969748.689733, + "asctime": "2021-01-11 07:30:26,586", + "created": 1610346626.586642, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 689.7330284118652, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 586.6420269012451, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11854.548931121826, - "thread": 140012350113600, + "relativeCreated": 12520.18404006958, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:08,690", - "created": 1609969748.69013, + "asctime": "2021-01-11 07:30:26,587", + "created": 1610346626.587414, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 690.1299953460693, + "msecs": 587.414026260376, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11854.94589805603, - "thread": 140012350113600, + "relativeCreated": 12520.956039428711, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:08,690", - "created": 1609969748.690319, + "asctime": "2021-01-11 07:30:26,587", + "created": 1610346626.587615, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 690.3190612792969, + "msecs": 587.6150131225586, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11855.134963989258, - "thread": 140012350113600, + "relativeCreated": 12521.157026290894, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:08,690", - "created": 1609969748.690553, + "asctime": "2021-01-11 07:30:26,587", + "created": 1610346626.587861, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 690.5529499053955, + "msecs": 587.8610610961914, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11855.368852615356, - "thread": 140012350113600, + "relativeCreated": 12521.403074264526, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:08,690", - "created": 1609969748.690737, + "asctime": "2021-01-11 07:30:26,588", + "created": 1610346626.588033, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 690.7370090484619, + "msecs": 588.0329608917236, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11855.552911758423, - "thread": 140012350113600, + "relativeCreated": 12521.574974060059, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:08,690", - "created": 1609969748.690899, + "asctime": "2021-01-11 07:30:26,588", + "created": 1610346626.588198, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 690.8988952636719, + "msecs": 588.1979465484619, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11855.714797973633, - "thread": 140012350113600, + "relativeCreated": 12521.739959716797, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:08,691", - "created": 1609969748.691056, + "asctime": "2021-01-11 07:30:26,588", + "created": 1610346626.588358, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 691.0560131072998, + "msecs": 588.3579254150391, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11855.87191581726, - "thread": 140012350113600, + "relativeCreated": 12521.899938583374, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:08,691", - "created": 1609969748.691241, + "asctime": "2021-01-11 07:30:26,588", + "created": 1610346626.588629, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 691.2410259246826, + "msecs": 588.6290073394775, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11856.056928634644, - "thread": 140012350113600, + "relativeCreated": 12522.171020507812, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:08,691", - "created": 1609969748.69142, + "asctime": "2021-01-11 07:30:26,588", + "created": 1610346626.588851, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 691.4200782775879, + "msecs": 588.8509750366211, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11856.235980987549, - "thread": 140012350113600, + "relativeCreated": 12522.392988204956, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:08,691", - "created": 1609969748.691597, + "asctime": "2021-01-11 07:30:26,589", + "created": 1610346626.589061, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 691.5969848632812, + "msecs": 589.0610218048096, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11856.412887573242, - "thread": 140012350113600, + "relativeCreated": 12522.603034973145, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:08,691", - "created": 1609969748.691769, + "asctime": "2021-01-11 07:30:26,589", + "created": 1610346626.589257, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 691.7688846588135, + "msecs": 589.257001876831, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11856.584787368774, - "thread": 140012350113600, + "relativeCreated": 12522.799015045166, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:08,691", - "created": 1609969748.691924, + "asctime": "2021-01-11 07:30:26,589", + "created": 1610346626.589504, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 691.9240951538086, + "msecs": 589.5040035247803, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11856.73999786377, - "thread": 140012350113600, + "relativeCreated": 12523.046016693115, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:08,692", - "created": 1609969748.692117, + "asctime": "2021-01-11 07:30:26,589", + "created": 1610346626.589731, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 692.1169757843018, + "msecs": 589.730978012085, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11856.932878494263, - "thread": 140012350113600, + "relativeCreated": 12523.27299118042, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:08,692", - "created": 1609969748.692307, + "asctime": "2021-01-11 07:30:26,590", + "created": 1610346626.59012, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 692.3069953918457, + "msecs": 590.1200771331787, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11857.122898101807, - "thread": 140012350113600, + "relativeCreated": 12523.662090301514, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:08,692", - "created": 1609969748.692471, + "asctime": "2021-01-11 07:30:26,590", + "created": 1610346626.590322, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 692.4710273742676, + "msecs": 590.3220176696777, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11857.286930084229, - "thread": 140012350113600, + "relativeCreated": 12523.864030838013, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:08,692", - "created": 1609969748.69264, + "asctime": "2021-01-11 07:30:26,590", + "created": 1610346626.590507, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 692.6400661468506, + "msecs": 590.5070304870605, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11857.455968856812, - "thread": 140012350113600, + "relativeCreated": 12524.049043655396, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:08,692", - "created": 1609969748.692812, + "asctime": "2021-01-11 07:30:26,590", + "created": 1610346626.590823, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 692.8119659423828, + "msecs": 590.8229351043701, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11857.627868652344, - "thread": 140012350113600, + "relativeCreated": 12524.364948272705, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:08,692", - "created": 1609969748.692998, + "asctime": "2021-01-11 07:30:26,590", + "created": 1610346626.590999, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 692.997932434082, + "msecs": 590.9988880157471, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11857.813835144043, - "thread": 140012350113600, + "relativeCreated": 12524.540901184082, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:08,693", - "created": 1609969748.693167, + "asctime": "2021-01-11 07:30:26,591", + "created": 1610346626.591172, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 693.166971206665, + "msecs": 591.1719799041748, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11857.982873916626, - "thread": 140012350113600, + "relativeCreated": 12524.71399307251, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:08,693", - "created": 1609969748.693339, + "asctime": "2021-01-11 07:30:26,591", + "created": 1610346626.591332, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 693.3391094207764, + "msecs": 591.331958770752, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11858.155012130737, - "thread": 140012350113600, + "relativeCreated": 12524.873971939087, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:08,693", - "created": 1609969748.693507, + "asctime": "2021-01-11 07:30:26,591", + "created": 1610346626.591523, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 693.5069561004639, + "msecs": 591.5229320526123, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11858.322858810425, - "thread": 140012350113600, + "relativeCreated": 12525.064945220947, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:26,592", + "created": 1610346626.592234, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 592.2338962554932, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12525.775909423828, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:26,592", + "created": 1610346626.592541, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 592.540979385376, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12526.082992553711, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:26,592", + "created": 1610346626.592817, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 592.8170680999756, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12526.35908126831, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:26,593", + "created": 1610346626.593032, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 593.0318832397461, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12526.573896408081, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:26,593", + "created": 1610346626.59327, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 593.2700634002686, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12526.812076568604, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:26,593", + "created": 1610346626.593476, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 593.4760570526123, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12527.018070220947, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:26,593", + "created": 1610346626.593688, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 593.6880111694336, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12527.230024337769, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:26,593", + "created": 1610346626.593944, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 593.9440727233887, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12527.486085891724, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:26,594", + "created": 1610346626.594143, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 594.1429138183594, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12527.684926986694, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:26,594", + "created": 1610346626.59432, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 594.3200588226318, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12527.862071990967, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:26,594", + "created": 1610346626.594481, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 594.4809913635254, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12528.02300453186, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:26,594", + "created": 1610346626.594677, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 594.6769714355469, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12528.218984603882, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:26,594", + "created": 1610346626.594916, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 594.9161052703857, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12528.45811843872, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:26,595", + "created": 1610346626.595128, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 595.128059387207, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12528.670072555542, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:26,595", + "created": 1610346626.595331, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 595.3309535980225, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12528.872966766357, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:26,595", + "created": 1610346626.595531, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 595.5309867858887, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12529.072999954224, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:26,595", + "created": 1610346626.595736, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 595.736026763916, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12529.278039932251, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:26,595", + "created": 1610346626.595939, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 595.9389209747314, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12529.480934143066, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:26,596", + "created": 1610346626.596117, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 596.1170196533203, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12529.659032821655, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:26,596", + "created": 1610346626.596299, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 596.2989330291748, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12529.84094619751, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 693.6719417572021, + "msecs": 596.4970588684082, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11858.487844467163, - "thread": 140012350113600, + "relativeCreated": 12530.039072036743, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00016498565673828125 + "time_consumption": 0.00019812583923339844 }, { "args": [], - "asctime": "2021-01-06 22:49:08,693", - "created": 1609969748.693937, + "asctime": "2021-01-11 07:30:26,941", + "created": 1610346626.941106, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:26,596", + "created": 1610346626.596894, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 596.8940258026123, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12530.436038970947, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:26,597", + "created": 1610346626.597071, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 597.0709323883057, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12530.61294555664, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:26,597", + "created": 1610346626.59723, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 597.2299575805664, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12530.771970748901, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:26,597", + "created": 1610346626.597489, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 597.4891185760498, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12531.031131744385, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:26,597", + "created": 1610346626.597762, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 597.7621078491211, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12531.304121017456, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:26,597", + "created": 1610346626.597853, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 597.8529453277588, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12531.394958496094, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:26,597", + "created": 1610346626.597942, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 597.9421138763428, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12531.484127044678, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:26,598", + "created": 1610346626.59817, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 598.1700420379639, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12531.712055206299, + "thread": 140633830303488, + "threadName": "Thread-17" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:26,598", + "created": 1610346626.598345, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 598.3450412750244, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12531.88705444336, + "thread": 140633830303488, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,598", + "created": 1610346626.598412, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 598.412036895752, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12531.954050064087, + "thread": 140633830303488, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:26,598", + "created": 1610346626.598467, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 598.4671115875244, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12532.00912475586, + "thread": 140633830303488, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,598", + "created": 1610346626.598543, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 598.5429286956787, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12532.084941864014, + "thread": 140633830303488, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,598", + "created": 1610346626.598597, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 598.5970497131348, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12532.13906288147, + "thread": 140633830303488, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,598", + "created": 1610346626.598675, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 598.675012588501, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12532.217025756836, + "thread": 140633830303488, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,598", + "created": 1610346626.598729, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 598.7288951873779, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12532.270908355713, + "thread": 140633830303488, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,598", + "created": 1610346626.5988, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 598.7999439239502, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12532.341957092285, + "thread": 140633830303488, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,598", + "created": 1610346626.598859, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 598.8590717315674, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12532.401084899902, + "thread": 140633830303488, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,598", + "created": 1610346626.598954, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 598.9539623260498, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12532.495975494385, + "thread": 140633830303488, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,599", + "created": 1610346626.599026, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 599.0259647369385, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12532.567977905273, + "thread": 140633830303488, + "threadName": "Thread-17" + }, + { + "args": [ + "comm-client:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:26,599", + "created": 1610346626.59913, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 599.1299152374268, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12532.671928405762, + "thread": 140633830303488, + "threadName": "Thread-17" + }, + { + "args": [ + "comm-server:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:26,599", + "created": 1610346626.599211, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 599.2109775543213, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12532.752990722656, + "thread": 140633830303488, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,599", + "created": 1610346626.599287, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 599.2870330810547, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12532.82904624939, + "thread": 140633830303488, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:26,599", + "created": 1610346626.599354, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 599.3540287017822, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12532.896041870117, + "thread": 140633830303488, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" + ], + "asctime": "2021-01-11 07:30:26,599", + "created": 1610346626.599493, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", + "module": "stp", + "msecs": 599.4930267333984, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12533.035039901733, + "thread": 140633830303488, + "threadName": "Thread-17" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:26,599", + "created": 1610346626.59964, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 599.639892578125, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12533.18190574646, + "thread": 140633830303488, + "threadName": "Thread-17" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:26,599", + "created": 1610346626.59973, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 599.7300148010254, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12533.27202796936, + "thread": 140633830303488, + "threadName": "Thread-17" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:26,599", + "created": 1610346626.59987, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 599.869966506958, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12533.411979675293, + "thread": 140633830303488, + "threadName": "Thread-17" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:26,607", + "created": 1610346626.607984, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 607.9840660095215, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12541.526079177856, + "thread": 140633821910784, + "threadName": "Thread-18" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:26,608", + "created": 1610346626.608183, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 608.1829071044922, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12541.724920272827, + "thread": 140633821910784, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,608", + "created": 1610346626.608288, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 608.288049697876, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12541.830062866211, + "thread": 140633821910784, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:26,608", + "created": 1610346626.608376, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 608.3760261535645, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12541.9180393219, + "thread": 140633821910784, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,608", + "created": 1610346626.608486, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 608.4859371185303, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12542.027950286865, + "thread": 140633821910784, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,608", + "created": 1610346626.608636, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 608.6359024047852, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12542.17791557312, + "thread": 140633821910784, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,608", + "created": 1610346626.608723, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 608.7229251861572, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12542.264938354492, + "thread": 140633821910784, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,608", + "created": 1610346626.608779, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 608.7789535522461, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12542.320966720581, + "thread": 140633821910784, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,608", + "created": 1610346626.608852, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 608.8519096374512, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12542.393922805786, + "thread": 140633821910784, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,608", + "created": 1610346626.608907, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 608.9069843292236, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12542.448997497559, + "thread": 140633821910784, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,608", + "created": 1610346626.608986, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 608.9859008789062, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12542.527914047241, + "thread": 140633821910784, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,609", + "created": 1610346626.609044, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 609.044075012207, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12542.586088180542, + "thread": 140633821910784, + "threadName": "Thread-18" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:26,609", + "created": 1610346626.609131, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 609.1310977935791, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12542.673110961914, + "thread": 140633821910784, + "threadName": "Thread-18" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:26,609", + "created": 1610346626.609197, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 609.1969013214111, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12542.738914489746, + "thread": 140633821910784, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,609", + "created": 1610346626.609258, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 609.2579364776611, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12542.799949645996, + "thread": 140633821910784, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:26,609", + "created": 1610346626.609315, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 609.3149185180664, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12542.856931686401, + "thread": 140633821910784, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:26,609", + "created": 1610346626.609436, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 609.43603515625, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12542.978048324585, + "thread": 140633821910784, + "threadName": "Thread-18" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:26,609", + "created": 1610346626.609628, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 609.6279621124268, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12543.169975280762, + "thread": 140633821910784, + "threadName": "Thread-18" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:26,609", + "created": 1610346626.609798, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 609.7979545593262, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12543.339967727661, + "thread": 140633821910784, + "threadName": "Thread-18" + } + ], + "msecs": 941.1060810089111, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12874.648094177246, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.33130812644958496 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:26,942", + "created": 1610346626.942583, "exc_info": null, "exc_text": null, "filename": "test_communication.py", "funcName": "add_service_existing_sid", "levelname": "DEBUG", "levelno": 10, - "lineno": 338, + "lineno": 334, "message": "Adding a service with an already registered request SID", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", 10, 18 ], - "asctime": "2021-01-06 22:49:08,693", - "created": 1609969748.693883, + "asctime": "2021-01-11 07:30:26,942", + "created": 1610346626.942271, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "ERROR", "levelno": 40, - "lineno": 551, - "message": "SP server: Service with Request-SID=10 and Response-SID=18 not added, because request SID is already registered", + "lineno": 568, + "message": "prot-server: Service with Request-SID=10 and Response-SID=18 not added, because request SID is already registered", "module": "__init__", - "msecs": 693.882942199707, + "msecs": 942.2709941864014, "msg": "%s Service with Request-SID=%d and Response-SID=%d not added, because request SID is already registered", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11858.698844909668, - "thread": 140012350113600, + "relativeCreated": 12875.813007354736, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 693.9370632171631, + "msecs": 942.5830841064453, "msg": "Adding a service with an already registered request SID", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11858.752965927124, - "thread": 140012350113600, + "relativeCreated": 12876.12509727478, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 5.412101745605469e-05 + "time_consumption": 0.0003120899200439453 }, { "args": [], - "asctime": "2021-01-06 22:49:08,694", - "created": 1609969748.694011, + "asctime": "2021-01-11 07:30:26,942", + "created": 1610346626.942939, "exc_info": null, "exc_text": null, "filename": "test_communication.py", "funcName": "add_service_existing_sid", "levelname": "INFO", "levelno": 20, - "lineno": 339, + "lineno": 335, "message": "Expected Exception RequestSidExistsError was triggered", "module": "test_communication", "moduleLogger": [], - "msecs": 694.0109729766846, + "msecs": 942.939043045044, "msg": "Expected Exception RequestSidExistsError was triggered", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11858.826875686646, - "thread": 140012350113600, + "relativeCreated": 12876.481056213379, + "thread": 140634736203584, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-06 22:49:08,694", - "created": 1609969748.694139, + "asctime": "2021-01-11 07:30:26,943", + "created": 1610346626.943526, "exc_info": null, "exc_text": null, "filename": "test_communication.py", "funcName": "add_service_existing_sid", "levelname": "DEBUG", "levelno": 10, - "lineno": 347, + "lineno": 343, "message": "Adding a service with an already registered response SID", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", 17, 11 ], - "asctime": "2021-01-06 22:49:08,694", - "created": 1609969748.694087, + "asctime": "2021-01-11 07:30:26,943", + "created": 1610346626.943294, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "ERROR", "levelno": 40, - "lineno": 554, - "message": "SP server: Service with Request-SID=17 and Response-SID=11 not added, because response SID is already registered", + "lineno": 571, + "message": "prot-server: Service with Request-SID=17 and Response-SID=11 not added, because response SID is already registered", "module": "__init__", - "msecs": 694.087028503418, + "msecs": 943.2940483093262, "msg": "%s Service with Request-SID=%d and Response-SID=%d not added, because response SID is already registered", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11858.902931213379, - "thread": 140012350113600, + "relativeCreated": 12876.836061477661, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 694.1390037536621, + "msecs": 943.526029586792, "msg": "Adding a service with an already registered response SID", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11858.954906463623, - "thread": 140012350113600, + "relativeCreated": 12877.068042755127, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 5.1975250244140625e-05 + "time_consumption": 0.0002319812774658203 }, { "args": [], - "asctime": "2021-01-06 22:49:08,694", - "created": 1609969748.69421, + "asctime": "2021-01-11 07:30:26,943", + "created": 1610346626.943983, "exc_info": null, "exc_text": null, "filename": "test_communication.py", "funcName": "add_service_existing_sid", "levelname": "INFO", "levelno": 20, - "lineno": 348, + "lineno": 344, "message": "Expected Exception ResponseSidExistsError was triggered", "module": "test_communication", "moduleLogger": [], - "msecs": 694.2100524902344, + "msecs": 943.9830780029297, "msg": "Expected Exception ResponseSidExistsError was triggered", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11859.025955200195, - "thread": 140012350113600, + "relativeCreated": 12877.525091171265, + "thread": 140634736203584, "threadName": "MainThread", "time_consumption": 0.0 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.008603096008300781, - "time_finished": "2021-01-06 22:49:08,694", - "time_start": "2021-01-06 22:49:08,685" + "time_consumption": 0.35952305793762207, + "time_finished": "2021-01-11 07:30:26,943", + "time_start": "2021-01-11 07:30:26,584" }, "_aA508E4gEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-06 22:49:09,764", - "created": 1609969749.764835, + "asctime": "2021-01-11 07:30:30,771", + "created": 1610346630.771472, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -26567,1805 +54498,2430 @@ "message": "_aA508E4gEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 764.8348808288574, + "msecs": 771.4719772338867, "msg": "_aA508E4gEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12929.650783538818, + "relativeCreated": 16705.01399040222, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:09,774", - "created": 1609969749.774849, + "asctime": "2021-01-11 07:30:30,785", + "created": 1610346630.785747, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:09,765", - "created": 1609969749.76572, + "asctime": "2021-01-11 07:30:30,772", + "created": 1610346630.772713, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 765.7198905944824, + "msecs": 772.7129459381104, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12930.535793304443, - "thread": 140012350113600, + "relativeCreated": 16706.254959106445, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:09,766", - "created": 1609969749.766217, + "asctime": "2021-01-11 07:30:30,773", + "created": 1610346630.773907, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 766.2169933319092, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 773.906946182251, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12931.03289604187, - "thread": 140012350113600, + "relativeCreated": 16707.448959350586, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:09,766", - "created": 1609969749.766638, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 766.6380405426025, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12931.453943252563, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:09,766", - "created": 1609969749.766981, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 766.9808864593506, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12931.796789169312, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:09,767", - "created": 1609969749.767225, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 767.2250270843506, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12932.040929794312, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:09,767", - "created": 1609969749.767498, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 767.4980163574219, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12932.313919067383, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:09,767", - "created": 1609969749.767995, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 767.9951190948486, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12932.81102180481, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:09,768", - "created": 1609969749.768447, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 768.4469223022461, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12933.262825012207, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:09,768", - "created": 1609969749.768822, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 768.8219547271729, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12933.637857437134, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:09,769", - "created": 1609969749.769158, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 769.157886505127, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12933.973789215088, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:09,771", - "created": 1609969749.77106, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 771.0599899291992, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12935.87589263916, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:09,771", - "created": 1609969749.771253, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 771.2531089782715, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12936.069011688232, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:09,771", - "created": 1609969749.771378, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 771.3780403137207, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12936.193943023682, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:09,771", - "created": 1609969749.771474, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 771.4738845825195, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12936.28978729248, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:09,771", - "created": 1609969749.771557, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 771.557092666626, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12936.372995376587, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:09,771", - "created": 1609969749.771627, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 771.6269493103027, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12936.442852020264, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:09,771", - "created": 1609969749.771689, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 771.6889381408691, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12936.50484085083, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:09,771", - "created": 1609969749.771747, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 771.7471122741699, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12936.56301498413, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:09,771", - "created": 1609969749.771798, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 771.7978954315186, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12936.61379814148, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:09,771", - "created": 1609969749.771854, + "asctime": "2021-01-11 07:30:30,774", + "created": 1610346630.774225, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 771.8539237976074, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 774.2249965667725, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12936.669826507568, - "thread": 140012350113600, + "relativeCreated": 16707.767009735107, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,772", - "created": 1609969749.772024, + "asctime": "2021-01-11 07:30:30,775", + "created": 1610346630.775112, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 772.0239162445068, + "msecs": 775.1119136810303, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12936.839818954468, - "thread": 140012350113600, + "relativeCreated": 16708.653926849365, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:09,772", - "created": 1609969749.772173, + "asctime": "2021-01-11 07:30:30,775", + "created": 1610346630.775396, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 772.1729278564453, + "msecs": 775.3961086273193, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12936.988830566406, - "thread": 140012350113600, + "relativeCreated": 16708.938121795654, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:09,772", - "created": 1609969749.772339, + "asctime": "2021-01-11 07:30:30,775", + "created": 1610346630.775722, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 772.3391056060791, + "msecs": 775.7220268249512, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12937.15500831604, - "thread": 140012350113600, + "relativeCreated": 16709.264039993286, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:09,772", - "created": 1609969749.772477, + "asctime": "2021-01-11 07:30:30,775", + "created": 1610346630.775963, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 772.4769115447998, + "msecs": 775.9630680084229, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12937.29281425476, - "thread": 140012350113600, + "relativeCreated": 16709.505081176758, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:09,772", - "created": 1609969749.772596, + "asctime": "2021-01-11 07:30:30,776", + "created": 1610346630.776191, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 772.5958824157715, + "msecs": 776.190996170044, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12937.411785125732, - "thread": 140012350113600, + "relativeCreated": 16709.73300933838, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:09,772", - "created": 1609969749.772742, + "asctime": "2021-01-11 07:30:30,776", + "created": 1610346630.776441, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 772.7420330047607, + "msecs": 776.4410972595215, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12937.557935714722, - "thread": 140012350113600, + "relativeCreated": 16709.983110427856, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:09,772", - "created": 1609969749.772872, + "asctime": "2021-01-11 07:30:30,776", + "created": 1610346630.776687, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 772.8719711303711, + "msecs": 776.6869068145752, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12937.687873840332, - "thread": 140012350113600, + "relativeCreated": 16710.22891998291, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:09,773", - "created": 1609969749.773009, + "asctime": "2021-01-11 07:30:30,776", + "created": 1610346630.77694, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 773.0090618133545, + "msecs": 776.940107345581, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12937.824964523315, - "thread": 140012350113600, + "relativeCreated": 16710.482120513916, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:09,773", - "created": 1609969749.773142, + "asctime": "2021-01-11 07:30:30,777", + "created": 1610346630.777181, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 773.1420993804932, + "msecs": 777.1809101104736, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12937.958002090454, - "thread": 140012350113600, + "relativeCreated": 16710.72292327881, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:09,773", - "created": 1609969749.773271, + "asctime": "2021-01-11 07:30:30,777", + "created": 1610346630.777421, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 773.2710838317871, + "msecs": 777.4209976196289, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12938.086986541748, - "thread": 140012350113600, + "relativeCreated": 16710.963010787964, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,773", - "created": 1609969749.773413, + "asctime": "2021-01-11 07:30:30,777", + "created": 1610346630.777679, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 773.4129428863525, + "msecs": 777.6789665222168, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12938.228845596313, - "thread": 140012350113600, + "relativeCreated": 16711.22097969055, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:09,773", - "created": 1609969749.773559, + "asctime": "2021-01-11 07:30:30,777", + "created": 1610346630.777923, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 773.5590934753418, + "msecs": 777.9231071472168, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12938.374996185303, - "thread": 140012350113600, + "relativeCreated": 16711.46512031555, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:09,773", - "created": 1609969749.773696, + "asctime": "2021-01-11 07:30:30,778", + "created": 1610346630.778226, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 773.6959457397461, + "msecs": 778.2258987426758, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12938.511848449707, - "thread": 140012350113600, + "relativeCreated": 16711.76791191101, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:09,773", - "created": 1609969749.773876, + "asctime": "2021-01-11 07:30:30,778", + "created": 1610346630.778647, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 773.8759517669678, + "msecs": 778.6469459533691, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12938.691854476929, - "thread": 140012350113600, + "relativeCreated": 16712.188959121704, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:09,774", - "created": 1609969749.774016, + "asctime": "2021-01-11 07:30:30,778", + "created": 1610346630.778855, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 774.0159034729004, + "msecs": 778.8550853729248, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12938.831806182861, - "thread": 140012350113600, + "relativeCreated": 16712.39709854126, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:09,774", - "created": 1609969749.774146, + "asctime": "2021-01-11 07:30:30,779", + "created": 1610346630.779059, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 774.1460800170898, + "msecs": 779.0589332580566, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12938.96198272705, - "thread": 140012350113600, + "relativeCreated": 16712.60094642639, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:09,774", - "created": 1609969749.774274, + "asctime": "2021-01-11 07:30:30,779", + "created": 1610346630.77924, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 774.2741107940674, + "msecs": 779.2398929595947, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12939.090013504028, - "thread": 140012350113600, + "relativeCreated": 16712.78190612793, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:09,774", - "created": 1609969749.774411, + "asctime": "2021-01-11 07:30:30,779", + "created": 1610346630.779395, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 774.4109630584717, + "msecs": 779.3951034545898, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12939.226865768433, - "thread": 140012350113600, + "relativeCreated": 16712.937116622925, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:09,774", - "created": 1609969749.774561, + "asctime": "2021-01-11 07:30:30,779", + "created": 1610346630.77966, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 774.5609283447266, + "msecs": 779.6599864959717, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12939.376831054688, - "thread": 140012350113600, + "relativeCreated": 16713.201999664307, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,774", - "created": 1609969749.774707, + "asctime": "2021-01-11 07:30:30,779", + "created": 1610346630.779854, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 774.7070789337158, + "msecs": 779.8540592193604, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12939.522981643677, - "thread": 140012350113600, + "relativeCreated": 16713.396072387695, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:30,784", + "created": 1610346630.784144, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 784.1439247131348, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16717.68593788147, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:30,784", + "created": 1610346630.784284, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 784.2841148376465, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16717.82612800598, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:30,784", + "created": 1610346630.784402, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 784.4018936157227, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16717.943906784058, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:30,784", + "created": 1610346630.784492, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 784.492015838623, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16718.034029006958, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:30,784", + "created": 1610346630.784587, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 784.5869064331055, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16718.12891960144, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:30,784", + "created": 1610346630.78466, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 784.6601009368896, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16718.202114105225, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:30,784", + "created": 1610346630.78474, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 784.7399711608887, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16718.281984329224, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:30,784", + "created": 1610346630.784821, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 784.8210334777832, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16718.363046646118, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:30,784", + "created": 1610346630.784896, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 784.8958969116211, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16718.437910079956, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:30,784", + "created": 1610346630.784975, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 784.9750518798828, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16718.517065048218, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:30,785", + "created": 1610346630.785039, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 785.038948059082, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16718.580961227417, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:30,785", + "created": 1610346630.785119, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 785.1190567016602, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16718.661069869995, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:30,785", + "created": 1610346630.785197, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 785.1970195770264, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16718.73903274536, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:30,785", + "created": 1610346630.785266, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 785.2659225463867, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16718.80793571472, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:30,785", + "created": 1610346630.785336, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 785.3360176086426, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16718.878030776978, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:30,785", + "created": 1610346630.785405, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 785.4049205780029, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16718.946933746338, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:30,785", + "created": 1610346630.785482, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 785.4819297790527, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16719.023942947388, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:30,785", + "created": 1610346630.785547, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 785.5470180511475, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16719.089031219482, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:30,785", + "created": 1610346630.785612, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 785.6121063232422, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16719.154119491577, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:30,785", + "created": 1610346630.785679, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 785.6791019439697, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16719.221115112305, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 774.8489379882812, + "msecs": 785.7470512390137, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12939.664840698242, - "thread": 140012350113600, + "relativeCreated": 16719.28906440735, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0001418590545654297 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,775", - "created": 1609969749.775398, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,775", - "created": 1609969749.775134, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client connection status): False ()", - "module": "test", - "msecs": 775.1340866088867, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12939.949989318848, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "Client connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,775", - "created": 1609969749.77527, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client connection status): result = False ()", - "module": "test", - "msecs": 775.2699851989746, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12940.085887908936, - "thread": 140012350113600, - "threadName": "MainThread" - } - ], - "msecs": 775.3980159759521, - "msg": "Client connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12940.213918685913, - "thread": 140012350113600, - "threadName": "MainThread", - "time_consumption": 0.00012803077697753906 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,775", - "created": 1609969749.77587, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,775", - "created": 1609969749.775627, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server connection status): False ()", - "module": "test", - "msecs": 775.6268978118896, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12940.44280052185, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "Server connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,775", - "created": 1609969749.775749, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server connection status): result = False ()", - "module": "test", - "msecs": 775.7489681243896, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12940.56487083435, - "thread": 140012350113600, - "threadName": "MainThread" - } - ], - "msecs": 775.8700847625732, - "msg": "Server connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12940.685987472534, - "thread": 140012350113600, - "threadName": "MainThread", - "time_consumption": 0.00012111663818359375 + "time_consumption": 6.794929504394531e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:09,778", - "created": 1609969749.778593, + "asctime": "2021-01-11 07:30:31,129", + "created": 1610346631.129525, "exc_info": null, "exc_text": null, - "filename": "test_add_methods.py", - "funcName": "connection_established", + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 11, - "message": "Connecting Client", - "module": "test_add_methods", + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP client:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:09,776", - "created": 1609969749.776068, + "asctime": "2021-01-11 07:30:30,785", + "created": 1610346630.785924, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 785.923957824707, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16719.465970993042, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:30,785", + "created": 1610346630.785995, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 785.9950065612793, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16719.537019729614, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:30,786", + "created": 1610346630.786058, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 776.0679721832275, + "msecs": 786.0579490661621, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12940.883874893188, - "thread": 140012350113600, + "relativeCreated": 16719.599962234497, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: channel name request, data_id: name", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:09,776", - "created": 1609969749.776241, + "asctime": "2021-01-11 07:30:30,786", + "created": 1610346630.786173, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 776.2410640716553, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 786.1731052398682, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12941.056966781616, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,776", - "created": 1609969749.776597, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", - "module": "test_helpers", - "msecs": 776.5970230102539, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12941.412925720215, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,776", - "created": 1609969749.7768, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", - "module": "test_helpers", - "msecs": 776.7999172210693, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12941.61581993103, - "thread": 140012350113600, + "relativeCreated": 16719.715118408203, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-server:" + ], + "asctime": "2021-01-11 07:30:30,786", + "created": 1610346630.786384, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 786.384105682373, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16719.926118850708, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:30,786", + "created": 1610346630.786458, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 786.4580154418945, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16720.00002861023, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:30,786", + "created": 1610346630.786526, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 786.5259647369385, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16720.067977905273, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:30,792", + "created": 1610346630.792205, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 792.2050952911377, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16725.747108459473, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:30,792", + "created": 1610346630.792498, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 792.4981117248535, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16726.04012489319, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,792", + "created": 1610346630.792618, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 792.6180362701416, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16726.160049438477, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:30,792", + "created": 1610346630.792726, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 792.7260398864746, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16726.26805305481, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,792", + "created": 1610346630.792862, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 792.8619384765625, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16726.403951644897, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,792", + "created": 1610346630.792964, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 792.963981628418, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16726.505994796753, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,793", + "created": 1610346630.793108, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 793.1079864501953, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16726.64999961853, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,793", + "created": 1610346630.793215, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 793.2150363922119, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16726.757049560547, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,793", + "created": 1610346630.793343, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 793.3430671691895, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16726.885080337524, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,793", + "created": 1610346630.793474, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 793.4739589691162, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16727.01597213745, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,793", + "created": 1610346630.79361, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 793.6100959777832, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16727.152109146118, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,793", + "created": 1610346630.793702, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 793.7018871307373, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16727.243900299072, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-client:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:30,793", + "created": 1610346630.793848, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 793.8480377197266, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16727.39005088806, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:30,794", + "created": 1610346630.79401, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 794.0099239349365, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16727.55193710327, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,794", + "created": 1610346630.794107, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 794.1069602966309, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16727.648973464966, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:30,794", + "created": 1610346630.794175, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 794.1749095916748, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16727.71692276001, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" + ], + "asctime": "2021-01-11 07:30:30,794", + "created": 1610346630.794315, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", + "module": "stp", + "msecs": 794.3150997161865, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16727.85711288452, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: channel name request, data_id: name", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:09,777", - "created": 1609969749.777134, + "asctime": "2021-01-11 07:30:30,794", + "created": 1610346630.794486, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 777.1339416503906, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 794.4860458374023, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12941.949844360352, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 16728.028059005737, + "thread": 140632773347072, + "threadName": "Thread-29" }, { "args": [ - "SP server:", + "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-06 22:49:09,777", - "created": 1609969749.777298, + "asctime": "2021-01-11 07:30:30,794", + "created": 1610346630.79458, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __channel_name_request__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 777.2979736328125, - "msg": "%s RX <- Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12942.113876342773, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:09,777", - "created": 1609969749.77746, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 777.4600982666016, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12942.276000976562, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,777", - "created": 1609969749.777764, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "module": "test_helpers", - "msecs": 777.764081954956, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12942.579984664917, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,778", - "created": 1609969749.778008, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "module": "test_helpers", - "msecs": 778.007984161377, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12942.823886871338, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:09,778", - "created": 1609969749.778271, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 778.270959854126, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12943.086862564087, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "__channel_name_response__" - ], - "asctime": "2021-01-06 22:49:09,778", - "created": 1609969749.77844, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 778.439998626709, + "msecs": 794.5799827575684, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12943.25590133667, - "thread": 140012350113600, - "threadName": "MainThread" - } - ], - "msecs": 778.5930633544922, - "msg": "Connecting Client", - "name": "__tLogger__", - "pathname": "src/tests/test_add_methods.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12943.408966064453, - "thread": 140012350113600, - "threadName": "MainThread", - "time_consumption": 0.00015306472778320312 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-01-06 22:49:09,779", - "created": 1609969749.779073, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client connection status", - "True", - "" - ], - "asctime": "2021-01-06 22:49:09,778", - "created": 1609969749.778827, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client connection status): True ()", - "module": "test", - "msecs": 778.8269519805908, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12943.642854690552, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 16728.121995925903, + "thread": 140632773347072, + "threadName": "Thread-29" }, { "args": [ - "Client connection status", - "True", - "" + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" ], - "asctime": "2021-01-06 22:49:09,778", - "created": 1609969749.778954, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client connection status): result = True ()", - "module": "test", - "msecs": 778.954029083252, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12943.769931793213, - "thread": 140012350113600, - "threadName": "MainThread" - } - ], - "msecs": 779.0729999542236, - "msg": "Client connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12943.888902664185, - "thread": 140012350113600, - "threadName": "MainThread", - "time_consumption": 0.00011897087097167969 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,779", - "created": 1609969749.779555, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,779", - "created": 1609969749.779307, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server connection status): False ()", - "module": "test", - "msecs": 779.3068885803223, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12944.122791290283, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "Server connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,779", - "created": 1609969749.779422, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server connection status): result = False ()", - "module": "test", - "msecs": 779.4220447540283, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12944.23794746399, - "thread": 140012350113600, - "threadName": "MainThread" - } - ], - "msecs": 779.555082321167, - "msg": "Server connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12944.370985031128, - "thread": 140012350113600, - "threadName": "MainThread", - "time_consumption": 0.00013303756713867188 - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,779", - "created": 1609969749.779868, - "exc_info": null, - "exc_text": null, - "filename": "test_add_methods.py", - "funcName": "connection_established", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 15, - "message": "Connecting Server", - "module": "test_add_methods", - "moduleLogger": [ - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:09,779", - "created": 1609969749.779729, + "asctime": "2021-01-11 07:30:30,794", + "created": 1610346630.794694, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 779.728889465332, - "msg": "%s Cleaning up receive-buffer", + "msecs": 794.6939468383789, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12944.544792175293, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 16728.235960006714, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:30,798", + "created": 1610346630.798865, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 798.8650798797607, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16732.407093048096, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:30,799", + "created": 1610346630.799058, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 799.0579605102539, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16732.59997367859, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,799", + "created": 1610346630.799136, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 799.1359233856201, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16732.677936553955, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:30,799", + "created": 1610346630.799248, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 799.2479801177979, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16732.789993286133, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,799", + "created": 1610346630.799386, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 799.3860244750977, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16732.928037643433, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,799", + "created": 1610346630.799483, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 799.483060836792, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16733.025074005127, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,799", + "created": 1610346630.799624, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 799.623966217041, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16733.165979385376, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,799", + "created": 1610346630.799721, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 799.7210025787354, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16733.26301574707, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,799", + "created": 1610346630.799845, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 799.8449802398682, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16733.386993408203, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,799", + "created": 1610346630.799913, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 799.9129295349121, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16733.454942703247, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,800", + "created": 1610346630.800003, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 800.0030517578125, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16733.545064926147, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,800", + "created": 1610346630.800068, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 800.0679016113281, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16733.609914779663, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:30,800", + "created": 1610346630.800167, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 800.1670837402344, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16733.70909690857, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:30,800", + "created": 1610346630.80025, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 800.2500534057617, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16733.792066574097, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,800", + "created": 1610346630.800325, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 800.3249168395996, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16733.866930007935, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:30,800", + "created": 1610346630.800392, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 800.3919124603271, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16733.933925628662, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:30,800", + "created": 1610346630.800531, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 800.5309104919434, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16734.07292366028, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:30,800", + "created": 1610346630.800687, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 800.6870746612549, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16734.22908782959, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:30,800", + "created": 1610346630.800776, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 800.7760047912598, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16734.318017959595, + "thread": 140632764954368, + "threadName": "Thread-30" } ], - "msecs": 779.8678874969482, - "msg": "Connecting Server", + "msecs": 129.52494621276855, + "msg": "Connecting Server and Client", "name": "__tLogger__", - "pathname": "src/tests/test_add_methods.py", - "process": 125831, + "pathname": "src/tests/test_helpers.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12944.68379020691, - "thread": 140012350113600, + "relativeCreated": 17063.066959381104, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00013899803161621094 + "time_consumption": 0.3287489414215088 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:09,780", - "created": 1609969749.780319, + "asctime": "2021-01-11 07:30:31,130", + "created": 1610346631.130713, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28382,8 +56938,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:09,780", - "created": 1609969749.780073, + "asctime": "2021-01-11 07:30:31,130", + "created": 1610346631.130184, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28393,14 +56949,14 @@ "lineno": 22, "message": "Result (Client connection status): True ()", "module": "test", - "msecs": 780.0729274749756, + "msecs": 130.18393516540527, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12944.888830184937, - "thread": 140012350113600, + "relativeCreated": 17063.72594833374, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -28409,8 +56965,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:09,780", - "created": 1609969749.780177, + "asctime": "2021-01-11 07:30:31,130", + "created": 1610346631.130443, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28420,35 +56976,35 @@ "lineno": 26, "message": "Expectation (Client connection status): result = True ()", "module": "test", - "msecs": 780.177116394043, + "msecs": 130.44309616088867, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12944.993019104004, - "thread": 140012350113600, + "relativeCreated": 17063.985109329224, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 780.3189754486084, + "msecs": 130.71298599243164, "msg": "Client connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12945.13487815857, - "thread": 140012350113600, + "relativeCreated": 17064.254999160767, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0001418590545654297 + "time_consumption": 0.00026988983154296875 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:09,780", - "created": 1609969749.780538, + "asctime": "2021-01-11 07:30:31,131", + "created": 1610346631.131926, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28465,8 +57021,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:09,780", - "created": 1609969749.780419, + "asctime": "2021-01-11 07:30:31,131", + "created": 1610346631.131149, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28476,14 +57032,14 @@ "lineno": 22, "message": "Result (Server connection status): True ()", "module": "test", - "msecs": 780.419111251831, + "msecs": 131.1490535736084, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12945.235013961792, - "thread": 140012350113600, + "relativeCreated": 17064.691066741943, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -28492,8 +57048,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:09,780", - "created": 1609969749.780462, + "asctime": "2021-01-11 07:30:31,131", + "created": 1610346631.131694, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28503,50 +57059,1722 @@ "lineno": 26, "message": "Expectation (Server connection status): result = True ()", "module": "test", - "msecs": 780.4620265960693, + "msecs": 131.69407844543457, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12945.27792930603, - "thread": 140012350113600, + "relativeCreated": 17065.23609161377, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 780.5380821228027, + "msecs": 131.9260597229004, "msg": "Server connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12945.353984832764, - "thread": 140012350113600, + "relativeCreated": 17065.468072891235, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 7.605552673339844e-05 + "time_consumption": 0.0002319812774658203 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2021-01-11 07:30:31,134", + "created": 1610346631.134072, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 144, + "message": "Client connection status is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:31,132", + "created": 1610346631.132569, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 132.5690746307373, + "msg": "%s Connection Lost...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17066.111087799072, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:31,132", + "created": 1610346631.132877, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 132.87711143493652, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17066.41912460327, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:31,133", + "created": 1610346631.133238, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 133.2380771636963, + "msg": "%s Connection Lost...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17066.78009033203, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:31,133", + "created": 1610346631.133485, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 133.4850788116455, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17067.02709197998, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "Client connection status", + "False", + "" + ], + "asctime": "2021-01-11 07:30:31,133", + "created": 1610346631.13371, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Client connection status): False ()", + "module": "test", + "msecs": 133.70990753173828, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17067.251920700073, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "Client connection status", + "False", + "" + ], + "asctime": "2021-01-11 07:30:31,133", + "created": 1610346631.133939, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Client connection status): result = False ()", + "module": "test", + "msecs": 133.93902778625488, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17067.48104095459, + "thread": 140634736203584, + "threadName": "MainThread" + } + ], + "msecs": 134.07206535339355, + "msg": "Client connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17067.61407852173, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.00013303756713867188 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2021-01-11 07:30:31,134", + "created": 1610346631.134674, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 144, + "message": "Server connection status is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Server connection status", + "False", + "" + ], + "asctime": "2021-01-11 07:30:31,134", + "created": 1610346631.134354, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Server connection status): False ()", + "module": "test", + "msecs": 134.3541145324707, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17067.896127700806, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "Server connection status", + "False", + "" + ], + "asctime": "2021-01-11 07:30:31,134", + "created": 1610346631.134514, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Server connection status): result = False ()", + "module": "test", + "msecs": 134.51409339904785, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17068.056106567383, + "thread": 140634736203584, + "threadName": "MainThread" + } + ], + "msecs": 134.674072265625, + "msg": "Server connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17068.21608543396, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.00015997886657714844 }, { "args": [], - "asctime": "2021-01-06 22:49:09,780", - "created": 1609969749.7806, + "asctime": "2021-01-11 07:30:31,479", + "created": 1610346631.479914, "exc_info": null, "exc_text": null, "filename": "test_add_methods.py", "funcName": "connection_established", "levelname": "DEBUG", "levelno": 10, - "lineno": 21, + "lineno": 19, + "message": "Connecting Server and Client", + "module": "test_add_methods", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:31,134", + "created": 1610346631.134934, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 134.9339485168457, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17068.47596168518, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:31,135", + "created": 1610346631.135121, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 135.12110710144043, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17068.663120269775, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:31,135", + "created": 1610346631.135304, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 135.30397415161133, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17068.845987319946, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:31,135", + "created": 1610346631.13557, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 135.57004928588867, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17069.112062454224, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:31,136", + "created": 1610346631.13617, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 136.1699104309082, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17069.711923599243, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:31,136", + "created": 1610346631.136387, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 136.38710975646973, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17069.929122924805, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:31,136", + "created": 1610346631.136582, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 136.5818977355957, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17070.12391090393, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:31,160", + "created": 1610346631.160166, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 160.16602516174316, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17093.708038330078, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:31,160", + "created": 1610346631.160656, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 160.65597534179688, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17094.197988510132, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,160", + "created": 1610346631.160811, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 160.8109474182129, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17094.352960586548, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:31,160", + "created": 1610346631.160933, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 160.9330177307129, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17094.475030899048, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,161", + "created": 1610346631.161127, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 161.12709045410156, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17094.669103622437, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,161", + "created": 1610346631.161291, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 161.29088401794434, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17094.83289718628, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,161", + "created": 1610346631.161635, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 161.6349220275879, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17095.176935195923, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,161", + "created": 1610346631.161814, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 161.81397438049316, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17095.355987548828, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,162", + "created": 1610346631.162029, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 162.02902793884277, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17095.571041107178, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,162", + "created": 1610346631.162229, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 162.22906112670898, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17095.771074295044, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,162", + "created": 1610346631.162519, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 162.51897811889648, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17096.06099128723, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,162", + "created": 1610346631.162689, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 162.6889705657959, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17096.23098373413, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-client:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:31,162", + "created": 1610346631.162956, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 162.95599937438965, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17096.498012542725, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:31,163", + "created": 1610346631.163206, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 163.2061004638672, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17096.748113632202, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,163", + "created": 1610346631.163423, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 163.4230613708496, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17096.965074539185, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:31,163", + "created": 1610346631.163601, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 163.60092163085938, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17097.142934799194, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" + ], + "asctime": "2021-01-11 07:30:31,163", + "created": 1610346631.16393, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", + "module": "stp", + "msecs": 163.92993927001953, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17097.471952438354, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:31,164", + "created": 1610346631.164253, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 164.25299644470215, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17097.795009613037, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:31,164", + "created": 1610346631.164424, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 164.42394256591797, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17097.965955734253, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:31,164", + "created": 1610346631.164654, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 164.65401649475098, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17098.196029663086, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:31,166", + "created": 1610346631.166043, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 166.04304313659668, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17099.58505630493, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:31,166", + "created": 1610346631.166208, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 166.20802879333496, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17099.75004196167, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,166", + "created": 1610346631.166288, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 166.28789901733398, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17099.82991218567, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:31,166", + "created": 1610346631.166381, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 166.3808822631836, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17099.92289543152, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,166", + "created": 1610346631.166504, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 166.50390625, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17100.045919418335, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,166", + "created": 1610346631.166598, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 166.59808158874512, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17100.14009475708, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,166", + "created": 1610346631.166737, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 166.73707962036133, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17100.279092788696, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,166", + "created": 1610346631.166838, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 166.8379306793213, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17100.379943847656, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,166", + "created": 1610346631.166956, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 166.95594787597656, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17100.49796104431, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,167", + "created": 1610346631.167056, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 167.05608367919922, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17100.598096847534, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,167", + "created": 1610346631.167179, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 167.17910766601562, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17100.72112083435, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,167", + "created": 1610346631.167246, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 167.24610328674316, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17100.788116455078, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:31,167", + "created": 1610346631.167379, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 167.37890243530273, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17100.920915603638, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:31,167", + "created": 1610346631.167505, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 167.50502586364746, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17101.047039031982, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,167", + "created": 1610346631.16758, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 167.57988929748535, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17101.12190246582, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:31,167", + "created": 1610346631.167642, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 167.64211654663086, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17101.184129714966, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:31,167", + "created": 1610346631.167779, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 167.77896881103516, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17101.32098197937, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:31,167", + "created": 1610346631.167925, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 167.9248809814453, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17101.46689414978, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:31,168", + "created": 1610346631.168028, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 168.0281162261963, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17101.57012939453, + "thread": 140632764954368, + "threadName": "Thread-30" + } + ], + "msecs": 479.91394996643066, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_add_methods.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17413.455963134766, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.3118858337402344 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2021-01-11 07:30:31,481", + "created": 1610346631.481616, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 144, + "message": "Client connection status is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Client connection status", + "True", + "" + ], + "asctime": "2021-01-11 07:30:31,481", + "created": 1610346631.481026, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Client connection status): True ()", + "module": "test", + "msecs": 481.02593421936035, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17414.567947387695, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "Client connection status", + "True", + "" + ], + "asctime": "2021-01-11 07:30:31,481", + "created": 1610346631.481311, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Client connection status): result = True ()", + "module": "test", + "msecs": 481.3110828399658, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17414.8530960083, + "thread": 140634736203584, + "threadName": "MainThread" + } + ], + "msecs": 481.6160202026367, + "msg": "Client connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17415.15803337097, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.00030493736267089844 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2021-01-11 07:30:31,482", + "created": 1610346631.482722, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 144, + "message": "Server connection status is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Server connection status", + "True", + "" + ], + "asctime": "2021-01-11 07:30:31,482", + "created": 1610346631.482067, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Server connection status): True ()", + "module": "test", + "msecs": 482.0671081542969, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17415.609121322632, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "Server connection status", + "True", + "" + ], + "asctime": "2021-01-11 07:30:31,482", + "created": 1610346631.482453, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Server connection status): result = True ()", + "module": "test", + "msecs": 482.4531078338623, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17415.995121002197, + "thread": 140634736203584, + "threadName": "MainThread" + } + ], + "msecs": 482.72204399108887, + "msg": "Server connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17416.264057159424, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.0002689361572265625 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:31,483", + "created": 1610346631.483094, + "exc_info": null, + "exc_text": null, + "filename": "test_add_methods.py", + "funcName": "connection_established", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, "message": "Adding secrets to socket_protocol", "module": "test_add_methods", "moduleLogger": [], - "msecs": 780.6000709533691, + "msecs": 483.0939769744873, "msg": "Adding secrets to socket_protocol", "name": "__tLogger__", "pathname": "src/tests/test_add_methods.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12945.41597366333, - "thread": 140012350113600, + "relativeCreated": 17416.635990142822, + "thread": 140634736203584, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -28555,8 +58783,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:09,780", - "created": 1609969749.780745, + "asctime": "2021-01-11 07:30:31,483", + "created": 1610346631.483708, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28573,8 +58801,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:09,780", - "created": 1609969749.780665, + "asctime": "2021-01-11 07:30:31,483", + "created": 1610346631.483381, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28584,14 +58812,14 @@ "lineno": 22, "message": "Result (Client connection status): False ()", "module": "test", - "msecs": 780.6649208068848, + "msecs": 483.3810329437256, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12945.480823516846, - "thread": 140012350113600, + "relativeCreated": 17416.92304611206, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -28600,8 +58828,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:09,780", - "created": 1609969749.780705, + "asctime": "2021-01-11 07:30:31,483", + "created": 1610346631.483546, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28611,35 +58839,35 @@ "lineno": 26, "message": "Expectation (Client connection status): result = False ()", "module": "test", - "msecs": 780.7049751281738, + "msecs": 483.54601860046387, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12945.520877838135, - "thread": 140012350113600, + "relativeCreated": 17417.0880317688, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 780.7450294494629, + "msecs": 483.7079048156738, "msg": "Client connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12945.560932159424, - "thread": 140012350113600, + "relativeCreated": 17417.24991798401, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 4.00543212890625e-05 + "time_consumption": 0.00016188621520996094 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:09,780", - "created": 1609969749.780892, + "asctime": "2021-01-11 07:30:31,484", + "created": 1610346631.48427, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28656,8 +58884,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:09,780", - "created": 1609969749.780812, + "asctime": "2021-01-11 07:30:31,483", + "created": 1610346631.483961, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28667,14 +58895,14 @@ "lineno": 22, "message": "Result (Server connection status): False ()", "module": "test", - "msecs": 780.8120250701904, + "msecs": 483.9611053466797, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12945.627927780151, - "thread": 140012350113600, + "relativeCreated": 17417.503118515015, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -28683,8 +58911,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:09,780", - "created": 1609969749.780852, + "asctime": "2021-01-11 07:30:31,484", + "created": 1610346631.484117, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28694,598 +58922,2370 @@ "lineno": 26, "message": "Expectation (Server connection status): result = False ()", "module": "test", - "msecs": 780.8520793914795, + "msecs": 484.1170310974121, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12945.66798210144, - "thread": 140012350113600, + "relativeCreated": 17417.659044265747, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 780.8918952941895, + "msecs": 484.2700958251953, "msg": "Server connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12945.70779800415, - "thread": 140012350113600, + "relativeCreated": 17417.81210899353, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 3.981590270996094e-05 + "time_consumption": 0.00015306472778320312 }, { "args": [], - "asctime": "2021-01-06 22:49:09,883", - "created": 1609969749.883352, + "asctime": "2021-01-11 07:30:31,685", + "created": 1610346631.685359, "exc_info": null, "exc_text": null, "filename": "test_add_methods.py", "funcName": "connection_established", "levelname": "DEBUG", "levelno": 10, - "lineno": 26, + "lineno": 31, "message": "Doing authentification", "module": "test_add_methods", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:09,780", - "created": 1609969749.780965, + "asctime": "2021-01-11 07:30:31,484", + "created": 1610346631.484651, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 445, + "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 780.9650897979736, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 484.6510887145996, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12945.780992507935, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,781", - "created": 1609969749.781084, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "module": "test_helpers", - "msecs": 781.0840606689453, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12945.899963378906, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,781", - "created": 1609969749.781173, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "module": "test_helpers", - "msecs": 781.1729907989502, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12945.988893508911, - "thread": 140012350113600, + "relativeCreated": 17418.193101882935, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:31,499", + "created": 1610346631.499073, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 499.0730285644531, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17432.615041732788, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:31,499", + "created": 1610346631.499504, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 499.50408935546875, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17433.046102523804, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,499", + "created": 1610346631.499684, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 499.68409538269043, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17433.226108551025, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:31,499", + "created": 1610346631.499814, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 499.8140335083008, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17433.356046676636, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,499", + "created": 1610346631.499972, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 499.9721050262451, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17433.51411819458, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,500", + "created": 1610346631.500098, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 500.09799003601074, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17433.640003204346, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,500", + "created": 1610346631.500268, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 500.26798248291016, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17433.809995651245, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,500", + "created": 1610346631.500382, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 500.3819465637207, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17433.923959732056, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,500", + "created": 1610346631.500524, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 500.52404403686523, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17434.0660572052, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,500", + "created": 1610346631.500636, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 500.63610076904297, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17434.178113937378, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,500", + "created": 1610346631.500822, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 500.8220672607422, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17434.364080429077, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,501", + "created": 1610346631.501018, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 501.0180473327637, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17434.5600605011, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-client:", + "(6): 10 4d cd 55 3a 3e" + ], + "asctime": "2021-01-11 07:30:31,501", + "created": 1610346631.501319, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 10 4d cd 55 3a 3e", + "module": "__init__", + "msecs": 501.31893157958984, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17434.860944747925, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(6): 10 4d cd 55 3a 3e" + ], + "asctime": "2021-01-11 07:30:31,501", + "created": 1610346631.501476, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 10 4d cd 55 3a 3e", + "module": "__init__", + "msecs": 501.4760494232178, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17435.018062591553, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,501", + "created": 1610346631.501615, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 501.615047454834, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17435.15706062317, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:31,501", + "created": 1610346631.501753, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 501.7530918121338, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17435.29510498047, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55" + ], + "asctime": "2021-01-11 07:30:31,502", + "created": 1610346631.502039, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", + "module": "stp", + "msecs": 502.03895568847656, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17435.58096885681, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:09,781", - "created": 1609969749.781259, + "asctime": "2021-01-11 07:30:31,502", + "created": 1610346631.502393, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 445, + "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 781.2590599060059, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 502.3930072784424, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12946.074962615967, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 17435.935020446777, + "thread": 140632773347072, + "threadName": "Thread-29" }, { "args": [ - "SP server:", + "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-06 22:49:09,781", - "created": 1609969749.781315, + "asctime": "2021-01-11 07:30:31,502", + "created": 1610346631.502582, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __authentificate_create_seed__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 781.3150882720947, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 502.5820732116699, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12946.130990982056, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 17436.124086380005, + "thread": 140632773347072, + "threadName": "Thread-29" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: authentification response, data_id: seed", "status: okay", - "'1028eb0571fc1cf0706cfb1a55feb927b9ace9be360493f7fde36f10254157b2'" + "'e22f889412d66ee4907818c0174e70db4afbd7e27fe16e5e6208c648d0539024'" ], - "asctime": "2021-01-06 22:49:09,781", - "created": 1609969749.781383, + "asctime": "2021-01-11 07:30:31,502", + "created": 1610346631.502866, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: authentification response, data_id: seed, status: okay, data: \"'1028eb0571fc1cf0706cfb1a55feb927b9ace9be360493f7fde36f10254157b2'\"", + "lineno": 445, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'e22f889412d66ee4907818c0174e70db4afbd7e27fe16e5e6208c648d0539024'\"", "module": "__init__", - "msecs": 781.3830375671387, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 502.8660297393799, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12946.1989402771, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,781", - "created": 1609969749.781557, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 31 30 32 38 65 62 30 35 37 31 66 63 31 63 66 30 37 30 36 63 66 62 31 61 35 35 66 65 62 39 32 37 62 39 61 63 65 39 62 65 33 36 30 34 39 33 66 37 66 64 65 33 36 66 31 30 32 35 34 31 35 37 62 32 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 30 3b c6 e3", - "module": "test_helpers", - "msecs": 781.5570831298828, - "msg": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 31 30 32 38 65 62 30 35 37 31 66 63 31 63 66 30 37 30 36 63 66 62 31 61 35 35 66 65 62 39 32 37 62 39 61 63 65 39 62 65 33 36 30 34 39 33 66 37 66 64 65 33 36 66 31 30 32 35 34 31 35 37 62 32 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 30 3b c6 e3", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12946.372985839844, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,781", - "created": 1609969749.781683, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 31 30 32 38 65 62 30 35 37 31 66 63 31 63 66 30 37 30 36 63 66 62 31 61 35 35 66 65 62 39 32 37 62 39 61 63 65 39 62 65 33 36 30 34 39 33 66 37 66 64 65 33 36 66 31 30 32 35 34 31 35 37 62 32 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 30 3b c6 e3", - "module": "test_helpers", - "msecs": 781.6829681396484, - "msg": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 31 30 32 38 65 62 30 35 37 31 66 63 31 63 66 30 37 30 36 63 66 62 31 61 35 35 66 65 62 39 32 37 62 39 61 63 65 39 62 65 33 36 30 34 39 33 66 37 66 64 65 33 36 66 31 30 32 35 34 31 35 37 62 32 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 30 3b c6 e3", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12946.49887084961, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 17436.408042907715, + "thread": 140632773347072, + "threadName": "Thread-29" }, { "args": [ - "SP client:", - "service: authentification response, data_id: seed", - "status: okay", - "u'1028eb0571fc1cf0706cfb1a55feb927b9ace9be360493f7fde36f10254157b2'" + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 65 32 32 66 38 38 39 34 31 32 64 36 36 65 65 34 39 30 37" ], - "asctime": "2021-01-06 22:49:09,781", - "created": 1609969749.781763, + "asctime": "2021-01-11 07:30:31,533", + "created": 1610346631.533648, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__tx__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'1028eb0571fc1cf0706cfb1a55feb927b9ace9be360493f7fde36f10254157b2'\"", + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 65 32 32 66 38 38 39 34 31 32 64 36 36 65 65 34 39 30 37", "module": "__init__", - "msecs": 781.7630767822266, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 533.6480140686035, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12946.578979492188, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 17467.19002723694, + "thread": 140632764954368, + "threadName": "Thread-30" }, { "args": [ - "SP client:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 65 32 32 66 38 38 39 34 31 32 64 36 36 65 65 34 39 30 37" + ], + "asctime": "2021-01-11 07:30:31,534", + "created": 1610346631.534113, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 65 32 32 66 38 38 39 34 31 32 64 36 36 65 65 34 39 30 37", + "module": "__init__", + "msecs": 534.1129302978516, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17467.654943466187, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,534", + "created": 1610346631.534314, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 534.3139171600342, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17467.85593032837, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:31,534", + "created": 1610346631.53449, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 534.4901084899902, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17468.032121658325, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,534", + "created": 1610346631.53471, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 534.7099304199219, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17468.251943588257, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,535", + "created": 1610346631.535068, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 535.0680351257324, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17468.610048294067, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,535", + "created": 1610346631.535264, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 535.2640151977539, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17468.80602836609, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,535", + "created": 1610346631.535404, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 535.4039669036865, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17468.94598007202, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,535", + "created": 1610346631.535561, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 535.5610847473145, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17469.10309791565, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,535", + "created": 1610346631.535684, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 535.6841087341309, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17469.226121902466, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-server:", + "(64): 38 31 38 63 30 31 37 34 65 37 30 64 62 34 61 66 62 64 37 65 32 37 66 65 31 36 65 35 65 36 32 30 38 63 36 34 38 64 30 35 33 39 30 32 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 56 17" + ], + "asctime": "2021-01-11 07:30:31,536", + "created": 1610346631.536116, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 38 31 38 63 30 31 37 34 65 37 30 64 62 34 61 66 62 64 37 65 32 37 66 65 31 36 65 35 65 36 32 30 38 63 36 34 38 64 30 35 33 39 30 32 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 56 17", + "module": "__init__", + "msecs": 536.1158847808838, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17469.65789794922, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-client:", + "(64): 38 31 38 63 30 31 37 34 65 37 30 64 62 34 61 66 62 64 37 65 32 37 66 65 31 36 65 35 65 36 32 30 38 63 36 34 38 64 30 35 33 39 30 32 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 56 17" + ], + "asctime": "2021-01-11 07:30:31,536", + "created": 1610346631.536534, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 38 31 38 63 30 31 37 34 65 37 30 64 62 34 61 66 62 64 37 65 32 37 66 65 31 36 65 35 65 36 32 30 38 63 36 34 38 64 30 35 33 39 30 32 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 56 17", + "module": "__init__", + "msecs": 536.5340709686279, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17470.076084136963, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,537", + "created": 1610346631.537045, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 537.0450019836426, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17470.587015151978, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,537", + "created": 1610346631.537233, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 537.2331142425537, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17470.77512741089, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-server:", + "(4): dd 92 3a 3e" + ], + "asctime": "2021-01-11 07:30:31,537", + "created": 1610346631.537673, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (4): dd 92 3a 3e", + "module": "__init__", + "msecs": 537.6729965209961, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17471.21500968933, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-client:", + "(4): dd 92 3a 3e" + ], + "asctime": "2021-01-11 07:30:31,538", + "created": 1610346631.538091, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (4): dd 92 3a 3e", + "module": "__init__", + "msecs": 538.0909442901611, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17471.632957458496, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,538", + "created": 1610346631.538271, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 538.2709503173828, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17471.812963485718, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:31,538", + "created": 1610346631.538417, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 538.4171009063721, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17471.959114074707, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + "(124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 65 32 32 66 38 38 39 34 31 32 64 36 36 65 65 34 39 30 37 38 31 38 63 30 31 37 34 65 37 30 64 62 34 61 66 62 64 37 65 32 37 66 65 31 36 65 35 65 36 32 30 38 63 36 34 38 64 30 35 33 39 30 32 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 56 17 dd 92" + ], + "asctime": "2021-01-11 07:30:31,538", + "created": 1610346631.538864, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 65 32 32 66 38 38 39 34 31 32 64 36 36 65 65 34 39 30 37 38 31 38 63 30 31 37 34 65 37 30 64 62 34 61 66 62 64 37 65 32 37 66 65 31 36 65 35 65 36 32 30 38 63 36 34 38 64 30 35 33 39 30 32 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 56 17 dd 92", + "module": "stp", + "msecs": 538.8638973236084, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17472.405910491943, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: seed", + "status: okay", + "u'e22f889412d66ee4907818c0174e70db4afbd7e27fe16e5e6208c648d0539024'" + ], + "asctime": "2021-01-11 07:30:31,539", + "created": 1610346631.53934, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'e22f889412d66ee4907818c0174e70db4afbd7e27fe16e5e6208c648d0539024'\"", + "module": "__init__", + "msecs": 539.3400192260742, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17472.88203239441, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-01-06 22:49:09,781", - "created": 1609969749.781854, + "asctime": "2021-01-11 07:30:31,539", + "created": 1610346631.539423, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __authentificate_create_key__ to process received data", + "lineno": 492, + "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 781.8539142608643, + "msecs": 539.4229888916016, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12946.669816970825, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 17472.965002059937, + "thread": 140632764954368, + "threadName": "Thread-30" }, { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: authentification request, data_id: key", "status: okay", - "'4237c44df5fc44768bb88a234bfbae24ac1b2e8f32f41c6bcf246bf462d68b2e649e419813982afd1942ab4a84b0394ae82873e1f0cb6b1ea9dc45a36c666c5c'" + "'f4b0ec74ccc01c33bc2e27b6d05527f4ebc411571006093a8e1df1053a63034b39f116979b72846c57c411d0ae0f2e683df9cc49041bb5ff82a67b954dd78ac0'" ], - "asctime": "2021-01-06 22:49:09,781", - "created": 1609969749.781932, + "asctime": "2021-01-11 07:30:31,539", + "created": 1610346631.539542, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: authentification request, data_id: key, status: okay, data: \"'4237c44df5fc44768bb88a234bfbae24ac1b2e8f32f41c6bcf246bf462d68b2e649e419813982afd1942ab4a84b0394ae82873e1f0cb6b1ea9dc45a36c666c5c'\"", + "lineno": 445, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'f4b0ec74ccc01c33bc2e27b6d05527f4ebc411571006093a8e1df1053a63034b39f116979b72846c57c411d0ae0f2e683df9cc49041bb5ff82a67b954dd78ac0'\"", "module": "__init__", - "msecs": 781.9321155548096, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 539.5419597625732, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12946.74801826477, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,782", - "created": 1609969749.782126, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 32 33 37 63 34 34 64 66 35 66 63 34 34 37 36 38 62 62 38 38 61 32 33 34 62 66 62 61 65 32 34 61 63 31 62 32 65 38 66 33 32 66 34 31 63 36 62 63 66 32 34 36 62 66 34 36 32 64 36 38 62 32 65 36 34 39 65 34 31 39 38 31 33 39 38 32 61 66 64 31 39 34 32 61 62 34 61 38 34 62 30 33 39 34 61 65 38 32 38 37 33 65 31 66 30 63 62 36 62 31 65 61 39 64 63 34 35 61 33 36 63 36 36 36 63 35 63 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 54 97 32 2d", - "module": "test_helpers", - "msecs": 782.1259498596191, - "msg": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 32 33 37 63 34 34 64 66 35 66 63 34 34 37 36 38 62 62 38 38 61 32 33 34 62 66 62 61 65 32 34 61 63 31 62 32 65 38 66 33 32 66 34 31 63 36 62 63 66 32 34 36 62 66 34 36 32 64 36 38 62 32 65 36 34 39 65 34 31 39 38 31 33 39 38 32 61 66 64 31 39 34 32 61 62 34 61 38 34 62 30 33 39 34 61 65 38 32 38 37 33 65 31 66 30 63 62 36 62 31 65 61 39 64 63 34 35 61 33 36 63 36 36 36 63 35 63 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 54 97 32 2d", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12946.94185256958, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,782", - "created": 1609969749.782299, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 32 33 37 63 34 34 64 66 35 66 63 34 34 37 36 38 62 62 38 38 61 32 33 34 62 66 62 61 65 32 34 61 63 31 62 32 65 38 66 33 32 66 34 31 63 36 62 63 66 32 34 36 62 66 34 36 32 64 36 38 62 32 65 36 34 39 65 34 31 39 38 31 33 39 38 32 61 66 64 31 39 34 32 61 62 34 61 38 34 62 30 33 39 34 61 65 38 32 38 37 33 65 31 66 30 63 62 36 62 31 65 61 39 64 63 34 35 61 33 36 63 36 36 36 63 35 63 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 54 97 32 2d", - "module": "test_helpers", - "msecs": 782.2990417480469, - "msg": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 32 33 37 63 34 34 64 66 35 66 63 34 34 37 36 38 62 62 38 38 61 32 33 34 62 66 62 61 65 32 34 61 63 31 62 32 65 38 66 33 32 66 34 31 63 36 62 63 66 32 34 36 62 66 34 36 32 64 36 38 62 32 65 36 34 39 65 34 31 39 38 31 33 39 38 32 61 66 64 31 39 34 32 61 62 34 61 38 34 62 30 33 39 34 61 65 38 32 38 37 33 65 31 66 30 63 62 36 62 31 65 61 39 64 63 34 35 61 33 36 63 36 36 36 63 35 63 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 54 97 32 2d", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12947.114944458008, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 17473.08397293091, + "thread": 140632764954368, + "threadName": "Thread-30" }, { "args": [ - "SP server:", - "service: authentification request, data_id: key", - "status: okay", - "u'4237c44df5fc44768bb88a234bfbae24ac1b2e8f32f41c6bcf246bf462d68b2e649e419813982afd1942ab4a84b0394ae82873e1f0cb6b1ea9dc45a36c666c5c'" + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 34 62 30 65 63 37 34 63 63 63 30 31 63 33 33 62 63 32" ], - "asctime": "2021-01-06 22:49:09,782", - "created": 1609969749.782386, + "asctime": "2021-01-11 07:30:31,567", + "created": 1610346631.567336, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__tx__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'4237c44df5fc44768bb88a234bfbae24ac1b2e8f32f41c6bcf246bf462d68b2e649e419813982afd1942ab4a84b0394ae82873e1f0cb6b1ea9dc45a36c666c5c'\"", + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 34 62 30 65 63 37 34 63 63 63 30 31 63 33 33 62 63 32", "module": "__init__", - "msecs": 782.386064529419, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 567.3360824584961, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12947.20196723938, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 17500.87809562683, + "thread": 140632773347072, + "threadName": "Thread-29" }, { "args": [ - "SP server:", + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 34 62 30 65 63 37 34 63 63 63 30 31 63 33 33 62 63 32" + ], + "asctime": "2021-01-11 07:30:31,567", + "created": 1610346631.567792, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 66 34 62 30 65 63 37 34 63 63 63 30 31 63 33 33 62 63 32", + "module": "__init__", + "msecs": 567.7919387817383, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17501.333951950073, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,567", + "created": 1610346631.567994, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 567.9941177368164, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17501.53613090515, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:31,568", + "created": 1610346631.568188, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 568.187952041626, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17501.72996520996, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,568", + "created": 1610346631.568537, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 568.5369968414307, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17502.079010009766, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,568", + "created": 1610346631.568779, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 568.7789916992188, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17502.321004867554, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,569", + "created": 1610346631.569146, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 569.145917892456, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17502.68793106079, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,569", + "created": 1610346631.569376, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 569.3759918212891, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17502.918004989624, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,569", + "created": 1610346631.56967, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 569.6699619293213, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17503.211975097656, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,569", + "created": 1610346631.569985, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 569.9849128723145, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17503.52692604065, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-client:", + "(64): 65 32 37 62 36 64 30 35 35 32 37 66 34 65 62 63 34 31 31 35 37 31 30 30 36 30 39 33 61 38 65 31 64 66 31 30 35 33 61 36 33 30 33 34 62 33 39 66 31 31 36 39 37 39 62 37 32 38 34 36 63 35 37 63" + ], + "asctime": "2021-01-11 07:30:31,570", + "created": 1610346631.570557, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 65 32 37 62 36 64 30 35 35 32 37 66 34 65 62 63 34 31 31 35 37 31 30 30 36 30 39 33 61 38 65 31 64 66 31 30 35 33 61 36 33 30 33 34 62 33 39 66 31 31 36 39 37 39 62 37 32 38 34 36 63 35 37 63", + "module": "__init__", + "msecs": 570.5571174621582, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17504.099130630493, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(64): 65 32 37 62 36 64 30 35 35 32 37 66 34 65 62 63 34 31 31 35 37 31 30 30 36 30 39 33 61 38 65 31 64 66 31 30 35 33 61 36 33 30 33 34 62 33 39 66 31 31 36 39 37 39 62 37 32 38 34 36 63 35 37 63" + ], + "asctime": "2021-01-11 07:30:31,571", + "created": 1610346631.571043, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 65 32 37 62 36 64 30 35 35 32 37 66 34 65 62 63 34 31 31 35 37 31 30 30 36 30 39 33 61 38 65 31 64 66 31 30 35 33 61 36 33 30 33 34 62 33 39 66 31 31 36 39 37 39 62 37 32 38 34 36 63 35 37 63", + "module": "__init__", + "msecs": 571.0430145263672, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17504.585027694702, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-client:", + "(64): 34 31 31 64 30 61 65 30 66 32 65 36 38 33 64 66 39 63 63 34 39 30 34 31 62 62 35 66 66 38 32 61 36 37 62 39 35 34 64 64 37 38 61 63 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 00 cc" + ], + "asctime": "2021-01-11 07:30:31,572", + "created": 1610346631.572115, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 34 31 31 64 30 61 65 30 66 32 65 36 38 33 64 66 39 63 63 34 39 30 34 31 62 62 35 66 66 38 32 61 36 37 62 39 35 34 64 64 37 38 61 63 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 00 cc", + "module": "__init__", + "msecs": 572.1149444580078, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17505.656957626343, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(64): 34 31 31 64 30 61 65 30 66 32 65 36 38 33 64 66 39 63 63 34 39 30 34 31 62 62 35 66 66 38 32 61 36 37 62 39 35 34 64 64 37 38 61 63 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 00 cc" + ], + "asctime": "2021-01-11 07:30:31,572", + "created": 1610346631.572658, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 34 31 31 64 30 61 65 30 66 32 65 36 38 33 64 66 39 63 63 34 39 30 34 31 62 62 35 66 66 38 32 61 36 37 62 39 35 34 64 64 37 38 61 63 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 00 cc", + "module": "__init__", + "msecs": 572.6580619812012, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17506.200075149536, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,573", + "created": 1610346631.573237, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 573.2369422912598, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17506.778955459595, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,573", + "created": 1610346631.573484, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 573.483943939209, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17507.025957107544, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-client:", + "(4): d1 49 3a 3e" + ], + "asctime": "2021-01-11 07:30:31,573", + "created": 1610346631.573821, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (4): d1 49 3a 3e", + "module": "__init__", + "msecs": 573.8210678100586, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17507.363080978394, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(4): d1 49 3a 3e" + ], + "asctime": "2021-01-11 07:30:31,574", + "created": 1610346631.574063, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (4): d1 49 3a 3e", + "module": "__init__", + "msecs": 574.0630626678467, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17507.60507583618, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,574", + "created": 1610346631.574297, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 574.2969512939453, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17507.83896446228, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:31,574", + "created": 1610346631.574494, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 574.4938850402832, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17508.035898208618, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + "(188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 66 34 62 30 65 63 37 34 63 63 63 30 31 63 33 33 62 63 32 65 32 37 62 36 64 30 35 35 32 37 66 34 65 62 63 34 31 31 35 37 31 30 30 36 30 39 33 61 38 65 31 64 66 31 30 35 33 61 36 33 30 33 34 62 33 39 66 31 31 36 39 37 39 62 37 32 38 34 36 63 35 37 63 34 31 31 64 30 61 65 30 66 32 65 36 38 33 64 66 39 63 63 34 39 30 34 31 62 62 35 66 66 38 32 61 36 37 62 39 35 34 64 64 37 38 61 63 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 00 cc d1 49" + ], + "asctime": "2021-01-11 07:30:31,575", + "created": 1610346631.575303, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 66 34 62 30 65 63 37 34 63 63 63 30 31 63 33 33 62 63 32 65 32 37 62 36 64 30 35 35 32 37 66 34 65 62 63 34 31 31 35 37 31 30 30 36 30 39 33 61 38 65 31 64 66 31 30 35 33 61 36 33 30 33 34 62 33 39 66 31 31 36 39 37 39 62 37 32 38 34 36 63 35 37 63 34 31 31 64 30 61 65 30 66 32 65 36 38 33 64 66 39 63 63 34 39 30 34 31 62 62 35 66 66 38 32 61 36 37 62 39 35 34 64 64 37 38 61 63 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 00 cc d1 49", + "module": "stp", + "msecs": 575.3030776977539, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17508.84509086609, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: authentification request, data_id: key", + "status: okay", + "u'f4b0ec74ccc01c33bc2e27b6d05527f4ebc411571006093a8e1df1053a63034b39f116979b72846c57c411d0ae0f2e683df9cc49041bb5ff82a67b954dd78ac0'" + ], + "asctime": "2021-01-11 07:30:31,575", + "created": 1610346631.57582, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'f4b0ec74ccc01c33bc2e27b6d05527f4ebc411571006093a8e1df1053a63034b39f116979b72846c57c411d0ae0f2e683df9cc49041bb5ff82a67b954dd78ac0'\"", + "module": "__init__", + "msecs": 575.8199691772461, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17509.36198234558, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-01-06 22:49:09,782", - "created": 1609969749.78244, + "asctime": "2021-01-11 07:30:31,576", + "created": 1610346631.576211, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __authentificate_check_key__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 782.4399471282959, - "msg": "%s RX <- Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12947.255849838257, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-01-06 22:49:09,782", - "created": 1609969749.782504, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 782.5040817260742, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12947.319984436035, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,782", - "created": 1609969749.782613, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", - "module": "test_helpers", - "msecs": 782.6130390167236, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12947.428941726685, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,782", - "created": 1609969749.782724, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", - "module": "test_helpers", - "msecs": 782.7239036560059, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12947.539806365967, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-01-06 22:49:09,782", - "created": 1609969749.782806, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 782.8059196472168, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12947.621822357178, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "__authentificate_process_feedback__" - ], - "asctime": "2021-01-06 22:49:09,782", - "created": 1609969749.78286, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __authentificate_process_feedback__ to process received data", - "module": "__init__", - "msecs": 782.8600406646729, + "msecs": 576.2109756469727, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12947.675943374634, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 17509.752988815308, + "thread": 140632773347072, + "threadName": "Thread-29" }, { "args": [ - "SP client:" + "prot-server:", + "TX ->", + "service: authentification response, data_id: key", + "status: okay", + "True" ], - "asctime": "2021-01-06 22:49:09,782", - "created": 1609969749.782904, + "asctime": "2021-01-11 07:30:31,576", + "created": 1610346631.576574, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 576.5740871429443, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17510.11610031128, + "thread": 140632773347072, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" + ], + "asctime": "2021-01-11 07:30:31,608", + "created": 1610346631.608389, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", + "module": "__init__", + "msecs": 608.3889007568359, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17541.93091392517, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" + ], + "asctime": "2021-01-11 07:30:31,608", + "created": 1610346631.608915, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", + "module": "__init__", + "msecs": 608.9150905609131, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17542.457103729248, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,609", + "created": 1610346631.609116, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 609.1160774230957, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17542.65809059143, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:31,609", + "created": 1610346631.609316, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 609.3161106109619, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17542.858123779297, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,609", + "created": 1610346631.609578, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 609.5778942108154, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17543.11990737915, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,609", + "created": 1610346631.609753, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 609.752893447876, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17543.29490661621, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,610", + "created": 1610346631.610348, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 610.3479862213135, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17543.88999938965, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,610", + "created": 1610346631.610533, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 610.5329990386963, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17544.07501220703, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,610", + "created": 1610346631.610749, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 610.7490062713623, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17544.291019439697, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,610", + "created": 1610346631.610913, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 610.9130382537842, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17544.45505142212, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,611", + "created": 1610346631.611151, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 611.1509799957275, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17544.692993164062, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,611", + "created": 1610346631.611279, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 611.2790107727051, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17544.82102394104, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-server:", + "(6): 11 d3 26 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:31,611", + "created": 1610346631.611459, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 11 d3 26 78 3a 3e", + "module": "__init__", + "msecs": 611.4590167999268, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17545.00102996826, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-client:", + "(6): 11 d3 26 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:31,611", + "created": 1610346631.611598, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 11 d3 26 78 3a 3e", + "module": "__init__", + "msecs": 611.598014831543, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17545.140027999878, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,611", + "created": 1610346631.611726, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 611.7260456085205, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17545.268058776855, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:31,611", + "created": 1610346631.611838, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 611.8381023406982, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17545.380115509033, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78" + ], + "asctime": "2021-01-11 07:30:31,612", + "created": 1610346631.612208, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", + "module": "stp", + "msecs": 612.2078895568848, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17545.74990272522, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: key", + "status: okay", + "True" + ], + "asctime": "2021-01-11 07:30:31,612", + "created": 1610346631.612657, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 612.6570701599121, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17546.199083328247, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "prot-client:", + "__authentificate_process_feedback__" + ], + "asctime": "2021-01-11 07:30:31,612", + "created": 1610346631.612911, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", + "module": "__init__", + "msecs": 612.9109859466553, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17546.45299911499, + "thread": 140632764954368, + "threadName": "Thread-30" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:31,613", + "created": 1610346631.61325, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "INFO", "levelno": 20, - "lineno": 350, - "message": "SP client: Got positive authentification feedback", + "lineno": 360, + "message": "prot-client: Got positive authentification feedback", "module": "__init__", - "msecs": 782.9039096832275, + "msecs": 613.2500171661377, "msg": "%s Got positive authentification feedback", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12947.719812393188, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 17546.792030334473, + "thread": 140632764954368, + "threadName": "Thread-30" } ], - "msecs": 883.3520412445068, + "msecs": 685.359001159668, "msg": "Doing authentification", "name": "__tLogger__", "pathname": "src/tests/test_add_methods.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13048.167943954468, - "thread": 140012350113600, + "relativeCreated": 17618.901014328003, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.1004481315612793 + "time_consumption": 0.07210898399353027 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:09,884", - "created": 1609969749.884412, + "asctime": "2021-01-11 07:30:31,687", + "created": 1610346631.687552, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29302,8 +61302,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:09,883", - "created": 1609969749.883941, + "asctime": "2021-01-11 07:30:31,686", + "created": 1610346631.686953, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29313,14 +61313,14 @@ "lineno": 22, "message": "Result (Client connection status): True ()", "module": "test", - "msecs": 883.9409351348877, + "msecs": 686.953067779541, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13048.756837844849, - "thread": 140012350113600, + "relativeCreated": 17620.495080947876, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -29329,8 +61329,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:09,884", - "created": 1609969749.884183, + "asctime": "2021-01-11 07:30:31,687", + "created": 1610346631.687295, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29340,35 +61340,35 @@ "lineno": 26, "message": "Expectation (Client connection status): result = True ()", "module": "test", - "msecs": 884.1829299926758, + "msecs": 687.2949600219727, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13048.998832702637, - "thread": 140012350113600, + "relativeCreated": 17620.836973190308, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 884.4120502471924, + "msecs": 687.5519752502441, "msg": "Client connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13049.227952957153, - "thread": 140012350113600, + "relativeCreated": 17621.09398841858, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00022912025451660156 + "time_consumption": 0.0002570152282714844 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:09,884", - "created": 1609969749.884776, + "asctime": "2021-01-11 07:30:31,688", + "created": 1610346631.688338, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29385,8 +61385,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:09,884", - "created": 1609969749.884603, + "asctime": "2021-01-11 07:30:31,688", + "created": 1610346631.688002, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29396,14 +61396,14 @@ "lineno": 22, "message": "Result (Server connection status): True ()", "module": "test", - "msecs": 884.6030235290527, + "msecs": 688.0021095275879, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13049.418926239014, - "thread": 140012350113600, + "relativeCreated": 17621.544122695923, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -29412,8 +61412,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:09,884", - "created": 1609969749.884695, + "asctime": "2021-01-11 07:30:31,688", + "created": 1610346631.688172, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29423,39 +61423,39 @@ "lineno": 26, "message": "Expectation (Server connection status): result = True ()", "module": "test", - "msecs": 884.6950531005859, + "msecs": 688.1721019744873, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13049.510955810547, - "thread": 140012350113600, + "relativeCreated": 17621.714115142822, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 884.7761154174805, + "msecs": 688.338041305542, "msg": "Server connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13049.592018127441, - "thread": 140012350113600, + "relativeCreated": 17621.880054473877, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 8.106231689453125e-05 + "time_consumption": 0.0001659393310546875 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.11994123458862305, - "time_finished": "2021-01-06 22:49:09,884", - "time_start": "2021-01-06 22:49:09,764" + "time_consumption": 0.9168660640716553, + "time_finished": "2021-01-11 07:30:31,688", + "time_start": "2021-01-11 07:30:30,771" }, "_elO7wE4gEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-06 22:49:09,885", - "created": 1609969749.885075, + "asctime": "2021-01-11 07:30:31,689", + "created": 1610346631.689041, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -29466,1805 +61466,2430 @@ "message": "_elO7wE4gEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 885.0750923156738, + "msecs": 689.0408992767334, "msg": "_elO7wE4gEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13049.890995025635, + "relativeCreated": 17622.58291244507, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:09,895", - "created": 1609969749.895349, + "asctime": "2021-01-11 07:30:31,693", + "created": 1610346631.693639, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:09,885", - "created": 1609969749.885357, + "asctime": "2021-01-11 07:30:31,689", + "created": 1610346631.689936, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 885.3569030761719, + "msecs": 689.9359226226807, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13050.172805786133, - "thread": 140012350113600, + "relativeCreated": 17623.477935791016, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:09,885", - "created": 1609969749.885524, + "asctime": "2021-01-11 07:30:31,690", + "created": 1610346631.690603, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 885.5240345001221, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 690.6030178070068, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13050.339937210083, - "thread": 140012350113600, + "relativeCreated": 17624.14503097534, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:09,885", - "created": 1609969749.885887, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 885.8869075775146, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13050.702810287476, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:09,886", - "created": 1609969749.886117, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 886.1169815063477, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13050.932884216309, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:09,886", - "created": 1609969749.886355, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 886.354923248291, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13051.170825958252, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:09,886", - "created": 1609969749.886601, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 886.6009712219238, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13051.416873931885, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:09,886", - "created": 1609969749.886878, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 886.8780136108398, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13051.6939163208, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:09,887", - "created": 1609969749.887155, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 887.1550559997559, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13051.970958709717, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:09,887", - "created": 1609969749.887405, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 887.4049186706543, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13052.220821380615, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:09,887", - "created": 1609969749.88766, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 887.660026550293, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13052.475929260254, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:09,887", - "created": 1609969749.887889, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 887.8889083862305, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13052.704811096191, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:09,888", - "created": 1609969749.888173, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 888.1731033325195, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13052.98900604248, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:09,888", - "created": 1609969749.888431, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 888.4310722351074, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13053.246974945068, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:09,888", - "created": 1609969749.888659, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 888.6590003967285, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13053.47490310669, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:09,888", - "created": 1609969749.88888, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 888.8800144195557, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13053.695917129517, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:09,889", - "created": 1609969749.889163, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 889.1630172729492, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13053.97891998291, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:09,889", - "created": 1609969749.889433, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 889.4329071044922, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13054.248809814453, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:09,889", - "created": 1609969749.889711, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 889.7109031677246, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13054.526805877686, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:09,890", - "created": 1609969749.89002, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 890.0198936462402, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13054.835796356201, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:09,890", - "created": 1609969749.890273, + "asctime": "2021-01-11 07:30:31,690", + "created": 1610346631.690707, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 890.2730941772461, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 690.7069683074951, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13055.088996887207, - "thread": 140012350113600, + "relativeCreated": 17624.24898147583, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,890", - "created": 1609969749.890893, + "asctime": "2021-01-11 07:30:31,690", + "created": 1610346631.690949, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 890.8929824829102, + "msecs": 690.9489631652832, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13055.708885192871, - "thread": 140012350113600, + "relativeCreated": 17624.490976333618, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:09,891", - "created": 1609969749.891187, + "asctime": "2021-01-11 07:30:31,691", + "created": 1610346631.691022, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 891.1869525909424, + "msecs": 691.0219192504883, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13056.002855300903, - "thread": 140012350113600, + "relativeCreated": 17624.563932418823, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:09,891", - "created": 1609969749.891525, + "asctime": "2021-01-11 07:30:31,691", + "created": 1610346631.691106, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 891.5250301361084, + "msecs": 691.1060810089111, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13056.34093284607, - "thread": 140012350113600, + "relativeCreated": 17624.648094177246, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:09,891", - "created": 1609969749.891759, + "asctime": "2021-01-11 07:30:31,691", + "created": 1610346631.691162, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 891.758918762207, + "msecs": 691.162109375, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13056.574821472168, - "thread": 140012350113600, + "relativeCreated": 17624.704122543335, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:09,892", - "created": 1609969749.892003, + "asctime": "2021-01-11 07:30:31,691", + "created": 1610346631.69123, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 892.003059387207, + "msecs": 691.230058670044, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13056.818962097168, - "thread": 140012350113600, + "relativeCreated": 17624.77207183838, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:09,892", - "created": 1609969749.892163, + "asctime": "2021-01-11 07:30:31,691", + "created": 1610346631.691287, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 892.1630382537842, + "msecs": 691.2870407104492, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13056.978940963745, - "thread": 140012350113600, + "relativeCreated": 17624.829053878784, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:09,892", - "created": 1609969749.892334, + "asctime": "2021-01-11 07:30:31,691", + "created": 1610346631.691376, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 892.333984375, + "msecs": 691.3759708404541, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13057.149887084961, - "thread": 140012350113600, + "relativeCreated": 17624.91798400879, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:09,892", - "created": 1609969749.892496, + "asctime": "2021-01-11 07:30:31,691", + "created": 1610346631.691439, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 892.4961090087891, + "msecs": 691.4389133453369, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13057.31201171875, - "thread": 140012350113600, + "relativeCreated": 17624.980926513672, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:09,892", - "created": 1609969749.892661, + "asctime": "2021-01-11 07:30:31,691", + "created": 1610346631.691495, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 892.6610946655273, + "msecs": 691.4949417114258, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13057.476997375488, - "thread": 140012350113600, + "relativeCreated": 17625.03695487976, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:09,892", - "created": 1609969749.892808, + "asctime": "2021-01-11 07:30:31,691", + "created": 1610346631.691561, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 892.8079605102539, + "msecs": 691.5609836578369, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13057.623863220215, - "thread": 140012350113600, + "relativeCreated": 17625.102996826172, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,892", - "created": 1609969749.892946, + "asctime": "2021-01-11 07:30:31,691", + "created": 1610346631.691606, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 892.9460048675537, + "msecs": 691.6060447692871, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13057.761907577515, - "thread": 140012350113600, + "relativeCreated": 17625.148057937622, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:09,893", - "created": 1609969749.89313, + "asctime": "2021-01-11 07:30:31,691", + "created": 1610346631.69166, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 893.1300640106201, + "msecs": 691.6599273681641, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13057.945966720581, - "thread": 140012350113600, + "relativeCreated": 17625.2019405365, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:09,893", - "created": 1609969749.893317, + "asctime": "2021-01-11 07:30:31,691", + "created": 1610346631.691715, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 893.3169841766357, + "msecs": 691.7150020599365, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13058.132886886597, - "thread": 140012350113600, + "relativeCreated": 17625.25701522827, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:09,893", - "created": 1609969749.89355, + "asctime": "2021-01-11 07:30:31,691", + "created": 1610346631.691763, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 893.549919128418, + "msecs": 691.7629241943359, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13058.365821838379, - "thread": 140012350113600, + "relativeCreated": 17625.30493736267, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:09,893", - "created": 1609969749.893834, + "asctime": "2021-01-11 07:30:31,691", + "created": 1610346631.691813, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 893.834114074707, + "msecs": 691.8129920959473, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13058.650016784668, - "thread": 140012350113600, + "relativeCreated": 17625.355005264282, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:09,893", - "created": 1609969749.893977, + "asctime": "2021-01-11 07:30:31,691", + "created": 1610346631.691861, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 893.9769268035889, + "msecs": 691.8609142303467, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13058.79282951355, - "thread": 140012350113600, + "relativeCreated": 17625.40292739868, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:09,894", - "created": 1609969749.894107, + "asctime": "2021-01-11 07:30:31,691", + "created": 1610346631.691917, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 894.1071033477783, + "msecs": 691.9169425964355, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13058.92300605774, - "thread": 140012350113600, + "relativeCreated": 17625.45895576477, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:09,894", - "created": 1609969749.894493, + "asctime": "2021-01-11 07:30:31,691", + "created": 1610346631.691977, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 894.4931030273438, + "msecs": 691.9770240783691, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13059.309005737305, - "thread": 140012350113600, + "relativeCreated": 17625.519037246704, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:09,894", - "created": 1609969749.894804, + "asctime": "2021-01-11 07:30:31,692", + "created": 1610346631.69204, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 894.8040008544922, + "msecs": 692.039966583252, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13059.619903564453, - "thread": 140012350113600, + "relativeCreated": 17625.581979751587, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,895", - "created": 1609969749.895107, + "asctime": "2021-01-11 07:30:31,692", + "created": 1610346631.692111, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 895.1070308685303, + "msecs": 692.1110153198242, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13059.922933578491, - "thread": 140012350113600, + "relativeCreated": 17625.65302848816, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:31,692", + "created": 1610346631.692294, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 692.2938823699951, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17625.83589553833, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:31,692", + "created": 1610346631.692374, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 692.3739910125732, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17625.91600418091, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:31,692", + "created": 1610346631.692466, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 692.4660205841064, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17626.00803375244, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:31,692", + "created": 1610346631.692543, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 692.5430297851562, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17626.08504295349, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:31,692", + "created": 1610346631.692605, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 692.6050186157227, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17626.147031784058, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:31,692", + "created": 1610346631.692666, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 692.6660537719727, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17626.208066940308, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:31,692", + "created": 1610346631.692733, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 692.7330493927002, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17626.275062561035, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:31,692", + "created": 1610346631.692809, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 692.8091049194336, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17626.35111808777, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:31,692", + "created": 1610346631.692876, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 692.8761005401611, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17626.418113708496, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:31,692", + "created": 1610346631.692945, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 692.9450035095215, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17626.487016677856, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:31,693", + "created": 1610346631.693005, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 693.0050849914551, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17626.54709815979, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:31,693", + "created": 1610346631.693079, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 693.0789947509766, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17626.62100791931, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:31,693", + "created": 1610346631.693152, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 693.1519508361816, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17626.693964004517, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:31,693", + "created": 1610346631.693218, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 693.2179927825928, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17626.760005950928, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:31,693", + "created": 1610346631.693274, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 693.2740211486816, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17626.816034317017, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:31,693", + "created": 1610346631.693336, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 693.336009979248, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17626.878023147583, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:31,693", + "created": 1610346631.693391, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 693.3910846710205, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17626.933097839355, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:31,693", + "created": 1610346631.693451, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 693.450927734375, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17626.99294090271, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:31,693", + "created": 1610346631.693509, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 693.5091018676758, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17627.05111503601, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:31,693", + "created": 1610346631.693579, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 693.5789585113525, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17627.120971679688, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 895.3490257263184, + "msecs": 693.6390399932861, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13060.16492843628, - "thread": 140012350113600, + "relativeCreated": 17627.18105316162, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00024199485778808594 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,896", - "created": 1609969749.896075, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client Communication instance connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client Communication instance connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,895", - "created": 1609969749.895722, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client Communication instance connection status): False ()", - "module": "test", - "msecs": 895.7219123840332, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13060.537815093994, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "Client Communication instance connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,895", - "created": 1609969749.895911, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client Communication instance connection status): result = False ()", - "module": "test", - "msecs": 895.9109783172607, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13060.726881027222, - "thread": 140012350113600, - "threadName": "MainThread" - } - ], - "msecs": 896.0750102996826, - "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13060.890913009644, - "thread": 140012350113600, - "threadName": "MainThread", - "time_consumption": 0.000164031982421875 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,896", - "created": 1609969749.896753, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server Communication instance connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server Communication instance connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,896", - "created": 1609969749.896363, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server Communication instance connection status): False ()", - "module": "test", - "msecs": 896.3630199432373, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13061.178922653198, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "Server Communication instance connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,896", - "created": 1609969749.896558, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server Communication instance connection status): result = False ()", - "module": "test", - "msecs": 896.5580463409424, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13061.373949050903, - "thread": 140012350113600, - "threadName": "MainThread" - } - ], - "msecs": 896.7530727386475, - "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13061.568975448608, - "thread": 140012350113600, - "threadName": "MainThread", - "time_consumption": 0.00019502639770507812 + "time_consumption": 6.008148193359375e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:09,900", - "created": 1609969749.90061, + "asctime": "2021-01-11 07:30:32,037", + "created": 1610346632.037583, "exc_info": null, "exc_text": null, - "filename": "test_add_methods.py", - "funcName": "is_connected", + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 37, - "message": "Connecting Client", - "module": "test_add_methods", + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP client:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:09,897", - "created": 1609969749.897091, + "asctime": "2021-01-11 07:30:31,693", + "created": 1610346631.693763, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 693.763017654419, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17627.305030822754, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:31,693", + "created": 1610346631.693826, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 693.8259601593018, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17627.367973327637, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:31,693", + "created": 1610346631.693892, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 897.0909118652344, + "msecs": 693.8920021057129, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13061.906814575195, - "thread": 140012350113600, + "relativeCreated": 17627.434015274048, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: channel name request, data_id: name", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:09,897", - "created": 1609969749.897384, + "asctime": "2021-01-11 07:30:31,693", + "created": 1610346631.693991, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 897.3839282989502, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 693.99094581604, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13062.199831008911, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,897", - "created": 1609969749.897936, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", - "module": "test_helpers", - "msecs": 897.9361057281494, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13062.75200843811, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,898", - "created": 1609969749.898249, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", - "module": "test_helpers", - "msecs": 898.2489109039307, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13063.064813613892, - "thread": 140012350113600, + "relativeCreated": 17627.532958984375, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-server:" + ], + "asctime": "2021-01-11 07:30:31,694", + "created": 1610346631.694208, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 694.2079067230225, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17627.749919891357, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:31,694", + "created": 1610346631.694273, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 694.2729949951172, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17627.815008163452, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:31,694", + "created": 1610346631.694329, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 694.329023361206, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17627.87103652954, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:31,698", + "created": 1610346631.698558, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 698.5580921173096, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17632.100105285645, + "thread": 140632756561664, + "threadName": "Thread-31" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:31,698", + "created": 1610346631.698706, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 698.7059116363525, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17632.247924804688, + "thread": 140632756561664, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,698", + "created": 1610346631.698771, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 698.7709999084473, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17632.313013076782, + "thread": 140632756561664, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:31,698", + "created": 1610346631.698831, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 698.8310813903809, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17632.373094558716, + "thread": 140632756561664, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,698", + "created": 1610346631.698905, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 698.9049911499023, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17632.447004318237, + "thread": 140632756561664, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,698", + "created": 1610346631.698955, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 698.9550590515137, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17632.49707221985, + "thread": 140632756561664, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,699", + "created": 1610346631.699027, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 699.0270614624023, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17632.569074630737, + "thread": 140632756561664, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,699", + "created": 1610346631.699077, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 699.0768909454346, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17632.61890411377, + "thread": 140632756561664, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,699", + "created": 1610346631.699149, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 699.1488933563232, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17632.69090652466, + "thread": 140632756561664, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,699", + "created": 1610346631.699239, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 699.2390155792236, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17632.78102874756, + "thread": 140632756561664, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,699", + "created": 1610346631.699307, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 699.3069648742676, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17632.848978042603, + "thread": 140632756561664, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,699", + "created": 1610346631.699355, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 699.354887008667, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17632.896900177002, + "thread": 140632756561664, + "threadName": "Thread-31" + }, + { + "args": [ + "comm-client:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:31,699", + "created": 1610346631.699427, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 699.4268894195557, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17632.96890258789, + "thread": 140632756561664, + "threadName": "Thread-31" + }, + { + "args": [ + "comm-server:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:31,699", + "created": 1610346631.699492, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 699.4919776916504, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17633.033990859985, + "thread": 140632756561664, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,699", + "created": 1610346631.699546, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 699.5460987091064, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17633.08811187744, + "thread": 140632756561664, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:31,699", + "created": 1610346631.699594, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 699.5940208435059, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17633.13603401184, + "thread": 140632756561664, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" + ], + "asctime": "2021-01-11 07:30:31,699", + "created": 1610346631.699701, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", + "module": "stp", + "msecs": 699.7010707855225, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17633.243083953857, + "thread": 140632756561664, + "threadName": "Thread-31" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: channel name request, data_id: name", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:09,898", - "created": 1609969749.898682, + "asctime": "2021-01-11 07:30:31,699", + "created": 1610346631.699821, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 898.6821174621582, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 699.8209953308105, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13063.49802017212, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 17633.363008499146, + "thread": 140632756561664, + "threadName": "Thread-31" }, { "args": [ - "SP server:", + "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-06 22:49:09,898", - "created": 1609969749.898937, + "asctime": "2021-01-11 07:30:31,699", + "created": 1610346631.69988, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __channel_name_request__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 898.9369869232178, - "msg": "%s RX <- Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13063.752889633179, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:09,899", - "created": 1609969749.899178, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 899.1780281066895, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13063.99393081665, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,899", - "created": 1609969749.89957, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "module": "test_helpers", - "msecs": 899.5699882507324, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13064.385890960693, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,899", - "created": 1609969749.899846, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "module": "test_helpers", - "msecs": 899.846076965332, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13064.661979675293, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:09,900", - "created": 1609969749.90018, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 900.1801013946533, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13064.996004104614, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "__channel_name_response__" - ], - "asctime": "2021-01-06 22:49:09,900", - "created": 1609969749.900397, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 900.3970623016357, + "msecs": 699.8798847198486, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13065.212965011597, - "thread": 140012350113600, - "threadName": "MainThread" - } - ], - "msecs": 900.6099700927734, - "msg": "Connecting Client", - "name": "__tLogger__", - "pathname": "src/tests/test_add_methods.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13065.425872802734, - "thread": 140012350113600, - "threadName": "MainThread", - "time_consumption": 0.0002129077911376953 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-01-06 22:49:09,901", - "created": 1609969749.901652, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client Communication instance connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client Communication instance connection status", - "True", - "" - ], - "asctime": "2021-01-06 22:49:09,901", - "created": 1609969749.901001, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client Communication instance connection status): True ()", - "module": "test", - "msecs": 901.0009765625, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13065.816879272461, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 17633.421897888184, + "thread": 140632756561664, + "threadName": "Thread-31" }, { "args": [ - "Client Communication instance connection status", - "True", - "" + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" ], - "asctime": "2021-01-06 22:49:09,901", - "created": 1609969749.901359, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client Communication instance connection status): result = True ()", - "module": "test", - "msecs": 901.3590812683105, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13066.174983978271, - "thread": 140012350113600, - "threadName": "MainThread" - } - ], - "msecs": 901.6520977020264, - "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13066.468000411987, - "thread": 140012350113600, - "threadName": "MainThread", - "time_consumption": 0.0002930164337158203 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,902", - "created": 1609969749.902436, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server Communication instance connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server Communication instance connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,902", - "created": 1609969749.902072, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server Communication instance connection status): False ()", - "module": "test", - "msecs": 902.0719528198242, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13066.887855529785, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "Server Communication instance connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,902", - "created": 1609969749.902253, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server Communication instance connection status): result = False ()", - "module": "test", - "msecs": 902.2529125213623, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13067.068815231323, - "thread": 140012350113600, - "threadName": "MainThread" - } - ], - "msecs": 902.4360179901123, - "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13067.251920700073, - "thread": 140012350113600, - "threadName": "MainThread", - "time_consumption": 0.00018310546875 - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,902", - "created": 1609969749.902908, - "exc_info": null, - "exc_text": null, - "filename": "test_add_methods.py", - "funcName": "is_connected", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 41, - "message": "Connecting Server", - "module": "test_add_methods", - "moduleLogger": [ - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:09,902", - "created": 1609969749.902688, + "asctime": "2021-01-11 07:30:31,699", + "created": 1610346631.69995, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 902.6880264282227, - "msg": "%s Cleaning up receive-buffer", + "msecs": 699.9499797821045, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13067.503929138184, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 17633.49199295044, + "thread": 140632756561664, + "threadName": "Thread-31" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:31,707", + "created": 1610346631.707442, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 707.442045211792, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17640.984058380127, + "thread": 140632748168960, + "threadName": "Thread-32" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:31,707", + "created": 1610346631.70765, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 707.6499462127686, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17641.191959381104, + "thread": 140632748168960, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,707", + "created": 1610346631.707744, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 707.7438831329346, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17641.28589630127, + "thread": 140632748168960, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:31,707", + "created": 1610346631.70784, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 707.8399658203125, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17641.381978988647, + "thread": 140632748168960, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,707", + "created": 1610346631.707948, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 707.9479694366455, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17641.48998260498, + "thread": 140632748168960, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,708", + "created": 1610346631.708029, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 708.02903175354, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17641.571044921875, + "thread": 140632748168960, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,708", + "created": 1610346631.708146, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 708.1460952758789, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17641.688108444214, + "thread": 140632748168960, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,708", + "created": 1610346631.708225, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 708.2250118255615, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17641.767024993896, + "thread": 140632748168960, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,708", + "created": 1610346631.708326, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 708.3261013031006, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17641.868114471436, + "thread": 140632748168960, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,708", + "created": 1610346631.708447, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 708.4469795227051, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17641.98899269104, + "thread": 140632748168960, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,708", + "created": 1610346631.708558, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 708.5580825805664, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17642.1000957489, + "thread": 140632748168960, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:31,708", + "created": 1610346631.708631, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 708.6310386657715, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17642.173051834106, + "thread": 140632748168960, + "threadName": "Thread-32" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:31,708", + "created": 1610346631.708751, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 708.7509632110596, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17642.292976379395, + "thread": 140632748168960, + "threadName": "Thread-32" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:31,708", + "created": 1610346631.708862, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 708.8620662689209, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17642.404079437256, + "thread": 140632748168960, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:31,708", + "created": 1610346631.708935, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 708.935022354126, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17642.47703552246, + "thread": 140632748168960, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:31,708", + "created": 1610346631.708993, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 708.9929580688477, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17642.534971237183, + "thread": 140632748168960, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:31,709", + "created": 1610346631.709117, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 709.1169357299805, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17642.658948898315, + "thread": 140632748168960, + "threadName": "Thread-32" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:31,709", + "created": 1610346631.709266, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 709.265947341919, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17642.807960510254, + "thread": 140632748168960, + "threadName": "Thread-32" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:31,709", + "created": 1610346631.709366, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 709.3660831451416, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17642.908096313477, + "thread": 140632748168960, + "threadName": "Thread-32" } ], - "msecs": 902.9080867767334, - "msg": "Connecting Server", + "msecs": 37.583112716674805, + "msg": "Connecting Server and Client", "name": "__tLogger__", - "pathname": "src/tests/test_add_methods.py", - "process": 125831, + "pathname": "src/tests/test_helpers.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13067.723989486694, - "thread": 140012350113600, + "relativeCreated": 17971.12512588501, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0002200603485107422 + "time_consumption": 0.3282170295715332 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:09,903", - "created": 1609969749.90335, + "asctime": "2021-01-11 07:30:32,039", + "created": 1610346632.039431, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31281,8 +63906,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:09,903", - "created": 1609969749.903175, + "asctime": "2021-01-11 07:30:32,038", + "created": 1610346632.038654, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31292,14 +63917,14 @@ "lineno": 22, "message": "Result (Client Communication instance connection status): True ()", "module": "test", - "msecs": 903.1751155853271, + "msecs": 38.65408897399902, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13067.991018295288, - "thread": 140012350113600, + "relativeCreated": 17972.196102142334, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -31308,8 +63933,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:09,903", - "created": 1609969749.903288, + "asctime": "2021-01-11 07:30:32,039", + "created": 1610346632.03911, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31319,35 +63944,35 @@ "lineno": 26, "message": "Expectation (Client Communication instance connection status): result = True ()", "module": "test", - "msecs": 903.2878875732422, + "msecs": 39.10994529724121, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13068.103790283203, - "thread": 140012350113600, + "relativeCreated": 17972.651958465576, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 903.3501148223877, + "msecs": 39.431095123291016, "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13068.166017532349, - "thread": 140012350113600, + "relativeCreated": 17972.973108291626, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 6.222724914550781e-05 + "time_consumption": 0.0003211498260498047 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:09,903", - "created": 1609969749.903577, + "asctime": "2021-01-11 07:30:32,040", + "created": 1610346632.040749, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31364,8 +63989,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:09,903", - "created": 1609969749.90346, + "asctime": "2021-01-11 07:30:32,039", + "created": 1610346632.039924, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31375,14 +64000,14 @@ "lineno": 22, "message": "Result (Server Communication instance connection status): True ()", "module": "test", - "msecs": 903.4600257873535, + "msecs": 39.923906326293945, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13068.275928497314, - "thread": 140012350113600, + "relativeCreated": 17973.46591949463, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -31391,8 +64016,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:09,903", - "created": 1609969749.90352, + "asctime": "2021-01-11 07:30:32,040", + "created": 1610346632.040195, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31402,39 +64027,331 @@ "lineno": 26, "message": "Expectation (Server Communication instance connection status): result = True ()", "module": "test", - "msecs": 903.5201072692871, + "msecs": 40.19498825073242, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13068.336009979248, - "thread": 140012350113600, + "relativeCreated": 17973.737001419067, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 903.5770893096924, + "msecs": 40.74907302856445, "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13068.392992019653, - "thread": 140012350113600, + "relativeCreated": 17974.2910861969, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 5.698204040527344e-05 + "time_consumption": 0.0005540847778320312 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:32,042", + "created": 1610346632.042066, + "exc_info": null, + "exc_text": null, + "filename": "test_add_methods.py", + "funcName": "is_connected", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 43, + "message": "Disconnecting Server and Client", + "module": "test_add_methods", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:32,041", + "created": 1610346632.041197, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 41.19706153869629, + "msg": "%s Connection Lost...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17974.73907470703, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:32,041", + "created": 1610346632.041528, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 41.52798652648926, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17975.069999694824, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:32,041", + "created": 1610346632.041733, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 41.7330265045166, + "msg": "%s Connection Lost...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17975.27503967285, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:32,041", + "created": 1610346632.041906, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 41.906118392944336, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17975.44813156128, + "thread": 140634736203584, + "threadName": "MainThread" + } + ], + "msecs": 42.066097259521484, + "msg": "Disconnecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_add_methods.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17975.608110427856, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.00015997886657714844 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2021-01-11 07:30:32,042", + "created": 1610346632.042641, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 144, + "message": "Client Communication instance connection status is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Client Communication instance connection status", + "False", + "" + ], + "asctime": "2021-01-11 07:30:32,042", + "created": 1610346632.042346, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Client Communication instance connection status): False ()", + "module": "test", + "msecs": 42.34600067138672, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17975.88801383972, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "Client Communication instance connection status", + "False", + "" + ], + "asctime": "2021-01-11 07:30:32,042", + "created": 1610346632.042491, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Client Communication instance connection status): result = False ()", + "module": "test", + "msecs": 42.49095916748047, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17976.032972335815, + "thread": 140634736203584, + "threadName": "MainThread" + } + ], + "msecs": 42.64092445373535, + "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17976.18293762207, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.0001499652862548828 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2021-01-11 07:30:32,043", + "created": 1610346632.043312, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 144, + "message": "Server Communication instance connection status is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Server Communication instance connection status", + "False", + "" + ], + "asctime": "2021-01-11 07:30:32,042", + "created": 1610346632.042896, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Server Communication instance connection status): False ()", + "module": "test", + "msecs": 42.89603233337402, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17976.43804550171, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "Server Communication instance connection status", + "False", + "" + ], + "asctime": "2021-01-11 07:30:32,043", + "created": 1610346632.043036, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Server Communication instance connection status): result = False ()", + "module": "test", + "msecs": 43.03598403930664, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17976.57799720764, + "thread": 140634736203584, + "threadName": "MainThread" + } + ], + "msecs": 43.31207275390625, + "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17976.85408592224, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.0002760887145996094 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.018501996994018555, - "time_finished": "2021-01-06 22:49:09,903", - "time_start": "2021-01-06 22:49:09,885" + "time_consumption": 0.35427117347717285, + "time_finished": "2021-01-11 07:30:32,043", + "time_start": "2021-01-11 07:30:31,689" }, "_gvJ1oE4gEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-06 22:49:09,903", - "created": 1609969749.903844, + "asctime": "2021-01-11 07:30:32,043", + "created": 1610346632.043821, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -31445,1389 +64362,2722 @@ "message": "_gvJ1oE4gEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 903.8441181182861, + "msecs": 43.821096420288086, "msg": "_gvJ1oE4gEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13068.660020828247, + "relativeCreated": 17977.363109588623, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:09,908", - "created": 1609969749.908971, + "asctime": "2021-01-11 07:30:32,052", + "created": 1610346632.052457, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:09,904", - "created": 1609969749.90407, + "asctime": "2021-01-11 07:30:32,045", + "created": 1610346632.045553, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 904.0699005126953, + "msecs": 45.552968978881836, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13068.885803222656, - "thread": 140012350113600, + "relativeCreated": 17979.094982147217, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:09,904", - "created": 1609969749.904148, + "asctime": "2021-01-11 07:30:32,046", + "created": 1610346632.046278, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 904.1481018066406, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 46.27799987792969, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13068.964004516602, - "thread": 140012350113600, + "relativeCreated": 17979.820013046265, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:09,904", - "created": 1609969749.90424, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 904.2398929595947, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13069.055795669556, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:09,904", - "created": 1609969749.904309, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 904.3090343475342, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13069.124937057495, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:09,904", - "created": 1609969749.904368, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 904.3679237365723, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13069.183826446533, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:09,904", - "created": 1609969749.904426, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 904.426097869873, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13069.242000579834, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:09,904", - "created": 1609969749.904489, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 904.4890403747559, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13069.304943084717, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:09,904", - "created": 1609969749.904546, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 904.5460224151611, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13069.361925125122, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:09,904", - "created": 1609969749.904602, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 904.60205078125, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13069.417953491211, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:09,904", - "created": 1609969749.904692, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 904.6919345855713, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13069.507837295532, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:09,904", - "created": 1609969749.904807, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 904.8070907592773, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13069.622993469238, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:09,904", - "created": 1609969749.904965, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 904.9649238586426, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13069.780826568604, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:09,905", - "created": 1609969749.905113, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 905.1129817962646, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13069.928884506226, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:09,905", - "created": 1609969749.905234, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 905.2340984344482, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13070.05000114441, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:09,905", - "created": 1609969749.905368, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 905.3680896759033, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13070.183992385864, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:09,905", - "created": 1609969749.905506, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 905.505895614624, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13070.321798324585, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:09,905", - "created": 1609969749.905645, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 905.6448936462402, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13070.460796356201, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:09,905", - "created": 1609969749.905761, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 905.7610034942627, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13070.576906204224, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:09,905", - "created": 1609969749.905941, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 905.9410095214844, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13070.756912231445, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:09,906", - "created": 1609969749.906082, + "asctime": "2021-01-11 07:30:32,046", + "created": 1610346632.04647, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 906.0819149017334, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 46.469926834106445, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13070.897817611694, - "thread": 140012350113600, + "relativeCreated": 17980.01194000244, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,906", - "created": 1609969749.906323, + "asctime": "2021-01-11 07:30:32,046", + "created": 1610346632.046837, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 906.3229560852051, + "msecs": 46.83709144592285, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13071.138858795166, - "thread": 140012350113600, + "relativeCreated": 17980.379104614258, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:09,906", - "created": 1609969749.906454, + "asctime": "2021-01-11 07:30:32,047", + "created": 1610346632.04701, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 906.4540863037109, + "msecs": 47.009944915771484, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13071.269989013672, - "thread": 140012350113600, + "relativeCreated": 17980.551958084106, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:09,906", - "created": 1609969749.906623, + "asctime": "2021-01-11 07:30:32,047", + "created": 1610346632.047295, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 906.6228866577148, + "msecs": 47.29509353637695, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13071.438789367676, - "thread": 140012350113600, + "relativeCreated": 17980.837106704712, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:09,906", - "created": 1609969749.906771, + "asctime": "2021-01-11 07:30:32,047", + "created": 1610346632.047418, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 906.7709445953369, + "msecs": 47.41811752319336, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13071.586847305298, - "thread": 140012350113600, + "relativeCreated": 17980.96013069153, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:09,906", - "created": 1609969749.906907, + "asctime": "2021-01-11 07:30:32,047", + "created": 1610346632.04754, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 906.9070816040039, + "msecs": 47.53994941711426, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13071.722984313965, - "thread": 140012350113600, + "relativeCreated": 17981.08196258545, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:09,907", - "created": 1609969749.907022, + "asctime": "2021-01-11 07:30:32,047", + "created": 1610346632.04769, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 907.0219993591309, + "msecs": 47.68991470336914, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13071.837902069092, - "thread": 140012350113600, + "relativeCreated": 17981.231927871704, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:09,907", - "created": 1609969749.907144, + "asctime": "2021-01-11 07:30:32,047", + "created": 1610346632.047836, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 907.1440696716309, + "msecs": 47.8360652923584, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13071.959972381592, - "thread": 140012350113600, + "relativeCreated": 17981.378078460693, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:09,907", - "created": 1609969749.907281, + "asctime": "2021-01-11 07:30:32,047", + "created": 1610346632.047986, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 907.2809219360352, + "msecs": 47.98603057861328, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13072.096824645996, - "thread": 140012350113600, + "relativeCreated": 17981.52804374695, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:09,907", - "created": 1609969749.907415, + "asctime": "2021-01-11 07:30:32,048", + "created": 1610346632.048122, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 907.4149131774902, + "msecs": 48.12192916870117, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13072.230815887451, - "thread": 140012350113600, + "relativeCreated": 17981.663942337036, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:09,907", - "created": 1609969749.90755, + "asctime": "2021-01-11 07:30:32,048", + "created": 1610346632.04829, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 907.5500965118408, + "msecs": 48.29001426696777, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13072.365999221802, - "thread": 140012350113600, + "relativeCreated": 17981.832027435303, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,907", - "created": 1609969749.907673, + "asctime": "2021-01-11 07:30:32,048", + "created": 1610346632.048384, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 907.6728820800781, + "msecs": 48.38395118713379, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13072.488784790039, - "thread": 140012350113600, + "relativeCreated": 17981.92596435547, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:09,907", - "created": 1609969749.90783, + "asctime": "2021-01-11 07:30:32,048", + "created": 1610346632.048488, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 907.829999923706, + "msecs": 48.48790168762207, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13072.645902633667, - "thread": 140012350113600, + "relativeCreated": 17982.029914855957, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:09,907", - "created": 1609969749.90797, + "asctime": "2021-01-11 07:30:32,048", + "created": 1610346632.048592, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 907.9699516296387, + "msecs": 48.59209060668945, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13072.7858543396, - "thread": 140012350113600, + "relativeCreated": 17982.134103775024, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:09,908", - "created": 1609969749.908115, + "asctime": "2021-01-11 07:30:32,048", + "created": 1610346632.048687, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 908.1149101257324, + "msecs": 48.686981201171875, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13072.930812835693, - "thread": 140012350113600, + "relativeCreated": 17982.228994369507, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:09,908", - "created": 1609969749.908236, + "asctime": "2021-01-11 07:30:32,048", + "created": 1610346632.04878, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 908.236026763916, + "msecs": 48.779964447021484, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13073.051929473877, - "thread": 140012350113600, + "relativeCreated": 17982.321977615356, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:09,908", - "created": 1609969749.908349, + "asctime": "2021-01-11 07:30:32,048", + "created": 1610346632.048877, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 908.3490371704102, + "msecs": 48.87700080871582, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13073.164939880371, - "thread": 140012350113600, + "relativeCreated": 17982.41901397705, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:09,908", - "created": 1609969749.908473, + "asctime": "2021-01-11 07:30:32,048", + "created": 1610346632.04897, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 908.473014831543, + "msecs": 48.96998405456543, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13073.288917541504, - "thread": 140012350113600, + "relativeCreated": 17982.5119972229, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:09,908", - "created": 1609969749.9086, + "asctime": "2021-01-11 07:30:32,049", + "created": 1610346632.049079, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 908.6000919342041, + "msecs": 49.078941345214844, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13073.415994644165, - "thread": 140012350113600, + "relativeCreated": 17982.62095451355, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:09,908", - "created": 1609969749.908712, + "asctime": "2021-01-11 07:30:32,049", + "created": 1610346632.049179, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 908.7119102478027, + "msecs": 49.1790771484375, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13073.527812957764, - "thread": 140012350113600, + "relativeCreated": 17982.721090316772, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,908", - "created": 1609969749.908834, + "asctime": "2021-01-11 07:30:32,049", + "created": 1610346632.049306, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 908.8339805603027, + "msecs": 49.30591583251953, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13073.649883270264, - "thread": 140012350113600, + "relativeCreated": 17982.847929000854, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:32,049", + "created": 1610346632.049737, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 49.736976623535156, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17983.27898979187, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:32,049", + "created": 1610346632.049929, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 49.928903579711914, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17983.470916748047, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:32,050", + "created": 1610346632.050112, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 50.112009048461914, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17983.654022216797, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:32,050", + "created": 1610346632.050253, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 50.25291442871094, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17983.794927597046, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:32,050", + "created": 1610346632.050611, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 50.611019134521484, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17984.153032302856, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:32,050", + "created": 1610346632.050709, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 50.70900917053223, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17984.251022338867, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:32,050", + "created": 1610346632.050831, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 50.83107948303223, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17984.373092651367, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:32,051", + "created": 1610346632.051008, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 51.007986068725586, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17984.54999923706, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:32,051", + "created": 1610346632.051143, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 51.14293098449707, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17984.684944152832, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:32,051", + "created": 1610346632.051261, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 51.260948181152344, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17984.802961349487, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:32,051", + "created": 1610346632.051368, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 51.367998123168945, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17984.910011291504, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:32,051", + "created": 1610346632.051491, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 51.49102210998535, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17985.03303527832, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:32,051", + "created": 1610346632.051612, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 51.611900329589844, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17985.153913497925, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:32,051", + "created": 1610346632.051726, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 51.72610282897949, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17985.268115997314, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:32,051", + "created": 1610346632.051858, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 51.857948303222656, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17985.399961471558, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:32,051", + "created": 1610346632.05198, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 51.980018615722656, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17985.522031784058, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:32,052", + "created": 1610346632.052099, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 52.098989486694336, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17985.64100265503, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:32,052", + "created": 1610346632.052184, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 52.184104919433594, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17985.72611808777, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:32,052", + "created": 1610346632.052281, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 52.28090286254883, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17985.822916030884, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:32,052", + "created": 1610346632.052368, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 52.3679256439209, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17985.909938812256, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 908.9710712432861, + "msecs": 52.45709419250488, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13073.786973953247, - "thread": 140012350113600, + "relativeCreated": 17985.99910736084, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00013709068298339844 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,909", - "created": 1609969749.909434, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Reconnect executed marker is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Reconnect executed marker", - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,909", - "created": 1609969749.909192, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Reconnect executed marker): False ()", - "module": "test", - "msecs": 909.1920852661133, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13074.007987976074, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "Reconnect executed marker", - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,909", - "created": 1609969749.909316, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Reconnect executed marker): result = False ()", - "module": "test", - "msecs": 909.3160629272461, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13074.131965637207, - "thread": 140012350113600, - "threadName": "MainThread" - } - ], - "msecs": 909.4340801239014, - "msg": "Reconnect executed marker is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13074.249982833862, - "thread": 140012350113600, - "threadName": "MainThread", - "time_consumption": 0.00011801719665527344 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,909", - "created": 1609969749.909974, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Reconnect executed marker is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Reconnect executed marker", - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,909", - "created": 1609969749.909622, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Reconnect executed marker): False ()", - "module": "test", - "msecs": 909.6219539642334, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13074.437856674194, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "Reconnect executed marker", - "False", - "" - ], - "asctime": "2021-01-06 22:49:09,909", - "created": 1609969749.909738, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Reconnect executed marker): result = False ()", - "module": "test", - "msecs": 909.7380638122559, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13074.553966522217, - "thread": 140012350113600, - "threadName": "MainThread" - } - ], - "msecs": 909.9740982055664, - "msg": "Reconnect executed marker is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13074.790000915527, - "thread": 140012350113600, - "threadName": "MainThread", - "time_consumption": 0.00023603439331054688 + "time_consumption": 8.916854858398438e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:09,910", - "created": 1609969749.910261, + "asctime": "2021-01-11 07:30:32,396", + "created": 1610346632.396817, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:32,052", + "created": 1610346632.05264, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 52.63996124267578, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17986.18197441101, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:32,052", + "created": 1610346632.05274, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 52.74009704589844, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17986.282110214233, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:32,052", + "created": 1610346632.052832, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 52.83188819885254, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17986.373901367188, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:32,052", + "created": 1610346632.052979, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 52.9789924621582, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17986.521005630493, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:32,053", + "created": 1610346632.053318, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 53.318023681640625, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17986.860036849976, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:32,053", + "created": 1610346632.053477, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 53.47704887390137, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17987.019062042236, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:32,053", + "created": 1610346632.053592, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 53.59196662902832, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17987.133979797363, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:32,054", + "created": 1610346632.054729, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 54.72898483276367, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17988.2709980011, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:32,055", + "created": 1610346632.055142, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 55.14192581176758, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17988.683938980103, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,055", + "created": 1610346632.055285, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 55.284976959228516, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17988.826990127563, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:32,055", + "created": 1610346632.055525, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 55.52506446838379, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17989.06707763672, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,055", + "created": 1610346632.055666, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 55.66596984863281, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17989.207983016968, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:32,055", + "created": 1610346632.055773, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 55.773019790649414, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17989.315032958984, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,055", + "created": 1610346632.05593, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 55.92989921569824, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17989.471912384033, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:32,056", + "created": 1610346632.056034, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 56.034088134765625, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17989.5761013031, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,056", + "created": 1610346632.056168, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 56.1680793762207, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17989.710092544556, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:32,056", + "created": 1610346632.05627, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 56.26988410949707, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17989.811897277832, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,056", + "created": 1610346632.056419, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 56.41889572143555, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17989.96090888977, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:32,056", + "created": 1610346632.056534, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 56.5340518951416, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17990.076065063477, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "comm-client:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:32,056", + "created": 1610346632.056635, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 56.63490295410156, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17990.176916122437, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "comm-server:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:32,056", + "created": 1610346632.056715, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 56.71501159667969, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17990.257024765015, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,056", + "created": 1610346632.056792, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 56.79202079772949, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17990.334033966064, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:32,056", + "created": 1610346632.056859, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 56.85901641845703, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17990.401029586792, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" + ], + "asctime": "2021-01-11 07:30:32,056", + "created": 1610346632.057, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", + "module": "stp", + "msecs": 56.999921798706055, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17990.54193496704, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:32,057", + "created": 1610346632.057146, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 57.14607238769531, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17990.68808555603, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:32,057", + "created": 1610346632.057232, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 57.231903076171875, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17990.773916244507, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:32,057", + "created": 1610346632.057346, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 57.34610557556152, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17990.888118743896, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:32,062", + "created": 1610346632.062985, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 62.98494338989258, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17996.526956558228, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:32,063", + "created": 1610346632.063121, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 63.12108039855957, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17996.663093566895, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,063", + "created": 1610346632.063179, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 63.17901611328125, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17996.721029281616, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:32,063", + "created": 1610346632.063243, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 63.24291229248047, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17996.784925460815, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,063", + "created": 1610346632.063336, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 63.33589553833008, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17996.877908706665, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:32,063", + "created": 1610346632.063401, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 63.400983810424805, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17996.94299697876, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,063", + "created": 1610346632.06352, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 63.519954681396484, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17997.06196784973, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:32,063", + "created": 1610346632.063589, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 63.58909606933594, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17997.13110923767, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,063", + "created": 1610346632.063686, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 63.68589401245117, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17997.227907180786, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:32,063", + "created": 1610346632.063757, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 63.75694274902344, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17997.29895591736, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,063", + "created": 1610346632.063856, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 63.855886459350586, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17997.397899627686, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:32,063", + "created": 1610346632.063924, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 63.92407417297363, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17997.46608734131, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:32,064", + "created": 1610346632.064024, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 64.02397155761719, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17997.565984725952, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:32,064", + "created": 1610346632.064162, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 64.16201591491699, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17997.704029083252, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,064", + "created": 1610346632.064235, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 64.23497200012207, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17997.776985168457, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:32,064", + "created": 1610346632.064276, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 64.27597999572754, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17997.817993164062, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:32,064", + "created": 1610346632.064361, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 64.3610954284668, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17997.9031085968, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:32,064", + "created": 1610346632.064452, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 64.45193290710449, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17997.99394607544, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:32,064", + "created": 1610346632.064507, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 64.50700759887695, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 17998.049020767212, + "thread": 140632387479296, + "threadName": "Thread-34" + } + ], + "msecs": 396.8169689178467, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18330.35898208618, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.3323099613189697 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2021-01-11 07:30:32,397", + "created": 1610346632.397949, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 144, + "message": "Client Communication instance connection status is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Client Communication instance connection status", + "True", + "" + ], + "asctime": "2021-01-11 07:30:32,397", + "created": 1610346632.397479, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Client Communication instance connection status): True ()", + "module": "test", + "msecs": 397.4790573120117, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18331.021070480347, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "Client Communication instance connection status", + "True", + "" + ], + "asctime": "2021-01-11 07:30:32,397", + "created": 1610346632.397695, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Client Communication instance connection status): result = True ()", + "module": "test", + "msecs": 397.69506454467773, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18331.237077713013, + "thread": 140634736203584, + "threadName": "MainThread" + } + ], + "msecs": 397.9489803314209, + "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18331.490993499756, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.00025391578674316406 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2021-01-11 07:30:32,398", + "created": 1610346632.398599, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 144, + "message": "Server Communication instance connection status is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Server Communication instance connection status", + "True", + "" + ], + "asctime": "2021-01-11 07:30:32,398", + "created": 1610346632.398265, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Server Communication instance connection status): True ()", + "module": "test", + "msecs": 398.26488494873047, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18331.806898117065, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "Server Communication instance connection status", + "True", + "" + ], + "asctime": "2021-01-11 07:30:32,398", + "created": 1610346632.398436, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Server Communication instance connection status): result = True ()", + "module": "test", + "msecs": 398.4360694885254, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18331.97808265686, + "thread": 140634736203584, + "threadName": "MainThread" + } + ], + "msecs": 398.59890937805176, + "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18332.140922546387, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.0001628398895263672 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:32,399", + "created": 1610346632.399641, "exc_info": null, "exc_text": null, "filename": "test_add_methods.py", "funcName": "reconnect", "levelname": "DEBUG", "levelno": 10, - "lineno": 53, - "message": "Executing reconnect for Server", + "lineno": 55, + "message": "Disconnecting Server and Client", "module": "test_add_methods", - "moduleLogger": [], - "msecs": 910.2609157562256, - "msg": "Executing reconnect for Server", - "name": "__tLogger__", - "pathname": "src/tests/test_add_methods.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 13075.076818466187, - "thread": 140012350113600, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-01-06 22:49:09,910", - "created": 1609969749.910672, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Reconnect executed marker is correct (Content True and Type is ).", - "module": "test", "moduleLogger": [ { "args": [ - "Reconnect executed marker", - "True", - "" + "comm-client:" ], - "asctime": "2021-01-06 22:49:09,910", - "created": 1609969749.910445, + "asctime": "2021-01-11 07:30:32,398", + "created": 1610346632.398873, "exc_info": null, "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Reconnect executed marker): True ()", - "module": "test", - "msecs": 910.444974899292, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 398.87309074401855, + "msg": "%s Connection Lost...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13075.260877609253, - "thread": 140012350113600, + "relativeCreated": 18332.415103912354, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "Reconnect executed marker", - "True", - "" + "prot-client:" ], - "asctime": "2021-01-06 22:49:09,910", - "created": 1609969749.910561, + "asctime": "2021-01-11 07:30:32,399", + "created": 1610346632.3991, "exc_info": null, "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Reconnect executed marker): result = True ()", - "module": "test", - "msecs": 910.5610847473145, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125831, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 399.10006523132324, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13075.376987457275, - "thread": 140012350113600, + "relativeCreated": 18332.64207839966, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:32,399", + "created": 1610346632.399299, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 399.29890632629395, + "msg": "%s Connection Lost...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18332.84091949463, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:32,399", + "created": 1610346632.399469, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 399.46889877319336, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18333.01091194153, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 910.6719493865967, - "msg": "Reconnect executed marker is correct (Content %s and Type is %s).", + "msecs": 399.6410369873047, + "msg": "Disconnecting Server and Client", "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125831, + "pathname": "src/tests/test_add_methods.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13075.487852096558, - "thread": 140012350113600, + "relativeCreated": 18333.18305015564, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00011086463928222656 + "time_consumption": 0.00017213821411132812 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:09,911", - "created": 1609969749.91107, + "asctime": "2021-01-11 07:30:32,400", + "created": 1610346632.400221, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -32835,17 +67085,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 144, - "message": "Reconnect executed marker is correct (Content False and Type is ).", + "message": "Client Communication instance connection status is correct (Content False and Type is ).", "module": "test", "moduleLogger": [ { "args": [ - "Reconnect executed marker", + "Client Communication instance connection status", "False", "" ], - "asctime": "2021-01-06 22:49:09,910", - "created": 1609969749.910858, + "asctime": "2021-01-11 07:30:32,399", + "created": 1610346632.399908, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -32853,26 +67103,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Reconnect executed marker): False ()", + "message": "Result (Client Communication instance connection status): False ()", "module": "test", - "msecs": 910.8579158782959, + "msecs": 399.90806579589844, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13075.673818588257, - "thread": 140012350113600, + "relativeCreated": 18333.450078964233, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "Reconnect executed marker", + "Client Communication instance connection status", "False", "" ], - "asctime": "2021-01-06 22:49:09,910", - "created": 1609969749.910968, + "asctime": "2021-01-11 07:30:32,400", + "created": 1610346632.400064, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -32880,62 +67130,1360 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 26, - "message": "Expectation (Reconnect executed marker): result = False ()", + "message": "Expectation (Client Communication instance connection status): result = False ()", "module": "test", - "msecs": 910.9680652618408, + "msecs": 400.06399154663086, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13075.783967971802, - "thread": 140012350113600, + "relativeCreated": 18333.606004714966, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 911.0701084136963, - "msg": "Reconnect executed marker is correct (Content %s and Type is %s).", + "msecs": 400.2211093902588, + "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13075.886011123657, - "thread": 140012350113600, + "relativeCreated": 18333.763122558594, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00010204315185546875 + "time_consumption": 0.0001571178436279297 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2021-01-11 07:30:32,400", + "created": 1610346632.400788, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 144, + "message": "Server Communication instance connection status is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Server Communication instance connection status", + "False", + "" + ], + "asctime": "2021-01-11 07:30:32,400", + "created": 1610346632.400479, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Server Communication instance connection status): False ()", + "module": "test", + "msecs": 400.4790782928467, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18334.02109146118, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "Server Communication instance connection status", + "False", + "" + ], + "asctime": "2021-01-11 07:30:32,400", + "created": 1610346632.400634, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Server Communication instance connection status): result = False ()", + "module": "test", + "msecs": 400.6340503692627, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18334.176063537598, + "thread": 140634736203584, + "threadName": "MainThread" + } + ], + "msecs": 400.7880687713623, + "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18334.330081939697, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.00015401840209960938 }, { "args": [], - "asctime": "2021-01-06 22:49:09,911", - "created": 1609969749.911232, + "asctime": "2021-01-11 07:30:32,745", + "created": 1610346632.745567, "exc_info": null, "exc_text": null, "filename": "test_add_methods.py", "funcName": "reconnect", "levelname": "DEBUG", "levelno": 10, - "lineno": 58, - "message": "Executing reconnect for Client", + "lineno": 61, + "message": "Connecting Server and Client", "module": "test_add_methods", - "moduleLogger": [], - "msecs": 911.2319946289062, - "msg": "Executing reconnect for Client", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:32,401", + "created": 1610346632.401061, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 401.0610580444336, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18334.60307121277, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:32,401", + "created": 1610346632.401287, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 401.2870788574219, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18334.829092025757, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:32,401", + "created": 1610346632.401531, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 401.5309810638428, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18335.072994232178, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:32,401", + "created": 1610346632.401741, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 401.74102783203125, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18335.283041000366, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:32,402", + "created": 1610346632.40226, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 402.26006507873535, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18335.80207824707, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:32,402", + "created": 1610346632.40238, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 402.37998962402344, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18335.92200279236, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:32,402", + "created": 1610346632.402475, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 402.47511863708496, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18336.01713180542, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:32,422", + "created": 1610346632.422389, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 422.38903045654297, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18355.931043624878, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:32,422", + "created": 1610346632.422921, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 422.92094230651855, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18356.462955474854, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,423", + "created": 1610346632.423331, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 423.33102226257324, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18356.87303543091, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:32,423", + "created": 1610346632.423498, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 423.49791526794434, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18357.03992843628, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,423", + "created": 1610346632.423718, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 423.7179756164551, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18357.25998878479, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:32,423", + "created": 1610346632.423868, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 423.86794090270996, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18357.409954071045, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,424", + "created": 1610346632.424151, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 424.1509437561035, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18357.69295692444, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:32,424", + "created": 1610346632.424421, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 424.4210720062256, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18357.96308517456, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,424", + "created": 1610346632.424656, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 424.6559143066406, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18358.197927474976, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:32,424", + "created": 1610346632.424886, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 424.88598823547363, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18358.42800140381, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,425", + "created": 1610346632.425082, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 425.0819683074951, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18358.62398147583, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:32,425", + "created": 1610346632.42522, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 425.2200126647949, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18358.76202583313, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "comm-client:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:32,425", + "created": 1610346632.425471, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 425.47106742858887, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18359.013080596924, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "comm-server:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:32,425", + "created": 1610346632.425676, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 425.6761074066162, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18359.21812057495, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,425", + "created": 1610346632.425853, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 425.85301399230957, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18359.395027160645, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:32,426", + "created": 1610346632.426056, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 426.055908203125, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18359.59792137146, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" + ], + "asctime": "2021-01-11 07:30:32,426", + "created": 1610346632.426332, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", + "module": "stp", + "msecs": 426.3319969177246, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18359.87401008606, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:32,426", + "created": 1610346632.426583, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 426.58305168151855, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18360.125064849854, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:32,426", + "created": 1610346632.426708, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 426.7079830169678, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18360.249996185303, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:32,426", + "created": 1610346632.426857, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 426.85699462890625, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18360.39900779724, + "thread": 140632395872000, + "threadName": "Thread-33" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:32,428", + "created": 1610346632.428943, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 428.9429187774658, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18362.4849319458, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:32,429", + "created": 1610346632.429163, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 429.16297912597656, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18362.70499229431, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,429", + "created": 1610346632.429259, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 429.2590618133545, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18362.80107498169, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:32,429", + "created": 1610346632.429342, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 429.34203147888184, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18362.884044647217, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,429", + "created": 1610346632.429456, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 429.4559955596924, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18362.998008728027, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:32,429", + "created": 1610346632.429548, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 429.5480251312256, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18363.09003829956, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,429", + "created": 1610346632.429653, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 429.6529293060303, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18363.194942474365, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:32,429", + "created": 1610346632.429728, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 429.72803115844727, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18363.270044326782, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,429", + "created": 1610346632.429821, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 429.8210144042969, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18363.363027572632, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:32,429", + "created": 1610346632.429899, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 429.8989772796631, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18363.440990447998, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,430", + "created": 1610346632.430001, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 430.00102043151855, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18363.543033599854, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:32,430", + "created": 1610346632.430074, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 430.07397651672363, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18363.61598968506, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:32,430", + "created": 1610346632.430183, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 430.18293380737305, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18363.724946975708, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:32,430", + "created": 1610346632.430276, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 430.27591705322266, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18363.817930221558, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:32,430", + "created": 1610346632.430405, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 430.4049015045166, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18363.94691467285, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:32,430", + "created": 1610346632.430508, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 430.5078983306885, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18364.049911499023, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:32,430", + "created": 1610346632.430709, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 430.7088851928711, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18364.250898361206, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:32,430", + "created": 1610346632.430914, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 430.91392517089844, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18364.455938339233, + "thread": 140632387479296, + "threadName": "Thread-34" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:32,431", + "created": 1610346632.431034, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 431.0340881347656, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 18364.5761013031, + "thread": 140632387479296, + "threadName": "Thread-34" + } + ], + "msecs": 745.5670833587646, + "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_add_methods.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13076.047897338867, - "thread": 140012350113600, + "relativeCreated": 18679.1090965271, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0 + "time_consumption": 0.314532995223999 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:09,911", - "created": 1609969749.911615, + "asctime": "2021-01-11 07:30:32,746", + "created": 1610346632.746887, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -32943,17 +68491,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 144, - "message": "Reconnect executed marker is correct (Content True and Type is ).", + "message": "Client Communication instance connection status is correct (Content True and Type is ).", "module": "test", "moduleLogger": [ { "args": [ - "Reconnect executed marker", + "Client Communication instance connection status", "True", "" ], - "asctime": "2021-01-06 22:49:09,911", - "created": 1609969749.911399, + "asctime": "2021-01-11 07:30:32,746", + "created": 1610346632.746338, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -32961,26 +68509,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Reconnect executed marker): True ()", + "message": "Result (Client Communication instance connection status): True ()", "module": "test", - "msecs": 911.3988876342773, + "msecs": 746.337890625, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13076.214790344238, - "thread": 140012350113600, + "relativeCreated": 18679.879903793335, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "Reconnect executed marker", + "Client Communication instance connection status", "True", "" ], - "asctime": "2021-01-06 22:49:09,911", - "created": 1609969749.911509, + "asctime": "2021-01-11 07:30:32,746", + "created": 1610346632.746624, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -32988,37 +68536,37 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 26, - "message": "Expectation (Reconnect executed marker): result = True ()", + "message": "Expectation (Client Communication instance connection status): result = True ()", "module": "test", - "msecs": 911.5090370178223, + "msecs": 746.6239929199219, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13076.324939727783, - "thread": 140012350113600, + "relativeCreated": 18680.166006088257, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 911.6148948669434, - "msg": "Reconnect executed marker is correct (Content %s and Type is %s).", + "msecs": 746.8869686126709, + "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13076.430797576904, - "thread": 140012350113600, + "relativeCreated": 18680.428981781006, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00010585784912109375 + "time_consumption": 0.00026297569274902344 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:09,912", - "created": 1609969749.912002, + "asctime": "2021-01-11 07:30:32,747", + "created": 1610346632.747799, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -33026,17 +68574,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 144, - "message": "Reconnect executed marker is correct (Content True and Type is ).", + "message": "Server Communication instance connection status is correct (Content True and Type is ).", "module": "test", "moduleLogger": [ { "args": [ - "Reconnect executed marker", + "Server Communication instance connection status", "True", "" ], - "asctime": "2021-01-06 22:49:09,911", - "created": 1609969749.911776, + "asctime": "2021-01-11 07:30:32,747", + "created": 1610346632.747312, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -33044,26 +68592,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Reconnect executed marker): True ()", + "message": "Result (Server Communication instance connection status): True ()", "module": "test", - "msecs": 911.776065826416, + "msecs": 747.312068939209, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13076.591968536377, - "thread": 140012350113600, + "relativeCreated": 18680.854082107544, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "Reconnect executed marker", + "Server Communication instance connection status", "True", "" ], - "asctime": "2021-01-06 22:49:09,911", - "created": 1609969749.911889, + "asctime": "2021-01-11 07:30:32,747", + "created": 1610346632.747526, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -33071,41 +68619,41 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 26, - "message": "Expectation (Reconnect executed marker): result = True ()", + "message": "Expectation (Server Communication instance connection status): result = True ()", "module": "test", - "msecs": 911.8890762329102, + "msecs": 747.5259304046631, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13076.704978942871, - "thread": 140012350113600, + "relativeCreated": 18681.067943572998, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 912.0020866394043, - "msg": "Reconnect executed marker is correct (Content %s and Type is %s).", + "msecs": 747.7989196777344, + "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 13076.817989349365, - "thread": 140012350113600, + "relativeCreated": 18681.34093284607, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00011301040649414062 + "time_consumption": 0.00027298927307128906 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.008157968521118164, - "time_finished": "2021-01-06 22:49:09,912", - "time_start": "2021-01-06 22:49:09,903" + "time_consumption": 0.7039778232574463, + "time_finished": "2021-01-11 07:30:32,747", + "time_start": "2021-01-11 07:30:32,043" }, "_j-npsE0MEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:48:57,706", - "created": 1609969737.706009, + "asctime": "2021-01-11 07:30:15,826", + "created": 1610346615.826101, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -33116,1112 +68664,2427 @@ "message": "_j-npsE0MEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 706.0089111328125, + "msecs": 826.1010646820068, "msg": "_j-npsE0MEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 870.8248138427734, + "relativeCreated": 1759.6430778503418, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:48:57,713", - "created": 1609969737.713855, + "asctime": "2021-01-11 07:30:15,833", + "created": 1610346615.833686, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:48:57,706", - "created": 1609969737.706524, + "asctime": "2021-01-11 07:30:15,827", + "created": 1610346615.827262, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 706.5238952636719, + "msecs": 827.2619247436523, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 871.3397979736328, - "thread": 140012350113600, + "relativeCreated": 1760.8039379119873, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:48:57,706", - "created": 1609969737.706752, + "asctime": "2021-01-11 07:30:15,828", + "created": 1610346615.82844, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 706.7520618438721, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 828.4399509429932, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 871.567964553833, - "thread": 140012350113600, + "relativeCreated": 1761.9819641113281, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:48:57,707", - "created": 1609969737.707014, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 707.0140838623047, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 871.8299865722656, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:48:57,707", - "created": 1609969737.70721, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 707.2100639343262, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 872.0259666442871, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:48:57,707", - "created": 1609969737.70738, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 707.3800563812256, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 872.1959590911865, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:48:57,707", - "created": 1609969737.707544, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 707.5440883636475, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 872.3599910736084, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:48:57,707", - "created": 1609969737.707726, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 707.726001739502, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 872.5419044494629, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:48:57,707", - "created": 1609969737.707922, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 707.9219818115234, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 872.7378845214844, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:48:57,708", - "created": 1609969737.708101, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 708.1010341644287, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 872.9169368743896, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:48:57,708", - "created": 1609969737.708295, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 708.2951068878174, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 873.1110095977783, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:48:57,708", - "created": 1609969737.708456, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 708.4560394287109, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 873.2719421386719, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:48:57,708", - "created": 1609969737.708645, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 708.6451053619385, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 873.4610080718994, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:48:57,708", - "created": 1609969737.708839, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 708.838939666748, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 873.654842376709, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:48:57,709", - "created": 1609969737.709001, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 709.0010643005371, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 873.816967010498, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:48:57,709", - "created": 1609969737.70917, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 709.1701030731201, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 873.986005783081, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:48:57,709", - "created": 1609969737.709345, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 709.3451023101807, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 874.1610050201416, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:48:57,709", - "created": 1609969737.709532, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 709.5320224761963, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 874.3479251861572, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:48:57,709", - "created": 1609969737.709691, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 709.691047668457, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 874.506950378418, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:48:57,709", - "created": 1609969737.709866, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 709.8660469055176, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 874.6819496154785, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:48:57,710", - "created": 1609969737.71004, + "asctime": "2021-01-11 07:30:15,828", + "created": 1610346615.828798, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 710.0400924682617, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 828.7980556488037, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 874.8559951782227, - "thread": 140012350113600, + "relativeCreated": 1762.3400688171387, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:48:57,710", - "created": 1609969737.710407, + "asctime": "2021-01-11 07:30:15,829", + "created": 1610346615.829536, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 710.407018661499, + "msecs": 829.535961151123, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 875.22292137146, - "thread": 140012350113600, + "relativeCreated": 1763.077974319458, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:48:57,710", - "created": 1609969737.710595, + "asctime": "2021-01-11 07:30:15,829", + "created": 1610346615.829796, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 710.594892501831, + "msecs": 829.7960758209229, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 875.410795211792, - "thread": 140012350113600, + "relativeCreated": 1763.3380889892578, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:48:57,710", - "created": 1609969737.710834, + "asctime": "2021-01-11 07:30:15,830", + "created": 1610346615.830087, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 710.8340263366699, + "msecs": 830.0869464874268, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 875.6499290466309, - "thread": 140012350113600, + "relativeCreated": 1763.6289596557617, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:48:57,710", - "created": 1609969737.711, + "asctime": "2021-01-11 07:30:15,830", + "created": 1610346615.830288, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 710.9999656677246, + "msecs": 830.2879333496094, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 875.8158683776855, - "thread": 140012350113600, + "relativeCreated": 1763.8299465179443, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:48:57,711", - "created": 1609969737.711156, + "asctime": "2021-01-11 07:30:15,830", + "created": 1610346615.830522, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 711.155891418457, + "msecs": 830.5220603942871, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 875.971794128418, - "thread": 140012350113600, + "relativeCreated": 1764.064073562622, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:48:57,711", - "created": 1609969737.711312, + "asctime": "2021-01-11 07:30:15,830", + "created": 1610346615.830832, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 711.3120555877686, + "msecs": 830.8320045471191, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 876.1279582977295, - "thread": 140012350113600, + "relativeCreated": 1764.374017715454, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:48:57,711", - "created": 1609969737.711482, + "asctime": "2021-01-11 07:30:15,831", + "created": 1610346615.831095, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 711.482048034668, + "msecs": 831.0949802398682, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 876.2979507446289, - "thread": 140012350113600, + "relativeCreated": 1764.6369934082031, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:48:57,711", - "created": 1609969737.711669, + "asctime": "2021-01-11 07:30:15,831", + "created": 1610346615.831373, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 711.6689682006836, + "msecs": 831.3729763031006, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 876.4848709106445, - "thread": 140012350113600, + "relativeCreated": 1764.9149894714355, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:48:57,711", - "created": 1609969737.711843, + "asctime": "2021-01-11 07:30:15,831", + "created": 1610346615.83164, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 711.8430137634277, + "msecs": 831.6400051116943, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 876.6589164733887, - "thread": 140012350113600, + "relativeCreated": 1765.1820182800293, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:48:57,712", - "created": 1609969737.712024, + "asctime": "2021-01-11 07:30:15,831", + "created": 1610346615.831801, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 712.0239734649658, + "msecs": 831.8009376525879, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 876.8398761749268, - "thread": 140012350113600, + "relativeCreated": 1765.3429508209229, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:48:57,712", - "created": 1609969737.712178, + "asctime": "2021-01-11 07:30:15,831", + "created": 1610346615.831874, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 712.1779918670654, + "msecs": 831.873893737793, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 876.9938945770264, - "thread": 140012350113600, + "relativeCreated": 1765.415906906128, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:48:57,712", - "created": 1609969737.712369, + "asctime": "2021-01-11 07:30:15,831", + "created": 1610346615.831962, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 712.3689651489258, + "msecs": 831.9621086120605, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 877.1848678588867, - "thread": 140012350113600, + "relativeCreated": 1765.5041217803955, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:48:57,712", - "created": 1609969737.712552, + "asctime": "2021-01-11 07:30:15,832", + "created": 1610346615.832053, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 712.5520706176758, + "msecs": 832.0529460906982, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 877.3679733276367, - "thread": 140012350113600, + "relativeCreated": 1765.5949592590332, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:48:57,712", - "created": 1609969737.712724, + "asctime": "2021-01-11 07:30:15,832", + "created": 1610346615.832139, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 712.723970413208, + "msecs": 832.1390151977539, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 877.539873123169, - "thread": 140012350113600, + "relativeCreated": 1765.6810283660889, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:48:57,712", - "created": 1609969737.712891, + "asctime": "2021-01-11 07:30:15,832", + "created": 1610346615.832205, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 712.8911018371582, + "msecs": 832.205057144165, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 877.7070045471191, - "thread": 140012350113600, + "relativeCreated": 1765.7470703125, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:48:57,713", - "created": 1609969737.713074, + "asctime": "2021-01-11 07:30:15,832", + "created": 1610346615.832274, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 713.0739688873291, + "msecs": 832.2739601135254, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 877.88987159729, - "thread": 140012350113600, + "relativeCreated": 1765.8159732818604, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:48:57,713", - "created": 1609969737.71325, + "asctime": "2021-01-11 07:30:15,832", + "created": 1610346615.83234, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 713.249921798706, + "msecs": 832.3400020599365, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 878.065824508667, - "thread": 140012350113600, + "relativeCreated": 1765.8820152282715, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:48:57,713", - "created": 1609969737.713417, + "asctime": "2021-01-11 07:30:15,832", + "created": 1610346615.832419, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 713.4170532226562, + "msecs": 832.4189186096191, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 878.2329559326172, - "thread": 140012350113600, + "relativeCreated": 1765.960931777954, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:48:57,713", - "created": 1609969737.713575, + "asctime": "2021-01-11 07:30:15,832", + "created": 1610346615.832469, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 713.5748863220215, + "msecs": 832.4689865112305, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 878.3907890319824, - "thread": 140012350113600, + "relativeCreated": 1766.0109996795654, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:48:57,713", - "created": 1609969737.713741, + "asctime": "2021-01-11 07:30:15,832", + "created": 1610346615.832527, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 713.7410640716553, + "msecs": 832.5269222259521, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 878.5569667816162, - "thread": 140012350113600, + "relativeCreated": 1766.068935394287, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:15,832", + "created": 1610346615.832656, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 832.6559066772461, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1766.197919845581, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:15,832", + "created": 1610346615.832714, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 832.7140808105469, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1766.2560939788818, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:15,832", + "created": 1610346615.832786, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 832.7860832214355, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1766.3280963897705, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:15,832", + "created": 1610346615.832842, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 832.8421115875244, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1766.3841247558594, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:15,832", + "created": 1610346615.832895, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 832.895040512085, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1766.43705368042, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:15,832", + "created": 1610346615.832944, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 832.9439163208008, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1766.4859294891357, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:15,832", + "created": 1610346615.832997, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 832.9970836639404, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1766.5390968322754, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:15,833", + "created": 1610346615.833063, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 833.0628871917725, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1766.6049003601074, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:15,833", + "created": 1610346615.833118, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 833.1179618835449, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1766.6599750518799, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:15,833", + "created": 1610346615.83318, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 833.1799507141113, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1766.7219638824463, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:15,833", + "created": 1610346615.833221, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 833.2209587097168, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1766.7629718780518, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:15,833", + "created": 1610346615.833272, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 833.2719802856445, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1766.8139934539795, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:15,833", + "created": 1610346615.83332, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 833.319902420044, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1766.861915588379, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:15,833", + "created": 1610346615.833368, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 833.3680629730225, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1766.9100761413574, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:15,833", + "created": 1610346615.833412, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 833.4119319915771, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1766.953945159912, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:15,833", + "created": 1610346615.833467, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 833.4670066833496, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1767.0090198516846, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:15,833", + "created": 1610346615.833516, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 833.5158824920654, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1767.0578956604004, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:15,833", + "created": 1610346615.833558, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 833.5580825805664, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1767.1000957489014, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:15,833", + "created": 1610346615.833599, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 833.5990905761719, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1767.1411037445068, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:15,833", + "created": 1610346615.833643, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 833.6429595947266, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1767.1849727630615, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 713.8550281524658, + "msecs": 833.686113357544, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 878.6709308624268, - "thread": 140012350113600, + "relativeCreated": 1767.228126525879, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00011396408081054688 + "time_consumption": 4.315376281738281e-05 }, { "args": [], - "asctime": "2021-01-06 22:48:57,713", - "created": 1609969737.713952, + "asctime": "2021-01-11 07:30:16,177", + "created": 1610346616.177509, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:15,833", + "created": 1610346615.833776, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 833.7759971618652, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1767.3180103302002, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:15,833", + "created": 1610346615.833822, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 833.8220119476318, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1767.3640251159668, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:15,833", + "created": 1610346615.833867, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 833.867073059082, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1767.409086227417, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:15,833", + "created": 1610346615.833947, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 833.946943283081, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1767.488956451416, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:15,834", + "created": 1610346615.834092, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 834.0919017791748, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1767.6339149475098, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:15,834", + "created": 1610346615.834148, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 834.1479301452637, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1767.6899433135986, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:15,834", + "created": 1610346615.834221, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 834.2208862304688, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1767.7628993988037, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:15,835", + "created": 1610346615.835912, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 835.9119892120361, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1769.454002380371, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:15,836", + "created": 1610346615.836065, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 836.0650539398193, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1769.6070671081543, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,836", + "created": 1610346615.836129, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 836.1289501190186, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1769.6709632873535, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:15,836", + "created": 1610346615.83619, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 836.1899852752686, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1769.7319984436035, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,836", + "created": 1610346615.836255, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 836.2550735473633, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1769.7970867156982, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:15,836", + "created": 1610346615.836305, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 836.3049030303955, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1769.8469161987305, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,836", + "created": 1610346615.836376, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 836.3759517669678, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1769.9179649353027, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:15,836", + "created": 1610346615.836428, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 836.4279270172119, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1769.9699401855469, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,836", + "created": 1610346615.836488, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 836.4880084991455, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1770.0300216674805, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:15,836", + "created": 1610346615.836537, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 836.5368843078613, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1770.0788974761963, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,836", + "created": 1610346615.836608, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 836.6079330444336, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1770.1499462127686, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:15,836", + "created": 1610346615.836655, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 836.6549015045166, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1770.1969146728516, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-client:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:15,836", + "created": 1610346615.836737, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 836.7369174957275, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1770.2789306640625, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:15,836", + "created": 1610346615.836794, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 836.7938995361328, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1770.3359127044678, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,836", + "created": 1610346615.836847, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 836.8470668792725, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1770.3890800476074, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:15,836", + "created": 1610346615.836894, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 836.8940353393555, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1770.4360485076904, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" + ], + "asctime": "2021-01-11 07:30:15,836", + "created": 1610346615.836996, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", + "module": "stp", + "msecs": 836.9960784912109, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1770.538091659546, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:15,837", + "created": 1610346615.837118, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 837.1179103851318, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1770.6599235534668, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:15,837", + "created": 1610346615.837192, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 837.1920585632324, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1770.7340717315674, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:15,837", + "created": 1610346615.837286, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 837.2859954833984, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1770.8280086517334, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:15,838", + "created": 1610346615.838439, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 838.4389877319336, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1771.9810009002686, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:15,838", + "created": 1610346615.838582, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 838.5820388793945, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1772.1240520477295, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,838", + "created": 1610346615.838646, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 838.6459350585938, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1772.1879482269287, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:15,838", + "created": 1610346615.838707, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 838.7069702148438, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1772.2489833831787, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,838", + "created": 1610346615.838789, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 838.7889862060547, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1772.3309993743896, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:15,838", + "created": 1610346615.83886, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 838.860034942627, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1772.402048110962, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,838", + "created": 1610346615.838928, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 838.9279842376709, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1772.4699974060059, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:15,838", + "created": 1610346615.838976, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 838.9759063720703, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1772.5179195404053, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,839", + "created": 1610346615.839035, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 839.0350341796875, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1772.5770473480225, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:15,839", + "created": 1610346615.839086, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 839.0860557556152, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1772.6280689239502, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,839", + "created": 1610346615.839152, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 839.1520977020264, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1772.6941108703613, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:15,839", + "created": 1610346615.839199, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 839.1990661621094, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1772.7410793304443, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:15,839", + "created": 1610346615.839269, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 839.2689228057861, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1772.810935974121, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:15,839", + "created": 1610346615.839336, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 839.3359184265137, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1772.8779315948486, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:15,839", + "created": 1610346615.839384, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 839.3840789794922, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1772.9260921478271, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:15,839", + "created": 1610346615.839426, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 839.4260406494141, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1772.968053817749, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:15,839", + "created": 1610346615.839522, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 839.5218849182129, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1773.0638980865479, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:15,839", + "created": 1610346615.839621, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 839.6210670471191, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1773.163080215454, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:15,839", + "created": 1610346615.83968, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 839.6799564361572, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 1773.2219696044922, + "thread": 140634467854080, + "threadName": "Thread-6" + } + ], + "msecs": 177.50906944274902, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2111.051082611084, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.3378291130065918 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:16,178", + "created": 1610346616.178079, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -34232,21 +71095,21 @@ "message": "No secret set", "module": "test_communication", "moduleLogger": [], - "msecs": 713.9520645141602, + "msecs": 178.07888984680176, "msg": "No secret set", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 878.7679672241211, - "thread": 140012350113600, + "relativeCreated": 2111.6209030151367, + "thread": 140634736203584, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-06 22:48:57,714", - "created": 1609969737.714027, + "asctime": "2021-01-11 07:30:16,178", + "created": 1610346616.178377, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -34257,14 +71120,14 @@ "message": "Performing Authentification", "module": "test_communication", "moduleLogger": [], - "msecs": 714.026927947998, + "msecs": 178.3769130706787, "msg": "Performing Authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 878.842830657959, - "thread": 140012350113600, + "relativeCreated": 2111.9189262390137, + "thread": 140634736203584, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -34273,8 +71136,8 @@ "False", "" ], - "asctime": "2021-01-06 22:48:57,714", - "created": 1609969737.714202, + "asctime": "2021-01-11 07:30:16,179", + "created": 1610346616.179023, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -34291,8 +71154,8 @@ "False", "" ], - "asctime": "2021-01-06 22:48:57,714", - "created": 1609969737.714101, + "asctime": "2021-01-11 07:30:16,178", + "created": 1610346616.178662, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -34302,14 +71165,14 @@ "lineno": 22, "message": "Result (Return Value of authentification method): False ()", "module": "test", - "msecs": 714.1010761260986, + "msecs": 178.66206169128418, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 878.9169788360596, - "thread": 140012350113600, + "relativeCreated": 2112.204074859619, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -34318,8 +71181,8 @@ "False", "" ], - "asctime": "2021-01-06 22:48:57,714", - "created": 1609969737.71415, + "asctime": "2021-01-11 07:30:16,178", + "created": 1610346616.17885, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -34329,35 +71192,35 @@ "lineno": 26, "message": "Expectation (Return Value of authentification method): result = False ()", "module": "test", - "msecs": 714.1499519348145, + "msecs": 178.8499355316162, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 878.9658546447754, - "thread": 140012350113600, + "relativeCreated": 2112.391948699951, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 714.2019271850586, + "msecs": 179.02302742004395, "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 879.0178298950195, - "thread": 140012350113600, + "relativeCreated": 2112.565040588379, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 5.1975250244140625e-05 + "time_consumption": 0.00017309188842773438 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:48:57,714", - "created": 1609969737.714375, + "asctime": "2021-01-11 07:30:16,179", + "created": 1610346616.179604, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -34374,8 +71237,8 @@ "True", "" ], - "asctime": "2021-01-06 22:48:57,714", - "created": 1609969737.714279, + "asctime": "2021-01-11 07:30:16,179", + "created": 1610346616.179288, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -34385,14 +71248,14 @@ "lineno": 22, "message": "Result (Authentification state of server): True ()", "module": "test", - "msecs": 714.2789363861084, + "msecs": 179.28791046142578, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 879.0948390960693, - "thread": 140012350113600, + "relativeCreated": 2112.8299236297607, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -34401,8 +71264,8 @@ "True", "" ], - "asctime": "2021-01-06 22:48:57,714", - "created": 1609969737.714328, + "asctime": "2021-01-11 07:30:16,179", + "created": 1610346616.179449, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -34412,35 +71275,35 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = True ()", "module": "test", - "msecs": 714.3280506134033, + "msecs": 179.44908142089844, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 879.1439533233643, - "thread": 140012350113600, + "relativeCreated": 2112.9910945892334, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 714.3750190734863, + "msecs": 179.60405349731445, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 879.1909217834473, - "thread": 140012350113600, + "relativeCreated": 2113.1460666656494, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 4.696846008300781e-05 + "time_consumption": 0.00015497207641601562 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:48:57,714", - "created": 1609969737.714543, + "asctime": "2021-01-11 07:30:16,180", + "created": 1610346616.180173, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -34457,8 +71320,8 @@ "True", "" ], - "asctime": "2021-01-06 22:48:57,714", - "created": 1609969737.714452, + "asctime": "2021-01-11 07:30:16,179", + "created": 1610346616.179864, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -34468,14 +71331,14 @@ "lineno": 22, "message": "Result (Authentification state of client): True ()", "module": "test", - "msecs": 714.4520282745361, + "msecs": 179.86392974853516, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 879.2679309844971, - "thread": 140012350113600, + "relativeCreated": 2113.40594291687, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -34484,8 +71347,8 @@ "True", "" ], - "asctime": "2021-01-06 22:48:57,714", - "created": 1609969737.714498, + "asctime": "2021-01-11 07:30:16,180", + "created": 1610346616.180019, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -34495,32 +71358,32 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = True ()", "module": "test", - "msecs": 714.4980430603027, + "msecs": 180.01890182495117, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 879.3139457702637, - "thread": 140012350113600, + "relativeCreated": 2113.560914993286, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 714.5431041717529, + "msecs": 180.17292022705078, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 879.3590068817139, - "thread": 140012350113600, + "relativeCreated": 2113.7149333953857, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 4.506111145019531e-05 + "time_consumption": 0.00015401840209960938 }, { "args": [], - "asctime": "2021-01-06 22:48:57,714", - "created": 1609969737.714613, + "asctime": "2021-01-11 07:30:16,180", + "created": 1610346616.180404, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -34531,14 +71394,14 @@ "message": "Different secrets set", "module": "test_communication", "moduleLogger": [], - "msecs": 714.6129608154297, + "msecs": 180.4039478302002, "msg": "Different secrets set", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 879.4288635253906, - "thread": 140012350113600, + "relativeCreated": 2113.945960998535, + "thread": 140634736203584, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -34547,8 +71410,8 @@ "False", "" ], - "asctime": "2021-01-06 22:48:57,714", - "created": 1609969737.714778, + "asctime": "2021-01-11 07:30:16,180", + "created": 1610346616.180945, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -34565,8 +71428,8 @@ "False", "" ], - "asctime": "2021-01-06 22:48:57,714", - "created": 1609969737.714685, + "asctime": "2021-01-11 07:30:16,180", + "created": 1610346616.180641, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -34576,14 +71439,14 @@ "lineno": 22, "message": "Result (Authentification state of server): False ()", "module": "test", - "msecs": 714.6849632263184, + "msecs": 180.64093589782715, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 879.5008659362793, - "thread": 140012350113600, + "relativeCreated": 2114.182949066162, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -34592,8 +71455,8 @@ "False", "" ], - "asctime": "2021-01-06 22:48:57,714", - "created": 1609969737.714732, + "asctime": "2021-01-11 07:30:16,180", + "created": 1610346616.180795, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -34603,35 +71466,35 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = False ()", "module": "test", - "msecs": 714.7319316864014, + "msecs": 180.79495429992676, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 879.5478343963623, - "thread": 140012350113600, + "relativeCreated": 2114.3369674682617, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 714.777946472168, + "msecs": 180.94491958618164, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 879.5938491821289, - "thread": 140012350113600, + "relativeCreated": 2114.4869327545166, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 4.601478576660156e-05 + "time_consumption": 0.0001499652862548828 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:48:57,714", - "created": 1609969737.714932, + "asctime": "2021-01-11 07:30:16,181", + "created": 1610346616.181521, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -34648,8 +71511,8 @@ "False", "" ], - "asctime": "2021-01-06 22:48:57,714", - "created": 1609969737.714856, + "asctime": "2021-01-11 07:30:16,181", + "created": 1610346616.181201, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -34659,14 +71522,14 @@ "lineno": 22, "message": "Result (Authentification state of client): False ()", "module": "test", - "msecs": 714.8559093475342, + "msecs": 181.20098114013672, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 879.6718120574951, - "thread": 140012350113600, + "relativeCreated": 2114.7429943084717, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -34675,8 +71538,8 @@ "False", "" ], - "asctime": "2021-01-06 22:48:57,714", - "created": 1609969737.714894, + "asctime": "2021-01-11 07:30:16,181", + "created": 1610346616.181352, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -34686,32 +71549,32 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = False ()", "module": "test", - "msecs": 714.8940563201904, + "msecs": 181.351900100708, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 879.7099590301514, - "thread": 140012350113600, + "relativeCreated": 2114.893913269043, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 714.9319648742676, + "msecs": 181.52093887329102, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 879.7478675842285, - "thread": 140012350113600, + "relativeCreated": 2115.062952041626, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 3.790855407714844e-05 + "time_consumption": 0.0001690387725830078 }, { "args": [], - "asctime": "2021-01-06 22:48:58,417", - "created": 1609969738.417363, + "asctime": "2021-01-11 07:30:16,282", + "created": 1610346616.282769, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -34724,560 +71587,2332 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:48:57,715", - "created": 1609969737.715003, + "asctime": "2021-01-11 07:30:16,181", + "created": 1610346616.181908, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 445, + "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 715.0030136108398, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 181.90789222717285, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 879.8189163208008, - "thread": 140012350113600, + "relativeCreated": 2115.449905395508, + "thread": 140634736203584, "threadName": "MainThread" }, - { - "args": [], - "asctime": "2021-01-06 22:48:57,715", - "created": 1609969737.715133, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "module": "test_helpers", - "msecs": 715.1329517364502, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 879.9488544464111, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:48:57,866", - "created": 1609969737.866033, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "module": "test_helpers", - "msecs": 866.0330772399902, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 1030.8489799499512, - "thread": 140012328822528, - "threadName": "Thread-1" - }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:16,202", + "created": 1610346616.20248, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 202.48007774353027, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2136.0220909118652, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:16,203", + "created": 1610346616.203018, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 203.0179500579834, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2136.5599632263184, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,203", + "created": 1610346616.203237, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 203.23705673217773, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2136.7790699005127, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:16,203", + "created": 1610346616.203542, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 203.54199409484863, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2137.0840072631836, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,203", + "created": 1610346616.203842, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 203.8419246673584, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2137.3839378356934, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,204", + "created": 1610346616.204011, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 204.0109634399414, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2137.5529766082764, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,204", + "created": 1610346616.204348, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 204.34808731079102, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2137.890100479126, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,204", + "created": 1610346616.204521, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 204.52094078063965, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2138.0629539489746, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,204", + "created": 1610346616.204731, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 204.73098754882812, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2138.273000717163, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,204", + "created": 1610346616.204981, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 204.98108863830566, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2138.5231018066406, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,205", + "created": 1610346616.2052, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 205.1999568939209, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2138.741970062256, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,205", + "created": 1610346616.205358, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 205.35802841186523, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2138.9000415802, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-client:", + "(6): 10 4d cd 55 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,205", + "created": 1610346616.20564, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 10 4d cd 55 3a 3e", + "module": "__init__", + "msecs": 205.64007759094238, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2139.1820907592773, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(6): 10 4d cd 55 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,205", + "created": 1610346616.205828, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 10 4d cd 55 3a 3e", + "module": "__init__", + "msecs": 205.8279514312744, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2139.3699645996094, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,206", + "created": 1610346616.206005, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 206.00509643554688, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2139.547109603882, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:16,206", + "created": 1610346616.20616, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 206.1600685119629, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2139.702081680298, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55" + ], + "asctime": "2021-01-11 07:30:16,206", + "created": 1610346616.206481, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", + "module": "stp", + "msecs": 206.4809799194336, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2140.0229930877686, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:48:57,866", - "created": 1609969737.86644, + "asctime": "2021-01-11 07:30:16,206", + "created": 1610346616.206893, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 445, + "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 866.4400577545166, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 206.8929672241211, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1031.2559604644775, - "thread": 140012328822528, - "threadName": "Thread-1" + "relativeCreated": 2140.434980392456, + "thread": 140634476246784, + "threadName": "Thread-5" }, { "args": [ - "SP server:", + "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-06 22:48:57,866", - "created": 1609969737.866648, + "asctime": "2021-01-11 07:30:16,207", + "created": 1610346616.207123, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __authentificate_create_seed__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 866.6479587554932, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 207.1230411529541, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1031.463861465454, - "thread": 140012328822528, - "threadName": "Thread-1" + "relativeCreated": 2140.665054321289, + "thread": 140634476246784, + "threadName": "Thread-5" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: authentification response, data_id: seed", "status: okay", - "'39cbad68d7688a6eacb746081099bdb15938c8706a3244970581f82683958b48'" + "'7361e3929e8652cc9b5da9c7191c21eed21ebe3da62ef660bc807391293821d7'" ], - "asctime": "2021-01-06 22:48:57,866", - "created": 1609969737.86687, + "asctime": "2021-01-11 07:30:16,207", + "created": 1610346616.207408, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: authentification response, data_id: seed, status: okay, data: \"'39cbad68d7688a6eacb746081099bdb15938c8706a3244970581f82683958b48'\"", + "lineno": 445, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'7361e3929e8652cc9b5da9c7191c21eed21ebe3da62ef660bc807391293821d7'\"", "module": "__init__", - "msecs": 866.8699264526367, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 207.40795135498047, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1031.6858291625977, - "thread": 140012328822528, - "threadName": "Thread-1" - }, - { - "args": [], - "asctime": "2021-01-06 22:48:57,867", - "created": 1609969737.867422, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 33 39 63 62 61 64 36 38 64 37 36 38 38 61 36 65 61 63 62 37 34 36 30 38 31 30 39 39 62 64 62 31 35 39 33 38 63 38 37 30 36 61 33 32 34 34 39 37 30 35 38 31 66 38 32 36 38 33 39 35 38 62 34 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d b4 3e 73 ab", - "module": "test_helpers", - "msecs": 867.4221038818359, - "msg": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 33 39 63 62 61 64 36 38 64 37 36 38 38 61 36 65 61 63 62 37 34 36 30 38 31 30 39 39 62 64 62 31 35 39 33 38 63 38 37 30 36 61 33 32 34 34 39 37 30 35 38 31 66 38 32 36 38 33 39 35 38 62 34 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d b4 3e 73 ab", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 1032.2380065917969, - "thread": 140012328822528, - "threadName": "Thread-1" - }, - { - "args": [], - "asctime": "2021-01-06 22:48:58,018", - "created": 1609969738.018906, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 33 39 63 62 61 64 36 38 64 37 36 38 38 61 36 65 61 63 62 37 34 36 30 38 31 30 39 39 62 64 62 31 35 39 33 38 63 38 37 30 36 61 33 32 34 34 39 37 30 35 38 31 66 38 32 36 38 33 39 35 38 62 34 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d b4 3e 73 ab", - "module": "test_helpers", - "msecs": 18.906116485595703, - "msg": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 33 39 63 62 61 64 36 38 64 37 36 38 38 61 36 65 61 63 62 37 34 36 30 38 31 30 39 39 62 64 62 31 35 39 33 38 63 38 37 30 36 61 33 32 34 34 39 37 30 35 38 31 66 38 32 36 38 33 39 35 38 62 34 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d b4 3e 73 ab", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 1183.7220191955566, - "thread": 140012320429824, - "threadName": "Thread-2" + "relativeCreated": 2140.9499645233154, + "thread": 140634476246784, + "threadName": "Thread-5" }, { "args": [ - "SP client:", - "service: authentification response, data_id: seed", - "status: okay", - "u'39cbad68d7688a6eacb746081099bdb15938c8706a3244970581f82683958b48'" + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 37 33 36 31 65 33 39 32 39 65 38 36 35 32 63 63 39 62 35" ], - "asctime": "2021-01-06 22:48:58,019", - "created": 1609969738.019435, + "asctime": "2021-01-11 07:30:16,241", + "created": 1610346616.241152, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__tx__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'39cbad68d7688a6eacb746081099bdb15938c8706a3244970581f82683958b48'\"", + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 37 33 36 31 65 33 39 32 39 65 38 36 35 32 63 63 39 62 35", "module": "__init__", - "msecs": 19.43492889404297, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 241.1520481109619, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1184.250831604004, - "thread": 140012320429824, - "threadName": "Thread-2" + "relativeCreated": 2174.694061279297, + "thread": 140634467854080, + "threadName": "Thread-6" }, { "args": [ - "SP client:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 37 33 36 31 65 33 39 32 39 65 38 36 35 32 63 63 39 62 35" + ], + "asctime": "2021-01-11 07:30:16,241", + "created": 1610346616.241536, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 37 33 36 31 65 33 39 32 39 65 38 36 35 32 63 63 39 62 35", + "module": "__init__", + "msecs": 241.53590202331543, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2175.0779151916504, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,241", + "created": 1610346616.241705, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 241.70494079589844, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2175.2469539642334, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:16,241", + "created": 1610346616.241833, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 241.83297157287598, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2175.374984741211, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,241", + "created": 1610346616.241974, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 241.9741153717041, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2175.516128540039, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,242", + "created": 1610346616.242085, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 242.08498001098633, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2175.6269931793213, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,242", + "created": 1610346616.24223, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 242.22993850708008, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2175.771951675415, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,242", + "created": 1610346616.242342, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 242.3419952392578, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2175.884008407593, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,242", + "created": 1610346616.242484, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 242.48409271240234, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2176.0261058807373, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,242", + "created": 1610346616.242592, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 242.59209632873535, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2176.1341094970703, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-server:", + "(64): 64 61 39 63 37 31 39 31 63 32 31 65 65 64 32 31 65 62 65 33 64 61 36 32 65 66 36 36 30 62 63 38 30 37 33 39 31 32 39 33 38 32 31 64 37 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 1b 9a" + ], + "asctime": "2021-01-11 07:30:16,242", + "created": 1610346616.242903, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 64 61 39 63 37 31 39 31 63 32 31 65 65 64 32 31 65 62 65 33 64 61 36 32 65 66 36 36 30 62 63 38 30 37 33 39 31 32 39 33 38 32 31 64 37 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 1b 9a", + "module": "__init__", + "msecs": 242.9029941558838, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2176.4450073242188, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-client:", + "(64): 64 61 39 63 37 31 39 31 63 32 31 65 65 64 32 31 65 62 65 33 64 61 36 32 65 66 36 36 30 62 63 38 30 37 33 39 31 32 39 33 38 32 31 64 37 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 1b 9a" + ], + "asctime": "2021-01-11 07:30:16,243", + "created": 1610346616.243139, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 64 61 39 63 37 31 39 31 63 32 31 65 65 64 32 31 65 62 65 33 64 61 36 32 65 66 36 36 30 62 63 38 30 37 33 39 31 32 39 33 38 32 31 64 37 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 1b 9a", + "module": "__init__", + "msecs": 243.13902854919434, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2176.6810417175293, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,243", + "created": 1610346616.243404, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 243.40391159057617, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2176.945924758911, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,243", + "created": 1610346616.243931, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 243.93105506896973, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2177.4730682373047, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-server:", + "(4): 06 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,244", + "created": 1610346616.244108, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (4): 06 5c 3a 3e", + "module": "__init__", + "msecs": 244.1079616546631, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2177.649974822998, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-client:", + "(4): 06 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,244", + "created": 1610346616.244241, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (4): 06 5c 3a 3e", + "module": "__init__", + "msecs": 244.24099922180176, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2177.7830123901367, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,244", + "created": 1610346616.244368, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 244.3680763244629, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2177.910089492798, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:16,244", + "created": 1610346616.244475, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 244.4748878479004, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2178.0169010162354, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + "(124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 37 33 36 31 65 33 39 32 39 65 38 36 35 32 63 63 39 62 35 64 61 39 63 37 31 39 31 63 32 31 65 65 64 32 31 65 62 65 33 64 61 36 32 65 66 36 36 30 62 63 38 30 37 33 39 31 32 39 33 38 32 31 64 37 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 1b 9a 06 5c" + ], + "asctime": "2021-01-11 07:30:16,244", + "created": 1610346616.244811, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 37 33 36 31 65 33 39 32 39 65 38 36 35 32 63 63 39 62 35 64 61 39 63 37 31 39 31 63 32 31 65 65 64 32 31 65 62 65 33 64 61 36 32 65 66 36 36 30 62 63 38 30 37 33 39 31 32 39 33 38 32 31 64 37 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 1b 9a 06 5c", + "module": "stp", + "msecs": 244.8110580444336, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2178.3530712127686, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: seed", + "status: okay", + "u'7361e3929e8652cc9b5da9c7191c21eed21ebe3da62ef660bc807391293821d7'" + ], + "asctime": "2021-01-11 07:30:16,245", + "created": 1610346616.245106, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'7361e3929e8652cc9b5da9c7191c21eed21ebe3da62ef660bc807391293821d7'\"", + "module": "__init__", + "msecs": 245.10598182678223, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2178.647994995117, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-01-06 22:48:58,019", - "created": 1609969738.019691, + "asctime": "2021-01-11 07:30:16,245", + "created": 1610346616.245255, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __authentificate_create_key__ to process received data", + "lineno": 492, + "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 19.690990447998047, + "msecs": 245.2549934387207, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1184.506893157959, - "thread": 140012320429824, - "threadName": "Thread-2" + "relativeCreated": 2178.7970066070557, + "thread": 140634467854080, + "threadName": "Thread-6" }, { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: authentification request, data_id: key", "status: okay", - "'d971ebb309d9c96503fa6b2138f7e30b29009b14dbe4069d34b3f6cd9b1633a9954b13a93594c9b99c97053e4f4d644bda7f2a0b958b331112063c8bd2ac030d'" + "'07064b88125014ebfba9ae96cbd74e6f743098b48ac5695b8260d99c3f6c586796b4d5f10ed3776bdf81ca185ee9bbf9cfb96aa2666c47d421674f17cf1cad50'" ], - "asctime": "2021-01-06 22:48:58,019", - "created": 1609969738.019969, + "asctime": "2021-01-11 07:30:16,245", + "created": 1610346616.245481, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: authentification request, data_id: key, status: okay, data: \"'d971ebb309d9c96503fa6b2138f7e30b29009b14dbe4069d34b3f6cd9b1633a9954b13a93594c9b99c97053e4f4d644bda7f2a0b958b331112063c8bd2ac030d'\"", + "lineno": 445, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'07064b88125014ebfba9ae96cbd74e6f743098b48ac5695b8260d99c3f6c586796b4d5f10ed3776bdf81ca185ee9bbf9cfb96aa2666c47d421674f17cf1cad50'\"", "module": "__init__", - "msecs": 19.96898651123047, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 245.48101425170898, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1184.7848892211914, - "thread": 140012320429824, - "threadName": "Thread-2" - }, - { - "args": [], - "asctime": "2021-01-06 22:48:58,020", - "created": 1609969738.020776, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 64 39 37 31 65 62 62 33 30 39 64 39 63 39 36 35 30 33 66 61 36 62 32 31 33 38 66 37 65 33 30 62 32 39 30 30 39 62 31 34 64 62 65 34 30 36 39 64 33 34 62 33 66 36 63 64 39 62 31 36 33 33 61 39 39 35 34 62 31 33 61 39 33 35 39 34 63 39 62 39 39 63 39 37 30 35 33 65 34 66 34 64 36 34 34 62 64 61 37 66 32 61 30 62 39 35 38 62 33 33 31 31 31 32 30 36 33 63 38 62 64 32 61 63 30 33 30 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 87 d8 31 d6", - "module": "test_helpers", - "msecs": 20.776033401489258, - "msg": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 64 39 37 31 65 62 62 33 30 39 64 39 63 39 36 35 30 33 66 61 36 62 32 31 33 38 66 37 65 33 30 62 32 39 30 30 39 62 31 34 64 62 65 34 30 36 39 64 33 34 62 33 66 36 63 64 39 62 31 36 33 33 61 39 39 35 34 62 31 33 61 39 33 35 39 34 63 39 62 39 39 63 39 37 30 35 33 65 34 66 34 64 36 34 34 62 64 61 37 66 32 61 30 62 39 35 38 62 33 33 31 31 31 32 30 36 33 63 38 62 64 32 61 63 30 33 30 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 87 d8 31 d6", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 1185.5919361114502, - "thread": 140012320429824, - "threadName": "Thread-2" - }, - { - "args": [], - "asctime": "2021-01-06 22:48:58,172", - "created": 1609969738.172327, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 64 39 37 31 65 62 62 33 30 39 64 39 63 39 36 35 30 33 66 61 36 62 32 31 33 38 66 37 65 33 30 62 32 39 30 30 39 62 31 34 64 62 65 34 30 36 39 64 33 34 62 33 66 36 63 64 39 62 31 36 33 33 61 39 39 35 34 62 31 33 61 39 33 35 39 34 63 39 62 39 39 63 39 37 30 35 33 65 34 66 34 64 36 34 34 62 64 61 37 66 32 61 30 62 39 35 38 62 33 33 31 31 31 32 30 36 33 63 38 62 64 32 61 63 30 33 30 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 87 d8 31 d6", - "module": "test_helpers", - "msecs": 172.32704162597656, - "msg": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 64 39 37 31 65 62 62 33 30 39 64 39 63 39 36 35 30 33 66 61 36 62 32 31 33 38 66 37 65 33 30 62 32 39 30 30 39 62 31 34 64 62 65 34 30 36 39 64 33 34 62 33 66 36 63 64 39 62 31 36 33 33 61 39 39 35 34 62 31 33 61 39 33 35 39 34 63 39 62 39 39 63 39 37 30 35 33 65 34 66 34 64 36 34 34 62 64 61 37 66 32 61 30 62 39 35 38 62 33 33 31 31 31 32 30 36 33 63 38 62 64 32 61 63 30 33 30 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 87 d8 31 d6", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 1337.1429443359375, - "thread": 140012328822528, - "threadName": "Thread-3" + "relativeCreated": 2179.023027420044, + "thread": 140634467854080, + "threadName": "Thread-6" }, { "args": [ - "SP server:", - "service: authentification request, data_id: key", - "status: okay", - "u'd971ebb309d9c96503fa6b2138f7e30b29009b14dbe4069d34b3f6cd9b1633a9954b13a93594c9b99c97053e4f4d644bda7f2a0b958b331112063c8bd2ac030d'" + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 37 30 36 34 62 38 38 31 32 35 30 31 34 65 62 66 62 61" ], - "asctime": "2021-01-06 22:48:58,172", - "created": 1609969738.17278, + "asctime": "2021-01-11 07:30:16,272", + "created": 1610346616.27245, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__tx__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'd971ebb309d9c96503fa6b2138f7e30b29009b14dbe4069d34b3f6cd9b1633a9954b13a93594c9b99c97053e4f4d644bda7f2a0b958b331112063c8bd2ac030d'\"", + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 37 30 36 34 62 38 38 31 32 35 30 31 34 65 62 66 62 61", "module": "__init__", - "msecs": 172.78003692626953, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 272.4499702453613, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1337.5959396362305, - "thread": 140012328822528, - "threadName": "Thread-3" + "relativeCreated": 2205.9919834136963, + "thread": 140634476246784, + "threadName": "Thread-5" }, { "args": [ - "SP server:", + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 37 30 36 34 62 38 38 31 32 35 30 31 34 65 62 66 62 61" + ], + "asctime": "2021-01-11 07:30:16,272", + "created": 1610346616.272825, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 37 30 36 34 62 38 38 31 32 35 30 31 34 65 62 66 62 61", + "module": "__init__", + "msecs": 272.8250026702881, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2206.367015838623, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,272", + "created": 1610346616.272965, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 272.9649543762207, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2206.5069675445557, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:16,273", + "created": 1610346616.273084, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 273.0839252471924, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2206.6259384155273, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,273", + "created": 1610346616.273224, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 273.2241153717041, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2206.766128540039, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,273", + "created": 1610346616.273338, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 273.33807945251465, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2206.8800926208496, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,273", + "created": 1610346616.273507, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 273.50711822509766, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2207.0491313934326, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,273", + "created": 1610346616.273614, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 273.61392974853516, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2207.15594291687, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,273", + "created": 1610346616.273742, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 273.7419605255127, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2207.2839736938477, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,273", + "created": 1610346616.273852, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 273.8521099090576, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2207.3941230773926, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-client:", + "(64): 39 61 65 39 36 63 62 64 37 34 65 36 66 37 34 33 30 39 38 62 34 38 61 63 35 36 39 35 62 38 32 36 30 64 39 39 63 33 66 36 63 35 38 36 37 39 36 62 34 64 35 66 31 30 65 64 33 37 37 36 62 64 66 38" + ], + "asctime": "2021-01-11 07:30:16,274", + "created": 1610346616.274155, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 39 61 65 39 36 63 62 64 37 34 65 36 66 37 34 33 30 39 38 62 34 38 61 63 35 36 39 35 62 38 32 36 30 64 39 39 63 33 66 36 63 35 38 36 37 39 36 62 34 64 35 66 31 30 65 64 33 37 37 36 62 64 66 38", + "module": "__init__", + "msecs": 274.1549015045166, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2207.6969146728516, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(64): 39 61 65 39 36 63 62 64 37 34 65 36 66 37 34 33 30 39 38 62 34 38 61 63 35 36 39 35 62 38 32 36 30 64 39 39 63 33 66 36 63 35 38 36 37 39 36 62 34 64 35 66 31 30 65 64 33 37 37 36 62 64 66 38" + ], + "asctime": "2021-01-11 07:30:16,274", + "created": 1610346616.274382, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 39 61 65 39 36 63 62 64 37 34 65 36 66 37 34 33 30 39 38 62 34 38 61 63 35 36 39 35 62 38 32 36 30 64 39 39 63 33 66 36 63 35 38 36 37 39 36 62 34 64 35 66 31 30 65 64 33 37 37 36 62 64 66 38", + "module": "__init__", + "msecs": 274.3821144104004, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2207.9241275787354, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-client:", + "(64): 31 63 61 31 38 35 65 65 39 62 62 66 39 63 66 62 39 36 61 61 32 36 36 36 63 34 37 64 34 32 31 36 37 34 66 31 37 63 66 31 63 61 64 35 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d bf 78" + ], + "asctime": "2021-01-11 07:30:16,274", + "created": 1610346616.274792, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 31 63 61 31 38 35 65 65 39 62 62 66 39 63 66 62 39 36 61 61 32 36 36 36 63 34 37 64 34 32 31 36 37 34 66 31 37 63 66 31 63 61 64 35 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d bf 78", + "module": "__init__", + "msecs": 274.791955947876, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2208.333969116211, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(64): 31 63 61 31 38 35 65 65 39 62 62 66 39 63 66 62 39 36 61 61 32 36 36 36 63 34 37 64 34 32 31 36 37 34 66 31 37 63 66 31 63 61 64 35 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d bf 78" + ], + "asctime": "2021-01-11 07:30:16,275", + "created": 1610346616.275017, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 31 63 61 31 38 35 65 65 39 62 62 66 39 63 66 62 39 36 61 61 32 36 36 36 63 34 37 64 34 32 31 36 37 34 66 31 37 63 66 31 63 61 64 35 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d bf 78", + "module": "__init__", + "msecs": 275.01702308654785, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2208.559036254883, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,275", + "created": 1610346616.275276, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 275.27594566345215, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2208.817958831787, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,275", + "created": 1610346616.275383, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 275.38299560546875, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2208.9250087738037, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-client:", + "(4): 24 14 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,275", + "created": 1610346616.275566, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (4): 24 14 3a 3e", + "module": "__init__", + "msecs": 275.56610107421875, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2209.1081142425537, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(4): 24 14 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,275", + "created": 1610346616.275685, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (4): 24 14 3a 3e", + "module": "__init__", + "msecs": 275.68507194519043, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2209.2270851135254, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,275", + "created": 1610346616.275802, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 275.8018970489502, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2209.343910217285, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:16,275", + "created": 1610346616.275918, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 275.91800689697266, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2209.4600200653076, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + "(188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 30 37 30 36 34 62 38 38 31 32 35 30 31 34 65 62 66 62 61 39 61 65 39 36 63 62 64 37 34 65 36 66 37 34 33 30 39 38 62 34 38 61 63 35 36 39 35 62 38 32 36 30 64 39 39 63 33 66 36 63 35 38 36 37 39 36 62 34 64 35 66 31 30 65 64 33 37 37 36 62 64 66 38 31 63 61 31 38 35 65 65 39 62 62 66 39 63 66 62 39 36 61 61 32 36 36 36 63 34 37 64 34 32 31 36 37 34 66 31 37 63 66 31 63 61 64 35 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d bf 78 24 14" + ], + "asctime": "2021-01-11 07:30:16,276", + "created": 1610346616.276365, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 30 37 30 36 34 62 38 38 31 32 35 30 31 34 65 62 66 62 61 39 61 65 39 36 63 62 64 37 34 65 36 66 37 34 33 30 39 38 62 34 38 61 63 35 36 39 35 62 38 32 36 30 64 39 39 63 33 66 36 63 35 38 36 37 39 36 62 34 64 35 66 31 30 65 64 33 37 37 36 62 64 66 38 31 63 61 31 38 35 65 65 39 62 62 66 39 63 66 62 39 36 61 61 32 36 36 36 63 34 37 64 34 32 31 36 37 34 66 31 37 63 66 31 63 61 64 35 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d bf 78 24 14", + "module": "stp", + "msecs": 276.3650417327881, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2209.907054901123, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: authentification request, data_id: key", + "status: okay", + "u'07064b88125014ebfba9ae96cbd74e6f743098b48ac5695b8260d99c3f6c586796b4d5f10ed3776bdf81ca185ee9bbf9cfb96aa2666c47d421674f17cf1cad50'" + ], + "asctime": "2021-01-11 07:30:16,276", + "created": 1610346616.276692, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'07064b88125014ebfba9ae96cbd74e6f743098b48ac5695b8260d99c3f6c586796b4d5f10ed3776bdf81ca185ee9bbf9cfb96aa2666c47d421674f17cf1cad50'\"", + "module": "__init__", + "msecs": 276.6919136047363, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2210.2339267730713, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-01-06 22:48:58,173", - "created": 1609969738.17302, + "asctime": "2021-01-11 07:30:16,276", + "created": 1610346616.276846, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __authentificate_check_key__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 173.0198860168457, - "msg": "%s RX <- Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 1337.8357887268066, - "thread": 140012328822528, - "threadName": "Thread-3" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key", - "status: okay", - "False" - ], - "asctime": "2021-01-06 22:48:58,173", - "created": 1609969738.173279, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: authentification response, data_id: key, status: okay, data: \"False\"", - "module": "__init__", - "msecs": 173.2790470123291, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 1338.09494972229, - "thread": 140012328822528, - "threadName": "Thread-3" - }, - { - "args": [], - "asctime": "2021-01-06 22:48:58,173", - "created": 1609969738.173689, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (63): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d a1 48 27 7d", - "module": "test_helpers", - "msecs": 173.6888885498047, - "msg": "Send data: (63): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d a1 48 27 7d", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 1338.5047912597656, - "thread": 140012328822528, - "threadName": "Thread-3" - }, - { - "args": [], - "asctime": "2021-01-06 22:48:58,324", - "created": 1609969738.324865, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (63): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d a1 48 27 7d", - "module": "test_helpers", - "msecs": 324.86510276794434, - "msg": "Receive data (63): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d a1 48 27 7d", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 1489.6810054779053, - "thread": 140012320429824, - "threadName": "Thread-4" - }, - { - "args": [ - "SP client:", - "service: authentification response, data_id: key", - "status: okay", - "False" - ], - "asctime": "2021-01-06 22:48:58,325", - "created": 1609969738.325313, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: authentification response, data_id: key, status: okay, data: \"False\"", - "module": "__init__", - "msecs": 325.3130912780762, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 1490.128993988037, - "thread": 140012320429824, - "threadName": "Thread-4" - }, - { - "args": [ - "SP client:", - "__authentificate_process_feedback__" - ], - "asctime": "2021-01-06 22:48:58,325", - "created": 1609969738.325559, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __authentificate_process_feedback__ to process received data", - "module": "__init__", - "msecs": 325.5589008331299, + "msecs": 276.84593200683594, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1490.3748035430908, - "thread": 140012320429824, - "threadName": "Thread-4" + "relativeCreated": 2210.387945175171, + "thread": 140634476246784, + "threadName": "Thread-5" }, { "args": [ - "SP client:" + "prot-server:", + "TX ->", + "service: authentification response, data_id: key", + "status: okay", + "False" ], - "asctime": "2021-01-06 22:48:58,325", - "created": 1609969738.325745, + "asctime": "2021-01-11 07:30:16,277", + "created": 1610346616.277073, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"False\"", + "module": "__init__", + "msecs": 277.0729064941406, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2210.6149196624756, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31" + ], + "asctime": "2021-01-11 07:30:16,277", + "created": 1610346616.27798, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31", + "module": "__init__", + "msecs": 277.98008918762207, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2211.522102355957, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31" + ], + "asctime": "2021-01-11 07:30:16,278", + "created": 1610346616.278333, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31", + "module": "__init__", + "msecs": 278.3329486846924, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2211.8749618530273, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,278", + "created": 1610346616.278472, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 278.4719467163086, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2212.0139598846436, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:16,278", + "created": 1610346616.278663, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 278.66291999816895, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2212.204933166504, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,278", + "created": 1610346616.278906, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 278.90610694885254, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2212.4481201171875, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,279", + "created": 1610346616.279018, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 279.0179252624512, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2212.559938430786, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,279", + "created": 1610346616.279169, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 279.16908264160156, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2212.7110958099365, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,279", + "created": 1610346616.279275, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 279.27494049072266, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2212.8169536590576, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,279", + "created": 1610346616.279415, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 279.4148921966553, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2212.9569053649902, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,279", + "created": 1610346616.279532, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 279.53195571899414, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2213.073968887329, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,279", + "created": 1610346616.27968, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 279.6800136566162, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2213.222026824951, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,279", + "created": 1610346616.279782, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 279.7820568084717, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2213.3240699768066, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-server:", + "(7): 7d a1 48 27 7d 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,279", + "created": 1610346616.279949, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (7): 7d a1 48 27 7d 3a 3e", + "module": "__init__", + "msecs": 279.9489498138428, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2213.4909629821777, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-client:", + "(7): 7d a1 48 27 7d 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,280", + "created": 1610346616.280104, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (7): 7d a1 48 27 7d 3a 3e", + "module": "__init__", + "msecs": 280.1039218902588, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2213.6459350585938, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,280", + "created": 1610346616.280272, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 280.2720069885254, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2213.8140201568604, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:16,280", + "created": 1610346616.280379, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 280.379056930542, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2213.921070098877, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + "(63): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d a1 48 27 7d" + ], + "asctime": "2021-01-11 07:30:16,280", + "created": 1610346616.280599, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (63): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d a1 48 27 7d", + "module": "stp", + "msecs": 280.59911727905273, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2214.1411304473877, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: key", + "status: okay", + "False" + ], + "asctime": "2021-01-11 07:30:16,280", + "created": 1610346616.280914, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"False\"", + "module": "__init__", + "msecs": 280.9140682220459, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2214.456081390381, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:", + "__authentificate_process_feedback__" + ], + "asctime": "2021-01-11 07:30:16,281", + "created": 1610346616.281119, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", + "module": "__init__", + "msecs": 281.11910820007324, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2214.661121368408, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:16,281", + "created": 1610346616.281289, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "WARNING", "levelno": 30, - "lineno": 353, - "message": "SP client: Got negative authentification feedback", + "lineno": 363, + "message": "prot-client: Got negative authentification feedback", "module": "__init__", - "msecs": 325.7451057434082, + "msecs": 281.28910064697266, "msg": "%s Got negative authentification feedback", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1490.5610084533691, - "thread": 140012320429824, - "threadName": "Thread-4" + "relativeCreated": 2214.8311138153076, + "thread": 140634467854080, + "threadName": "Thread-6" } ], - "msecs": 417.36292839050293, + "msecs": 282.76896476745605, "msg": "Performing Authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1582.1788311004639, - "thread": 140012350113600, + "relativeCreated": 2216.310977935791, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.09161782264709473 + "time_consumption": 0.0014798641204833984 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:48:58,418", - "created": 1609969738.418346, + "asctime": "2021-01-11 07:30:16,283", + "created": 1610346616.283417, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -35294,8 +73929,8 @@ "False", "" ], - "asctime": "2021-01-06 22:48:58,417", - "created": 1609969738.417935, + "asctime": "2021-01-11 07:30:16,283", + "created": 1610346616.283157, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -35305,14 +73940,14 @@ "lineno": 22, "message": "Result (Return Value of authentification method): False ()", "module": "test", - "msecs": 417.9348945617676, + "msecs": 283.1571102142334, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1582.7507972717285, - "thread": 140012350113600, + "relativeCreated": 2216.6991233825684, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -35321,8 +73956,8 @@ "False", "" ], - "asctime": "2021-01-06 22:48:58,418", - "created": 1609969738.418146, + "asctime": "2021-01-11 07:30:16,283", + "created": 1610346616.283294, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -35332,35 +73967,35 @@ "lineno": 26, "message": "Expectation (Return Value of authentification method): result = False ()", "module": "test", - "msecs": 418.14589500427246, + "msecs": 283.2939624786377, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1582.9617977142334, - "thread": 140012350113600, + "relativeCreated": 2216.8359756469727, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 418.3459281921387, + "msecs": 283.4169864654541, "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1583.1618309020996, - "thread": 140012350113600, + "relativeCreated": 2216.958999633789, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00020003318786621094 + "time_consumption": 0.00012302398681640625 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:48:58,418", - "created": 1609969738.418951, + "asctime": "2021-01-11 07:30:16,283", + "created": 1610346616.283835, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -35377,8 +74012,8 @@ "False", "" ], - "asctime": "2021-01-06 22:48:58,418", - "created": 1609969738.418623, + "asctime": "2021-01-11 07:30:16,283", + "created": 1610346616.283609, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -35388,14 +74023,14 @@ "lineno": 22, "message": "Result (Authentification state of server): False ()", "module": "test", - "msecs": 418.6229705810547, + "msecs": 283.60891342163086, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1583.4388732910156, - "thread": 140012350113600, + "relativeCreated": 2217.150926589966, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -35404,8 +74039,8 @@ "False", "" ], - "asctime": "2021-01-06 22:48:58,418", - "created": 1609969738.418792, + "asctime": "2021-01-11 07:30:16,283", + "created": 1610346616.28372, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -35415,35 +74050,35 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = False ()", "module": "test", - "msecs": 418.7920093536377, + "msecs": 283.7200164794922, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1583.6079120635986, - "thread": 140012350113600, + "relativeCreated": 2217.262029647827, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 418.95103454589844, + "msecs": 283.83493423461914, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1583.7669372558594, - "thread": 140012350113600, + "relativeCreated": 2217.376947402954, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0001590251922607422 + "time_consumption": 0.00011491775512695312 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:48:58,419", - "created": 1609969738.419527, + "asctime": "2021-01-11 07:30:16,284", + "created": 1610346616.284211, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -35460,8 +74095,8 @@ "False", "" ], - "asctime": "2021-01-06 22:48:58,419", - "created": 1609969738.419215, + "asctime": "2021-01-11 07:30:16,284", + "created": 1610346616.284004, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -35471,14 +74106,14 @@ "lineno": 22, "message": "Result (Authentification state of client): False ()", "module": "test", - "msecs": 419.21496391296387, + "msecs": 284.00397300720215, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1584.0308666229248, - "thread": 140012350113600, + "relativeCreated": 2217.545986175537, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -35487,8 +74122,8 @@ "False", "" ], - "asctime": "2021-01-06 22:48:58,419", - "created": 1609969738.419373, + "asctime": "2021-01-11 07:30:16,284", + "created": 1610346616.284108, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -35498,32 +74133,32 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = False ()", "module": "test", - "msecs": 419.3730354309082, + "msecs": 284.10792350769043, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1584.1889381408691, - "thread": 140012350113600, + "relativeCreated": 2217.6499366760254, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 419.5270538330078, + "msecs": 284.2109203338623, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1584.3429565429688, - "thread": 140012350113600, + "relativeCreated": 2217.7529335021973, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00015401840209960938 + "time_consumption": 0.000102996826171875 }, { "args": [], - "asctime": "2021-01-06 22:48:58,419", - "created": 1609969738.419765, + "asctime": "2021-01-11 07:30:16,284", + "created": 1610346616.284364, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -35534,21 +74169,21 @@ "message": "Identical secrets set", "module": "test_communication", "moduleLogger": [], - "msecs": 419.7649955749512, + "msecs": 284.3639850616455, "msg": "Identical secrets set", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1584.580898284912, - "thread": 140012350113600, + "relativeCreated": 2217.9059982299805, + "thread": 140634736203584, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-06 22:48:59,123", - "created": 1609969739.123084, + "asctime": "2021-01-11 07:30:16,385", + "created": 1610346616.38542, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -35561,560 +74196,2332 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:48:58,420", - "created": 1609969738.420052, + "asctime": "2021-01-11 07:30:16,284", + "created": 1610346616.284588, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 445, + "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 420.05205154418945, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 284.588098526001, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1584.8679542541504, - "thread": 140012350113600, + "relativeCreated": 2218.130111694336, + "thread": 140634736203584, "threadName": "MainThread" }, { - "args": [], - "asctime": "2021-01-06 22:48:58,420", - "created": 1609969738.420533, + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:16,285", + "created": 1610346616.285728, "exc_info": null, "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "module": "test_helpers", - "msecs": 420.5329418182373, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 285.72797775268555, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1585.3488445281982, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:48:58,571", - "created": 1609969738.571733, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "module": "test_helpers", - "msecs": 571.7329978942871, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 1736.548900604248, - "thread": 140012320429824, + "relativeCreated": 2219.2699909210205, + "thread": 140634476246784, "threadName": "Thread-5" }, { "args": [ - "SP server:", + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:16,285", + "created": 1610346616.285921, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 285.9210968017578, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2219.463109970093, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,286", + "created": 1610346616.286012, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 286.0119342803955, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2219.5539474487305, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:16,286", + "created": 1610346616.286087, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 286.0870361328125, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2219.6290493011475, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,286", + "created": 1610346616.28618, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 286.1800193786621, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2219.722032546997, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,286", + "created": 1610346616.286252, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 286.2520217895508, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2219.7940349578857, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,286", + "created": 1610346616.286352, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 286.35191917419434, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2219.8939323425293, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,286", + "created": 1610346616.286429, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 286.42892837524414, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2219.970941543579, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,286", + "created": 1610346616.28652, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 286.52000427246094, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2220.062017440796, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,286", + "created": 1610346616.286598, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 286.59796714782715, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2220.139980316162, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,286", + "created": 1610346616.2867, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 286.7000102996826, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2220.2420234680176, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,286", + "created": 1610346616.286775, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 286.7751121520996, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2220.3171253204346, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-client:", + "(6): 10 4d cd 55 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,286", + "created": 1610346616.286881, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 10 4d cd 55 3a 3e", + "module": "__init__", + "msecs": 286.8809700012207, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2220.4229831695557, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(6): 10 4d cd 55 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,286", + "created": 1610346616.286967, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 10 4d cd 55 3a 3e", + "module": "__init__", + "msecs": 286.96703910827637, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2220.5090522766113, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,287", + "created": 1610346616.287048, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 287.0481014251709, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2220.590114593506, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:16,287", + "created": 1610346616.28712, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 287.12010383605957, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2220.6621170043945, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55" + ], + "asctime": "2021-01-11 07:30:16,287", + "created": 1610346616.287274, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", + "module": "stp", + "msecs": 287.2738838195801, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2220.815896987915, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:48:58,572", - "created": 1609969738.572249, + "asctime": "2021-01-11 07:30:16,287", + "created": 1610346616.287449, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 445, + "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 572.2489356994629, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 287.4488830566406, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1737.0648384094238, - "thread": 140012320429824, + "relativeCreated": 2220.9908962249756, + "thread": 140634476246784, "threadName": "Thread-5" }, { "args": [ - "SP server:", + "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-06 22:48:58,572", - "created": 1609969738.572498, + "asctime": "2021-01-11 07:30:16,287", + "created": 1610346616.287553, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __authentificate_create_seed__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 572.498083114624, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 287.553071975708, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1737.313985824585, - "thread": 140012320429824, + "relativeCreated": 2221.095085144043, + "thread": 140634476246784, "threadName": "Thread-5" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: authentification response, data_id: seed", "status: okay", - "'304b61ac154ab9c4d5b495331036bacc3d1ba73b58231cdfa65ab76672ef5a88'" + "'0a997c89ee9271198c5d6c0d60b21799a66f3867150bc446c2e66e295da92693'" ], - "asctime": "2021-01-06 22:48:58,572", - "created": 1609969738.572777, + "asctime": "2021-01-11 07:30:16,287", + "created": 1610346616.287685, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: authentification response, data_id: seed, status: okay, data: \"'304b61ac154ab9c4d5b495331036bacc3d1ba73b58231cdfa65ab76672ef5a88'\"", + "lineno": 445, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'0a997c89ee9271198c5d6c0d60b21799a66f3867150bc446c2e66e295da92693'\"", "module": "__init__", - "msecs": 572.7770328521729, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 287.6849174499512, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1737.5929355621338, - "thread": 140012320429824, + "relativeCreated": 2221.226930618286, + "thread": 140634476246784, "threadName": "Thread-5" }, { - "args": [], - "asctime": "2021-01-06 22:48:58,573", - "created": 1609969738.573405, + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 61 39 39 37 63 38 39 65 65 39 32 37 31 31 39 38 63 35" + ], + "asctime": "2021-01-11 07:30:16,289", + "created": 1610346616.28929, "exc_info": null, "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 33 30 34 62 36 31 61 63 31 35 34 61 62 39 63 34 64 35 62 34 39 35 33 33 31 30 33 36 62 61 63 63 33 64 31 62 61 37 33 62 35 38 32 33 31 63 64 66 61 36 35 61 62 37 36 36 37 32 65 66 35 61 38 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e2 11 2a ad", - "module": "test_helpers", - "msecs": 573.4050273895264, - "msg": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 33 30 34 62 36 31 61 63 31 35 34 61 62 39 63 34 64 35 62 34 39 35 33 33 31 30 33 36 62 61 63 63 33 64 31 62 61 37 33 62 35 38 32 33 31 63 64 66 61 36 35 61 62 37 36 36 37 32 65 66 35 61 38 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e2 11 2a ad", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 61 39 39 37 63 38 39 65 65 39 32 37 31 31 39 38 63 35", + "module": "__init__", + "msecs": 289.2899513244629, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1738.2209300994873, - "thread": 140012320429824, - "threadName": "Thread-5" - }, - { - "args": [], - "asctime": "2021-01-06 22:48:58,724", - "created": 1609969738.724851, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 33 30 34 62 36 31 61 63 31 35 34 61 62 39 63 34 64 35 62 34 39 35 33 33 31 30 33 36 62 61 63 63 33 64 31 62 61 37 33 62 35 38 32 33 31 63 64 66 61 36 35 61 62 37 36 36 37 32 65 66 35 61 38 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e2 11 2a ad", - "module": "test_helpers", - "msecs": 724.8508930206299, - "msg": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 33 30 34 62 36 31 61 63 31 35 34 61 62 39 63 34 64 35 62 34 39 35 33 33 31 30 33 36 62 61 63 63 33 64 31 62 61 37 33 62 35 38 32 33 31 63 64 66 61 36 35 61 62 37 36 36 37 32 65 66 35 61 38 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e2 11 2a ad", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 1889.6667957305908, - "thread": 140012328822528, + "relativeCreated": 2222.831964492798, + "thread": 140634467854080, "threadName": "Thread-6" }, { "args": [ - "SP client:", - "service: authentification response, data_id: seed", - "status: okay", - "u'304b61ac154ab9c4d5b495331036bacc3d1ba73b58231cdfa65ab76672ef5a88'" + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 61 39 39 37 63 38 39 65 65 39 32 37 31 31 39 38 63 35" ], - "asctime": "2021-01-06 22:48:58,725", - "created": 1609969738.725354, + "asctime": "2021-01-11 07:30:16,289", + "created": 1610346616.289497, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'304b61ac154ab9c4d5b495331036bacc3d1ba73b58231cdfa65ab76672ef5a88'\"", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 61 39 39 37 63 38 39 65 65 39 32 37 31 31 39 38 63 35", "module": "__init__", - "msecs": 725.3539562225342, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 289.49689865112305, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1890.1698589324951, - "thread": 140012328822528, + "relativeCreated": 2223.038911819458, + "thread": 140634467854080, "threadName": "Thread-6" }, { "args": [ - "SP client:", + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,289", + "created": 1610346616.289583, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 289.5829677581787, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2223.1249809265137, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:16,289", + "created": 1610346616.289661, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 289.6609306335449, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2223.20294380188, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,289", + "created": 1610346616.289757, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 289.75701332092285, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2223.299026489258, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,289", + "created": 1610346616.289832, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 289.83211517333984, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2223.374128341675, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,289", + "created": 1610346616.289936, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 289.9360656738281, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2223.478078842163, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,290", + "created": 1610346616.290018, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 290.01808166503906, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2223.560094833374, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,290", + "created": 1610346616.290113, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 290.1129722595215, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2223.6549854278564, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,290", + "created": 1610346616.290185, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 290.18497467041016, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2223.726987838745, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-server:", + "(64): 64 36 63 30 64 36 30 62 32 31 37 39 39 61 36 36 66 33 38 36 37 31 35 30 62 63 34 34 36 63 32 65 36 36 65 32 39 35 64 61 39 32 36 39 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 7b 0d" + ], + "asctime": "2021-01-11 07:30:16,290", + "created": 1610346616.290399, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 64 36 63 30 64 36 30 62 32 31 37 39 39 61 36 36 66 33 38 36 37 31 35 30 62 63 34 34 36 63 32 65 36 36 65 32 39 35 64 61 39 32 36 39 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 7b 0d", + "module": "__init__", + "msecs": 290.39907455444336, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2223.9410877227783, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-client:", + "(64): 64 36 63 30 64 36 30 62 32 31 37 39 39 61 36 36 66 33 38 36 37 31 35 30 62 63 34 34 36 63 32 65 36 36 65 32 39 35 64 61 39 32 36 39 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 7b 0d" + ], + "asctime": "2021-01-11 07:30:16,290", + "created": 1610346616.290558, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 64 36 63 30 64 36 30 62 32 31 37 39 39 61 36 36 66 33 38 36 37 31 35 30 62 63 34 34 36 63 32 65 36 36 65 32 39 35 64 61 39 32 36 39 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 7b 0d", + "module": "__init__", + "msecs": 290.5580997467041, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2224.100112915039, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,290", + "created": 1610346616.290745, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 290.7450199127197, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2224.2870330810547, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,290", + "created": 1610346616.290821, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 290.8210754394531, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2224.363088607788, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-server:", + "(4): dd c4 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,290", + "created": 1610346616.290929, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (4): dd c4 3a 3e", + "module": "__init__", + "msecs": 290.92907905578613, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2224.471092224121, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-client:", + "(4): dd c4 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,291", + "created": 1610346616.291016, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (4): dd c4 3a 3e", + "module": "__init__", + "msecs": 291.0161018371582, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2224.558115005493, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,291", + "created": 1610346616.2911, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 291.10002517700195, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2224.642038345337, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:16,291", + "created": 1610346616.291223, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 291.22304916381836, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2224.7650623321533, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + "(124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 30 61 39 39 37 63 38 39 65 65 39 32 37 31 31 39 38 63 35 64 36 63 30 64 36 30 62 32 31 37 39 39 61 36 36 66 33 38 36 37 31 35 30 62 63 34 34 36 63 32 65 36 36 65 32 39 35 64 61 39 32 36 39 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 7b 0d dd c4" + ], + "asctime": "2021-01-11 07:30:16,291", + "created": 1610346616.291506, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 22 30 61 39 39 37 63 38 39 65 65 39 32 37 31 31 39 38 63 35 64 36 63 30 64 36 30 62 32 31 37 39 39 61 36 36 66 33 38 36 37 31 35 30 62 63 34 34 36 63 32 65 36 36 65 32 39 35 64 61 39 32 36 39 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 7b 0d dd c4", + "module": "stp", + "msecs": 291.5060520172119, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2225.048065185547, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: seed", + "status: okay", + "u'0a997c89ee9271198c5d6c0d60b21799a66f3867150bc446c2e66e295da92693'" + ], + "asctime": "2021-01-11 07:30:16,291", + "created": 1610346616.29168, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'0a997c89ee9271198c5d6c0d60b21799a66f3867150bc446c2e66e295da92693'\"", + "module": "__init__", + "msecs": 291.68009757995605, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2225.222110748291, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-01-06 22:48:58,725", - "created": 1609969738.725671, + "asctime": "2021-01-11 07:30:16,291", + "created": 1610346616.291785, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __authentificate_create_key__ to process received data", + "lineno": 492, + "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 725.6710529327393, + "msecs": 291.78500175476074, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1890.4869556427002, - "thread": 140012328822528, + "relativeCreated": 2225.3270149230957, + "thread": 140634467854080, "threadName": "Thread-6" }, { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: authentification request, data_id: key", "status: okay", - "'c8245de1de6057d04359964bcbae62100c634d66ee38b12cbe44af4e223ab644cf6847fce9be0fc780d873189fb1bb5d97bc6699aa1d221829cdc9512289d25a'" + "'de82e3fc43fcaab27f87000b7fcf5e1fa3e383c93671a14998ed565be031d9a19c1ecc4821480a9d501846b72d18804b6408af7813f6206b86340434417100c3'" ], - "asctime": "2021-01-06 22:48:58,726", - "created": 1609969738.726066, + "asctime": "2021-01-11 07:30:16,291", + "created": 1610346616.291926, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: authentification request, data_id: key, status: okay, data: \"'c8245de1de6057d04359964bcbae62100c634d66ee38b12cbe44af4e223ab644cf6847fce9be0fc780d873189fb1bb5d97bc6699aa1d221829cdc9512289d25a'\"", + "lineno": 445, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'de82e3fc43fcaab27f87000b7fcf5e1fa3e383c93671a14998ed565be031d9a19c1ecc4821480a9d501846b72d18804b6408af7813f6206b86340434417100c3'\"", "module": "__init__", - "msecs": 726.0661125183105, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 291.92590713500977, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 1890.8820152282715, - "thread": 140012328822528, + "relativeCreated": 2225.4679203033447, + "thread": 140634467854080, "threadName": "Thread-6" }, - { - "args": [], - "asctime": "2021-01-06 22:48:58,726", - "created": 1609969738.726892, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 38 32 34 35 64 65 31 64 65 36 30 35 37 64 30 34 33 35 39 39 36 34 62 63 62 61 65 36 32 31 30 30 63 36 33 34 64 36 36 65 65 33 38 62 31 32 63 62 65 34 34 61 66 34 65 32 32 33 61 62 36 34 34 63 66 36 38 34 37 66 63 65 39 62 65 30 66 63 37 38 30 64 38 37 33 31 38 39 66 62 31 62 62 35 64 39 37 62 63 36 36 39 39 61 61 31 64 32 32 31 38 32 39 63 64 63 39 35 31 32 32 38 39 64 32 35 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 03 29 6d 58", - "module": "test_helpers", - "msecs": 726.8919944763184, - "msg": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 38 32 34 35 64 65 31 64 65 36 30 35 37 64 30 34 33 35 39 39 36 34 62 63 62 61 65 36 32 31 30 30 63 36 33 34 64 36 36 65 65 33 38 62 31 32 63 62 65 34 34 61 66 34 65 32 32 33 61 62 36 34 34 63 66 36 38 34 37 66 63 65 39 62 65 30 66 63 37 38 30 64 38 37 33 31 38 39 66 62 31 62 62 35 64 39 37 62 63 36 36 39 39 61 61 31 64 32 32 31 38 32 39 63 64 63 39 35 31 32 32 38 39 64 32 35 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 03 29 6d 58", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 1891.7078971862793, - "thread": 140012328822528, - "threadName": "Thread-6" - }, - { - "args": [], - "asctime": "2021-01-06 22:48:58,878", - "created": 1609969738.878492, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 38 32 34 35 64 65 31 64 65 36 30 35 37 64 30 34 33 35 39 39 36 34 62 63 62 61 65 36 32 31 30 30 63 36 33 34 64 36 36 65 65 33 38 62 31 32 63 62 65 34 34 61 66 34 65 32 32 33 61 62 36 34 34 63 66 36 38 34 37 66 63 65 39 62 65 30 66 63 37 38 30 64 38 37 33 31 38 39 66 62 31 62 62 35 64 39 37 62 63 36 36 39 39 61 61 31 64 32 32 31 38 32 39 63 64 63 39 35 31 32 32 38 39 64 32 35 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 03 29 6d 58", - "module": "test_helpers", - "msecs": 878.4921169281006, - "msg": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 38 32 34 35 64 65 31 64 65 36 30 35 37 64 30 34 33 35 39 39 36 34 62 63 62 61 65 36 32 31 30 30 63 36 33 34 64 36 36 65 65 33 38 62 31 32 63 62 65 34 34 61 66 34 65 32 32 33 61 62 36 34 34 63 66 36 38 34 37 66 63 65 39 62 65 30 66 63 37 38 30 64 38 37 33 31 38 39 66 62 31 62 62 35 64 39 37 62 63 36 36 39 39 61 61 31 64 32 32 31 38 32 39 63 64 63 39 35 31 32 32 38 39 64 32 35 61 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 03 29 6d 58", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 2043.3080196380615, - "thread": 140012320429824, - "threadName": "Thread-7" - }, { "args": [ - "SP server:", - "service: authentification request, data_id: key", - "status: okay", - "u'c8245de1de6057d04359964bcbae62100c634d66ee38b12cbe44af4e223ab644cf6847fce9be0fc780d873189fb1bb5d97bc6699aa1d221829cdc9512289d25a'" + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 65 38 32 65 33 66 63 34 33 66 63 61 61 62 32 37 66 38" ], - "asctime": "2021-01-06 22:48:58,878", - "created": 1609969738.878999, + "asctime": "2021-01-11 07:30:16,295", + "created": 1610346616.295539, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__tx__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'c8245de1de6057d04359964bcbae62100c634d66ee38b12cbe44af4e223ab644cf6847fce9be0fc780d873189fb1bb5d97bc6699aa1d221829cdc9512289d25a'\"", + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 65 38 32 65 33 66 63 34 33 66 63 61 61 62 32 37 66 38", "module": "__init__", - "msecs": 878.9989948272705, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 295.53890228271484, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 2043.8148975372314, - "thread": 140012320429824, - "threadName": "Thread-7" + "relativeCreated": 2229.08091545105, + "thread": 140634476246784, + "threadName": "Thread-5" }, { "args": [ - "SP server:", + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 65 38 32 65 33 66 63 34 33 66 63 61 61 62 32 37 66 38" + ], + "asctime": "2021-01-11 07:30:16,295", + "created": 1610346616.295783, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 65 38 32 65 33 66 63 34 33 66 63 61 61 62 32 37 66 38", + "module": "__init__", + "msecs": 295.78304290771484, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2229.32505607605, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,295", + "created": 1610346616.295874, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 295.87411880493164, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2229.4161319732666, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:16,295", + "created": 1610346616.295953, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 295.95303535461426, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2229.495048522949, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,296", + "created": 1610346616.296058, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 296.05793952941895, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2229.599952697754, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,296", + "created": 1610346616.296132, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 296.13208770751953, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2229.6741008758545, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,296", + "created": 1610346616.296234, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 296.2338924407959, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2229.775905609131, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,296", + "created": 1610346616.296308, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 296.3080406188965, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2229.8500537872314, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,296", + "created": 1610346616.296405, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 296.4050769805908, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2229.947090148926, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,296", + "created": 1610346616.296483, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 296.48303985595703, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2230.025053024292, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-client:", + "(64): 37 30 30 30 62 37 66 63 66 35 65 31 66 61 33 65 33 38 33 63 39 33 36 37 31 61 31 34 39 39 38 65 64 35 36 35 62 65 30 33 31 64 39 61 31 39 63 31 65 63 63 34 38 32 31 34 38 30 61 39 64 35 30 31" + ], + "asctime": "2021-01-11 07:30:16,296", + "created": 1610346616.296702, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 37 30 30 30 62 37 66 63 66 35 65 31 66 61 33 65 33 38 33 63 39 33 36 37 31 61 31 34 39 39 38 65 64 35 36 35 62 65 30 33 31 64 39 61 31 39 63 31 65 63 63 34 38 32 31 34 38 30 61 39 64 35 30 31", + "module": "__init__", + "msecs": 296.70190811157227, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2230.243921279907, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(64): 37 30 30 30 62 37 66 63 66 35 65 31 66 61 33 65 33 38 33 63 39 33 36 37 31 61 31 34 39 39 38 65 64 35 36 35 62 65 30 33 31 64 39 61 31 39 63 31 65 63 63 34 38 32 31 34 38 30 61 39 64 35 30 31" + ], + "asctime": "2021-01-11 07:30:16,296", + "created": 1610346616.296863, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 37 30 30 30 62 37 66 63 66 35 65 31 66 61 33 65 33 38 33 63 39 33 36 37 31 61 31 34 39 39 38 65 64 35 36 35 62 65 30 33 31 64 39 61 31 39 63 31 65 63 63 34 38 32 31 34 38 30 61 39 64 35 30 31", + "module": "__init__", + "msecs": 296.8630790710449, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2230.40509223938, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-client:", + "(64): 38 34 36 62 37 32 64 31 38 38 30 34 62 36 34 30 38 61 66 37 38 31 33 66 36 32 30 36 62 38 36 33 34 30 34 33 34 34 31 37 31 30 30 63 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 15 e9" + ], + "asctime": "2021-01-11 07:30:16,297", + "created": 1610346616.29716, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 38 34 36 62 37 32 64 31 38 38 30 34 62 36 34 30 38 61 66 37 38 31 33 66 36 32 30 36 62 38 36 33 34 30 34 33 34 34 31 37 31 30 30 63 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 15 e9", + "module": "__init__", + "msecs": 297.15991020202637, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2230.7019233703613, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(64): 38 34 36 62 37 32 64 31 38 38 30 34 62 36 34 30 38 61 66 37 38 31 33 66 36 32 30 36 62 38 36 33 34 30 34 33 34 34 31 37 31 30 30 63 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 15 e9" + ], + "asctime": "2021-01-11 07:30:16,297", + "created": 1610346616.297325, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 38 34 36 62 37 32 64 31 38 38 30 34 62 36 34 30 38 61 66 37 38 31 33 66 36 32 30 36 62 38 36 33 34 30 34 33 34 34 31 37 31 30 30 63 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 15 e9", + "module": "__init__", + "msecs": 297.32489585876465, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2230.8669090270996, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,297", + "created": 1610346616.297544, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 297.544002532959, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2231.086015701294, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,297", + "created": 1610346616.297634, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 297.6338863372803, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2231.1758995056152, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-client:", + "(4): 7e c6 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,297", + "created": 1610346616.297769, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (4): 7e c6 3a 3e", + "module": "__init__", + "msecs": 297.76906967163086, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2231.311082839966, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(4): 7e c6 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,297", + "created": 1610346616.297871, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (4): 7e c6 3a 3e", + "module": "__init__", + "msecs": 297.8711128234863, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2231.4131259918213, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,297", + "created": 1610346616.297961, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 297.9609966278076, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2231.5030097961426, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:16,298", + "created": 1610346616.298044, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 298.04396629333496, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2231.58597946167, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + "(188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 64 65 38 32 65 33 66 63 34 33 66 63 61 61 62 32 37 66 38 37 30 30 30 62 37 66 63 66 35 65 31 66 61 33 65 33 38 33 63 39 33 36 37 31 61 31 34 39 39 38 65 64 35 36 35 62 65 30 33 31 64 39 61 31 39 63 31 65 63 63 34 38 32 31 34 38 30 61 39 64 35 30 31 38 34 36 62 37 32 64 31 38 38 30 34 62 36 34 30 38 61 66 37 38 31 33 66 36 32 30 36 62 38 36 33 34 30 34 33 34 34 31 37 31 30 30 63 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 15 e9 7e c6" + ], + "asctime": "2021-01-11 07:30:16,298", + "created": 1610346616.298403, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 64 65 38 32 65 33 66 63 34 33 66 63 61 61 62 32 37 66 38 37 30 30 30 62 37 66 63 66 35 65 31 66 61 33 65 33 38 33 63 39 33 36 37 31 61 31 34 39 39 38 65 64 35 36 35 62 65 30 33 31 64 39 61 31 39 63 31 65 63 63 34 38 32 31 34 38 30 61 39 64 35 30 31 38 34 36 62 37 32 64 31 38 38 30 34 62 36 34 30 38 61 66 37 38 31 33 66 36 32 30 36 62 38 36 33 34 30 34 33 34 34 31 37 31 30 30 63 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 15 e9 7e c6", + "module": "stp", + "msecs": 298.4030246734619, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2231.945037841797, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: authentification request, data_id: key", + "status: okay", + "u'de82e3fc43fcaab27f87000b7fcf5e1fa3e383c93671a14998ed565be031d9a19c1ecc4821480a9d501846b72d18804b6408af7813f6206b86340434417100c3'" + ], + "asctime": "2021-01-11 07:30:16,298", + "created": 1610346616.298599, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'de82e3fc43fcaab27f87000b7fcf5e1fa3e383c93671a14998ed565be031d9a19c1ecc4821480a9d501846b72d18804b6408af7813f6206b86340434417100c3'\"", + "module": "__init__", + "msecs": 298.5990047454834, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2232.1410179138184, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-01-06 22:48:58,879", - "created": 1609969738.87925, + "asctime": "2021-01-11 07:30:16,298", + "created": 1610346616.298714, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __authentificate_check_key__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 879.2500495910645, - "msg": "%s RX <- Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 2044.0659523010254, - "thread": 140012320429824, - "threadName": "Thread-7" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-01-06 22:48:58,879", - "created": 1609969738.879529, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 879.5289993286133, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 2044.3449020385742, - "thread": 140012320429824, - "threadName": "Thread-7" - }, - { - "args": [], - "asctime": "2021-01-06 22:48:58,879", - "created": 1609969738.879991, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", - "module": "test_helpers", - "msecs": 879.9910545349121, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 2044.806957244873, - "thread": 140012320429824, - "threadName": "Thread-7" - }, - { - "args": [], - "asctime": "2021-01-06 22:48:59,031", - "created": 1609969739.031149, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", - "module": "test_helpers", - "msecs": 31.148910522460938, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 2195.964813232422, - "thread": 140012328822528, - "threadName": "Thread-8" - }, - { - "args": [ - "SP client:", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-01-06 22:48:59,031", - "created": 1609969739.031635, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 31.635046005249023, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 2196.45094871521, - "thread": 140012328822528, - "threadName": "Thread-8" - }, - { - "args": [ - "SP client:", - "__authentificate_process_feedback__" - ], - "asctime": "2021-01-06 22:48:59,031", - "created": 1609969739.031886, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __authentificate_process_feedback__ to process received data", - "module": "__init__", - "msecs": 31.88610076904297, + "msecs": 298.71392250061035, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 2196.702003479004, - "thread": 140012328822528, - "threadName": "Thread-8" + "relativeCreated": 2232.2559356689453, + "thread": 140634476246784, + "threadName": "Thread-5" }, { "args": [ - "SP client:" + "prot-server:", + "TX ->", + "service: authentification response, data_id: key", + "status: okay", + "True" ], - "asctime": "2021-01-06 22:48:59,032", - "created": 1609969739.032104, + "asctime": "2021-01-11 07:30:16,298", + "created": 1610346616.298877, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 298.8770008087158, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2232.419013977051, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" + ], + "asctime": "2021-01-11 07:30:16,299", + "created": 1610346616.299899, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", + "module": "__init__", + "msecs": 299.8991012573242, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2233.441114425659, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" + ], + "asctime": "2021-01-11 07:30:16,300", + "created": 1610346616.30011, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", + "module": "__init__", + "msecs": 300.1101016998291, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2233.652114868164, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,300", + "created": 1610346616.300225, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 300.22501945495605, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2233.767032623291, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:16,300", + "created": 1610346616.300442, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 300.4419803619385, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2233.9839935302734, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,300", + "created": 1610346616.3006, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 300.6000518798828, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2234.142065048218, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,300", + "created": 1610346616.300717, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 300.7171154022217, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2234.2591285705566, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,300", + "created": 1610346616.300941, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 300.94099044799805, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2234.483003616333, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,301", + "created": 1610346616.30115, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 301.1500835418701, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2234.692096710205, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,301", + "created": 1610346616.301304, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 301.3041019439697, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2234.8461151123047, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,301", + "created": 1610346616.301437, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 301.4369010925293, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2234.9789142608643, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,301", + "created": 1610346616.301615, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 301.61499977111816, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2235.157012939453, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,301", + "created": 1610346616.30173, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 301.7299175262451, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2235.27193069458, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-server:", + "(6): 11 d3 26 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,301", + "created": 1610346616.301914, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 11 d3 26 78 3a 3e", + "module": "__init__", + "msecs": 301.9139766693115, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2235.4559898376465, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-client:", + "(6): 11 d3 26 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,302", + "created": 1610346616.302062, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 11 d3 26 78 3a 3e", + "module": "__init__", + "msecs": 302.0620346069336, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2235.6040477752686, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,302", + "created": 1610346616.302183, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 302.1829128265381, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2235.724925994873, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:16,302", + "created": 1610346616.302287, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 302.28710174560547, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2235.8291149139404, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78" + ], + "asctime": "2021-01-11 07:30:16,302", + "created": 1610346616.302507, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", + "module": "stp", + "msecs": 302.5069236755371, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2236.048936843872, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: key", + "status: okay", + "True" + ], + "asctime": "2021-01-11 07:30:16,302", + "created": 1610346616.302731, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 302.7310371398926, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2236.2730503082275, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:", + "__authentificate_process_feedback__" + ], + "asctime": "2021-01-11 07:30:16,302", + "created": 1610346616.302862, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", + "module": "__init__", + "msecs": 302.86192893981934, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2236.4039421081543, + "thread": 140634467854080, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:16,302", + "created": 1610346616.302978, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "INFO", "levelno": 20, - "lineno": 350, - "message": "SP client: Got positive authentification feedback", + "lineno": 360, + "message": "prot-client: Got positive authentification feedback", "module": "__init__", - "msecs": 32.1040153503418, + "msecs": 302.9780387878418, "msg": "%s Got positive authentification feedback", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 2196.9199180603027, - "thread": 140012328822528, - "threadName": "Thread-8" + "relativeCreated": 2236.5200519561768, + "thread": 140634467854080, + "threadName": "Thread-6" } ], - "msecs": 123.08406829833984, + "msecs": 385.4200839996338, "msg": "Performing Authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 2287.899971008301, - "thread": 140012350113600, + "relativeCreated": 2318.9620971679688, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.09098005294799805 + "time_consumption": 0.08244204521179199 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:48:59,123", - "created": 1609969739.123995, + "asctime": "2021-01-11 07:30:16,386", + "created": 1610346616.386969, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36131,8 +76538,8 @@ "True", "" ], - "asctime": "2021-01-06 22:48:59,123", - "created": 1609969739.123596, + "asctime": "2021-01-11 07:30:16,386", + "created": 1610346616.386391, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36142,14 +76549,14 @@ "lineno": 22, "message": "Result (Return Value of authentification method): True ()", "module": "test", - "msecs": 123.5959529876709, + "msecs": 386.39092445373535, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 2288.411855697632, - "thread": 140012350113600, + "relativeCreated": 2319.9329376220703, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -36158,8 +76565,8 @@ "True", "" ], - "asctime": "2021-01-06 22:48:59,123", - "created": 1609969739.123812, + "asctime": "2021-01-11 07:30:16,386", + "created": 1610346616.386688, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36169,35 +76576,35 @@ "lineno": 26, "message": "Expectation (Return Value of authentification method): result = True ()", "module": "test", - "msecs": 123.81196022033691, + "msecs": 386.6879940032959, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 2288.627862930298, - "thread": 140012350113600, + "relativeCreated": 2320.230007171631, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 123.99506568908691, + "msecs": 386.96908950805664, "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 2288.810968399048, - "thread": 140012350113600, + "relativeCreated": 2320.5111026763916, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00018310546875 + "time_consumption": 0.0002810955047607422 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:48:59,124", - "created": 1609969739.124615, + "asctime": "2021-01-11 07:30:16,387", + "created": 1610346616.387871, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36214,8 +76621,8 @@ "True", "" ], - "asctime": "2021-01-06 22:48:59,124", - "created": 1609969739.124286, + "asctime": "2021-01-11 07:30:16,387", + "created": 1610346616.387392, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36225,14 +76632,14 @@ "lineno": 22, "message": "Result (Authentification state of server): True ()", "module": "test", - "msecs": 124.28593635559082, + "msecs": 387.3920440673828, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 2289.1018390655518, - "thread": 140012350113600, + "relativeCreated": 2320.934057235718, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -36241,8 +76648,8 @@ "True", "" ], - "asctime": "2021-01-06 22:48:59,124", - "created": 1609969739.124454, + "asctime": "2021-01-11 07:30:16,387", + "created": 1610346616.387637, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36252,35 +76659,35 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = True ()", "module": "test", - "msecs": 124.45402145385742, + "msecs": 387.6368999481201, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 2289.2699241638184, - "thread": 140012350113600, + "relativeCreated": 2321.178913116455, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 124.61495399475098, + "msecs": 387.87102699279785, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 2289.430856704712, - "thread": 140012350113600, + "relativeCreated": 2321.413040161133, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0001609325408935547 + "time_consumption": 0.00023412704467773438 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:48:59,125", - "created": 1609969739.125182, + "asctime": "2021-01-11 07:30:16,388", + "created": 1610346616.388772, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36297,8 +76704,8 @@ "True", "" ], - "asctime": "2021-01-06 22:48:59,124", - "created": 1609969739.124873, + "asctime": "2021-01-11 07:30:16,388", + "created": 1610346616.388257, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36308,14 +76715,14 @@ "lineno": 22, "message": "Result (Authentification state of client): True ()", "module": "test", - "msecs": 124.87292289733887, + "msecs": 388.2570266723633, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 2289.6888256073, - "thread": 140012350113600, + "relativeCreated": 2321.7990398406982, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -36324,8 +76731,8 @@ "True", "" ], - "asctime": "2021-01-06 22:48:59,125", - "created": 1609969739.125029, + "asctime": "2021-01-11 07:30:16,388", + "created": 1610346616.388498, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36335,32 +76742,32 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = True ()", "module": "test", - "msecs": 125.02908706665039, + "msecs": 388.49806785583496, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 2289.8449897766113, - "thread": 140012350113600, + "relativeCreated": 2322.04008102417, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 125.18191337585449, + "msecs": 388.77201080322266, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 2289.9978160858154, - "thread": 140012350113600, + "relativeCreated": 2322.3140239715576, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00015282630920410156 + "time_consumption": 0.0002739429473876953 }, { "args": [], - "asctime": "2021-01-06 22:48:59,128", - "created": 1609969739.128736, + "asctime": "2021-01-11 07:30:16,389", + "created": 1610346616.389445, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -36373,70 +76780,70 @@ "moduleLogger": [ { "args": [ - "SP server:" + "prot-server:" ], - "asctime": "2021-01-06 22:48:59,128", - "created": 1609969739.128253, + "asctime": "2021-01-11 07:30:16,389", + "created": 1610346616.389041, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 128.25298309326172, + "msecs": 389.0409469604492, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 2293.0688858032227, - "thread": 140012350113600, + "relativeCreated": 2322.582960128784, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-client:" ], - "asctime": "2021-01-06 22:48:59,128", - "created": 1609969739.128531, + "asctime": "2021-01-11 07:30:16,389", + "created": 1610346616.389242, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 128.53097915649414, + "msecs": 389.24193382263184, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 2293.346881866455, - "thread": 140012350113600, + "relativeCreated": 2322.783946990967, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 128.73601913452148, + "msecs": 389.44506645202637, "msg": "Corrupting the authentification mechanism", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 2293.5519218444824, - "thread": 140012350113600, + "relativeCreated": 2322.9870796203613, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00020503997802734375 + "time_consumption": 0.00020313262939453125 }, { "args": [], - "asctime": "2021-01-06 22:49:01,135", - "created": 1609969741.135497, + "asctime": "2021-01-11 07:30:16,791", + "created": 1610346616.791431, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -36449,151 +76856,555 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:48:59,129", - "created": 1609969739.129056, + "asctime": "2021-01-11 07:30:16,389", + "created": 1610346616.389828, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 445, + "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 129.05597686767578, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 389.8279666900635, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 2293.8718795776367, - "thread": 140012350113600, + "relativeCreated": 2323.3699798583984, + "thread": 140634736203584, "threadName": "MainThread" }, - { - "args": [], - "asctime": "2021-01-06 22:48:59,129", - "created": 1609969739.129538, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "module": "test_helpers", - "msecs": 129.53805923461914, - "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 2294.35396194458, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:48:59,280", - "created": 1609969739.280692, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "module": "test_helpers", - "msecs": 280.69210052490234, - "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 2445.5080032348633, - "thread": 140012328822528, - "threadName": "Thread-9" - }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:16,399", + "created": 1610346616.39974, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 399.73998069763184, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2333.281993865967, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:16,400", + "created": 1610346616.40023, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 400.22993087768555, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2333.7719440460205, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,400", + "created": 1610346616.400452, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 400.4518985748291, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2333.993911743164, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:16,400", + "created": 1610346616.400629, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 400.62904357910156, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2334.1710567474365, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,400", + "created": 1610346616.400839, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 400.83909034729004, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2334.381103515625, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,401", + "created": 1610346616.401065, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 401.0651111602783, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2334.6071243286133, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,401", + "created": 1610346616.401343, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 401.34310722351074, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2334.8851203918457, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,401", + "created": 1610346616.401568, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 401.5679359436035, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2335.1099491119385, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,401", + "created": 1610346616.401822, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 401.8220901489258, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2335.3641033172607, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,402", + "created": 1610346616.402108, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 402.10795402526855, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2335.6499671936035, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,402", + "created": 1610346616.402412, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 402.41193771362305, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2335.953950881958, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:16,402", + "created": 1610346616.402609, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 402.60910987854004, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2336.151123046875, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-client:", + "(6): 10 4d cd 55 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,403", + "created": 1610346616.403164, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 10 4d cd 55 3a 3e", + "module": "__init__", + "msecs": 403.1639099121094, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2336.7059230804443, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(6): 10 4d cd 55 3a 3e" + ], + "asctime": "2021-01-11 07:30:16,403", + "created": 1610346616.403476, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 10 4d cd 55 3a 3e", + "module": "__init__", + "msecs": 403.4759998321533, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2337.0180130004883, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:16,403", + "created": 1610346616.403711, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 403.71108055114746, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2337.2530937194824, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:16,403", + "created": 1610346616.403895, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 403.89490127563477, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2337.4369144439697, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55" + ], + "asctime": "2021-01-11 07:30:16,404", + "created": 1610346616.404245, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 10 4d cd 55", + "module": "stp", + "msecs": 404.24489974975586, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 2337.786912918091, + "thread": 140634476246784, + "threadName": "Thread-5" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:48:59,281", - "created": 1609969739.281003, + "asctime": "2021-01-11 07:30:16,404", + "created": 1610346616.404628, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 445, + "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 281.0029983520508, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 404.62803840637207, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 2445.8189010620117, - "thread": 140012328822528, - "threadName": "Thread-9" + "relativeCreated": 2338.170051574707, + "thread": 140634476246784, + "threadName": "Thread-5" }, { "args": [ - "SP server:", + "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-06 22:48:59,281", - "created": 1609969739.281144, + "asctime": "2021-01-11 07:30:16,404", + "created": 1610346616.404848, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, - "message": "SP server: Executing callback __authentificate_create_seed__ to process received data", + "lineno": 492, + "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 281.1439037322998, + "msecs": 404.8480987548828, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 2445.9598064422607, - "thread": 140012328822528, - "threadName": "Thread-9" + "relativeCreated": 2338.390111923218, + "thread": 140634476246784, + "threadName": "Thread-5" } ], - "msecs": 135.4970932006836, + "msecs": 791.4309501647949, "msg": "Performing Authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4300.3129959106445, - "thread": 140012350113600, + "relativeCreated": 2724.97296333313, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 1.8543531894683838 + "time_consumption": 0.3865828514099121 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:01,136", - "created": 1609969741.136375, + "asctime": "2021-01-11 07:30:16,792", + "created": 1610346616.792347, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36610,8 +77421,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:01,135", - "created": 1609969741.135982, + "asctime": "2021-01-11 07:30:16,791", + "created": 1610346616.791963, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36621,14 +77432,14 @@ "lineno": 22, "message": "Result (Return Value of authentification method): False ()", "module": "test", - "msecs": 135.98203659057617, + "msecs": 791.9631004333496, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4300.797939300537, - "thread": 140012350113600, + "relativeCreated": 2725.5051136016846, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -36637,8 +77448,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:01,136", - "created": 1609969741.136189, + "asctime": "2021-01-11 07:30:16,792", + "created": 1610346616.792165, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36648,35 +77459,35 @@ "lineno": 26, "message": "Expectation (Return Value of authentification method): result = False ()", "module": "test", - "msecs": 136.18898391723633, + "msecs": 792.1650409698486, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4301.004886627197, - "thread": 140012350113600, + "relativeCreated": 2725.7070541381836, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 136.37495040893555, + "msecs": 792.3469543457031, "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4301.1908531188965, - "thread": 140012350113600, + "relativeCreated": 2725.888967514038, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00018596649169921875 + "time_consumption": 0.0001819133758544922 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:01,137", - "created": 1609969741.137005, + "asctime": "2021-01-11 07:30:16,792", + "created": 1610346616.792959, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36693,8 +77504,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:01,136", - "created": 1609969741.136658, + "asctime": "2021-01-11 07:30:16,792", + "created": 1610346616.792641, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36704,14 +77515,14 @@ "lineno": 22, "message": "Result (Authentification state of server): False ()", "module": "test", - "msecs": 136.6579532623291, + "msecs": 792.6409244537354, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4301.47385597229, - "thread": 140012350113600, + "relativeCreated": 2726.1829376220703, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -36720,8 +77531,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:01,136", - "created": 1609969741.136839, + "asctime": "2021-01-11 07:30:16,792", + "created": 1610346616.792802, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36731,35 +77542,35 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = False ()", "module": "test", - "msecs": 136.8389129638672, + "msecs": 792.802095413208, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4301.654815673828, - "thread": 140012350113600, + "relativeCreated": 2726.344108581543, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 137.00509071350098, + "msecs": 792.9589748382568, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4301.820993423462, - "thread": 140012350113600, + "relativeCreated": 2726.500988006592, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00016617774963378906 + "time_consumption": 0.00015687942504882812 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:01,137", - "created": 1609969741.137574, + "asctime": "2021-01-11 07:30:16,793", + "created": 1610346616.793553, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36776,8 +77587,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:01,137", - "created": 1609969741.137261, + "asctime": "2021-01-11 07:30:16,793", + "created": 1610346616.793212, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36787,14 +77598,14 @@ "lineno": 22, "message": "Result (Authentification state of client): False ()", "module": "test", - "msecs": 137.26091384887695, + "msecs": 793.2119369506836, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4302.076816558838, - "thread": 140012350113600, + "relativeCreated": 2726.7539501190186, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -36803,8 +77614,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:01,137", - "created": 1609969741.137418, + "asctime": "2021-01-11 07:30:16,793", + "created": 1610346616.793365, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -36814,39 +77625,39 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = False ()", "module": "test", - "msecs": 137.41803169250488, + "msecs": 793.3650016784668, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4302.233934402466, - "thread": 140012350113600, + "relativeCreated": 2726.9070148468018, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 137.5739574432373, + "msecs": 793.5531139373779, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 4302.389860153198, - "thread": 140012350113600, + "relativeCreated": 2727.095127105713, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00015592575073242188 + "time_consumption": 0.0001881122589111328 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 3.431565046310425, - "time_finished": "2021-01-06 22:49:01,137", - "time_start": "2021-01-06 22:48:57,706" + "time_consumption": 0.9674520492553711, + "time_finished": "2021-01-11 07:30:16,793", + "time_start": "2021-01-11 07:30:15,826" }, "_k-Q4EE0oEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:49:08,069", - "created": 1609969748.069441, + "asctime": "2021-01-11 07:30:25,712", + "created": 1610346625.712111, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -36857,1296 +77668,3015 @@ "message": "_k-Q4EE0oEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 69.44108009338379, + "msecs": 712.1109962463379, "msg": "_k-Q4EE0oEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11234.256982803345, + "relativeCreated": 11645.653009414673, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:08,075", - "created": 1609969748.075088, + "asctime": "2021-01-11 07:30:25,731", + "created": 1610346625.731566, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:08,070", - "created": 1609969748.070019, + "asctime": "2021-01-11 07:30:25,713", + "created": 1610346625.713312, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 70.01900672912598, + "msecs": 713.3119106292725, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11234.834909439087, - "thread": 140012350113600, + "relativeCreated": 11646.853923797607, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:08,070", - "created": 1609969748.070268, + "asctime": "2021-01-11 07:30:25,715", + "created": 1610346625.715864, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 70.26791572570801, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 715.8639430999756, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11235.083818435669, - "thread": 140012350113600, + "relativeCreated": 11649.40595626831, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:08,070", - "created": 1609969748.070531, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 70.53089141845703, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11235.346794128418, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:08,070", - "created": 1609969748.070712, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 70.71208953857422, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11235.527992248535, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:08,070", - "created": 1609969748.070879, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 70.87898254394531, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11235.694885253906, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:08,071", - "created": 1609969748.071052, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 71.05207443237305, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11235.867977142334, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:08,071", - "created": 1609969748.071233, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 71.23303413391113, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11236.048936843872, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:08,071", - "created": 1609969748.071423, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 71.42305374145508, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11236.238956451416, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:08,071", - "created": 1609969748.071603, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 71.60305976867676, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11236.418962478638, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:08,071", - "created": 1609969748.071788, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 71.78807258605957, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11236.60397529602, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:08,071", - "created": 1609969748.07195, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 71.94995880126953, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11236.76586151123, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:08,072", - "created": 1609969748.072138, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 72.13807106018066, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11236.953973770142, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:08,072", - "created": 1609969748.072325, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 72.32499122619629, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11237.140893936157, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:08,072", - "created": 1609969748.072517, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 72.51691818237305, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11237.332820892334, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:08,072", - "created": 1609969748.072687, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 72.68691062927246, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11237.502813339233, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:08,072", - "created": 1609969748.072863, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 72.86310195922852, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11237.67900466919, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:08,073", - "created": 1609969748.073032, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 73.03190231323242, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11237.847805023193, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:08,073", - "created": 1609969748.07321, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 73.21000099182129, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11238.025903701782, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:08,073", - "created": 1609969748.073371, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 73.37093353271484, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11238.186836242676, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:08,073", - "created": 1609969748.07353, + "asctime": "2021-01-11 07:30:25,716", + "created": 1610346625.716488, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 73.52995872497559, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 716.4878845214844, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11238.345861434937, - "thread": 140012350113600, + "relativeCreated": 11650.02989768982, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:08,073", - "created": 1609969748.07386, + "asctime": "2021-01-11 07:30:25,717", + "created": 1610346625.717613, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 73.85993003845215, + "msecs": 717.6129817962646, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11238.675832748413, - "thread": 140012350113600, + "relativeCreated": 11651.1549949646, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:08,073", - "created": 1609969748.07393, + "asctime": "2021-01-11 07:30:25,717", + "created": 1610346625.717924, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 73.93002510070801, + "msecs": 717.9241180419922, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11238.745927810669, - "thread": 140012350113600, + "relativeCreated": 11651.466131210327, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:08,074", - "created": 1609969748.074008, + "asctime": "2021-01-11 07:30:25,718", + "created": 1610346625.718183, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 74.00798797607422, + "msecs": 718.1830406188965, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11238.823890686035, - "thread": 140012350113600, + "relativeCreated": 11651.725053787231, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:08,074", - "created": 1609969748.074067, + "asctime": "2021-01-11 07:30:25,718", + "created": 1610346625.718495, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 74.0671157836914, + "msecs": 718.4948921203613, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11238.883018493652, - "thread": 140012350113600, + "relativeCreated": 11652.036905288696, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:08,074", - "created": 1609969748.07413, + "asctime": "2021-01-11 07:30:25,718", + "created": 1610346625.718692, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 74.13005828857422, + "msecs": 718.6920642852783, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11238.945960998535, - "thread": 140012350113600, + "relativeCreated": 11652.234077453613, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:08,074", - "created": 1609969748.074185, + "asctime": "2021-01-11 07:30:25,718", + "created": 1610346625.718825, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 74.18489456176758, + "msecs": 718.825101852417, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11239.000797271729, - "thread": 140012350113600, + "relativeCreated": 11652.367115020752, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:08,074", - "created": 1609969748.074249, + "asctime": "2021-01-11 07:30:25,719", + "created": 1610346625.719137, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 74.2490291595459, + "msecs": 719.1369533538818, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11239.064931869507, - "thread": 140012350113600, + "relativeCreated": 11652.678966522217, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:08,074", - "created": 1609969748.074314, + "asctime": "2021-01-11 07:30:25,719", + "created": 1610346625.719366, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 74.31411743164062, + "msecs": 719.3660736083984, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11239.130020141602, - "thread": 140012350113600, + "relativeCreated": 11652.908086776733, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:08,074", - "created": 1609969748.074379, + "asctime": "2021-01-11 07:30:25,719", + "created": 1610346625.719838, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 74.37896728515625, + "msecs": 719.8379039764404, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11239.194869995117, - "thread": 140012350113600, + "relativeCreated": 11653.379917144775, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:08,074", - "created": 1609969748.074439, + "asctime": "2021-01-11 07:30:25,720", + "created": 1610346625.720165, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 74.43904876708984, + "msecs": 720.1650142669678, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11239.25495147705, - "thread": 140012350113600, + "relativeCreated": 11653.707027435303, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:08,074", - "created": 1609969748.074493, + "asctime": "2021-01-11 07:30:25,720", + "created": 1610346625.720401, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 74.4929313659668, + "msecs": 720.4010486602783, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11239.308834075928, - "thread": 140012350113600, + "relativeCreated": 11653.943061828613, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:08,074", - "created": 1609969748.074557, + "asctime": "2021-01-11 07:30:25,720", + "created": 1610346625.720651, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 74.55706596374512, + "msecs": 720.6509113311768, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11239.372968673706, - "thread": 140012350113600, + "relativeCreated": 11654.192924499512, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:08,074", - "created": 1609969748.074621, + "asctime": "2021-01-11 07:30:25,720", + "created": 1610346625.720941, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 74.62096214294434, + "msecs": 720.9410667419434, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11239.436864852905, - "thread": 140012350113600, + "relativeCreated": 11654.483079910278, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:08,074", - "created": 1609969748.074681, + "asctime": "2021-01-11 07:30:25,721", + "created": 1610346625.72111, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 74.68104362487793, + "msecs": 721.1101055145264, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11239.496946334839, - "thread": 140012350113600, + "relativeCreated": 11654.652118682861, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:08,074", - "created": 1609969748.074742, + "asctime": "2021-01-11 07:30:25,721", + "created": 1610346625.721301, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 74.74207878112793, + "msecs": 721.3010787963867, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11239.557981491089, - "thread": 140012350113600, + "relativeCreated": 11654.843091964722, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:08,074", - "created": 1609969748.074803, + "asctime": "2021-01-11 07:30:25,721", + "created": 1610346625.721549, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 74.80311393737793, + "msecs": 721.5490341186523, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11239.619016647339, - "thread": 140012350113600, + "relativeCreated": 11655.091047286987, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:08,074", - "created": 1609969748.074864, + "asctime": "2021-01-11 07:30:25,721", + "created": 1610346625.721782, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 74.86391067504883, + "msecs": 721.7819690704346, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11239.67981338501, - "thread": 140012350113600, + "relativeCreated": 11655.32398223877, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:08,074", - "created": 1609969748.074922, + "asctime": "2021-01-11 07:30:25,721", + "created": 1610346625.721941, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 74.92208480834961, + "msecs": 721.9409942626953, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11239.73798751831, - "thread": 140012350113600, + "relativeCreated": 11655.48300743103, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:08,074", - "created": 1609969748.074976, + "asctime": "2021-01-11 07:30:25,722", + "created": 1610346625.722086, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 74.97596740722656, + "msecs": 722.0859527587891, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11239.791870117188, - "thread": 140012350113600, + "relativeCreated": 11655.627965927124, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:08,075", - "created": 1609969748.07503, + "asctime": "2021-01-11 07:30:25,722", + "created": 1610346625.722202, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 75.03008842468262, + "msecs": 722.2020626068115, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11239.845991134644, - "thread": 140012350113600, + "relativeCreated": 11655.744075775146, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:25,723", + "created": 1610346625.723, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 723.0000495910645, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11656.5420627594, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:25,723", + "created": 1610346625.723297, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 723.297119140625, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11656.83913230896, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:25,723", + "created": 1610346625.723576, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 723.5760688781738, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11657.118082046509, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:25,723", + "created": 1610346625.723777, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 723.7770557403564, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11657.319068908691, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:25,723", + "created": 1610346625.723958, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 723.9580154418945, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11657.50002861023, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:25,724", + "created": 1610346625.72419, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 724.1899967193604, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11657.732009887695, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:25,724", + "created": 1610346625.724381, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 724.3809700012207, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11657.922983169556, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:25,724", + "created": 1610346625.724562, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 724.5619297027588, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11658.103942871094, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:25,728", + "created": 1610346625.728652, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 728.6520004272461, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11662.194013595581, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:25,728", + "created": 1610346625.728906, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 728.9059162139893, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11662.447929382324, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:25,729", + "created": 1610346625.729022, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 729.0220260620117, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11662.564039230347, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:25,729", + "created": 1610346625.729354, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 729.3539047241211, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11662.895917892456, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:25,730", + "created": 1610346625.730056, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 730.0560474395752, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11663.59806060791, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:25,730", + "created": 1610346625.730272, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 730.2720546722412, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11663.814067840576, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:25,730", + "created": 1610346625.730444, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 730.4439544677734, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11663.985967636108, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:25,730", + "created": 1610346625.730616, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 730.6160926818848, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11664.15810585022, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:25,730", + "created": 1610346625.730898, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 730.8979034423828, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11664.439916610718, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:25,731", + "created": 1610346625.731068, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 731.0678958892822, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11664.609909057617, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:25,731", + "created": 1610346625.731236, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 731.2359809875488, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11664.777994155884, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:25,731", + "created": 1610346625.731388, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 731.3880920410156, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11664.93010520935, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 75.0880241394043, + "msecs": 731.5659523010254, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11239.903926849365, - "thread": 140012350113600, + "relativeCreated": 11665.10796546936, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 5.793571472167969e-05 + "time_consumption": 0.00017786026000976562 }, { "args": [], - "asctime": "2021-01-06 22:49:08,577", - "created": 1609969748.577531, + "asctime": "2021-01-11 07:30:26,076", + "created": 1610346626.076857, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:25,731", + "created": 1610346625.731924, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 731.9240570068359, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11665.46607017517, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:25,732", + "created": 1610346625.732109, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 732.1090698242188, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11665.651082992554, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:25,732", + "created": 1610346625.73245, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 732.450008392334, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11665.992021560669, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:25,732", + "created": 1610346625.732868, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 732.867956161499, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11666.409969329834, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:25,733", + "created": 1610346625.733259, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 733.2589626312256, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11666.80097579956, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:25,733", + "created": 1610346625.733596, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 733.5960865020752, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11667.13809967041, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:25,733", + "created": 1610346625.733714, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 733.7141036987305, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11667.256116867065, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:25,739", + "created": 1610346625.73917, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 739.1700744628906, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11672.712087631226, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:25,739", + "created": 1610346625.739739, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 739.738941192627, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11673.280954360962, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,739", + "created": 1610346625.739999, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 739.9990558624268, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11673.541069030762, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:25,740", + "created": 1610346625.740258, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 740.257978439331, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11673.799991607666, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,740", + "created": 1610346625.740462, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 740.462064743042, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11674.004077911377, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,740", + "created": 1610346625.740667, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 740.6671047210693, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11674.209117889404, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,740", + "created": 1610346625.740901, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 740.900993347168, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11674.443006515503, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,741", + "created": 1610346625.741145, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 741.1448955535889, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11674.686908721924, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,741", + "created": 1610346625.741796, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 741.7960166931152, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11675.33802986145, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,741", + "created": 1610346625.741954, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 741.9540882110596, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11675.496101379395, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,742", + "created": 1610346625.742052, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 742.0520782470703, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11675.594091415405, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,742", + "created": 1610346625.74214, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 742.1400547027588, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11675.682067871094, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "comm-client:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:25,742", + "created": 1610346625.742312, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 742.311954498291, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11675.853967666626, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "comm-server:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:25,742", + "created": 1610346625.742453, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 742.4530982971191, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11675.995111465454, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,742", + "created": 1610346625.74256, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 742.5599098205566, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11676.101922988892, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:25,742", + "created": 1610346625.742648, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 742.6478862762451, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11676.18989944458, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" + ], + "asctime": "2021-01-11 07:30:25,742", + "created": 1610346625.74286, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", + "module": "stp", + "msecs": 742.8600788116455, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11676.40209197998, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:25,743", + "created": 1610346625.743094, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 743.0939674377441, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11676.63598060608, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:25,743", + "created": 1610346625.743222, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 743.2219982147217, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11676.764011383057, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:25,743", + "created": 1610346625.743409, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 743.4089183807373, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11676.950931549072, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:25,759", + "created": 1610346625.759921, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 759.9210739135742, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11693.46308708191, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:25,760", + "created": 1610346625.760216, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 760.2159976959229, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11693.758010864258, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,760", + "created": 1610346625.760331, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 760.3309154510498, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11693.872928619385, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:25,760", + "created": 1610346625.760417, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 760.4169845581055, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11693.95899772644, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,760", + "created": 1610346625.760552, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 760.551929473877, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11694.093942642212, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,760", + "created": 1610346625.760654, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 760.6539726257324, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11694.195985794067, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,760", + "created": 1610346625.760796, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 760.796070098877, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11694.338083267212, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,760", + "created": 1610346625.760982, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 760.9820365905762, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11694.524049758911, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,761", + "created": 1610346625.761094, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 761.0940933227539, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11694.636106491089, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,761", + "created": 1610346625.761178, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 761.1780166625977, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11694.720029830933, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,761", + "created": 1610346625.761272, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 761.2719535827637, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11694.813966751099, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:25,761", + "created": 1610346625.761346, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 761.3461017608643, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11694.8881149292, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:25,761", + "created": 1610346625.761505, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 761.5048885345459, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11695.04690170288, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:25,761", + "created": 1610346625.7616, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 761.6000175476074, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11695.142030715942, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:25,761", + "created": 1610346625.761687, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 761.6870403289795, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11695.229053497314, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:25,761", + "created": 1610346625.761757, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 761.7568969726562, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11695.298910140991, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:25,761", + "created": 1610346625.76193, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 761.929988861084, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11695.472002029419, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:25,762", + "created": 1610346625.762157, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 762.1569633483887, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11695.698976516724, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:25,762", + "created": 1610346625.762276, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 762.2759342193604, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 11695.817947387695, + "thread": 140633838696192, + "threadName": "Thread-16" + } + ], + "msecs": 76.85708999633789, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12010.399103164673, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.31458115577697754 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:26,378", + "created": 1610346626.378793, "exc_info": null, "exc_text": null, "filename": "test_communication.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 319, + "lineno": 315, "message": "Transfering a message client -> server -> client", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:08,075", - "created": 1609969748.075238, + "asctime": "2021-01-11 07:30:26,077", + "created": 1610346626.077265, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 445, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 75.23798942565918, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 77.26502418518066, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11240.05389213562, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:08,075", - "created": 1609969748.075432, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "test_helpers", - "msecs": 75.43206214904785, - "msg": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11240.247964859009, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:08,075", - "created": 1609969748.075581, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "test_helpers", - "msecs": 75.58107376098633, - "msg": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11240.396976470947, - "thread": 140012350113600, + "relativeCreated": 12010.807037353516, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:26,107", + "created": 1610346626.107887, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 107.88702964782715, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12041.429042816162, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:26,108", + "created": 1610346626.108139, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 108.1390380859375, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12041.681051254272, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,108", + "created": 1610346626.108258, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 108.25800895690918, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12041.800022125244, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:26,108", + "created": 1610346626.108326, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 108.32595825195312, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12041.867971420288, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,108", + "created": 1610346626.108401, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 108.40106010437012, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12041.943073272705, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,108", + "created": 1610346626.108457, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 108.45708847045898, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12041.999101638794, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,108", + "created": 1610346626.108522, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 108.52193832397461, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12042.06395149231, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,108", + "created": 1610346626.108571, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 108.57105255126953, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12042.113065719604, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,108", + "created": 1610346626.108628, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 108.6280345916748, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12042.17004776001, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,108", + "created": 1610346626.108677, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 108.67691040039062, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12042.218923568726, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "comm-client:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" + ], + "asctime": "2021-01-11 07:30:26,108", + "created": 1610346626.108788, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", + "module": "__init__", + "msecs": 108.78801345825195, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12042.330026626587, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "comm-server:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" + ], + "asctime": "2021-01-11 07:30:26,108", + "created": 1610346626.108866, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", + "module": "__init__", + "msecs": 108.86597633361816, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12042.407989501953, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,108", + "created": 1610346626.108936, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 108.93607139587402, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12042.478084564209, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,108", + "created": 1610346626.108979, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 108.9789867401123, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12042.520999908447, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,109", + "created": 1610346626.109037, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 109.03692245483398, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12042.578935623169, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:26,109", + "created": 1610346626.109085, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 109.0850830078125, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12042.627096176147, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + "(88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b" + ], + "asctime": "2021-01-11 07:30:26,109", + "created": 1610346626.109192, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", + "module": "stp", + "msecs": 109.19189453125, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12042.733907699585, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: 17, data_id: 34", "status: okay", "u'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:08,075", - "created": 1609969748.075691, + "asctime": "2021-01-11 07:30:26,109", + "created": 1610346626.109341, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", + "lineno": 445, + "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 75.69098472595215, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 109.34090614318848, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11240.506887435913, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 12042.882919311523, + "thread": 140633847088896, + "threadName": "Thread-15" }, { "args": [ - "SP server:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:08,075", - "created": 1609969748.07578, + "asctime": "2021-01-11 07:30:26,109", + "created": 1610346626.109421, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP server: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 75.77991485595703, + "msecs": 109.4210147857666, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11240.595817565918, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 12042.963027954102, + "thread": 140633847088896, + "threadName": "Thread-15" }, { "args": [ - "SP client:", - "0.5", + "prot-client:", + "0.28705533596837945", "18", "34" ], - "asctime": "2021-01-06 22:49:08,577", - "created": 1609969748.577234, + "asctime": "2021-01-11 07:30:26,378", + "created": 1610346626.378425, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP client: TIMEOUT (0.5s): Requested data (service_id: 18; data_id: 34) not in buffer.", + "lineno": 668, + "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 18; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 577.2340297698975, + "msecs": 378.42488288879395, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11742.049932479858, - "thread": 140012350113600, + "relativeCreated": 12311.966896057129, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 577.531099319458, + "msecs": 378.79300117492676, "msg": "Transfering a message client -> server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11742.347002029419, - "thread": 140012350113600, + "relativeCreated": 12312.335014343262, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0002970695495605469 + "time_consumption": 0.0003681182861328125 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:08,578", - "created": 1609969748.57824, + "asctime": "2021-01-11 07:30:26,379", + "created": 1610346626.379554, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -38163,8 +80693,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:08,577", - "created": 1609969748.577888, + "asctime": "2021-01-11 07:30:26,379", + "created": 1610346626.379182, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -38174,14 +80704,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 577.888011932373, + "msecs": 379.1821002960205, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11742.703914642334, - "thread": 140012350113600, + "relativeCreated": 12312.724113464355, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -38190,8 +80720,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:08,578", - "created": 1609969748.578084, + "asctime": "2021-01-11 07:30:26,379", + "created": 1610346626.379374, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -38201,35 +80731,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 578.0839920043945, + "msecs": 379.37402725219727, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11742.899894714355, - "thread": 140012350113600, + "relativeCreated": 12312.916040420532, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 578.239917755127, + "msecs": 379.55403327941895, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11743.055820465088, - "thread": 140012350113600, + "relativeCreated": 12313.096046447754, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00015592575073242188 + "time_consumption": 0.0001800060272216797 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:08,579", - "created": 1609969748.579393, + "asctime": "2021-01-11 07:30:26,380", + "created": 1610346626.380324, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -38246,8 +80776,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:08,579", - "created": 1609969748.579058, + "asctime": "2021-01-11 07:30:26,379", + "created": 1610346626.37988, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -38257,14 +80787,14 @@ "lineno": 22, "message": "Result (Received message on server side): None ()", "module": "test", - "msecs": 579.0579319000244, + "msecs": 379.8799514770508, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11743.873834609985, - "thread": 140012350113600, + "relativeCreated": 12313.421964645386, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -38273,8 +80803,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:08,579", - "created": 1609969748.579234, + "asctime": "2021-01-11 07:30:26,380", + "created": 1610346626.380158, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -38284,32 +80814,85 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = None ()", "module": "test", - "msecs": 579.2338848114014, + "msecs": 380.1579475402832, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11744.049787521362, - "thread": 140012350113600, + "relativeCreated": 12313.699960708618, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 579.3929100036621, + "msecs": 380.3238868713379, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11744.208812713623, - "thread": 140012350113600, + "relativeCreated": 12313.865900039673, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0001590251922607422 + "time_consumption": 0.0001659393310546875 }, { "args": [], - "asctime": "2021-01-06 22:49:08,579", - "created": 1609969748.57979, + "asctime": "2021-01-11 07:30:26,380", + "created": 1610346626.380783, + "exc_info": null, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 320, + "message": "Adding service to server instance for the transmit message", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-server:", + "17", + "18" + ], + "asctime": "2021-01-11 07:30:26,380", + "created": 1610346626.380626, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-server: Adding Service with Request=17 and Response=18", + "module": "__init__", + "msecs": 380.62596321105957, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12314.167976379395, + "thread": 140634736203584, + "threadName": "MainThread" + } + ], + "msecs": 380.7830810546875, + "msg": "Adding service to server instance for the transmit message", + "name": "__tLogger__", + "pathname": "src/tests/test_communication.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12314.325094223022, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.0001571178436279297 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:26,582", + "created": 1610346626.582314, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -38317,361 +80900,1090 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 324, - "message": "Adding service to server instance for the transmit message", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "SP server:", - "17", - "18" - ], - "asctime": "2021-01-06 22:49:08,579", - "created": 1609969748.579644, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=17 and Response=18", - "module": "__init__", - "msecs": 579.643964767456, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11744.459867477417, - "thread": 140012350113600, - "threadName": "MainThread" - } - ], - "msecs": 579.7901153564453, - "msg": "Adding service to server instance for the transmit message", - "name": "__tLogger__", - "pathname": "src/tests/test_communication.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11744.606018066406, - "thread": 140012350113600, - "threadName": "MainThread", - "time_consumption": 0.0001461505889892578 - }, - { - "args": [], - "asctime": "2021-01-06 22:49:08,683", - "created": 1609969748.683513, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 328, "message": "Transfering a message client -> server -> client", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:08,580", - "created": 1609969748.580074, + "asctime": "2021-01-11 07:30:26,381", + "created": 1610346626.381155, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 445, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 580.0740718841553, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 381.15501403808594, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11744.889974594116, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:08,580", - "created": 1609969748.580568, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "test_helpers", - "msecs": 580.5680751800537, - "msg": "Send data: (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11745.383977890015, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:08,580", - "created": 1609969748.580943, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "test_helpers", - "msecs": 580.9431076049805, - "msg": "Receive data (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11745.759010314941, - "thread": 140012350113600, + "relativeCreated": 12314.69702720642, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:26,410", + "created": 1610346626.410654, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 410.65406799316406, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12344.196081161499, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" + ], + "asctime": "2021-01-11 07:30:26,411", + "created": 1610346626.411402, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", + "module": "__init__", + "msecs": 411.40198707580566, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12344.94400024414, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,411", + "created": 1610346626.411709, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 411.7090702056885, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12345.251083374023, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:26,411", + "created": 1610346626.411896, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 411.8959903717041, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12345.438003540039, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,412", + "created": 1610346626.412129, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 412.1289253234863, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12345.670938491821, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,412", + "created": 1610346626.412294, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 412.2939109802246, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12345.83592414856, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,412", + "created": 1610346626.412533, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 412.5330448150635, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12346.075057983398, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,412", + "created": 1610346626.412696, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 412.69588470458984, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12346.237897872925, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,412", + "created": 1610346626.412911, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 412.91093826293945, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12346.452951431274, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,413", + "created": 1610346626.413083, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 413.0830764770508, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12346.625089645386, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "comm-client:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" + ], + "asctime": "2021-01-11 07:30:26,413", + "created": 1610346626.4135, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", + "module": "__init__", + "msecs": 413.5000705718994, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12347.042083740234, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "comm-server:", + "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" + ], + "asctime": "2021-01-11 07:30:26,413", + "created": 1610346626.413769, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", + "module": "__init__", + "msecs": 413.769006729126, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12347.311019897461, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,414", + "created": 1610346626.414011, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 414.01100158691406, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12347.553014755249, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,414", + "created": 1610346626.414182, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 414.1819477081299, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12347.723960876465, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,414", + "created": 1610346626.414368, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 414.3679141998291, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12347.909927368164, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:26,414", + "created": 1610346626.414521, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 414.5209789276123, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12348.062992095947, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + "(88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b" + ], + "asctime": "2021-01-11 07:30:26,414", + "created": 1610346626.414909, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", + "module": "stp", + "msecs": 414.90888595581055, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12348.450899124146, + "thread": 140633847088896, + "threadName": "Thread-15" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: 17, data_id: 34", "status: okay", "u'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:08,581", - "created": 1609969748.581224, + "asctime": "2021-01-11 07:30:26,415", + "created": 1610346626.415339, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", + "lineno": 445, + "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 581.2239646911621, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 415.33899307250977, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11746.039867401123, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 12348.881006240845, + "thread": 140633847088896, + "threadName": "Thread-15" }, { "args": [ - "SP server:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:08,581", - "created": 1609969748.581418, + "asctime": "2021-01-11 07:30:26,415", + "created": 1610346626.41559, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 460, - "message": "SP server: RX <- Message with no registered callback. Sending negative response.", + "lineno": 474, + "message": "prot-server: Incomming message with no registered callback. Sending negative response.", "module": "__init__", - "msecs": 581.4180374145508, - "msg": "%s RX <- Message with no registered callback. Sending negative response.", + "msecs": 415.5900478363037, + "msg": "%s Incomming message with no registered callback. Sending negative response.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11746.233940124512, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 12349.132061004639, + "thread": 140633847088896, + "threadName": "Thread-15" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: 18, data_id: 34", - "status: no callback for service, data buffered.", + "status: no callback for service, data buffered", "None" ], - "asctime": "2021-01-06 22:49:08,581", - "created": 1609969748.581637, + "asctime": "2021-01-11 07:30:26,415", + "created": 1610346626.415926, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: 18, data_id: 34, status: no callback for service, data buffered., data: \"None\"", - "module": "__init__", - "msecs": 581.636905670166, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11746.452808380127, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:08,582", - "created": 1609969748.582044, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (64): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d e8 ee d8 5c", - "module": "test_helpers", - "msecs": 582.0438861846924, - "msg": "Send data: (64): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d e8 ee d8 5c", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11746.859788894653, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:08,582", - "created": 1609969748.582354, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (64): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d e8 ee d8 5c", - "module": "test_helpers", - "msecs": 582.3540687561035, - "msg": "Receive data (64): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d e8 ee d8 5c", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11747.169971466064, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: 18, data_id: 34", - "status: no callback for service, data buffered.", - "None" - ], - "asctime": "2021-01-06 22:49:08,582", - "created": 1609969748.582626, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: 18, data_id: 34, status: no callback for service, data buffered., data: \"None\"", - "module": "__init__", - "msecs": 582.6261043548584, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11747.44200706482, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "status: no callback for service, data buffered." - ], - "asctime": "2021-01-06 22:49:08,582", - "created": 1609969748.582793, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: no callback for service, data buffered.", + "lineno": 445, + "message": "prot-server: TX -> service: 18, data_id: 34, status: no callback for service, data buffered, data: \"None\"", "module": "__init__", - "msecs": 582.7929973602295, - "msg": "%s RX <- Message has a peculiar status: %s", + "msecs": 415.9259796142578, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11747.60890007019, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 12349.467992782593, + "thread": 140633847088896, + "threadName": "Thread-15" }, { "args": [ - "SP client:" + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33" ], - "asctime": "2021-01-06 22:49:08,582", - "created": 1609969748.582998, + "asctime": "2021-01-11 07:30:26,428", + "created": 1610346626.428557, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33", + "module": "__init__", + "msecs": 428.5569190979004, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12362.098932266235, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33" + ], + "asctime": "2021-01-11 07:30:26,428", + "created": 1610346626.428798, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33", + "module": "__init__", + "msecs": 428.79796028137207, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12362.339973449707, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,428", + "created": 1610346626.428898, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 428.8980960845947, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12362.44010925293, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:26,429", + "created": 1610346626.429359, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 429.35895919799805, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12362.900972366333, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,429", + "created": 1610346626.42951, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 429.51011657714844, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12363.052129745483, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,429", + "created": 1610346626.429605, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 429.60500717163086, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12363.147020339966, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,429", + "created": 1610346626.429708, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 429.70800399780273, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12363.250017166138, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,429", + "created": 1610346626.42978, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 429.7800064086914, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12363.322019577026, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,429", + "created": 1610346626.429869, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 429.8689365386963, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12363.410949707031, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,429", + "created": 1610346626.429979, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 429.9790859222412, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12363.521099090576, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,430", + "created": 1610346626.430072, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 430.0720691680908, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12363.614082336426, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,430", + "created": 1610346626.430149, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 430.1490783691406, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12363.691091537476, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "comm-server:", + "(8): 34 7d e8 ee d8 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:26,430", + "created": 1610346626.430274, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (8): 34 7d e8 ee d8 5c 3a 3e", + "module": "__init__", + "msecs": 430.27400970458984, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12363.816022872925, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "comm-client:", + "(8): 34 7d e8 ee d8 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:26,430", + "created": 1610346626.430363, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (8): 34 7d e8 ee d8 5c 3a 3e", + "module": "__init__", + "msecs": 430.3629398345947, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12363.90495300293, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,430", + "created": 1610346626.430447, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 430.4471015930176, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12363.989114761353, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:26,430", + "created": 1610346626.430524, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 430.5241107940674, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12364.066123962402, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + "(64): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d e8 ee d8 5c" + ], + "asctime": "2021-01-11 07:30:26,430", + "created": 1610346626.430669, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (64): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d e8 ee d8 5c", + "module": "stp", + "msecs": 430.66906929016113, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12364.211082458496, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: 18, data_id: 34", + "status: no callback for service, data buffered", + "None" + ], + "asctime": "2021-01-11 07:30:26,430", + "created": 1610346626.430907, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "WARNING", + "levelno": 30, + "lineno": 445, + "message": "prot-client: RX <- service: 18, data_id: 34, status: no callback for service, data buffered, data: \"None\"", + "module": "__init__", + "msecs": 430.9070110321045, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12364.44902420044, + "thread": 140633838696192, + "threadName": "Thread-16" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:26,431", + "created": 1610346626.431046, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 582.9980373382568, + "msecs": 431.0460090637207, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11747.813940048218, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 12364.588022232056, + "thread": 140633838696192, + "threadName": "Thread-16" } ], - "msecs": 683.5129261016846, + "msecs": 582.3140144348145, "msg": "Transfering a message client -> server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11848.328828811646, - "thread": 140012350113600, + "relativeCreated": 12515.85602760315, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.10051488876342773 + "time_consumption": 0.15126800537109375 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:08,684", - "created": 1609969748.684435, + "asctime": "2021-01-11 07:30:26,583", + "created": 1610346626.583272, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -38688,8 +82000,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:08,684", - "created": 1609969748.684025, + "asctime": "2021-01-11 07:30:26,582", + "created": 1610346626.582877, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -38699,14 +82011,14 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 684.0250492095947, + "msecs": 582.8769207000732, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11848.840951919556, - "thread": 140012350113600, + "relativeCreated": 12516.418933868408, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -38715,8 +82027,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:08,684", - "created": 1609969748.684234, + "asctime": "2021-01-11 07:30:26,583", + "created": 1610346626.583086, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -38726,35 +82038,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 684.2339038848877, + "msecs": 583.0860137939453, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11849.049806594849, - "thread": 140012350113600, + "relativeCreated": 12516.62802696228, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 684.4348907470703, + "msecs": 583.2719802856445, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11849.250793457031, - "thread": 140012350113600, + "relativeCreated": 12516.81399345398, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0002009868621826172 + "time_consumption": 0.00018596649169921875 }, { "args": [ "{u'status': 1, u'service_id': 18, u'data': None, u'data_id': 34}", "" ], - "asctime": "2021-01-06 22:49:08,685", - "created": 1609969748.685104, + "asctime": "2021-01-11 07:30:26,583", + "created": 1610346626.583939, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -38771,8 +82083,8 @@ "{u'status': 1, u'service_id': 18, u'data': None, u'data_id': 34}", "" ], - "asctime": "2021-01-06 22:49:08,684", - "created": 1609969748.684717, + "asctime": "2021-01-11 07:30:26,583", + "created": 1610346626.583569, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -38782,14 +82094,14 @@ "lineno": 22, "message": "Result (Received message on server side): {u'status': 1, u'service_id': 18, u'data': None, u'data_id': 34} ()", "module": "test", - "msecs": 684.7169399261475, + "msecs": 583.5690498352051, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11849.532842636108, - "thread": 140012350113600, + "relativeCreated": 12517.11106300354, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -38798,8 +82110,8 @@ "{'status': 1, 'service_id': 18, 'data': None, 'data_id': 34}", "" ], - "asctime": "2021-01-06 22:49:08,684", - "created": 1609969748.684897, + "asctime": "2021-01-11 07:30:26,583", + "created": 1610346626.58376, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -38809,39 +82121,39 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'status': 1, 'service_id': 18, 'data': None, 'data_id': 34} ()", "module": "test", - "msecs": 684.8969459533691, + "msecs": 583.7600231170654, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11849.71284866333, - "thread": 140012350113600, + "relativeCreated": 12517.3020362854, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 685.1038932800293, + "msecs": 583.9390754699707, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11849.91979598999, - "thread": 140012350113600, + "relativeCreated": 12517.481088638306, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00020694732666015625 + "time_consumption": 0.00017905235290527344 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.6156628131866455, - "time_finished": "2021-01-06 22:49:08,685", - "time_start": "2021-01-06 22:49:08,069" + "time_consumption": 0.8718280792236328, + "time_finished": "2021-01-11 07:30:26,583", + "time_start": "2021-01-11 07:30:25,712" }, "_k7opsE4LEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-06 22:49:09,229", - "created": 1609969749.229654, + "asctime": "2021-01-11 07:30:29,036", + "created": 1610346629.036734, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -38852,1450 +82164,3573 @@ "message": "_k7opsE4LEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 229.65407371520996, + "msecs": 36.73410415649414, "msg": "_k7opsE4LEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12394.46997642517, + "relativeCreated": 14970.27611732483, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:09,232", - "created": 1609969749.232281, + "asctime": "2021-01-11 07:30:29,046", + "created": 1610346629.046008, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:09,229", - "created": 1609969749.229957, + "asctime": "2021-01-11 07:30:29,039", + "created": 1610346629.039214, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 229.95710372924805, + "msecs": 39.21389579772949, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12394.773006439209, - "thread": 140012350113600, + "relativeCreated": 14972.755908966064, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:09,230", - "created": 1609969749.230047, + "asctime": "2021-01-11 07:30:29,040", + "created": 1610346629.040056, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 230.04698753356934, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 40.05599021911621, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12394.86289024353, - "thread": 140012350113600, + "relativeCreated": 14973.598003387451, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:09,230", - "created": 1609969749.230143, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 230.14307022094727, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12394.958972930908, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:09,230", - "created": 1609969749.230209, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 230.2091121673584, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12395.02501487732, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:09,230", - "created": 1609969749.230265, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 230.26490211486816, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12395.08080482483, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:09,230", - "created": 1609969749.230319, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 230.31902313232422, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12395.134925842285, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:09,230", - "created": 1609969749.230385, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 230.38506507873535, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12395.200967788696, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:09,230", - "created": 1609969749.230447, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 230.44705390930176, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12395.262956619263, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:09,230", - "created": 1609969749.230508, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 230.50808906555176, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12395.323991775513, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:09,230", - "created": 1609969749.230566, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 230.56602478027344, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12395.381927490234, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:09,230", - "created": 1609969749.230617, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 230.61704635620117, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12395.432949066162, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:09,230", - "created": 1609969749.230684, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 230.6840419769287, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12395.49994468689, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:09,230", - "created": 1609969749.230747, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 230.74698448181152, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12395.562887191772, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:09,230", - "created": 1609969749.230798, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 230.79800605773926, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12395.6139087677, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:09,230", - "created": 1609969749.230861, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 230.86094856262207, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12395.676851272583, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:09,230", - "created": 1609969749.230917, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 230.91697692871094, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12395.732879638672, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:09,230", - "created": 1609969749.230974, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 230.9739589691162, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12395.789861679077, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:09,231", - "created": 1609969749.231026, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 231.02593421936035, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12395.841836929321, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:09,231", - "created": 1609969749.231075, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 231.07504844665527, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12395.890951156616, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:09,231", - "created": 1609969749.231127, + "asctime": "2021-01-11 07:30:29,040", + "created": 1610346629.040266, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 231.1270236968994, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 40.26603698730469, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12395.94292640686, - "thread": 140012350113600, + "relativeCreated": 14973.80805015564, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,231", - "created": 1609969749.231261, + "asctime": "2021-01-11 07:30:29,040", + "created": 1610346629.040658, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 231.2610149383545, + "msecs": 40.657997131347656, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12396.076917648315, - "thread": 140012350113600, + "relativeCreated": 14974.200010299683, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:09,231", - "created": 1609969749.231329, + "asctime": "2021-01-11 07:30:29,040", + "created": 1610346629.040824, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 231.32896423339844, + "msecs": 40.823936462402344, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12396.14486694336, - "thread": 140012350113600, + "relativeCreated": 14974.365949630737, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:09,231", - "created": 1609969749.23141, + "asctime": "2021-01-11 07:30:29,041", + "created": 1610346629.041001, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 231.41002655029297, + "msecs": 41.001081466674805, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12396.225929260254, - "thread": 140012350113600, + "relativeCreated": 14974.54309463501, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:09,231", - "created": 1609969749.231456, + "asctime": "2021-01-11 07:30:29,041", + "created": 1610346629.04113, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 231.45604133605957, + "msecs": 41.13006591796875, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12396.27194404602, - "thread": 140012350113600, + "relativeCreated": 14974.672079086304, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:09,231", - "created": 1609969749.231516, + "asctime": "2021-01-11 07:30:29,041", + "created": 1610346629.041254, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 231.51588439941406, + "msecs": 41.25404357910156, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12396.331787109375, - "thread": 140012350113600, + "relativeCreated": 14974.796056747437, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:09,231", - "created": 1609969749.231557, + "asctime": "2021-01-11 07:30:29,041", + "created": 1610346629.041382, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 231.55689239501953, + "msecs": 41.3820743560791, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12396.37279510498, - "thread": 140012350113600, + "relativeCreated": 14974.924087524414, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:09,231", - "created": 1609969749.231607, + "asctime": "2021-01-11 07:30:29,041", + "created": 1610346629.04156, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 231.60696029663086, + "msecs": 41.55993461608887, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12396.422863006592, - "thread": 140012350113600, + "relativeCreated": 14975.101947784424, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:09,231", - "created": 1609969749.231656, + "asctime": "2021-01-11 07:30:29,041", + "created": 1610346629.041706, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 231.65607452392578, + "msecs": 41.706085205078125, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12396.471977233887, - "thread": 140012350113600, + "relativeCreated": 14975.248098373413, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:09,231", - "created": 1609969749.231703, + "asctime": "2021-01-11 07:30:29,041", + "created": 1610346629.041856, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 231.7030429840088, + "msecs": 41.85605049133301, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12396.51894569397, - "thread": 140012350113600, + "relativeCreated": 14975.398063659668, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:09,231", - "created": 1609969749.231752, + "asctime": "2021-01-11 07:30:29,041", + "created": 1610346629.041999, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 231.7519187927246, + "msecs": 41.999101638793945, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12396.567821502686, - "thread": 140012350113600, + "relativeCreated": 14975.541114807129, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,231", - "created": 1609969749.231794, + "asctime": "2021-01-11 07:30:29,042", + "created": 1610346629.042131, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 231.7941188812256, + "msecs": 42.13094711303711, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12396.610021591187, - "thread": 140012350113600, + "relativeCreated": 14975.672960281372, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:09,231", - "created": 1609969749.231847, + "asctime": "2021-01-11 07:30:29,042", + "created": 1610346629.042345, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 231.84704780578613, + "msecs": 42.34504699707031, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12396.662950515747, - "thread": 140012350113600, + "relativeCreated": 14975.887060165405, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:09,231", - "created": 1609969749.231909, + "asctime": "2021-01-11 07:30:29,042", + "created": 1610346629.04249, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 231.90903663635254, + "msecs": 42.49000549316406, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12396.724939346313, - "thread": 140012350113600, + "relativeCreated": 14976.032018661499, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:09,231", - "created": 1609969749.231953, + "asctime": "2021-01-11 07:30:29,042", + "created": 1610346629.042617, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 231.95290565490723, + "msecs": 42.617082595825195, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12396.768808364868, - "thread": 140012350113600, + "relativeCreated": 14976.15909576416, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:09,231", - "created": 1609969749.231998, + "asctime": "2021-01-11 07:30:29,042", + "created": 1610346629.042764, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 231.99796676635742, + "msecs": 42.76394844055176, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12396.813869476318, - "thread": 140012350113600, + "relativeCreated": 14976.305961608887, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:09,232", - "created": 1609969749.232044, + "asctime": "2021-01-11 07:30:29,042", + "created": 1610346629.042908, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 232.04398155212402, + "msecs": 42.9079532623291, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12396.859884262085, - "thread": 140012350113600, + "relativeCreated": 14976.449966430664, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:09,232", - "created": 1609969749.232091, + "asctime": "2021-01-11 07:30:29,043", + "created": 1610346629.043043, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 232.09095001220703, + "msecs": 43.042898178100586, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12396.906852722168, - "thread": 140012350113600, + "relativeCreated": 14976.584911346436, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:09,232", - "created": 1609969749.232136, + "asctime": "2021-01-11 07:30:29,043", + "created": 1610346629.043168, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 232.13601112365723, + "msecs": 43.168067932128906, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12396.951913833618, - "thread": 140012350113600, + "relativeCreated": 14976.710081100464, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:09,232", - "created": 1609969749.232178, + "asctime": "2021-01-11 07:30:29,043", + "created": 1610346629.043287, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 232.1779727935791, + "msecs": 43.287038803100586, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12396.99387550354, - "thread": 140012350113600, + "relativeCreated": 14976.829051971436, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,232", - "created": 1609969749.232225, + "asctime": "2021-01-11 07:30:29,043", + "created": 1610346629.043454, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 232.2249412536621, + "msecs": 43.45393180847168, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12397.040843963623, - "thread": 140012350113600, + "relativeCreated": 14976.995944976807, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:29,043", + "created": 1610346629.043915, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 43.9150333404541, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14977.457046508789, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:29,044", + "created": 1610346629.044068, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 44.068098068237305, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14977.610111236572, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:29,044", + "created": 1610346629.044202, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 44.20208930969238, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14977.744102478027, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:29,044", + "created": 1610346629.044338, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 44.33798789978027, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14977.880001068115, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:29,044", + "created": 1610346629.04449, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 44.49009895324707, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14978.032112121582, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:29,044", + "created": 1610346629.044621, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 44.62099075317383, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14978.163003921509, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:29,044", + "created": 1610346629.044763, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 44.76308822631836, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14978.305101394653, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:29,044", + "created": 1610346629.044909, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 44.909000396728516, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14978.451013565063, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:29,045", + "created": 1610346629.045054, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 45.053958892822266, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14978.595972061157, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:29,045", + "created": 1610346629.045196, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 45.1960563659668, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14978.738069534302, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:29,045", + "created": 1610346629.045344, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 45.34411430358887, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14978.886127471924, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:29,045", + "created": 1610346629.045477, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 45.47691345214844, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14979.018926620483, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:29,045", + "created": 1610346629.045547, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 45.5470085144043, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14979.08902168274, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:29,045", + "created": 1610346629.045623, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 45.623064041137695, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14979.165077209473, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:29,045", + "created": 1610346629.045693, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 45.69292068481445, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14979.23493385315, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:29,045", + "created": 1610346629.045753, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 45.75300216674805, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14979.295015335083, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:29,045", + "created": 1610346629.045806, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 45.805931091308594, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14979.347944259644, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:29,045", + "created": 1610346629.045855, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 45.855045318603516, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14979.397058486938, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:29,045", + "created": 1610346629.045906, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 45.90606689453125, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14979.448080062866, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:29,045", + "created": 1610346629.045958, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 45.95804214477539, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14979.50005531311, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 232.28096961975098, + "msecs": 46.00811004638672, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12397.096872329712, - "thread": 140012350113600, + "relativeCreated": 14979.550123214722, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 5.602836608886719e-05 + "time_consumption": 5.0067901611328125e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:09,232", - "created": 1609969749.232436, + "asctime": "2021-01-11 07:30:29,389", + "created": 1610346629.3897, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:29,046", + "created": 1610346629.046118, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 46.11802101135254, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14979.660034179688, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:29,046", + "created": 1610346629.046172, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 46.17190361022949, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14979.713916778564, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:29,046", + "created": 1610346629.046228, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 46.22793197631836, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14979.769945144653, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:29,046", + "created": 1610346629.046318, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 46.31805419921875, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14979.860067367554, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:29,046", + "created": 1610346629.046552, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 46.55194282531738, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14980.093955993652, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:29,046", + "created": 1610346629.046641, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 46.64111137390137, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14980.183124542236, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:29,046", + "created": 1610346629.046726, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 46.72598838806152, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14980.268001556396, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:29,049", + "created": 1610346629.049447, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 49.447059631347656, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14982.989072799683, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:29,049", + "created": 1610346629.049624, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 49.623966217041016, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14983.165979385376, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,049", + "created": 1610346629.049692, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 49.69191551208496, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14983.23392868042, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:29,049", + "created": 1610346629.049744, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 49.7438907623291, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14983.285903930664, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,049", + "created": 1610346629.049829, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 49.82900619506836, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14983.371019363403, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,049", + "created": 1610346629.04989, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 49.89004135131836, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14983.432054519653, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,049", + "created": 1610346629.04998, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 49.97992515563965, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14983.521938323975, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,050", + "created": 1610346629.050064, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 50.0640869140625, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14983.606100082397, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,050", + "created": 1610346629.050154, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 50.15397071838379, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14983.695983886719, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,050", + "created": 1610346629.05022, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 50.22001266479492, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14983.76202583313, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,050", + "created": 1610346629.050328, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 50.32801628112793, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14983.870029449463, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,050", + "created": 1610346629.050401, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 50.40097236633301, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14983.942985534668, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "comm-client:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:29,050", + "created": 1610346629.05052, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 50.51994323730469, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14984.06195640564, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "comm-server:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:29,050", + "created": 1610346629.0506, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 50.60005187988281, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14984.142065048218, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,050", + "created": 1610346629.05066, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 50.659894943237305, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14984.201908111572, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:29,050", + "created": 1610346629.050708, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 50.70805549621582, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14984.25006866455, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" + ], + "asctime": "2021-01-11 07:30:29,050", + "created": 1610346629.050811, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", + "module": "stp", + "msecs": 50.811052322387695, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14984.353065490723, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:29,050", + "created": 1610346629.050936, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 50.935983657836914, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14984.477996826172, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:29,051", + "created": 1610346629.051003, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 51.00297927856445, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14984.5449924469, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:29,051", + "created": 1610346629.051083, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 51.08308792114258, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14984.625101089478, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:29,057", + "created": 1610346629.057758, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 57.75809288024902, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14991.300106048584, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:29,057", + "created": 1610346629.057975, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 57.975053787231445, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14991.517066955566, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,058", + "created": 1610346629.05808, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 58.07995796203613, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14991.621971130371, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:29,058", + "created": 1610346629.058185, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 58.18510055541992, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14991.727113723755, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,058", + "created": 1610346629.058319, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 58.319091796875, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14991.86110496521, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,058", + "created": 1610346629.058451, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 58.450937271118164, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14991.992950439453, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,058", + "created": 1610346629.058621, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 58.62092971801758, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14992.162942886353, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,058", + "created": 1610346629.058738, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 58.737993240356445, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14992.280006408691, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,058", + "created": 1610346629.058888, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 58.88795852661133, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14992.429971694946, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,058", + "created": 1610346629.058997, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 58.99691581726074, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14992.538928985596, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,059", + "created": 1610346629.059157, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 59.15689468383789, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14992.698907852173, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,059", + "created": 1610346629.059265, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 59.2648983001709, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14992.806911468506, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:29,059", + "created": 1610346629.059435, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 59.43489074707031, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14992.976903915405, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:29,059", + "created": 1610346629.059593, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 59.59296226501465, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14993.13497543335, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,059", + "created": 1610346629.059681, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 59.680938720703125, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14993.222951889038, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:29,059", + "created": 1610346629.059755, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 59.75508689880371, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14993.297100067139, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:29,059", + "created": 1610346629.059967, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 59.967041015625, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14993.50905418396, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:29,060", + "created": 1610346629.060206, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 60.205936431884766, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14993.74794960022, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:29,060", + "created": 1610346629.060339, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 60.33897399902344, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 14993.880987167358, + "thread": 140632798525184, + "threadName": "Thread-26" + } + ], + "msecs": 389.69993591308594, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15323.24194908142, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.3293609619140625 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:29,390", + "created": 1610346629.390818, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "all_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 157, + "lineno": 158, "message": "Registering a correct working Callback", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "'__callback__'", "None", "None" ], - "asctime": "2021-01-06 22:49:09,232", - "created": 1609969749.232392, + "asctime": "2021-01-11 07:30:29,390", + "created": 1610346629.390522, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__callback__' for SID=None and DID=None", + "lineno": 170, + "message": "prot-server: Adding callback '__callback__' for SID=None and DID=None", "module": "__init__", - "msecs": 232.3920726776123, + "msecs": 390.5220031738281, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12397.207975387573, - "thread": 140012350113600, + "relativeCreated": 15324.064016342163, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 232.435941696167, + "msecs": 390.81811904907227, "msg": "Registering a correct working Callback", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12397.251844406128, - "thread": 140012350113600, + "relativeCreated": 15324.360132217407, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 4.38690185546875e-05 + "time_consumption": 0.0002961158752441406 }, { "args": [], - "asctime": "2021-01-06 22:49:09,333", - "created": 1609969749.333615, + "asctime": "2021-01-11 07:30:29,592", + "created": 1610346629.592593, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "all_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, + "lineno": 161, "message": "Transfering data", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:09,232", - "created": 1609969749.232544, + "asctime": "2021-01-11 07:30:29,391", + "created": 1610346629.391413, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 445, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 232.5439453125, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 391.41297340393066, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12397.359848022461, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,232", - "created": 1609969749.232689, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "test_helpers", - "msecs": 232.68890380859375, - "msg": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12397.504806518555, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,232", - "created": 1609969749.232782, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "test_helpers", - "msecs": 232.78188705444336, - "msg": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12397.597789764404, - "thread": 140012350113600, + "relativeCreated": 15324.954986572266, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" + ], + "asctime": "2021-01-11 07:30:29,416", + "created": 1610346629.416274, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", + "module": "__init__", + "msecs": 416.2740707397461, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15349.816083908081, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" + ], + "asctime": "2021-01-11 07:30:29,416", + "created": 1610346629.416988, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", + "module": "__init__", + "msecs": 416.9878959655762, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15350.529909133911, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,417", + "created": 1610346629.417216, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 417.21606254577637, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15350.758075714111, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:29,417", + "created": 1610346629.417402, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 417.4020290374756, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15350.94404220581, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,417", + "created": 1610346629.417719, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 417.71888732910156, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15351.260900497437, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,417", + "created": 1610346629.417967, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 417.9670810699463, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15351.509094238281, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,418", + "created": 1610346629.418436, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 418.43605041503906, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15351.978063583374, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,418", + "created": 1610346629.41897, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 418.97010803222656, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15352.512121200562, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,419", + "created": 1610346629.419322, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 419.32201385498047, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15352.864027023315, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,419", + "created": 1610346629.41959, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 419.5899963378906, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15353.132009506226, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,420", + "created": 1610346629.420301, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 420.3009605407715, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15353.842973709106, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,420", + "created": 1610346629.42066, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 420.66001892089844, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15354.202032089233, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "comm-client:", + "(5): 17 fc 16 3a 3e" + ], + "asctime": "2021-01-11 07:30:29,421", + "created": 1610346629.421072, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", + "module": "__init__", + "msecs": 421.07200622558594, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15354.61401939392, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "comm-server:", + "(5): 17 fc 16 3a 3e" + ], + "asctime": "2021-01-11 07:30:29,421", + "created": 1610346629.42137, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", + "module": "__init__", + "msecs": 421.3700294494629, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15354.912042617798, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,421", + "created": 1610346629.421704, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 421.7040538787842, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15355.24606704712, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:29,421", + "created": 1610346629.421915, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 421.91505432128906, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15355.457067489624, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" + ], + "asctime": "2021-01-11 07:30:29,422", + "created": 1610346629.422333, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", + "module": "stp", + "msecs": 422.3330020904541, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15355.875015258789, + "thread": 140633285039872, + "threadName": "Thread-25" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:09,232", - "created": 1609969749.232879, + "asctime": "2021-01-11 07:30:29,422", + "created": 1610346629.422826, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 445, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 232.8789234161377, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 422.82605171203613, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12397.694826126099, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 15356.368064880371, + "thread": 140633285039872, + "threadName": "Thread-25" }, { "args": [ - "SP server:", + "prot-server:", "__callback__" ], - "asctime": "2021-01-06 22:49:09,232", - "created": 1609969749.232937, + "asctime": "2021-01-11 07:30:29,423", + "created": 1610346629.423124, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __callback__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 232.93709754943848, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 423.1240749359131, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12397.7530002594, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 15356.666088104248, + "thread": 140633285039872, + "threadName": "Thread-25" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: read data response, data_id: 0", "status: okay", "33" ], - "asctime": "2021-01-06 22:49:09,232", - "created": 1609969749.232994, + "asctime": "2021-01-11 07:30:29,423", + "created": 1610346629.42346, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "lineno": 445, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 232.99407958984375, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 423.4600067138672, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12397.809982299805, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,233", - "created": 1609969749.23311, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "module": "test_helpers", - "msecs": 233.1099510192871, - "msg": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12397.925853729248, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,233", - "created": 1609969749.233203, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "module": "test_helpers", - "msecs": 233.20293426513672, - "msg": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12398.018836975098, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 15357.002019882202, + "thread": 140633285039872, + "threadName": "Thread-25" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" + ], + "asctime": "2021-01-11 07:30:29,425", + "created": 1610346629.425121, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", + "module": "__init__", + "msecs": 425.1210689544678, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15358.663082122803, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" + ], + "asctime": "2021-01-11 07:30:29,425", + "created": 1610346629.425298, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", + "module": "__init__", + "msecs": 425.29797554016113, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15358.839988708496, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,425", + "created": 1610346629.42539, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 425.39000511169434, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15358.93201828003, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:29,425", + "created": 1610346629.425504, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 425.5039691925049, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15359.04598236084, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,425", + "created": 1610346629.42562, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 425.62007904052734, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15359.162092208862, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,425", + "created": 1610346629.425708, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 425.7080554962158, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15359.25006866455, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,425", + "created": 1610346629.425835, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 425.83489418029785, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15359.376907348633, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,425", + "created": 1610346629.425922, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 425.9219169616699, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15359.463930130005, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,426", + "created": 1610346629.426041, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 426.0408878326416, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15359.582901000977, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,426", + "created": 1610346629.426126, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 426.12600326538086, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15359.668016433716, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,426", + "created": 1610346629.426244, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 426.24402046203613, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15359.786033630371, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,426", + "created": 1610346629.426345, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 426.3451099395752, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15359.88712310791, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "comm-server:", + "(5): 02 24 68 3a 3e" + ], + "asctime": "2021-01-11 07:30:29,426", + "created": 1610346629.4265, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (5): 02 24 68 3a 3e", + "module": "__init__", + "msecs": 426.5000820159912, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15360.042095184326, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "comm-client:", + "(5): 02 24 68 3a 3e" + ], + "asctime": "2021-01-11 07:30:29,426", + "created": 1610346629.426672, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (5): 02 24 68 3a 3e", + "module": "__init__", + "msecs": 426.67198181152344, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15360.213994979858, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,426", + "created": 1610346629.426777, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 426.7768859863281, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15360.318899154663, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:29,426", + "created": 1610346629.426863, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 426.8629550933838, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15360.404968261719, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68" + ], + "asctime": "2021-01-11 07:30:29,427", + "created": 1610346629.427054, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", + "module": "stp", + "msecs": 427.05392837524414, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15360.59594154358, + "thread": 140632798525184, + "threadName": "Thread-26" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: read data response, data_id: 0", "status: okay", "33" ], - "asctime": "2021-01-06 22:49:09,233", - "created": 1609969749.233283, + "asctime": "2021-01-11 07:30:29,427", + "created": 1610346629.427283, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "lineno": 445, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 233.28304290771484, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 427.28304862976074, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12398.098945617676, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 15360.825061798096, + "thread": 140632798525184, + "threadName": "Thread-26" }, { "args": [ - "SP client:" + "prot-client:" ], - "asctime": "2021-01-06 22:49:09,233", - "created": 1609969749.233349, + "asctime": "2021-01-11 07:30:29,427", + "created": 1610346629.427437, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 233.34908485412598, + "msecs": 427.43706703186035, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12398.164987564087, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 15360.979080200195, + "thread": 140632798525184, + "threadName": "Thread-26" } ], - "msecs": 333.6150646209717, + "msecs": 592.5929546356201, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12498.430967330933, - "thread": 140012350113600, + "relativeCreated": 15526.134967803955, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.1002659797668457 + "time_consumption": 0.16515588760375977 }, { "args": [ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,334", - "created": 1609969749.334027, + "asctime": "2021-01-11 07:30:29,593", + "created": 1610346629.593717, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -40312,8 +85747,8 @@ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,333", - "created": 1609969749.333859, + "asctime": "2021-01-11 07:30:29,593", + "created": 1610346629.59323, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -40323,14 +85758,14 @@ "lineno": 22, "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", "module": "test", - "msecs": 333.8589668273926, + "msecs": 593.2300090789795, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12498.674869537354, - "thread": 140012350113600, + "relativeCreated": 15526.772022247314, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -40339,8 +85774,8 @@ "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,333", - "created": 1609969749.333951, + "asctime": "2021-01-11 07:30:29,593", + "created": 1610346629.593496, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -40350,35 +85785,35 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", "module": "test", - "msecs": 333.9509963989258, + "msecs": 593.4960842132568, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12498.766899108887, - "thread": 140012350113600, + "relativeCreated": 15527.038097381592, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 334.0270519256592, + "msecs": 593.717098236084, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12498.84295463562, - "thread": 140012350113600, + "relativeCreated": 15527.259111404419, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 7.605552673339844e-05 + "time_consumption": 0.00022101402282714844 }, { "args": [ "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,334", - "created": 1609969749.334252, + "asctime": "2021-01-11 07:30:29,594", + "created": 1610346629.594364, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -40395,8 +85830,8 @@ "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,334", - "created": 1609969749.334133, + "asctime": "2021-01-11 07:30:29,593", + "created": 1610346629.593999, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -40406,14 +85841,14 @@ "lineno": 22, "message": "Result (Message received by client): {u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0} ()", "module": "test", - "msecs": 334.1329097747803, + "msecs": 593.998908996582, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12498.948812484741, - "thread": 140012350113600, + "relativeCreated": 15527.540922164917, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -40422,8 +85857,8 @@ "{'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,334", - "created": 1609969749.334194, + "asctime": "2021-01-11 07:30:29,594", + "created": 1610346629.594178, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -40433,39 +85868,39 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0} ()", "module": "test", - "msecs": 334.1939449310303, + "msecs": 594.1779613494873, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12499.009847640991, - "thread": 140012350113600, + "relativeCreated": 15527.719974517822, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 334.25211906433105, + "msecs": 594.3639278411865, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12499.068021774292, - "thread": 140012350113600, + "relativeCreated": 15527.905941009521, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 5.817413330078125e-05 + "time_consumption": 0.00018596649169921875 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.1045980453491211, - "time_finished": "2021-01-06 22:49:09,334", - "time_start": "2021-01-06 22:49:09,229" + "time_consumption": 0.5576298236846924, + "time_finished": "2021-01-11 07:30:29,594", + "time_start": "2021-01-11 07:30:29,036" }, "_r9srME0vEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:49:08,694", - "created": 1609969748.694352, + "asctime": "2021-01-11 07:30:26,944", + "created": 1610346626.944843, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -40476,1450 +85911,3573 @@ "message": "_r9srME0vEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 694.3519115447998, + "msecs": 944.843053817749, "msg": "_r9srME0vEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11859.16781425476, + "relativeCreated": 12878.385066986084, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:08,696", - "created": 1609969748.696444, + "asctime": "2021-01-11 07:30:26,953", + "created": 1610346626.953563, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:08,694", - "created": 1609969748.694504, + "asctime": "2021-01-11 07:30:26,946", + "created": 1610346626.946117, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 694.5040225982666, + "msecs": 946.1169242858887, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11859.319925308228, - "thread": 140012350113600, + "relativeCreated": 12879.658937454224, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:08,694", - "created": 1609969748.69457, + "asctime": "2021-01-11 07:30:26,947", + "created": 1610346626.947181, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 694.5700645446777, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 947.180986404419, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11859.385967254639, - "thread": 140012350113600, + "relativeCreated": 12880.722999572754, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:08,694", - "created": 1609969748.694645, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 694.6449279785156, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11859.460830688477, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:08,694", - "created": 1609969748.694701, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 694.7009563446045, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11859.516859054565, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:08,694", - "created": 1609969748.694754, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 694.753885269165, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11859.569787979126, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:08,694", - "created": 1609969748.69481, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 694.8099136352539, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11859.625816345215, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:08,694", - "created": 1609969748.694855, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 694.8549747467041, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11859.670877456665, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:08,694", - "created": 1609969748.694904, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 694.904088973999, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11859.71999168396, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:08,694", - "created": 1609969748.69495, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 694.9501037597656, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11859.766006469727, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:08,694", - "created": 1609969748.694995, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 694.9949264526367, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11859.810829162598, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:08,695", - "created": 1609969748.695036, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 695.0359344482422, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11859.851837158203, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:08,695", - "created": 1609969748.695084, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 695.0840950012207, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11859.899997711182, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:08,695", - "created": 1609969748.695138, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 695.1379776000977, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11859.953880310059, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:08,695", - "created": 1609969748.695181, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 695.1808929443359, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11859.996795654297, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:08,695", - "created": 1609969748.695225, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 695.2250003814697, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11860.04090309143, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:08,695", - "created": 1609969748.69527, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 695.2700614929199, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11860.08596420288, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:08,695", - "created": 1609969748.695316, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 695.3160762786865, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11860.131978988647, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:08,695", - "created": 1609969748.695358, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 695.3580379486084, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11860.17394065857, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:08,695", - "created": 1609969748.695398, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 695.3980922698975, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11860.213994979858, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:08,695", - "created": 1609969748.695442, + "asctime": "2021-01-11 07:30:26,947", + "created": 1610346626.947488, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 695.4419612884521, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 947.4880695343018, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11860.257863998413, - "thread": 140012350113600, + "relativeCreated": 12881.030082702637, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:08,695", - "created": 1609969748.695538, + "asctime": "2021-01-11 07:30:26,948", + "created": 1610346626.948157, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 695.5380439758301, + "msecs": 948.1570720672607, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11860.353946685791, - "thread": 140012350113600, + "relativeCreated": 12881.699085235596, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:08,695", - "created": 1609969748.695586, + "asctime": "2021-01-11 07:30:26,948", + "created": 1610346626.948508, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 695.5859661102295, + "msecs": 948.5080242156982, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11860.40186882019, - "thread": 140012350113600, + "relativeCreated": 12882.050037384033, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:08,695", - "created": 1609969748.695647, + "asctime": "2021-01-11 07:30:26,948", + "created": 1610346626.948885, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 695.6470012664795, + "msecs": 948.8849639892578, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11860.46290397644, - "thread": 140012350113600, + "relativeCreated": 12882.426977157593, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:08,695", - "created": 1609969748.69569, + "asctime": "2021-01-11 07:30:26,949", + "created": 1610346626.949145, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 695.6899166107178, + "msecs": 949.1450786590576, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11860.505819320679, - "thread": 140012350113600, + "relativeCreated": 12882.687091827393, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:08,695", - "created": 1609969748.695733, + "asctime": "2021-01-11 07:30:26,949", + "created": 1610346626.949394, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 695.7330703735352, + "msecs": 949.3939876556396, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11860.548973083496, - "thread": 140012350113600, + "relativeCreated": 12882.936000823975, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:08,695", - "created": 1609969748.695774, + "asctime": "2021-01-11 07:30:26,949", + "created": 1610346626.949669, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 695.7740783691406, + "msecs": 949.6688842773438, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11860.589981079102, - "thread": 140012350113600, + "relativeCreated": 12883.210897445679, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:08,695", - "created": 1609969748.695818, + "asctime": "2021-01-11 07:30:26,949", + "created": 1610346626.949932, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 695.8179473876953, + "msecs": 949.9320983886719, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11860.633850097656, - "thread": 140012350113600, + "relativeCreated": 12883.474111557007, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:08,695", - "created": 1609969748.695864, + "asctime": "2021-01-11 07:30:26,950", + "created": 1610346626.950233, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 695.8639621734619, + "msecs": 950.232982635498, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11860.679864883423, - "thread": 140012350113600, + "relativeCreated": 12883.774995803833, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:08,695", - "created": 1609969748.695918, + "asctime": "2021-01-11 07:30:26,950", + "created": 1610346626.950485, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 695.918083190918, + "msecs": 950.4849910736084, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11860.733985900879, - "thread": 140012350113600, + "relativeCreated": 12884.027004241943, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:08,695", - "created": 1609969748.695962, + "asctime": "2021-01-11 07:30:26,950", + "created": 1610346626.950747, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 695.9619522094727, + "msecs": 950.747013092041, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11860.777854919434, - "thread": 140012350113600, + "relativeCreated": 12884.289026260376, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:08,696", - "created": 1609969748.696001, + "asctime": "2021-01-11 07:30:26,950", + "created": 1610346626.950983, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 696.0010528564453, + "msecs": 950.9830474853516, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11860.816955566406, - "thread": 140012350113600, + "relativeCreated": 12884.525060653687, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:08,696", - "created": 1609969748.696047, + "asctime": "2021-01-11 07:30:26,951", + "created": 1610346626.95124, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 696.0470676422119, + "msecs": 951.240062713623, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11860.862970352173, - "thread": 140012350113600, + "relativeCreated": 12884.782075881958, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:08,696", - "created": 1609969748.696105, + "asctime": "2021-01-11 07:30:26,951", + "created": 1610346626.951356, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 696.1050033569336, + "msecs": 951.3559341430664, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11860.920906066895, - "thread": 140012350113600, + "relativeCreated": 12884.897947311401, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:08,696", - "created": 1609969748.696148, + "asctime": "2021-01-11 07:30:26,951", + "created": 1610346626.951439, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 696.1479187011719, + "msecs": 951.4389038085938, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11860.963821411133, - "thread": 140012350113600, + "relativeCreated": 12884.980916976929, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:08,696", - "created": 1609969748.696191, + "asctime": "2021-01-11 07:30:26,951", + "created": 1610346626.951518, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 696.1910724639893, + "msecs": 951.5180587768555, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11861.00697517395, - "thread": 140012350113600, + "relativeCreated": 12885.06007194519, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:08,696", - "created": 1609969748.696237, + "asctime": "2021-01-11 07:30:26,951", + "created": 1610346626.9516, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 696.2370872497559, + "msecs": 951.6000747680664, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11861.052989959717, - "thread": 140012350113600, + "relativeCreated": 12885.142087936401, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:08,696", - "created": 1609969748.69628, + "asctime": "2021-01-11 07:30:26,951", + "created": 1610346626.95168, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 696.2800025939941, + "msecs": 951.6799449920654, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11861.095905303955, - "thread": 140012350113600, + "relativeCreated": 12885.2219581604, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:08,696", - "created": 1609969748.696321, + "asctime": "2021-01-11 07:30:26,951", + "created": 1610346626.951751, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 696.3210105895996, + "msecs": 951.7509937286377, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11861.13691329956, - "thread": 140012350113600, + "relativeCreated": 12885.293006896973, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:08,696", - "created": 1609969748.69636, + "asctime": "2021-01-11 07:30:26,951", + "created": 1610346626.951818, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 696.3601112365723, + "msecs": 951.8179893493652, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11861.176013946533, - "thread": 140012350113600, + "relativeCreated": 12885.3600025177, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:08,696", - "created": 1609969748.696399, + "asctime": "2021-01-11 07:30:26,951", + "created": 1610346626.951888, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 696.3989734649658, + "msecs": 951.8880844116211, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11861.214876174927, - "thread": 140012350113600, + "relativeCreated": 12885.430097579956, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:26,952", + "created": 1610346626.952084, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 952.0840644836426, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12885.626077651978, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:26,952", + "created": 1610346626.952174, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 952.1739482879639, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12885.715961456299, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:26,952", + "created": 1610346626.952274, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 952.2740840911865, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12885.816097259521, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:26,952", + "created": 1610346626.952349, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 952.3489475250244, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12885.89096069336, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:26,952", + "created": 1610346626.952446, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 952.4459838867188, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12885.987997055054, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:26,952", + "created": 1610346626.952517, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 952.517032623291, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12886.059045791626, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:26,952", + "created": 1610346626.952579, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 952.5790214538574, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12886.121034622192, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:26,952", + "created": 1610346626.952643, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 952.6429176330566, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12886.184930801392, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:26,952", + "created": 1610346626.952701, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 952.7010917663574, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12886.243104934692, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:26,952", + "created": 1610346626.952765, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 952.7649879455566, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12886.307001113892, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:26,952", + "created": 1610346626.952817, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 952.8169631958008, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12886.358976364136, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:26,953", + "created": 1610346626.95304, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 953.0398845672607, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12886.581897735596, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:26,953", + "created": 1610346626.953106, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 953.1059265136719, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12886.647939682007, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:26,953", + "created": 1610346626.953166, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 953.1660079956055, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12886.70802116394, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:26,953", + "created": 1610346626.953214, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 953.2139301300049, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12886.75594329834, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:26,953", + "created": 1610346626.953272, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 953.2721042633057, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12886.81411743164, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:26,953", + "created": 1610346626.953334, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 953.3340930938721, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12886.876106262207, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:26,953", + "created": 1610346626.95339, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 953.3898830413818, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12886.931896209717, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:26,953", + "created": 1610346626.953451, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 953.4509181976318, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12886.992931365967, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:26,953", + "created": 1610346626.953514, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 953.5140991210938, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12887.056112289429, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 696.444034576416, + "msecs": 953.5629749298096, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11861.259937286377, - "thread": 140012350113600, + "relativeCreated": 12887.104988098145, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 4.506111145019531e-05 + "time_consumption": 4.887580871582031e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:08,696", - "created": 1609969748.69658, + "asctime": "2021-01-11 07:30:27,297", + "created": 1610346627.297354, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:26,953", + "created": 1610346626.953671, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 953.6709785461426, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12887.212991714478, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:26,953", + "created": 1610346626.953729, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 953.7289142608643, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12887.2709274292, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:26,953", + "created": 1610346626.953786, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 953.7858963012695, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12887.327909469604, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:26,953", + "created": 1610346626.953878, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 953.8779258728027, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12887.419939041138, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:26,954", + "created": 1610346626.954061, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 954.0610313415527, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12887.603044509888, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:26,954", + "created": 1610346626.954131, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 954.1308879852295, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12887.672901153564, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:26,954", + "created": 1610346626.95418, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 954.1800022125244, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12887.72201538086, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:26,957", + "created": 1610346626.957274, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 957.2739601135254, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12890.81597328186, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:26,957", + "created": 1610346626.957399, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 957.3988914489746, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12890.94090461731, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,957", + "created": 1610346626.957466, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 957.4658870697021, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12891.007900238037, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:26,957", + "created": 1610346626.957517, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 957.5169086456299, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12891.058921813965, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,957", + "created": 1610346626.957603, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 957.6029777526855, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12891.14499092102, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,957", + "created": 1610346626.957663, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 957.6630592346191, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12891.205072402954, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,957", + "created": 1610346626.957748, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 957.7479362487793, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12891.289949417114, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,957", + "created": 1610346626.957809, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 957.8089714050293, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12891.350984573364, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,957", + "created": 1610346626.957887, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 957.8869342803955, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12891.42894744873, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,957", + "created": 1610346626.957946, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 957.9460620880127, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12891.488075256348, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,958", + "created": 1610346626.958031, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 958.0309391021729, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12891.572952270508, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,958", + "created": 1610346626.958089, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 958.0891132354736, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12891.631126403809, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-client:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:26,958", + "created": 1610346626.958192, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 958.1921100616455, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12891.73412322998, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-server:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:26,958", + "created": 1610346626.958268, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 958.2679271697998, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12891.809940338135, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,958", + "created": 1610346626.958323, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 958.3230018615723, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12891.865015029907, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:26,958", + "created": 1610346626.95837, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 958.3699703216553, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12891.91198348999, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" + ], + "asctime": "2021-01-11 07:30:26,958", + "created": 1610346626.958469, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", + "module": "stp", + "msecs": 958.4689140319824, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12892.010927200317, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:26,958", + "created": 1610346626.958592, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 958.5919380187988, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12892.133951187134, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:26,958", + "created": 1610346626.958657, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 958.6570262908936, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12892.199039459229, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:26,958", + "created": 1610346626.958726, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 958.7259292602539, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12892.267942428589, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:26,966", + "created": 1610346626.966347, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 966.3469791412354, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12899.88899230957, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:26,966", + "created": 1610346626.966547, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 966.5470123291016, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12900.089025497437, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,966", + "created": 1610346626.966641, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 966.6409492492676, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12900.182962417603, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:26,966", + "created": 1610346626.966718, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 966.7179584503174, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12900.259971618652, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,966", + "created": 1610346626.96682, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 966.8200016021729, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12900.362014770508, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,966", + "created": 1610346626.966893, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 966.8929576873779, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12900.434970855713, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,966", + "created": 1610346626.966995, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 966.9950008392334, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12900.537014007568, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,967", + "created": 1610346626.967067, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 967.0670032501221, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12900.609016418457, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,967", + "created": 1610346626.967162, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 967.1618938446045, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12900.70390701294, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,967", + "created": 1610346626.96724, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 967.2400951385498, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12900.782108306885, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,967", + "created": 1610346626.967345, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 967.3449993133545, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12900.88701248169, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:26,967", + "created": 1610346626.967417, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 967.4170017242432, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12900.959014892578, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:26,967", + "created": 1610346626.967525, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 967.5250053405762, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12901.067018508911, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:26,967", + "created": 1610346626.967617, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 967.6170349121094, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12901.159048080444, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:26,967", + "created": 1610346626.9677, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 967.7000045776367, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12901.242017745972, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:26,967", + "created": 1610346626.967772, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 967.7720069885254, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12901.31402015686, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:26,967", + "created": 1610346626.967925, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 967.9250717163086, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12901.467084884644, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:26,968", + "created": 1610346626.968093, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 968.0929183959961, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12901.634931564331, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:26,968", + "created": 1610346626.968217, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 968.2168960571289, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 12901.758909225464, + "thread": 140633327003392, + "threadName": "Thread-20" + } + ], + "msecs": 297.35398292541504, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13230.89599609375, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.32913708686828613 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:27,298", + "created": 1610346627.298478, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "specific_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 100, + "lineno": 101, "message": "Registering a correct working Callback", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "'__callback__'", "10", "0" ], - "asctime": "2021-01-06 22:49:08,696", - "created": 1609969748.696538, + "asctime": "2021-01-11 07:30:27,298", + "created": 1610346627.298205, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__callback__' for SID=10 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__callback__' for SID=10 and DID=0", "module": "__init__", - "msecs": 696.537971496582, + "msecs": 298.2048988342285, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11861.353874206543, - "thread": 140012350113600, + "relativeCreated": 13231.746912002563, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 696.5799331665039, + "msecs": 298.4778881072998, "msg": "Registering a correct working Callback", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11861.395835876465, - "thread": 140012350113600, + "relativeCreated": 13232.019901275635, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 4.1961669921875e-05 + "time_consumption": 0.00027298927307128906 }, { "args": [], - "asctime": "2021-01-06 22:49:08,797", - "created": 1609969748.797701, + "asctime": "2021-01-11 07:30:27,500", + "created": 1610346627.500379, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "specific_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 103, + "lineno": 104, "message": "Transfering data", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:08,696", - "created": 1609969748.696653, + "asctime": "2021-01-11 07:30:27,298", + "created": 1610346627.298967, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 445, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 696.652889251709, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 298.9668846130371, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11861.46879196167, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:08,696", - "created": 1609969748.696778, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "test_helpers", - "msecs": 696.7780590057373, - "msg": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11861.593961715698, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:08,696", - "created": 1609969748.696865, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "test_helpers", - "msecs": 696.8650817871094, - "msg": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11861.68098449707, - "thread": 140012350113600, + "relativeCreated": 13232.508897781372, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" + ], + "asctime": "2021-01-11 07:30:27,324", + "created": 1610346627.324169, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", + "module": "__init__", + "msecs": 324.1689205169678, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13257.710933685303, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" + ], + "asctime": "2021-01-11 07:30:27,324", + "created": 1610346627.324852, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", + "module": "__init__", + "msecs": 324.85198974609375, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13258.394002914429, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,325", + "created": 1610346627.325111, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 325.11091232299805, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13258.652925491333, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:27,325", + "created": 1610346627.325326, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 325.32596588134766, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13258.867979049683, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,325", + "created": 1610346627.325635, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 325.6349563598633, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13259.176969528198, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,325", + "created": 1610346627.325875, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 325.87504386901855, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13259.417057037354, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,326", + "created": 1610346627.326219, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 326.2190818786621, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13259.761095046997, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,326", + "created": 1610346627.326738, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 326.7381191253662, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13260.280132293701, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,327", + "created": 1610346627.327153, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 327.15296745300293, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13260.694980621338, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,327", + "created": 1610346627.327429, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 327.42905616760254, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13260.971069335938, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,327", + "created": 1610346627.327785, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 327.7850151062012, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13261.327028274536, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,328", + "created": 1610346627.328024, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 328.02391052246094, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13261.565923690796, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-client:", + "(5): 17 fc 16 3a 3e" + ], + "asctime": "2021-01-11 07:30:27,328", + "created": 1610346627.328516, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", + "module": "__init__", + "msecs": 328.51600646972656, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13262.058019638062, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-server:", + "(5): 17 fc 16 3a 3e" + ], + "asctime": "2021-01-11 07:30:27,328", + "created": 1610346627.328816, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", + "module": "__init__", + "msecs": 328.8159370422363, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13262.357950210571, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,329", + "created": 1610346627.329086, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 329.0860652923584, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13262.628078460693, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:27,329", + "created": 1610346627.329262, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 329.26201820373535, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13262.80403137207, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" + ], + "asctime": "2021-01-11 07:30:27,329", + "created": 1610346627.329524, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", + "module": "stp", + "msecs": 329.52404022216797, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13263.066053390503, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:08,696", - "created": 1609969748.696945, + "asctime": "2021-01-11 07:30:27,329", + "created": 1610346627.329693, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 445, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 696.9449520111084, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 329.693078994751, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11861.76085472107, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 13263.235092163086, + "thread": 140633335396096, + "threadName": "Thread-19" }, { "args": [ - "SP server:", + "prot-server:", "__callback__" ], - "asctime": "2021-01-06 22:49:08,697", - "created": 1609969748.697, + "asctime": "2021-01-11 07:30:27,329", + "created": 1610346627.329773, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __callback__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 697.0000267028809, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 329.77294921875, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11861.815929412842, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 13263.314962387085, + "thread": 140633335396096, + "threadName": "Thread-19" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: read data response, data_id: 0", "status: okay", "33" ], - "asctime": "2021-01-06 22:49:08,697", - "created": 1609969748.697054, + "asctime": "2021-01-11 07:30:27,329", + "created": 1610346627.329867, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "lineno": 445, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 697.0539093017578, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 329.866886138916, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11861.869812011719, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:08,697", - "created": 1609969748.697162, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "module": "test_helpers", - "msecs": 697.1619129180908, - "msg": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11861.977815628052, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:08,697", - "created": 1609969748.697248, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "module": "test_helpers", - "msecs": 697.2479820251465, - "msg": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11862.063884735107, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 13263.408899307251, + "thread": 140633335396096, + "threadName": "Thread-19" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" + ], + "asctime": "2021-01-11 07:30:27,333", + "created": 1610346627.333445, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", + "module": "__init__", + "msecs": 333.44507217407227, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13266.987085342407, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" + ], + "asctime": "2021-01-11 07:30:27,333", + "created": 1610346627.333589, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", + "module": "__init__", + "msecs": 333.5890769958496, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13267.131090164185, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,333", + "created": 1610346627.333662, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 333.6620330810547, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13267.20404624939, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:27,333", + "created": 1610346627.333755, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 333.7550163269043, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13267.29702949524, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,334", + "created": 1610346627.334071, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 334.07092094421387, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13267.612934112549, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,334", + "created": 1610346627.334167, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 334.1670036315918, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13267.709016799927, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,334", + "created": 1610346627.334282, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 334.28192138671875, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13267.823934555054, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,334", + "created": 1610346627.334368, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 334.3679904937744, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13267.91000366211, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,334", + "created": 1610346627.334469, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 334.4690799713135, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13268.011093139648, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,334", + "created": 1610346627.334542, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 334.54203605651855, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13268.084049224854, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,334", + "created": 1610346627.33464, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 334.6400260925293, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13268.182039260864, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,334", + "created": 1610346627.334757, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 334.75708961486816, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13268.299102783203, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-server:", + "(5): 02 24 68 3a 3e" + ], + "asctime": "2021-01-11 07:30:27,334", + "created": 1610346627.334857, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (5): 02 24 68 3a 3e", + "module": "__init__", + "msecs": 334.8569869995117, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13268.399000167847, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-client:", + "(5): 02 24 68 3a 3e" + ], + "asctime": "2021-01-11 07:30:27,334", + "created": 1610346627.334928, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (5): 02 24 68 3a 3e", + "module": "__init__", + "msecs": 334.928035736084, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13268.470048904419, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,334", + "created": 1610346627.334996, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 334.99598503112793, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13268.537998199463, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:27,335", + "created": 1610346627.33507, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 335.0698947906494, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13268.611907958984, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68" + ], + "asctime": "2021-01-11 07:30:27,335", + "created": 1610346627.335187, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", + "module": "stp", + "msecs": 335.1869583129883, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13268.728971481323, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: read data response, data_id: 0", "status: okay", "33" ], - "asctime": "2021-01-06 22:49:08,697", - "created": 1609969748.697325, + "asctime": "2021-01-11 07:30:27,335", + "created": 1610346627.335319, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "lineno": 445, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 697.3249912261963, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 335.31904220581055, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11862.140893936157, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 13268.861055374146, + "thread": 140633327003392, + "threadName": "Thread-20" }, { "args": [ - "SP client:" + "prot-client:" ], - "asctime": "2021-01-06 22:49:08,697", - "created": 1609969748.697389, + "asctime": "2021-01-11 07:30:27,335", + "created": 1610346627.335409, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 697.3888874053955, + "msecs": 335.40892601013184, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11862.204790115356, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 13268.950939178467, + "thread": 140633327003392, + "threadName": "Thread-20" } ], - "msecs": 797.7008819580078, + "msecs": 500.3790855407715, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11962.516784667969, - "thread": 140012350113600, + "relativeCreated": 13433.921098709106, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.1003119945526123 + "time_consumption": 0.16497015953063965 }, { "args": [ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:08,798", - "created": 1609969748.798181, + "asctime": "2021-01-11 07:30:27,501", + "created": 1610346627.501603, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -41936,8 +89494,8 @@ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:08,797", - "created": 1609969748.79798, + "asctime": "2021-01-11 07:30:27,501", + "created": 1610346627.501034, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -41947,14 +89505,14 @@ "lineno": 22, "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", "module": "test", - "msecs": 797.9800701141357, + "msecs": 501.0340213775635, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11962.795972824097, - "thread": 140012350113600, + "relativeCreated": 13434.576034545898, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -41963,8 +89521,8 @@ "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:08,798", - "created": 1609969748.798086, + "asctime": "2021-01-11 07:30:27,501", + "created": 1610346627.501298, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -41974,35 +89532,35 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", "module": "test", - "msecs": 798.0859279632568, + "msecs": 501.2979507446289, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11962.901830673218, - "thread": 140012350113600, + "relativeCreated": 13434.839963912964, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 798.1810569763184, + "msecs": 501.6028881072998, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11962.99695968628, - "thread": 140012350113600, + "relativeCreated": 13435.144901275635, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 9.512901306152344e-05 + "time_consumption": 0.00030493736267089844 }, { "args": [ "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:08,798", - "created": 1609969748.798483, + "asctime": "2021-01-11 07:30:27,502", + "created": 1610346627.502845, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -42019,8 +89577,8 @@ "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:08,798", - "created": 1609969748.798316, + "asctime": "2021-01-11 07:30:27,502", + "created": 1610346627.502057, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -42030,14 +89588,14 @@ "lineno": 22, "message": "Result (Message received by client): {u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0} ()", "module": "test", - "msecs": 798.3160018920898, + "msecs": 502.0570755004883, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11963.13190460205, - "thread": 140012350113600, + "relativeCreated": 13435.599088668823, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -42046,8 +89604,8 @@ "{'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:08,798", - "created": 1609969748.7984, + "asctime": "2021-01-11 07:30:27,502", + "created": 1610346627.502255, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -42057,420 +89615,1202 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0} ()", "module": "test", - "msecs": 798.3999252319336, + "msecs": 502.2549629211426, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11963.215827941895, - "thread": 140012350113600, + "relativeCreated": 13435.796976089478, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 798.4828948974609, + "msecs": 502.84504890441895, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11963.298797607422, - "thread": 140012350113600, + "relativeCreated": 13436.387062072754, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 8.296966552734375e-05 + "time_consumption": 0.0005900859832763672 }, { "args": [], - "asctime": "2021-01-06 22:49:08,798", - "created": 1609969748.79872, + "asctime": "2021-01-11 07:30:27,503", + "created": 1610346627.503673, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "specific_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 109, + "lineno": 110, "message": "Overwriting existing Callback using one with faulty return values", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "'__callback__'", "10", "0", "'__callback_error__'" ], - "asctime": "2021-01-06 22:49:08,798", - "created": 1609969748.798637, + "asctime": "2021-01-11 07:30:27,503", + "created": 1610346627.503388, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "WARNING", "levelno": 30, - "lineno": 158, - "message": "SP server: Overwriting existing callback '__callback__' for service_id (10) and data_id (0) to '__callback_error__'!", + "lineno": 168, + "message": "prot-server: Overwriting existing callback '__callback__' for service_id (10) and data_id (0) to '__callback_error__'!", "module": "__init__", - "msecs": 798.6369132995605, + "msecs": 503.3879280090332, "msg": "%s Overwriting existing callback %s for service_id (%s) and data_id (%s) to %s!", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11963.452816009521, - "thread": 140012350113600, + "relativeCreated": 13436.929941177368, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 798.7198829650879, + "msecs": 503.6730766296387, "msg": "Overwriting existing Callback using one with faulty return values", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11963.535785675049, - "thread": 140012350113600, + "relativeCreated": 13437.215089797974, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 8.296966552734375e-05 + "time_consumption": 0.00028514862060546875 }, { "args": [], - "asctime": "2021-01-06 22:49:08,900", - "created": 1609969748.900839, + "asctime": "2021-01-11 07:30:27,705", + "created": 1610346627.705402, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "specific_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 112, + "lineno": 113, "message": "Transfering data", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:08,798", - "created": 1609969748.79887, + "asctime": "2021-01-11 07:30:27,504", + "created": 1610346627.504177, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 445, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 798.8700866699219, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 504.1770935058594, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11963.685989379883, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:08,799", - "created": 1609969748.7991, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "test_helpers", - "msecs": 799.0999221801758, - "msg": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11963.915824890137, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:08,799", - "created": 1609969748.799268, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "test_helpers", - "msecs": 799.2680072784424, - "msg": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11964.083909988403, - "thread": 140012350113600, + "relativeCreated": 13437.719106674194, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" + ], + "asctime": "2021-01-11 07:30:27,530", + "created": 1610346627.53082, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", + "module": "__init__", + "msecs": 530.8198928833008, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13464.361906051636, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" + ], + "asctime": "2021-01-11 07:30:27,531", + "created": 1610346627.531441, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", + "module": "__init__", + "msecs": 531.4409732818604, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13464.982986450195, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,531", + "created": 1610346627.53172, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 531.7199230194092, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13465.261936187744, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:27,531", + "created": 1610346627.531899, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 531.8989753723145, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13465.44098854065, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,532", + "created": 1610346627.532122, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 532.1218967437744, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13465.66390991211, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,532", + "created": 1610346627.532286, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 532.2859287261963, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13465.827941894531, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,532", + "created": 1610346627.532505, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 532.5050354003906, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13466.047048568726, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,532", + "created": 1610346627.532682, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 532.681941986084, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13466.223955154419, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,532", + "created": 1610346627.532977, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 532.9771041870117, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13466.519117355347, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,533", + "created": 1610346627.533149, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 533.149003982544, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13466.691017150879, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,533", + "created": 1610346627.533357, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 533.3569049835205, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13466.898918151855, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,533", + "created": 1610346627.533593, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 533.592939376831, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13467.134952545166, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-client:", + "(5): 17 fc 16 3a 3e" + ], + "asctime": "2021-01-11 07:30:27,533", + "created": 1610346627.533818, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", + "module": "__init__", + "msecs": 533.8180065155029, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13467.360019683838, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-server:", + "(5): 17 fc 16 3a 3e" + ], + "asctime": "2021-01-11 07:30:27,533", + "created": 1610346627.533959, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", + "module": "__init__", + "msecs": 533.958911895752, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13467.500925064087, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,534", + "created": 1610346627.534087, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 534.0869426727295, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13467.628955841064, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:27,534", + "created": 1610346627.534224, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 534.2240333557129, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13467.766046524048, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" + ], + "asctime": "2021-01-11 07:30:27,534", + "created": 1610346627.534469, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", + "module": "stp", + "msecs": 534.4688892364502, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13468.010902404785, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:08,799", - "created": 1609969748.799418, + "asctime": "2021-01-11 07:30:27,534", + "created": 1610346627.534809, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 445, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 799.4179725646973, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 534.8091125488281, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11964.233875274658, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 13468.351125717163, + "thread": 140633335396096, + "threadName": "Thread-19" }, { "args": [ - "SP server:", + "prot-server:", "__callback_error__" ], - "asctime": "2021-01-06 22:49:08,799", - "created": 1609969748.799517, + "asctime": "2021-01-11 07:30:27,535", + "created": 1610346627.535012, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __callback_error__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __callback_error__ to process received data", "module": "__init__", - "msecs": 799.5169162750244, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 535.0120067596436, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11964.332818984985, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 13468.554019927979, + "thread": 140633335396096, + "threadName": "Thread-19" }, { "args": [], - "asctime": "2021-01-06 22:49:08,799", - "created": 1609969748.799615, + "asctime": "2021-01-11 07:30:27,535", + "created": 1610346627.535488, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "ERROR", "levelno": 40, - "lineno": 468, - "message": "SP server: RX <- Exception raised. Check callback __callback_error__ and it's return values for service_id 10 and data_id 0", + "lineno": 482, + "message": "prot-server: Exception raised. Check callback __callback_error__ and it's return values for service_id 10 and data_id 0", "module": "__init__", - "msecs": 799.6149063110352, - "msg": "SP server: RX <- Exception raised. Check callback __callback_error__ and it's return values for service_id 10 and data_id 0", + "msecs": 535.4878902435303, + "msg": "prot-server: Exception raised. Check callback __callback_error__ and it's return values for service_id 10 and data_id 0", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11964.430809020996, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 13469.029903411865, + "thread": 140633335396096, + "threadName": "Thread-19" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: read data response, data_id: 0", - "status: callback error.", + "status: callback error", "None" ], - "asctime": "2021-01-06 22:49:08,799", - "created": 1609969748.799715, + "asctime": "2021-01-11 07:30:27,535", + "created": 1610346627.535739, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: read data response, data_id: 0, status: callback error., data: \"None\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: callback error, data: \"None\"", "module": "__init__", - "msecs": 799.7150421142578, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 535.7389450073242, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11964.530944824219, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:08,799", - "created": 1609969748.79993, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (63): 7b 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 3f 8f 7d 86", - "module": "test_helpers", - "msecs": 799.9300956726074, - "msg": "Send data: (63): 7b 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 3f 8f 7d 86", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11964.745998382568, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:08,800", - "created": 1609969748.800092, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (63): 7b 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 3f 8f 7d 86", - "module": "test_helpers", - "msecs": 800.0919818878174, - "msg": "Receive data (63): 7b 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 3f 8f 7d 86", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11964.907884597778, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 13469.28095817566, + "thread": 140633335396096, + "threadName": "Thread-19" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30" + ], + "asctime": "2021-01-11 07:30:27,536", + "created": 1610346627.536579, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30", + "module": "__init__", + "msecs": 536.578893661499, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13470.120906829834, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30" + ], + "asctime": "2021-01-11 07:30:27,536", + "created": 1610346627.536926, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30", + "module": "__init__", + "msecs": 536.9260311126709, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13470.468044281006, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,537", + "created": 1610346627.537081, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 537.0810031890869, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13470.623016357422, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:27,537", + "created": 1610346627.537206, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 537.2059345245361, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13470.747947692871, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,537", + "created": 1610346627.537358, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 537.3580455780029, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13470.900058746338, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,537", + "created": 1610346627.537564, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 537.5640392303467, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13471.106052398682, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,538", + "created": 1610346627.538042, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 538.0420684814453, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13471.58408164978, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,538", + "created": 1610346627.538172, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 538.1720066070557, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13471.71401977539, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,538", + "created": 1610346627.538331, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 538.3310317993164, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13471.873044967651, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,538", + "created": 1610346627.53845, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 538.4500026702881, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13471.992015838623, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,538", + "created": 1610346627.538607, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 538.6068820953369, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13472.148895263672, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,538", + "created": 1610346627.538756, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 538.7558937072754, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13472.29790687561, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-server:", + "(7): 7d 3f 8f 7d 86 3a 3e" + ], + "asctime": "2021-01-11 07:30:27,538", + "created": 1610346627.538993, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (7): 7d 3f 8f 7d 86 3a 3e", + "module": "__init__", + "msecs": 538.9928817749023, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13472.534894943237, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-client:", + "(7): 7d 3f 8f 7d 86 3a 3e" + ], + "asctime": "2021-01-11 07:30:27,539", + "created": 1610346627.539161, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (7): 7d 3f 8f 7d 86 3a 3e", + "module": "__init__", + "msecs": 539.160966873169, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13472.702980041504, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,539", + "created": 1610346627.539331, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 539.3309593200684, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13472.872972488403, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:27,539", + "created": 1610346627.539476, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 539.4759178161621, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13473.017930984497, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + "(63): 7b 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 3f 8f 7d 86" + ], + "asctime": "2021-01-11 07:30:27,539", + "created": 1610346627.53978, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (63): 7b 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 3f 8f 7d 86", + "module": "stp", + "msecs": 539.7799015045166, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13473.321914672852, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: read data response, data_id: 0", - "status: callback error.", + "status: callback error", "None" ], - "asctime": "2021-01-06 22:49:08,800", - "created": 1609969748.800229, + "asctime": "2021-01-11 07:30:27,540", + "created": 1610346627.5401, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: read data response, data_id: 0, status: callback error., data: \"None\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: callback error, data: \"None\"", "module": "__init__", - "msecs": 800.2290725708008, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 540.10009765625, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11965.044975280762, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 13473.642110824585, + "thread": 140633327003392, + "threadName": "Thread-20" }, { "args": [ - "SP client:", - "status: callback error." + "prot-client:" ], - "asctime": "2021-01-06 22:49:08,800", - "created": 1609969748.800315, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: callback error.", - "module": "__init__", - "msecs": 800.3149032592773, - "msg": "%s RX <- Message has a peculiar status: %s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 11965.130805969238, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:" - ], - "asctime": "2021-01-06 22:49:08,800", - "created": 1609969748.800414, + "asctime": "2021-01-11 07:30:27,540", + "created": 1610346627.540307, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 800.4140853881836, + "msecs": 540.3070449829102, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 11965.229988098145, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 13473.849058151245, + "thread": 140633327003392, + "threadName": "Thread-20" } ], - "msecs": 900.83909034729, + "msecs": 705.4018974304199, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12065.654993057251, - "thread": 140012350113600, + "relativeCreated": 13638.943910598755, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.10042500495910645 + "time_consumption": 0.16509485244750977 }, { "args": [ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:08,901", - "created": 1609969748.901833, + "asctime": "2021-01-11 07:30:27,707", + "created": 1610346627.707103, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -42487,8 +90827,8 @@ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:08,901", - "created": 1609969748.901373, + "asctime": "2021-01-11 07:30:27,706", + "created": 1610346627.706061, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -42498,14 +90838,14 @@ "lineno": 22, "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", "module": "test", - "msecs": 901.3729095458984, + "msecs": 706.0608863830566, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12066.18881225586, - "thread": 140012350113600, + "relativeCreated": 13639.602899551392, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -42514,8 +90854,8 @@ "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:08,901", - "created": 1609969748.901594, + "asctime": "2021-01-11 07:30:27,706", + "created": 1610346627.706479, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -42525,35 +90865,35 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", "module": "test", - "msecs": 901.5939235687256, + "msecs": 706.4790725708008, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12066.409826278687, - "thread": 140012350113600, + "relativeCreated": 13640.021085739136, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 901.8330574035645, + "msecs": 707.1030139923096, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12066.648960113525, - "thread": 140012350113600, + "relativeCreated": 13640.645027160645, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0002391338348388672 + "time_consumption": 0.0006239414215087891 }, { "args": [ "{u'status': 2, u'service_id': 11, u'data': None, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:08,902", - "created": 1609969748.902482, + "asctime": "2021-01-11 07:30:27,708", + "created": 1610346627.708128, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -42570,8 +90910,8 @@ "{u'status': 2, u'service_id': 11, u'data': None, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:08,902", - "created": 1609969748.902123, + "asctime": "2021-01-11 07:30:27,707", + "created": 1610346627.707606, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -42581,14 +90921,14 @@ "lineno": 22, "message": "Result (Message received by client): {u'status': 2, u'service_id': 11, u'data': None, u'data_id': 0} ()", "module": "test", - "msecs": 902.122974395752, + "msecs": 707.6060771942139, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12066.938877105713, - "thread": 140012350113600, + "relativeCreated": 13641.148090362549, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -42597,8 +90937,8 @@ "{'status': 2, 'service_id': 11, 'data': None, 'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:08,902", - "created": 1609969748.902298, + "asctime": "2021-01-11 07:30:27,707", + "created": 1610346627.707867, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -42608,395 +90948,1177 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'status': 2, 'service_id': 11, 'data': None, 'data_id': 0} ()", "module": "test", - "msecs": 902.2979736328125, + "msecs": 707.866907119751, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12067.113876342773, - "thread": 140012350113600, + "relativeCreated": 13641.408920288086, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 902.4820327758789, + "msecs": 708.1279754638672, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12067.29793548584, - "thread": 140012350113600, + "relativeCreated": 13641.669988632202, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00018405914306640625 + "time_consumption": 0.00026106834411621094 }, { "args": [], - "asctime": "2021-01-06 22:49:08,902", - "created": 1609969748.902976, + "asctime": "2021-01-11 07:30:27,708", + "created": 1610346627.70893, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "specific_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 118, + "lineno": 119, "message": "Removing the registered Callback", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "'__callback_error__'", "10", "0" ], - "asctime": "2021-01-06 22:49:08,902", - "created": 1609969748.902802, + "asctime": "2021-01-11 07:30:27,708", + "created": 1610346627.7087, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "WARNING", "levelno": 30, - "lineno": 154, - "message": "SP server: Deleting existing callback '__callback_error__' for service_id (10) and data_id (0)!", + "lineno": 164, + "message": "prot-server: Deleting existing callback '__callback_error__' for service_id (10) and data_id (0)!", "module": "__init__", - "msecs": 902.8019905090332, + "msecs": 708.6999416351318, "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12067.617893218994, - "thread": 140012350113600, + "relativeCreated": 13642.241954803467, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 902.9760360717773, + "msecs": 708.9300155639648, "msg": "Removing the registered Callback", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12067.791938781738, - "thread": 140012350113600, + "relativeCreated": 13642.4720287323, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00017404556274414062 + "time_consumption": 0.0002300739288330078 }, { "args": [], - "asctime": "2021-01-06 22:49:09,006", - "created": 1609969749.006474, + "asctime": "2021-01-11 07:30:27,910", + "created": 1610346627.910806, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "specific_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 121, + "lineno": 122, "message": "Transfering data", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:08,903", - "created": 1609969748.903279, + "asctime": "2021-01-11 07:30:27,709", + "created": 1610346627.709492, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 445, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 903.2790660858154, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 709.4919681549072, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12068.094968795776, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:08,903", - "created": 1609969748.903756, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "test_helpers", - "msecs": 903.7559032440186, - "msg": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12068.57180595398, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:08,904", - "created": 1609969748.904109, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "test_helpers", - "msecs": 904.109001159668, - "msg": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12068.924903869629, - "thread": 140012350113600, + "relativeCreated": 13643.033981323242, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" + ], + "asctime": "2021-01-11 07:30:27,736", + "created": 1610346627.736974, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", + "module": "__init__", + "msecs": 736.9740009307861, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13670.516014099121, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" + ], + "asctime": "2021-01-11 07:30:27,737", + "created": 1610346627.737504, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", + "module": "__init__", + "msecs": 737.5040054321289, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13671.046018600464, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,737", + "created": 1610346627.737734, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 737.7340793609619, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13671.276092529297, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:27,737", + "created": 1610346627.737962, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 737.962007522583, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13671.504020690918, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,738", + "created": 1610346627.73849, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 738.490104675293, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13672.032117843628, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,738", + "created": 1610346627.738756, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 738.7559413909912, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13672.297954559326, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,739", + "created": 1610346627.739033, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 739.0329837799072, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13672.574996948242, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,739", + "created": 1610346627.739224, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 739.2239570617676, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13672.765970230103, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,739", + "created": 1610346627.739483, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 739.483118057251, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13673.025131225586, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,739", + "created": 1610346627.739716, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 739.7160530090332, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13673.258066177368, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,740", + "created": 1610346627.740061, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 740.0610446929932, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13673.603057861328, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,740", + "created": 1610346627.740265, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 740.264892578125, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13673.80690574646, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-client:", + "(5): 17 fc 16 3a 3e" + ], + "asctime": "2021-01-11 07:30:27,740", + "created": 1610346627.740643, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", + "module": "__init__", + "msecs": 740.6430244445801, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13674.185037612915, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-server:", + "(5): 17 fc 16 3a 3e" + ], + "asctime": "2021-01-11 07:30:27,740", + "created": 1610346627.740898, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", + "module": "__init__", + "msecs": 740.8978939056396, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13674.439907073975, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,741", + "created": 1610346627.741109, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 741.1088943481445, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13674.65090751648, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:27,741", + "created": 1610346627.741298, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 741.2979602813721, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13674.839973449707, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" + ], + "asctime": "2021-01-11 07:30:27,741", + "created": 1610346627.741738, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", + "module": "stp", + "msecs": 741.7380809783936, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13675.280094146729, + "thread": 140633335396096, + "threadName": "Thread-19" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:08,904", - "created": 1609969748.904416, + "asctime": "2021-01-11 07:30:27,742", + "created": 1610346627.742164, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 445, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 904.4160842895508, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 742.163896560669, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12069.231986999512, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 13675.705909729004, + "thread": 140633335396096, + "threadName": "Thread-19" }, { "args": [ - "SP server:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:08,904", - "created": 1609969748.904633, + "asctime": "2021-01-11 07:30:27,742", + "created": 1610346627.742422, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 460, - "message": "SP server: RX <- Message with no registered callback. Sending negative response.", + "lineno": 474, + "message": "prot-server: Incomming message with no registered callback. Sending negative response.", "module": "__init__", - "msecs": 904.6330451965332, - "msg": "%s RX <- Message with no registered callback. Sending negative response.", + "msecs": 742.4221038818359, + "msg": "%s Incomming message with no registered callback. Sending negative response.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12069.448947906494, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 13675.96411705017, + "thread": 140633335396096, + "threadName": "Thread-19" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: read data response, data_id: 0", - "status: no callback for service, data buffered.", + "status: no callback for service, data buffered", "None" ], - "asctime": "2021-01-06 22:49:08,904", - "created": 1609969748.904875, + "asctime": "2021-01-11 07:30:27,743", + "created": 1610346627.743143, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: read data response, data_id: 0, status: no callback for service, data buffered., data: \"None\"", - "module": "__init__", - "msecs": 904.8750400543213, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12069.690942764282, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:08,905", - "created": 1609969748.905313, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (63): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 79 5d 48 e2", - "module": "test_helpers", - "msecs": 905.3130149841309, - "msg": "Send data: (63): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 79 5d 48 e2", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12070.128917694092, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:08,905", - "created": 1609969748.905655, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (63): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 79 5d 48 e2", - "module": "test_helpers", - "msecs": 905.6549072265625, - "msg": "Receive data (63): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 79 5d 48 e2", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12070.470809936523, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: read data response, data_id: 0", - "status: no callback for service, data buffered.", - "None" - ], - "asctime": "2021-01-06 22:49:08,905", - "created": 1609969748.905889, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: read data response, data_id: 0, status: no callback for service, data buffered., data: \"None\"", - "module": "__init__", - "msecs": 905.8890342712402, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12070.704936981201, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "status: no callback for service, data buffered." - ], - "asctime": "2021-01-06 22:49:08,905", - "created": 1609969748.905977, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: no callback for service, data buffered.", + "lineno": 445, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: no callback for service, data buffered, data: \"None\"", "module": "__init__", - "msecs": 905.9770107269287, - "msg": "%s RX <- Message has a peculiar status: %s", + "msecs": 743.1430816650391, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12070.79291343689, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 13676.685094833374, + "thread": 140633335396096, + "threadName": "Thread-19" }, { "args": [ - "SP client:" + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30" ], - "asctime": "2021-01-06 22:49:08,906", - "created": 1609969748.906081, + "asctime": "2021-01-11 07:30:27,744", + "created": 1610346627.744246, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30", + "module": "__init__", + "msecs": 744.2460060119629, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13677.788019180298, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30" + ], + "asctime": "2021-01-11 07:30:27,744", + "created": 1610346627.744768, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30", + "module": "__init__", + "msecs": 744.7679042816162, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13678.309917449951, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,744", + "created": 1610346627.744966, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 744.9660301208496, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13678.508043289185, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:27,745", + "created": 1610346627.74523, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 745.229959487915, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13678.77197265625, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,745", + "created": 1610346627.745552, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 745.5520629882812, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13679.094076156616, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,745", + "created": 1610346627.745783, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 745.7830905914307, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13679.325103759766, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,746", + "created": 1610346627.746293, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 746.2930679321289, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13679.835081100464, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,746", + "created": 1610346627.746656, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 746.6559410095215, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13680.197954177856, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,747", + "created": 1610346627.747017, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 747.0169067382812, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13680.558919906616, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,747", + "created": 1610346627.747287, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 747.2870349884033, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13680.829048156738, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,747", + "created": 1610346627.747687, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 747.6871013641357, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13681.22911453247, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:27,747", + "created": 1610346627.747823, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 747.8229999542236, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13681.365013122559, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-server:", + "(7): 7d 79 5d 48 e2 3a 3e" + ], + "asctime": "2021-01-11 07:30:27,748", + "created": 1610346627.748004, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (7): 7d 79 5d 48 e2 3a 3e", + "module": "__init__", + "msecs": 748.0039596557617, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13681.545972824097, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-client:", + "(7): 7d 79 5d 48 e2 3a 3e" + ], + "asctime": "2021-01-11 07:30:27,748", + "created": 1610346627.748148, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (7): 7d 79 5d 48 e2 3a 3e", + "module": "__init__", + "msecs": 748.1479644775391, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13681.689977645874, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:27,748", + "created": 1610346627.748335, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 748.3348846435547, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13681.87689781189, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:27,748", + "created": 1610346627.748476, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 748.4760284423828, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13682.018041610718, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + "(63): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 79 5d 48 e2" + ], + "asctime": "2021-01-11 07:30:27,748", + "created": 1610346627.748766, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (63): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 79 5d 48 e2", + "module": "stp", + "msecs": 748.7659454345703, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13682.307958602905, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: read data response, data_id: 0", + "status: no callback for service, data buffered", + "None" + ], + "asctime": "2021-01-11 07:30:27,749", + "created": 1610346627.749087, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "WARNING", + "levelno": 30, + "lineno": 445, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: no callback for service, data buffered, data: \"None\"", + "module": "__init__", + "msecs": 749.0870952606201, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 13682.629108428955, + "thread": 140633327003392, + "threadName": "Thread-20" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:27,749", + "created": 1610346627.749263, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 906.080961227417, + "msecs": 749.2630481719971, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12070.896863937378, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 13682.805061340332, + "thread": 140633327003392, + "threadName": "Thread-20" } ], - "msecs": 6.474018096923828, + "msecs": 910.8059406280518, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12171.289920806885, - "thread": 140012350113600, + "relativeCreated": 13844.347953796387, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.10039305686950684 + "time_consumption": 0.1615428924560547 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:09,007", - "created": 1609969749.00714, + "asctime": "2021-01-11 07:30:27,912", + "created": 1610346627.912048, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -43013,8 +92135,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:09,006", - "created": 1609969749.006852, + "asctime": "2021-01-11 07:30:27,911", + "created": 1610346627.911536, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -43024,14 +92146,14 @@ "lineno": 22, "message": "Result (Message stored inside callback): None ()", "module": "test", - "msecs": 6.851911544799805, + "msecs": 911.5359783172607, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12171.66781425476, - "thread": 140012350113600, + "relativeCreated": 13845.077991485596, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -43040,8 +92162,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:09,007", - "created": 1609969749.007004, + "asctime": "2021-01-11 07:30:27,911", + "created": 1610346627.911807, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -43051,35 +92173,35 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = None ()", "module": "test", - "msecs": 7.004022598266602, + "msecs": 911.8070602416992, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12171.819925308228, - "thread": 140012350113600, + "relativeCreated": 13845.349073410034, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 7.139921188354492, + "msecs": 912.0481014251709, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12171.955823898315, - "thread": 140012350113600, + "relativeCreated": 13845.590114593506, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00013589859008789062 + "time_consumption": 0.0002410411834716797 }, { "args": [ "{u'status': 1, u'service_id': 11, u'data': None, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,007", - "created": 1609969749.007612, + "asctime": "2021-01-11 07:30:27,912", + "created": 1610346627.912944, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -43096,8 +92218,8 @@ "{u'status': 1, u'service_id': 11, u'data': None, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,007", - "created": 1609969749.007348, + "asctime": "2021-01-11 07:30:27,912", + "created": 1610346627.91258, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -43107,14 +92229,14 @@ "lineno": 22, "message": "Result (Message received by client): {u'status': 1, u'service_id': 11, u'data': None, u'data_id': 0} ()", "module": "test", - "msecs": 7.348060607910156, + "msecs": 912.5800132751465, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12172.163963317871, - "thread": 140012350113600, + "relativeCreated": 13846.122026443481, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -43123,8 +92245,8 @@ "{'status': 1, 'service_id': 11, 'data': None, 'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,007", - "created": 1609969749.007482, + "asctime": "2021-01-11 07:30:27,912", + "created": 1610346627.912768, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -43134,39 +92256,39 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'status': 1, 'service_id': 11, 'data': None, 'data_id': 0} ()", "module": "test", - "msecs": 7.482051849365234, + "msecs": 912.7678871154785, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12172.297954559326, - "thread": 140012350113600, + "relativeCreated": 13846.309900283813, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 7.611989974975586, + "msecs": 912.9440784454346, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12172.427892684937, - "thread": 140012350113600, + "relativeCreated": 13846.48609161377, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00012993812561035156 + "time_consumption": 0.0001761913299560547 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.3132600784301758, - "time_finished": "2021-01-06 22:49:09,007", - "time_start": "2021-01-06 22:49:08,694" + "time_consumption": 0.9681010246276855, + "time_finished": "2021-01-11 07:30:27,912", + "time_start": "2021-01-11 07:30:26,944" }, "_tb5akE4LEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-06 22:49:09,334", - "created": 1609969749.334404, + "asctime": "2021-01-11 07:30:29,594", + "created": 1610346629.594851, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -43177,1534 +92299,3657 @@ "message": "_tb5akE4LEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 334.40399169921875, + "msecs": 594.851016998291, "msg": "_tb5akE4LEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12499.21989440918, + "relativeCreated": 15528.393030166626, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:09,336", - "created": 1609969749.336566, + "asctime": "2021-01-11 07:30:29,605", + "created": 1610346629.60575, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:09,334", - "created": 1609969749.334563, + "asctime": "2021-01-11 07:30:29,595", + "created": 1610346629.595954, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 334.5630168914795, + "msecs": 595.9539413452148, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12499.37891960144, - "thread": 140012350113600, + "relativeCreated": 15529.49595451355, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:09,334", - "created": 1609969749.334633, + "asctime": "2021-01-11 07:30:29,597", + "created": 1610346629.597188, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 334.63311195373535, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 597.1879959106445, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12499.449014663696, - "thread": 140012350113600, + "relativeCreated": 15530.73000907898, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:09,334", - "created": 1609969749.334708, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 334.70797538757324, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12499.523878097534, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:09,334", - "created": 1609969749.334757, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 334.75708961486816, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12499.57299232483, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:09,334", - "created": 1609969749.33481, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 334.8100185394287, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12499.62592124939, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:09,334", - "created": 1609969749.334856, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 334.8560333251953, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12499.671936035156, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:09,334", - "created": 1609969749.33491, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 334.90991592407227, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12499.725818634033, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:09,334", - "created": 1609969749.334961, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 334.9609375, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12499.776840209961, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:09,335", - "created": 1609969749.33501, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 335.0100517272949, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12499.825954437256, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:09,335", - "created": 1609969749.33506, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 335.05988121032715, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12499.875783920288, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:09,335", - "created": 1609969749.335102, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 335.1020812988281, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12499.917984008789, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:09,335", - "created": 1609969749.335161, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 335.1609706878662, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12499.976873397827, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:09,335", - "created": 1609969749.335211, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 335.21103858947754, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12500.026941299438, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:09,335", - "created": 1609969749.335259, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 335.25896072387695, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12500.074863433838, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:09,335", - "created": 1609969749.335305, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 335.30497550964355, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12500.120878219604, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:09,335", - "created": 1609969749.335354, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 335.3540897369385, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12500.1699924469, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:09,335", - "created": 1609969749.3354, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 335.4001045227051, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12500.216007232666, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:09,335", - "created": 1609969749.335445, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 335.4449272155762, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12500.260829925537, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:09,335", - "created": 1609969749.335487, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 335.48688888549805, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12500.302791595459, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:09,335", - "created": 1609969749.33553, + "asctime": "2021-01-11 07:30:29,597", + "created": 1610346629.597455, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 335.53004264831543, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "msecs": 597.4550247192383, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12500.345945358276, - "thread": 140012350113600, + "relativeCreated": 15530.997037887573, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,335", - "created": 1609969749.335638, + "asctime": "2021-01-11 07:30:29,597", + "created": 1610346629.597832, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 335.63804626464844, + "msecs": 597.8319644927979, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12500.45394897461, - "thread": 140012350113600, + "relativeCreated": 15531.373977661133, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:09,335", - "created": 1609969749.335688, + "asctime": "2021-01-11 07:30:29,597", + "created": 1610346629.597995, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 335.68811416625977, + "msecs": 597.9950428009033, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12500.50401687622, - "thread": 140012350113600, + "relativeCreated": 15531.537055969238, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:09,335", - "created": 1609969749.335749, + "asctime": "2021-01-11 07:30:29,598", + "created": 1610346629.598202, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 335.74891090393066, + "msecs": 598.2019901275635, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12500.564813613892, - "thread": 140012350113600, + "relativeCreated": 15531.744003295898, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:09,335", - "created": 1609969749.335795, + "asctime": "2021-01-11 07:30:29,598", + "created": 1610346629.598414, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 335.79492568969727, + "msecs": 598.4139442443848, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12500.610828399658, - "thread": 140012350113600, + "relativeCreated": 15531.95595741272, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:09,335", - "created": 1609969749.335838, + "asctime": "2021-01-11 07:30:29,598", + "created": 1610346629.598542, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 335.83807945251465, + "msecs": 598.5419750213623, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12500.653982162476, - "thread": 140012350113600, + "relativeCreated": 15532.083988189697, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:09,335", - "created": 1609969749.335882, + "asctime": "2021-01-11 07:30:29,598", + "created": 1610346629.598666, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 335.88194847106934, + "msecs": 598.6659526824951, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12500.69785118103, - "thread": 140012350113600, + "relativeCreated": 15532.20796585083, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:09,335", - "created": 1609969749.335931, + "asctime": "2021-01-11 07:30:29,598", + "created": 1610346629.59881, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 335.93106269836426, + "msecs": 598.8099575042725, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12500.746965408325, - "thread": 140012350113600, + "relativeCreated": 15532.351970672607, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:09,335", - "created": 1609969749.335979, + "asctime": "2021-01-11 07:30:29,598", + "created": 1610346629.598955, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 335.9789848327637, + "msecs": 598.9549160003662, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12500.794887542725, - "thread": 140012350113600, + "relativeCreated": 15532.496929168701, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:09,336", - "created": 1609969749.336025, + "asctime": "2021-01-11 07:30:29,599", + "created": 1610346629.599087, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 336.0249996185303, + "msecs": 599.0869998931885, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12500.840902328491, - "thread": 140012350113600, + "relativeCreated": 15532.629013061523, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:09,336", - "created": 1609969749.336072, + "asctime": "2021-01-11 07:30:29,599", + "created": 1610346629.599257, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 336.0719680786133, + "msecs": 599.2569923400879, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12500.887870788574, - "thread": 140012350113600, + "relativeCreated": 15532.799005508423, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,336", - "created": 1609969749.336113, + "asctime": "2021-01-11 07:30:29,599", + "created": 1610346629.599448, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 336.11297607421875, + "msecs": 599.4479656219482, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12500.92887878418, - "thread": 140012350113600, + "relativeCreated": 15532.989978790283, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:09,336", - "created": 1609969749.336161, + "asctime": "2021-01-11 07:30:29,599", + "created": 1610346629.599654, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 336.16089820861816, + "msecs": 599.653959274292, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12500.97680091858, - "thread": 140012350113600, + "relativeCreated": 15533.195972442627, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:09,336", - "created": 1609969749.336209, + "asctime": "2021-01-11 07:30:29,599", + "created": 1610346629.599853, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 336.2090587615967, + "msecs": 599.8530387878418, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12501.024961471558, - "thread": 140012350113600, + "relativeCreated": 15533.395051956177, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:09,336", - "created": 1609969749.336258, + "asctime": "2021-01-11 07:30:29,600", + "created": 1610346629.600155, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 336.2579345703125, + "msecs": 600.1551151275635, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12501.073837280273, - "thread": 140012350113600, + "relativeCreated": 15533.697128295898, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:09,336", - "created": 1609969749.336302, + "asctime": "2021-01-11 07:30:29,600", + "created": 1610346629.60029, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 336.3020420074463, + "msecs": 600.290060043335, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12501.117944717407, - "thread": 140012350113600, + "relativeCreated": 15533.83207321167, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:09,336", - "created": 1609969749.336348, + "asctime": "2021-01-11 07:30:29,600", + "created": 1610346629.600443, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 336.3480567932129, + "msecs": 600.4428863525391, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12501.163959503174, - "thread": 140012350113600, + "relativeCreated": 15533.984899520874, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:09,336", - "created": 1609969749.336395, + "asctime": "2021-01-11 07:30:29,600", + "created": 1610346629.600648, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 336.3950252532959, + "msecs": 600.6479263305664, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12501.210927963257, - "thread": 140012350113600, + "relativeCreated": 15534.189939498901, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:09,336", - "created": 1609969749.336436, + "asctime": "2021-01-11 07:30:29,600", + "created": 1610346629.600933, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 336.43603324890137, + "msecs": 600.9330749511719, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12501.251935958862, - "thread": 140012350113600, + "relativeCreated": 15534.475088119507, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:09,336", - "created": 1609969749.336477, + "asctime": "2021-01-11 07:30:29,601", + "created": 1610346629.60108, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 336.47704124450684, + "msecs": 601.0799407958984, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12501.292943954468, - "thread": 140012350113600, + "relativeCreated": 15534.621953964233, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:09,336", - "created": 1609969749.336518, + "asctime": "2021-01-11 07:30:29,601", + "created": 1610346629.601258, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 336.5180492401123, + "msecs": 601.2580394744873, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12501.333951950073, - "thread": 140012350113600, + "relativeCreated": 15534.800052642822, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:29,601", + "created": 1610346629.60176, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 601.7599105834961, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15535.301923751831, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:29,601", + "created": 1610346629.601975, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 601.9749641418457, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15535.51697731018, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:29,602", + "created": 1610346629.602198, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 602.1978855133057, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15535.73989868164, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:29,602", + "created": 1610346629.602388, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 602.3879051208496, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15535.929918289185, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:29,602", + "created": 1610346629.602539, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 602.5390625, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15536.081075668335, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:29,602", + "created": 1610346629.602699, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 602.6990413665771, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15536.241054534912, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:29,602", + "created": 1610346629.602907, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 602.9069423675537, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15536.448955535889, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:29,603", + "created": 1610346629.60309, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 603.0900478363037, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15536.632061004639, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:29,603", + "created": 1610346629.603267, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 603.2669544219971, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15536.808967590332, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:29,603", + "created": 1610346629.603448, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 603.4479141235352, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15536.98992729187, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:29,603", + "created": 1610346629.603641, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 603.6410331726074, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15537.183046340942, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:29,603", + "created": 1610346629.603834, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 603.8339138031006, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15537.375926971436, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:29,604", + "created": 1610346629.604019, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 604.0189266204834, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15537.560939788818, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:29,604", + "created": 1610346629.604271, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 604.2709350585938, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15537.812948226929, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:29,604", + "created": 1610346629.604686, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 604.6860218048096, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15538.228034973145, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:29,604", + "created": 1610346629.604926, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 604.9261093139648, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15538.4681224823, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:29,605", + "created": 1610346629.605126, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 605.125904083252, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15538.667917251587, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:29,605", + "created": 1610346629.605301, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 605.3009033203125, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15538.842916488647, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:29,605", + "created": 1610346629.605514, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 605.5140495300293, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15539.056062698364, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:29,605", + "created": 1610346629.60567, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 605.6699752807617, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15539.211988449097, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 336.5659713745117, + "msecs": 605.7500839233398, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12501.381874084473, - "thread": 140012350113600, + "relativeCreated": 15539.292097091675, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 4.792213439941406e-05 + "time_consumption": 8.0108642578125e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:09,336", - "created": 1609969749.336862, + "asctime": "2021-01-11 07:30:29,949", + "created": 1610346629.949969, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:29,605", + "created": 1610346629.605912, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 605.9119701385498, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15539.453983306885, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:29,605", + "created": 1610346629.605989, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 605.9889793395996, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15539.530992507935, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:29,606", + "created": 1610346629.606072, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 606.071949005127, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15539.613962173462, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:29,606", + "created": 1610346629.606194, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 606.194019317627, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15539.736032485962, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:29,606", + "created": 1610346629.60643, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 606.4300537109375, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15539.972066879272, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:29,606", + "created": 1610346629.60675, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 606.7500114440918, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15540.292024612427, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:29,606", + "created": 1610346629.606822, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 606.8220138549805, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15540.364027023315, + "thread": 140634736203584, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:29,612", + "created": 1610346629.61254, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 612.5400066375732, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15546.082019805908, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:29,612", + "created": 1610346629.612673, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 612.6730442047119, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15546.215057373047, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,612", + "created": 1610346629.612734, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 612.7340793609619, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15546.276092529297, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:29,612", + "created": 1610346629.612786, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 612.786054611206, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15546.328067779541, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,612", + "created": 1610346629.612855, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 612.8549575805664, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15546.396970748901, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,612", + "created": 1610346629.612906, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 612.9059791564941, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15546.44799232483, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,612", + "created": 1610346629.612974, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 612.9739284515381, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15546.515941619873, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,613", + "created": 1610346629.613036, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 613.0359172821045, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15546.57793045044, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,613", + "created": 1610346629.613114, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 613.1141185760498, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15546.656131744385, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,613", + "created": 1610346629.613178, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 613.178014755249, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15546.720027923584, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,613", + "created": 1610346629.613263, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 613.2628917694092, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15546.804904937744, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,613", + "created": 1610346629.613311, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 613.3110523223877, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15546.853065490723, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-client:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:29,613", + "created": 1610346629.6134, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 613.3999824523926, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15546.941995620728, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(6): 28 3b d3 54 3a 3e" + ], + "asctime": "2021-01-11 07:30:29,613", + "created": 1610346629.61348, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", + "module": "__init__", + "msecs": 613.4800910949707, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15547.022104263306, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,613", + "created": 1610346629.613552, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 613.5520935058594, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15547.094106674194, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:29,613", + "created": 1610346629.613613, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 613.6128902435303, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15547.154903411865, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54" + ], + "asctime": "2021-01-11 07:30:29,613", + "created": 1610346629.613755, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 28 3b d3 54", + "module": "stp", + "msecs": 613.7549877166748, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15547.29700088501, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:29,613", + "created": 1610346629.613907, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 613.9070987701416, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15547.449111938477, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:29,613", + "created": 1610346629.613978, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 613.9779090881348, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15547.51992225647, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:29,614", + "created": 1610346629.61408, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 614.0799522399902, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15547.621965408325, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:29,615", + "created": 1610346629.615055, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 615.0550842285156, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15548.59709739685, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" + ], + "asctime": "2021-01-11 07:30:29,615", + "created": 1610346629.615221, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", + "module": "__init__", + "msecs": 615.2210235595703, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15548.763036727905, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,615", + "created": 1610346629.615292, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 615.2920722961426, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15548.834085464478, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:29,615", + "created": 1610346629.615355, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 615.3550148010254, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15548.89702796936, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,615", + "created": 1610346629.615438, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 615.4379844665527, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15548.979997634888, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,615", + "created": 1610346629.615499, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 615.4990196228027, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15549.041032791138, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,615", + "created": 1610346629.615586, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 615.5860424041748, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15549.12805557251, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,615", + "created": 1610346629.615646, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 615.6458854675293, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15549.187898635864, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,615", + "created": 1610346629.615728, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 615.7279014587402, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15549.269914627075, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,615", + "created": 1610346629.615787, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 615.7870292663574, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15549.329042434692, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,615", + "created": 1610346629.615873, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 615.8730983734131, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15549.415111541748, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,615", + "created": 1610346629.615938, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 615.9379482269287, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15549.479961395264, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-server:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:29,616", + "created": 1610346629.61602, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 616.0199642181396, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15549.561977386475, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-client:", + "(6): 14 5b 30 5c 3a 3e" + ], + "asctime": "2021-01-11 07:30:29,616", + "created": 1610346629.616089, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", + "module": "__init__", + "msecs": 616.0891056060791, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15549.631118774414, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,616", + "created": 1610346629.61615, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 616.14990234375, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15549.691915512085, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:29,616", + "created": 1610346629.616207, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 616.2068843841553, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15549.74889755249, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + "(62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c" + ], + "asctime": "2021-01-11 07:30:29,616", + "created": 1610346629.616319, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 14 5b 30 5c", + "module": "stp", + "msecs": 616.318941116333, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15549.860954284668, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:29,616", + "created": 1610346629.616446, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 616.4460182189941, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15549.98803138733, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:29,616", + "created": 1610346629.616517, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 616.5170669555664, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15550.059080123901, + "thread": 140632781739776, + "threadName": "Thread-28" + } + ], + "msecs": 949.9690532684326, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15883.511066436768, + "thread": 140634736203584, + "threadName": "MainThread", + "time_consumption": 0.3334519863128662 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:29,951", + "created": 1610346629.951985, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 175, "message": "Registering all kind of Callbacks", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "'__callback3__'", "None", "None" ], - "asctime": "2021-01-06 22:49:09,336", - "created": 1609969749.336663, + "asctime": "2021-01-11 07:30:29,950", + "created": 1610346629.950915, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__callback3__' for SID=None and DID=None", + "lineno": 170, + "message": "prot-server: Adding callback '__callback3__' for SID=None and DID=None", "module": "__init__", - "msecs": 336.66300773620605, + "msecs": 950.9150981903076, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12501.478910446167, - "thread": 140012350113600, + "relativeCreated": 15884.457111358643, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "prot-server:", "'__callback2__'", "None", "0" ], - "asctime": "2021-01-06 22:49:09,336", - "created": 1609969749.336717, + "asctime": "2021-01-11 07:30:29,951", + "created": 1610346629.951244, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__callback2__' for SID=None and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__callback2__' for SID=None and DID=0", "module": "__init__", - "msecs": 336.716890335083, + "msecs": 951.2441158294678, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12501.532793045044, - "thread": 140012350113600, + "relativeCreated": 15884.786128997803, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "prot-server:", "'__callback1__'", "10", "None" ], - "asctime": "2021-01-06 22:49:09,336", - "created": 1609969749.336772, + "asctime": "2021-01-11 07:30:29,951", + "created": 1610346629.95151, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__callback1__' for SID=10 and DID=None", + "lineno": 170, + "message": "prot-server: Adding callback '__callback1__' for SID=10 and DID=None", "module": "__init__", - "msecs": 336.77196502685547, + "msecs": 951.509952545166, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12501.587867736816, - "thread": 140012350113600, + "relativeCreated": 15885.051965713501, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "prot-server:", "'__callback__'", "10", "0" ], - "asctime": "2021-01-06 22:49:09,336", - "created": 1609969749.336822, + "asctime": "2021-01-11 07:30:29,951", + "created": 1610346629.951778, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__callback__' for SID=10 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__callback__' for SID=10 and DID=0", "module": "__init__", - "msecs": 336.8220329284668, + "msecs": 951.7779350280762, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12501.637935638428, - "thread": 140012350113600, + "relativeCreated": 15885.319948196411, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 336.86208724975586, + "msecs": 951.9848823547363, "msg": "Registering all kind of Callbacks", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12501.677989959717, - "thread": 140012350113600, + "relativeCreated": 15885.526895523071, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 4.00543212890625e-05 + "time_consumption": 0.00020694732666015625 }, { "args": [], - "asctime": "2021-01-06 22:49:09,438", - "created": 1609969749.43816, + "asctime": "2021-01-11 07:30:30,154", + "created": 1610346630.154079, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 178, + "lineno": 179, "message": "Transfering data", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:09,336", - "created": 1609969749.336944, + "asctime": "2021-01-11 07:30:29,952", + "created": 1610346629.952698, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 445, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 336.9441032409668, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 952.6979923248291, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12501.760005950928, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,337", - "created": 1609969749.337082, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "test_helpers", - "msecs": 337.0819091796875, - "msg": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12501.897811889648, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,337", - "created": 1609969749.337175, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "test_helpers", - "msecs": 337.1748924255371, - "msg": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12501.990795135498, - "thread": 140012350113600, + "relativeCreated": 15886.240005493164, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" + ], + "asctime": "2021-01-11 07:30:29,979", + "created": 1610346629.97932, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", + "module": "__init__", + "msecs": 979.3200492858887, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15912.862062454224, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" + ], + "asctime": "2021-01-11 07:30:29,979", + "created": 1610346629.979931, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", + "module": "__init__", + "msecs": 979.931116104126, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15913.473129272461, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,980", + "created": 1610346629.98018, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 980.180025100708, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15913.722038269043, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:29,980", + "created": 1610346629.980398, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 980.3979396820068, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15913.939952850342, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,980", + "created": 1610346629.980669, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 980.6690216064453, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15914.21103477478, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,980", + "created": 1610346629.980893, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 980.8928966522217, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15914.434909820557, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,981", + "created": 1610346629.981329, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 981.3289642333984, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15914.870977401733, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,981", + "created": 1610346629.98158, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 981.5800189971924, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15915.122032165527, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,981", + "created": 1610346629.981951, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 981.9509983062744, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15915.49301147461, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,982", + "created": 1610346629.982262, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 982.2618961334229, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15915.803909301758, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,982", + "created": 1610346629.982479, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 982.4790954589844, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15916.02110862732, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:29,982", + "created": 1610346629.982634, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 982.6340675354004, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15916.176080703735, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-client:", + "(5): 17 fc 16 3a 3e" + ], + "asctime": "2021-01-11 07:30:29,982", + "created": 1610346629.982904, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", + "module": "__init__", + "msecs": 982.9039573669434, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15916.445970535278, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(5): 17 fc 16 3a 3e" + ], + "asctime": "2021-01-11 07:30:29,983", + "created": 1610346629.983092, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", + "module": "__init__", + "msecs": 983.0920696258545, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15916.63408279419, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:29,983", + "created": 1610346629.983279, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 983.2789897918701, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15916.821002960205, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:29,983", + "created": 1610346629.983434, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 983.4339618682861, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15916.975975036621, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" + ], + "asctime": "2021-01-11 07:30:29,983", + "created": 1610346629.983755, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", + "module": "stp", + "msecs": 983.7551116943359, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15917.29712486267, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:09,337", - "created": 1609969749.337281, + "asctime": "2021-01-11 07:30:29,984", + "created": 1610346629.984147, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 445, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 337.2809886932373, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 984.1470718383789, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12502.096891403198, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 15917.689085006714, + "thread": 140632790132480, + "threadName": "Thread-27" }, { "args": [ - "SP server:", + "prot-server:", "__callback__" ], - "asctime": "2021-01-06 22:49:09,337", - "created": 1609969749.337339, + "asctime": "2021-01-11 07:30:29,984", + "created": 1610346629.984359, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __callback__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 337.338924407959, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 984.3590259552002, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12502.15482711792, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 15917.901039123535, + "thread": 140632790132480, + "threadName": "Thread-27" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: read data response, data_id: 0", "status: okay", "33" ], - "asctime": "2021-01-06 22:49:09,337", - "created": 1609969749.337404, + "asctime": "2021-01-11 07:30:29,984", + "created": 1610346629.984694, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "lineno": 445, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 337.4040126800537, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 984.6940040588379, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12502.219915390015, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,337", - "created": 1609969749.337531, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "module": "test_helpers", - "msecs": 337.53108978271484, - "msg": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12502.346992492676, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,337", - "created": 1609969749.337624, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "module": "test_helpers", - "msecs": 337.62407302856445, - "msg": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12502.439975738525, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 15918.236017227173, + "thread": 140632790132480, + "threadName": "Thread-27" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" + ], + "asctime": "2021-01-11 07:30:30,017", + "created": 1610346630.017922, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", + "module": "__init__", + "msecs": 17.921924591064453, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15951.4639377594, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" + ], + "asctime": "2021-01-11 07:30:30,018", + "created": 1610346630.018494, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", + "module": "__init__", + "msecs": 18.4938907623291, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15952.035903930664, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,018", + "created": 1610346630.018758, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 18.758058547973633, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15952.300071716309, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:30,019", + "created": 1610346630.019025, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 19.025087356567383, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15952.567100524902, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,019", + "created": 1610346630.019302, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 19.301891326904297, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15952.84390449524, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,019", + "created": 1610346630.019534, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 19.53411102294922, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15953.076124191284, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,019", + "created": 1610346630.019819, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 19.819021224975586, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15953.36103439331, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,020", + "created": 1610346630.020023, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 20.023107528686523, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15953.565120697021, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,020", + "created": 1610346630.020261, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 20.261049270629883, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15953.803062438965, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,020", + "created": 1610346630.020594, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 20.593881607055664, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15954.13589477539, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,020", + "created": 1610346630.020916, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 20.915985107421875, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15954.457998275757, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,021", + "created": 1610346630.021132, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 21.13199234008789, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15954.674005508423, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-server:", + "(5): 02 24 68 3a 3e" + ], + "asctime": "2021-01-11 07:30:30,021", + "created": 1610346630.021712, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (5): 02 24 68 3a 3e", + "module": "__init__", + "msecs": 21.712064743041992, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15955.254077911377, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-client:", + "(5): 02 24 68 3a 3e" + ], + "asctime": "2021-01-11 07:30:30,021", + "created": 1610346630.021967, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (5): 02 24 68 3a 3e", + "module": "__init__", + "msecs": 21.966934204101562, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15955.508947372437, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,022", + "created": 1610346630.022213, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 22.212982177734375, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15955.75499534607, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:30,022", + "created": 1610346630.022426, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 22.42588996887207, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15955.967903137207, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68" + ], + "asctime": "2021-01-11 07:30:30,022", + "created": 1610346630.022854, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", + "module": "stp", + "msecs": 22.854089736938477, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 15956.396102905273, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: read data response, data_id: 0", "status: okay", "33" ], - "asctime": "2021-01-06 22:49:09,337", - "created": 1609969749.337716, + "asctime": "2021-01-11 07:30:30,023", + "created": 1610346630.023351, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "lineno": 445, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 337.71610260009766, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 23.350954055786133, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12502.532005310059, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 15956.892967224121, + "thread": 140632781739776, + "threadName": "Thread-28" }, { "args": [ - "SP client:" + "prot-client:" ], - "asctime": "2021-01-06 22:49:09,337", - "created": 1609969749.337783, + "asctime": "2021-01-11 07:30:30,023", + "created": 1610346630.02368, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 337.7830982208252, + "msecs": 23.67997169494629, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12502.599000930786, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 15957.221984863281, + "thread": 140632781739776, + "threadName": "Thread-28" } ], - "msecs": 438.1599426269531, + "msecs": 154.07896041870117, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12602.975845336914, - "thread": 140012350113600, + "relativeCreated": 16087.620973587036, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.10037684440612793 + "time_consumption": 0.13039898872375488 }, { "args": [ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,439", - "created": 1609969749.439482, + "asctime": "2021-01-11 07:30:30,155", + "created": 1610346630.155271, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -44721,8 +95966,8 @@ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,438", - "created": 1609969749.43896, + "asctime": "2021-01-11 07:30:30,154", + "created": 1610346630.15473, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -44732,14 +95977,14 @@ "lineno": 22, "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", "module": "test", - "msecs": 438.96007537841797, + "msecs": 154.73008155822754, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12603.775978088379, - "thread": 140012350113600, + "relativeCreated": 16088.272094726562, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -44748,8 +95993,8 @@ "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,439", - "created": 1609969749.439262, + "asctime": "2021-01-11 07:30:30,155", + "created": 1610346630.155062, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -44759,35 +96004,35 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", "module": "test", - "msecs": 439.26191329956055, + "msecs": 155.0619602203369, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12604.077816009521, - "thread": 140012350113600, + "relativeCreated": 16088.603973388672, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 439.4819736480713, + "msecs": 155.27105331420898, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12604.297876358032, - "thread": 140012350113600, + "relativeCreated": 16088.813066482544, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0002200603485107422 + "time_consumption": 0.0002090930938720703 }, { "args": [ "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,440", - "created": 1609969749.440134, + "asctime": "2021-01-11 07:30:30,156", + "created": 1610346630.156308, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -44804,8 +96049,8 @@ "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,439", - "created": 1609969749.439789, + "asctime": "2021-01-11 07:30:30,155", + "created": 1610346630.155586, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -44815,14 +96060,14 @@ "lineno": 22, "message": "Result (Message received by client): {u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0} ()", "module": "test", - "msecs": 439.7890567779541, + "msecs": 155.58600425720215, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12604.604959487915, - "thread": 140012350113600, + "relativeCreated": 16089.128017425537, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -44831,8 +96076,8 @@ "{'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,439", - "created": 1609969749.439973, + "asctime": "2021-01-11 07:30:30,156", + "created": 1610346630.156006, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -44842,396 +96087,1178 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0} ()", "module": "test", - "msecs": 439.9731159210205, + "msecs": 156.0060977935791, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12604.789018630981, - "thread": 140012350113600, + "relativeCreated": 16089.548110961914, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 440.13404846191406, + "msecs": 156.30793571472168, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12604.949951171875, - "thread": 140012350113600, + "relativeCreated": 16089.849948883057, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0001609325408935547 + "time_consumption": 0.0003018379211425781 }, { "args": [], - "asctime": "2021-01-06 22:49:09,440", - "created": 1609969749.440632, + "asctime": "2021-01-11 07:30:30,157", + "created": 1610346630.157197, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 184, + "lineno": 185, "message": "Removing Callback for a specific Data- and Service-ID", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "'__callback__'", "10", "0" ], - "asctime": "2021-01-06 22:49:09,440", - "created": 1609969749.440453, + "asctime": "2021-01-11 07:30:30,156", + "created": 1610346630.156863, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "WARNING", "levelno": 30, - "lineno": 154, - "message": "SP server: Deleting existing callback '__callback__' for service_id (10) and data_id (0)!", + "lineno": 164, + "message": "prot-server: Deleting existing callback '__callback__' for service_id (10) and data_id (0)!", "module": "__init__", - "msecs": 440.45305252075195, + "msecs": 156.86297416687012, "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12605.268955230713, - "thread": 140012350113600, + "relativeCreated": 16090.404987335205, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 440.6321048736572, + "msecs": 157.1969985961914, "msg": "Removing Callback for a specific Data- and Service-ID", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12605.448007583618, - "thread": 140012350113600, + "relativeCreated": 16090.739011764526, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00017905235290527344 + "time_consumption": 0.00033402442932128906 }, { "args": [], - "asctime": "2021-01-06 22:49:09,544", - "created": 1609969749.544055, + "asctime": "2021-01-11 07:30:30,359", + "created": 1610346630.359458, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 187, + "lineno": 188, "message": "Transfering data", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:09,440", - "created": 1609969749.440911, + "asctime": "2021-01-11 07:30:30,157", + "created": 1610346630.157787, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 445, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 440.91105461120605, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 157.78708457946777, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12605.726957321167, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,441", - "created": 1609969749.441349, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "test_helpers", - "msecs": 441.3490295410156, - "msg": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12606.164932250977, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,441", - "created": 1609969749.441626, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "test_helpers", - "msecs": 441.62607192993164, - "msg": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12606.441974639893, - "thread": 140012350113600, + "relativeCreated": 16091.329097747803, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" + ], + "asctime": "2021-01-11 07:30:30,186", + "created": 1610346630.186156, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", + "module": "__init__", + "msecs": 186.1560344696045, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16119.69804763794, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" + ], + "asctime": "2021-01-11 07:30:30,186", + "created": 1610346630.186687, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", + "module": "__init__", + "msecs": 186.68699264526367, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16120.229005813599, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,186", + "created": 1610346630.186943, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 186.94305419921875, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16120.485067367554, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:30,187", + "created": 1610346630.187262, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 187.26205825805664, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16120.804071426392, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,187", + "created": 1610346630.187619, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 187.61897087097168, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16121.160984039307, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,187", + "created": 1610346630.187862, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 187.86191940307617, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16121.403932571411, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,188", + "created": 1610346630.188199, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 188.19904327392578, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16121.74105644226, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,188", + "created": 1610346630.188431, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 188.4310245513916, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16121.973037719727, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,188", + "created": 1610346630.188854, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 188.85397911071777, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16122.395992279053, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,189", + "created": 1610346630.18912, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 189.12005424499512, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16122.66206741333, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,189", + "created": 1610346630.189293, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 189.29290771484375, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16122.834920883179, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,189", + "created": 1610346630.189417, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 189.41688537597656, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16122.958898544312, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-client:", + "(5): 17 fc 16 3a 3e" + ], + "asctime": "2021-01-11 07:30:30,189", + "created": 1610346630.189644, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", + "module": "__init__", + "msecs": 189.64409828186035, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16123.186111450195, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(5): 17 fc 16 3a 3e" + ], + "asctime": "2021-01-11 07:30:30,189", + "created": 1610346630.189795, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", + "module": "__init__", + "msecs": 189.79501724243164, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16123.337030410767, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,189", + "created": 1610346630.189933, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 189.93306159973145, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16123.475074768066, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:30,190", + "created": 1610346630.19006, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 190.05990028381348, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16123.601913452148, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" + ], + "asctime": "2021-01-11 07:30:30,190", + "created": 1610346630.19033, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", + "module": "stp", + "msecs": 190.33002853393555, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16123.87204170227, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:09,441", - "created": 1609969749.441901, + "asctime": "2021-01-11 07:30:30,190", + "created": 1610346630.190692, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 445, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 441.90096855163574, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 190.69194793701172, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12606.716871261597, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 16124.233961105347, + "thread": 140632790132480, + "threadName": "Thread-27" }, { "args": [ - "SP server:", + "prot-server:", "__callback1__" ], - "asctime": "2021-01-06 22:49:09,442", - "created": 1609969749.442075, + "asctime": "2021-01-11 07:30:30,190", + "created": 1610346630.190958, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __callback1__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __callback1__ to process received data", "module": "__init__", - "msecs": 442.0750141143799, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 190.95802307128906, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12606.89091682434, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 16124.500036239624, + "thread": 140632790132480, + "threadName": "Thread-27" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: read data response, data_id: 0", "status: operation not permitted", "34" ], - "asctime": "2021-01-06 22:49:09,442", - "created": 1609969749.442241, + "asctime": "2021-01-11 07:30:30,191", + "created": 1610346630.191168, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: read data response, data_id: 0, status: operation not permitted, data: \"34\"", - "module": "__init__", - "msecs": 442.24095344543457, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12607.056856155396, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,442", - "created": 1609969749.442686, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 46 3f 83 36", - "module": "test_helpers", - "msecs": 442.6860809326172, - "msg": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 46 3f 83 36", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12607.501983642578, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,442", - "created": 1609969749.442979, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 46 3f 83 36", - "module": "test_helpers", - "msecs": 442.979097366333, - "msg": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 46 3f 83 36", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12607.795000076294, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: read data response, data_id: 0", - "status: operation not permitted", - "34" - ], - "asctime": "2021-01-06 22:49:09,443", - "created": 1609969749.443209, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: read data response, data_id: 0, status: operation not permitted, data: \"34\"", - "module": "__init__", - "msecs": 443.2089328765869, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12608.024835586548, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "status: operation not permitted" - ], - "asctime": "2021-01-06 22:49:09,443", - "created": 1609969749.443357, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: operation not permitted", + "lineno": 445, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: operation not permitted, data: \"34\"", "module": "__init__", - "msecs": 443.356990814209, - "msg": "%s RX <- Message has a peculiar status: %s", + "msecs": 191.16806983947754, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12608.17289352417, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 16124.710083007812, + "thread": 140632790132480, + "threadName": "Thread-27" }, { "args": [ - "SP client:" + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 46" ], - "asctime": "2021-01-06 22:49:09,443", - "created": 1609969749.443526, + "asctime": "2021-01-11 07:30:30,225", + "created": 1610346630.225169, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 46", + "module": "__init__", + "msecs": 225.16894340515137, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16158.710956573486, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 46" + ], + "asctime": "2021-01-11 07:30:30,225", + "created": 1610346630.225745, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 46", + "module": "__init__", + "msecs": 225.74496269226074, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16159.286975860596, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,226", + "created": 1610346630.226138, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 226.13811492919922, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16159.680128097534, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:30,226", + "created": 1610346630.226791, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 226.7909049987793, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16160.332918167114, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,227", + "created": 1610346630.227066, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 227.0660400390625, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16160.608053207397, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,227", + "created": 1610346630.227283, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 227.28300094604492, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16160.82501411438, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,227", + "created": 1610346630.227575, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 227.57506370544434, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16161.11707687378, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,227", + "created": 1610346630.227773, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 227.77295112609863, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16161.314964294434, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,228", + "created": 1610346630.228037, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 228.03711891174316, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16161.579132080078, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,228", + "created": 1610346630.228294, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 228.29389572143555, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16161.83590888977, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,228", + "created": 1610346630.228629, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 228.62911224365234, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16162.171125411987, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,228", + "created": 1610346630.228874, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 228.87396812438965, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16162.415981292725, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-server:", + "(5): 3f 83 36 3a 3e" + ], + "asctime": "2021-01-11 07:30:30,229", + "created": 1610346630.229518, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (5): 3f 83 36 3a 3e", + "module": "__init__", + "msecs": 229.51793670654297, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16163.059949874878, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-client:", + "(5): 3f 83 36 3a 3e" + ], + "asctime": "2021-01-11 07:30:30,229", + "created": 1610346630.22988, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (5): 3f 83 36 3a 3e", + "module": "__init__", + "msecs": 229.88009452819824, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16163.422107696533, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,230", + "created": 1610346630.230173, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 230.17311096191406, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16163.715124130249, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:30,230", + "created": 1610346630.23045, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 230.44991493225098, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16163.991928100586, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + "(61): 7b 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 46 3f 83 36" + ], + "asctime": "2021-01-11 07:30:30,230", + "created": 1610346630.230933, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 46 3f 83 36", + "module": "stp", + "msecs": 230.93295097351074, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16164.474964141846, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: read data response, data_id: 0", + "status: operation not permitted", + "34" + ], + "asctime": "2021-01-11 07:30:30,231", + "created": 1610346630.231447, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "WARNING", + "levelno": 30, + "lineno": 445, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: operation not permitted, data: \"34\"", + "module": "__init__", + "msecs": 231.4469814300537, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16164.988994598389, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:30,231", + "created": 1610346630.231784, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 443.526029586792, + "msecs": 231.78410530090332, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12608.341932296753, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 16165.326118469238, + "thread": 140632781739776, + "threadName": "Thread-28" } ], - "msecs": 544.0549850463867, + "msecs": 359.45796966552734, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12708.870887756348, - "thread": 140012350113600, + "relativeCreated": 16292.999982833862, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.10052895545959473 + "time_consumption": 0.12767386436462402 }, { "args": [ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,545", - "created": 1609969749.545742, + "asctime": "2021-01-11 07:30:30,360", + "created": 1610346630.360743, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -45248,8 +97275,8 @@ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,544", - "created": 1609969749.544985, + "asctime": "2021-01-11 07:30:30,360", + "created": 1610346630.360269, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -45259,14 +97286,14 @@ "lineno": 22, "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", "module": "test", - "msecs": 544.9850559234619, + "msecs": 360.26906967163086, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12709.800958633423, - "thread": 140012350113600, + "relativeCreated": 16293.811082839966, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -45275,8 +97302,8 @@ "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,545", - "created": 1609969749.545443, + "asctime": "2021-01-11 07:30:30,360", + "created": 1610346630.360518, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -45286,35 +97313,35 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", "module": "test", - "msecs": 545.443058013916, + "msecs": 360.5179786682129, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12710.258960723877, - "thread": 140012350113600, + "relativeCreated": 16294.059991836548, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 545.7420349121094, + "msecs": 360.74304580688477, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12710.55793762207, - "thread": 140012350113600, + "relativeCreated": 16294.28505897522, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0002989768981933594 + "time_consumption": 0.000225067138671875 }, { "args": [ "{u'status': 6, u'service_id': 11, u'data': 34, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,546", - "created": 1609969749.546763, + "asctime": "2021-01-11 07:30:30,361", + "created": 1610346630.361544, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -45331,8 +97358,8 @@ "{u'status': 6, u'service_id': 11, u'data': 34, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,546", - "created": 1609969749.54626, + "asctime": "2021-01-11 07:30:30,361", + "created": 1610346630.361166, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -45342,14 +97369,14 @@ "lineno": 22, "message": "Result (Message received by client): {u'status': 6, u'service_id': 11, u'data': 34, u'data_id': 0} ()", "module": "test", - "msecs": 546.2601184844971, + "msecs": 361.16600036621094, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12711.076021194458, - "thread": 140012350113600, + "relativeCreated": 16294.708013534546, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -45358,8 +97385,8 @@ "{'status': 6, 'service_id': 11, 'data': 34, 'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,546", - "created": 1609969749.546541, + "asctime": "2021-01-11 07:30:30,361", + "created": 1610346630.361341, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -45369,396 +97396,1178 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'status': 6, 'service_id': 11, 'data': 34, 'data_id': 0} ()", "module": "test", - "msecs": 546.5409755706787, + "msecs": 361.3409996032715, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12711.35687828064, - "thread": 140012350113600, + "relativeCreated": 16294.883012771606, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 546.7629432678223, + "msecs": 361.5438938140869, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12711.578845977783, - "thread": 140012350113600, + "relativeCreated": 16295.085906982422, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0002219676971435547 + "time_consumption": 0.0002028942108154297 }, { "args": [], - "asctime": "2021-01-06 22:49:09,547", - "created": 1609969749.547432, + "asctime": "2021-01-11 07:30:30,362", + "created": 1610346630.362071, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 193, + "lineno": 194, "message": "Removing Callback for a specific Service-ID and all Data-IDs", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "'__callback1__'", "10", "None" ], - "asctime": "2021-01-06 22:49:09,547", - "created": 1609969749.547199, + "asctime": "2021-01-11 07:30:30,361", + "created": 1610346630.36184, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "WARNING", "levelno": 30, - "lineno": 154, - "message": "SP server: Deleting existing callback '__callback1__' for service_id (10) and data_id (None)!", + "lineno": 164, + "message": "prot-server: Deleting existing callback '__callback1__' for service_id (10) and data_id (None)!", "module": "__init__", - "msecs": 547.199010848999, + "msecs": 361.84000968933105, "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12712.01491355896, - "thread": 140012350113600, + "relativeCreated": 16295.382022857666, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 547.4319458007812, + "msecs": 362.07103729248047, "msg": "Removing Callback for a specific Service-ID and all Data-IDs", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12712.247848510742, - "thread": 140012350113600, + "relativeCreated": 16295.613050460815, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.00023293495178222656 + "time_consumption": 0.00023102760314941406 }, { "args": [], - "asctime": "2021-01-06 22:49:09,651", - "created": 1609969749.651893, + "asctime": "2021-01-11 07:30:30,563", + "created": 1610346630.563311, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 196, + "lineno": 197, "message": "Transfering data", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:09,547", - "created": 1609969749.547826, + "asctime": "2021-01-11 07:30:30,362", + "created": 1610346630.362353, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 445, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 547.8260517120361, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 362.3530864715576, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12712.641954421997, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,548", - "created": 1609969749.548428, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "test_helpers", - "msecs": 548.4280586242676, - "msg": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12713.243961334229, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,548", - "created": 1609969749.548805, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "test_helpers", - "msecs": 548.8049983978271, - "msg": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12713.620901107788, - "thread": 140012350113600, + "relativeCreated": 16295.895099639893, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" + ], + "asctime": "2021-01-11 07:30:30,392", + "created": 1610346630.392563, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", + "module": "__init__", + "msecs": 392.5631046295166, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16326.105117797852, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" + ], + "asctime": "2021-01-11 07:30:30,393", + "created": 1610346630.393275, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", + "module": "__init__", + "msecs": 393.27502250671387, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16326.817035675049, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,393", + "created": 1610346630.393578, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 393.57805252075195, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16327.120065689087, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:30,393", + "created": 1610346630.393801, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 393.8009738922119, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16327.342987060547, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,394", + "created": 1610346630.394205, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 394.20509338378906, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16327.747106552124, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,394", + "created": 1610346630.394391, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 394.3910598754883, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16327.933073043823, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,394", + "created": 1610346630.394626, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 394.6259021759033, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16328.167915344238, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,394", + "created": 1610346630.394784, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 394.78397369384766, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16328.325986862183, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,394", + "created": 1610346630.394982, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 394.98209953308105, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16328.524112701416, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,395", + "created": 1610346630.395152, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 395.15209197998047, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16328.694105148315, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,395", + "created": 1610346630.395359, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 395.3590393066406, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16328.901052474976, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,395", + "created": 1610346630.395522, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 395.5221176147461, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16329.064130783081, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-client:", + "(5): 17 fc 16 3a 3e" + ], + "asctime": "2021-01-11 07:30:30,395", + "created": 1610346630.395761, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", + "module": "__init__", + "msecs": 395.76101303100586, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16329.30302619934, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(5): 17 fc 16 3a 3e" + ], + "asctime": "2021-01-11 07:30:30,395", + "created": 1610346630.395947, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", + "module": "__init__", + "msecs": 395.9469795227051, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16329.48899269104, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,396", + "created": 1610346630.396124, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 396.12388610839844, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16329.665899276733, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:30,396", + "created": 1610346630.396288, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 396.2879180908203, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16329.829931259155, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" + ], + "asctime": "2021-01-11 07:30:30,396", + "created": 1610346630.396623, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", + "module": "stp", + "msecs": 396.622896194458, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16330.164909362793, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:09,549", - "created": 1609969749.549256, + "asctime": "2021-01-11 07:30:30,397", + "created": 1610346630.397128, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 445, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 549.2560863494873, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 397.1281051635742, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12714.071989059448, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 16330.67011833191, + "thread": 140632790132480, + "threadName": "Thread-27" }, { "args": [ - "SP server:", + "prot-server:", "__callback2__" ], - "asctime": "2021-01-06 22:49:09,549", - "created": 1609969749.549527, + "asctime": "2021-01-11 07:30:30,397", + "created": 1610346630.397246, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __callback2__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __callback2__ to process received data", "module": "__init__", - "msecs": 549.5269298553467, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 397.2458839416504, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12714.342832565308, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 16330.787897109985, + "thread": 140632790132480, + "threadName": "Thread-27" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: read data response, data_id: 0", "status: operation not permitted", "35" ], - "asctime": "2021-01-06 22:49:09,549", - "created": 1609969749.549839, + "asctime": "2021-01-11 07:30:30,397", + "created": 1610346630.397374, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: read data response, data_id: 0, status: operation not permitted, data: \"35\"", - "module": "__init__", - "msecs": 549.8390197753906, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12714.654922485352, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,550", - "created": 1609969749.550239, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e8 57 12 a7", - "module": "test_helpers", - "msecs": 550.239086151123, - "msg": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e8 57 12 a7", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12715.054988861084, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,550", - "created": 1609969749.550529, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e8 57 12 a7", - "module": "test_helpers", - "msecs": 550.5290031433105, - "msg": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e8 57 12 a7", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12715.344905853271, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: read data response, data_id: 0", - "status: operation not permitted", - "35" - ], - "asctime": "2021-01-06 22:49:09,550", - "created": 1609969749.550947, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: read data response, data_id: 0, status: operation not permitted, data: \"35\"", - "module": "__init__", - "msecs": 550.9469509124756, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12715.762853622437, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "status: operation not permitted" - ], - "asctime": "2021-01-06 22:49:09,551", - "created": 1609969749.551178, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: operation not permitted", + "lineno": 445, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: operation not permitted, data: \"35\"", "module": "__init__", - "msecs": 551.177978515625, - "msg": "%s RX <- Message has a peculiar status: %s", + "msecs": 397.37391471862793, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12715.993881225586, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 16330.915927886963, + "thread": 140632790132480, + "threadName": "Thread-27" }, { "args": [ - "SP client:" + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e8" ], - "asctime": "2021-01-06 22:49:09,551", - "created": 1609969749.5514, + "asctime": "2021-01-11 07:30:30,434", + "created": 1610346630.434062, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e8", + "module": "__init__", + "msecs": 434.06200408935547, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16367.60401725769, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e8" + ], + "asctime": "2021-01-11 07:30:30,434", + "created": 1610346630.434856, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e8", + "module": "__init__", + "msecs": 434.8559379577637, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16368.397951126099, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,435", + "created": 1610346630.435183, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 435.183048248291, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16368.725061416626, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:30,435", + "created": 1610346630.435474, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 435.4739189147949, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16369.01593208313, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,435", + "created": 1610346630.435801, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 435.80102920532227, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16369.343042373657, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,436", + "created": 1610346630.436036, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 436.0361099243164, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16369.578123092651, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,436", + "created": 1610346630.436377, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 436.37704849243164, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16369.919061660767, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,436", + "created": 1610346630.436635, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 436.63501739501953, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16370.177030563354, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,436", + "created": 1610346630.436957, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 436.95688247680664, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16370.498895645142, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,437", + "created": 1610346630.437175, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 437.17503547668457, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16370.71704864502, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,437", + "created": 1610346630.437631, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 437.63089179992676, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16371.172904968262, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,437", + "created": 1610346630.437958, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 437.9580020904541, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16371.500015258789, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-server:", + "(5): 57 12 a7 3a 3e" + ], + "asctime": "2021-01-11 07:30:30,438", + "created": 1610346630.438408, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (5): 57 12 a7 3a 3e", + "module": "__init__", + "msecs": 438.40789794921875, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16371.949911117554, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-client:", + "(5): 57 12 a7 3a 3e" + ], + "asctime": "2021-01-11 07:30:30,438", + "created": 1610346630.438696, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (5): 57 12 a7 3a 3e", + "module": "__init__", + "msecs": 438.69590759277344, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16372.237920761108, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,438", + "created": 1610346630.438926, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 438.92598152160645, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16372.467994689941, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:30,439", + "created": 1610346630.439124, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 439.12410736083984, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16372.666120529175, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + "(61): 7b 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e8 57 12 a7" + ], + "asctime": "2021-01-11 07:30:30,439", + "created": 1610346630.439546, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e8 57 12 a7", + "module": "stp", + "msecs": 439.5461082458496, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16373.088121414185, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: read data response, data_id: 0", + "status: operation not permitted", + "35" + ], + "asctime": "2021-01-11 07:30:30,440", + "created": 1610346630.440044, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "WARNING", + "levelno": 30, + "lineno": 445, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: operation not permitted, data: \"35\"", + "module": "__init__", + "msecs": 440.0439262390137, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16373.585939407349, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:30,440", + "created": 1610346630.440322, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 551.3999462127686, + "msecs": 440.3219223022461, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12716.21584892273, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 16373.863935470581, + "thread": 140632781739776, + "threadName": "Thread-28" } ], - "msecs": 651.892900466919, + "msecs": 563.3111000061035, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12816.70880317688, - "thread": 140012350113600, + "relativeCreated": 16496.85311317444, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.10049295425415039 + "time_consumption": 0.12298917770385742 }, { "args": [ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,653", - "created": 1609969749.653324, + "asctime": "2021-01-11 07:30:30,564", + "created": 1610346630.564671, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -45775,8 +98584,8 @@ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,652", - "created": 1609969749.652644, + "asctime": "2021-01-11 07:30:30,564", + "created": 1610346630.564159, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -45786,14 +98595,14 @@ "lineno": 22, "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", "module": "test", - "msecs": 652.6439189910889, + "msecs": 564.1589164733887, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12817.45982170105, - "thread": 140012350113600, + "relativeCreated": 16497.700929641724, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -45802,8 +98611,8 @@ "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,652", - "created": 1609969749.652989, + "asctime": "2021-01-11 07:30:30,564", + "created": 1610346630.564421, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -45813,35 +98622,35 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", "module": "test", - "msecs": 652.9889106750488, + "msecs": 564.4209384918213, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12817.80481338501, - "thread": 140012350113600, + "relativeCreated": 16497.962951660156, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 653.3238887786865, + "msecs": 564.6710395812988, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12818.139791488647, - "thread": 140012350113600, + "relativeCreated": 16498.213052749634, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0003349781036376953 + "time_consumption": 0.00025010108947753906 }, { "args": [ "{u'status': 6, u'service_id': 11, u'data': 35, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,654", - "created": 1609969749.654553, + "asctime": "2021-01-11 07:30:30,565", + "created": 1610346630.565496, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -45858,8 +98667,8 @@ "{u'status': 6, u'service_id': 11, u'data': 35, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,653", - "created": 1609969749.653858, + "asctime": "2021-01-11 07:30:30,565", + "created": 1610346630.565081, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -45869,14 +98678,14 @@ "lineno": 22, "message": "Result (Message received by client): {u'status': 6, u'service_id': 11, u'data': 35, u'data_id': 0} ()", "module": "test", - "msecs": 653.857946395874, + "msecs": 565.0808811187744, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12818.673849105835, - "thread": 140012350113600, + "relativeCreated": 16498.62289428711, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -45885,8 +98694,8 @@ "{'status': 6, 'service_id': 11, 'data': 35, 'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,654", - "created": 1609969749.654213, + "asctime": "2021-01-11 07:30:30,565", + "created": 1610346630.565267, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -45896,370 +98705,1178 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'status': 6, 'service_id': 11, 'data': 35, 'data_id': 0} ()", "module": "test", - "msecs": 654.2129516601562, + "msecs": 565.2670860290527, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12819.028854370117, - "thread": 140012350113600, + "relativeCreated": 16498.809099197388, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 654.5529365539551, + "msecs": 565.4959678649902, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12819.368839263916, - "thread": 140012350113600, + "relativeCreated": 16499.037981033325, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0003399848937988281 + "time_consumption": 0.0002288818359375 }, { "args": [], - "asctime": "2021-01-06 22:49:09,655", - "created": 1609969749.655438, + "asctime": "2021-01-11 07:30:30,566", + "created": 1610346630.566003, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 202, + "lineno": 203, "message": "Removing Callback for a specific Data-ID and all Serice-IDs", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "'__callback2__'", "None", "0" ], - "asctime": "2021-01-06 22:49:09,655", - "created": 1609969749.655111, + "asctime": "2021-01-11 07:30:30,565", + "created": 1610346630.565822, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "WARNING", "levelno": 30, - "lineno": 154, - "message": "SP server: Deleting existing callback '__callback2__' for service_id (None) and data_id (0)!", + "lineno": 164, + "message": "prot-server: Deleting existing callback '__callback2__' for service_id (None) and data_id (0)!", "module": "__init__", - "msecs": 655.1110744476318, + "msecs": 565.8218860626221, "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12819.926977157593, - "thread": 140012350113600, + "relativeCreated": 16499.363899230957, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 655.4379463195801, + "msecs": 566.0030841827393, "msg": "Removing Callback for a specific Data-ID and all Serice-IDs", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12820.253849029541, - "thread": 140012350113600, + "relativeCreated": 16499.545097351074, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0003268718719482422 + "time_consumption": 0.0001811981201171875 }, { "args": [], - "asctime": "2021-01-06 22:49:09,760", - "created": 1609969749.760868, + "asctime": "2021-01-11 07:30:30,767", + "created": 1610346630.767708, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 205, + "lineno": 206, "message": "Transfering data", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:09,655", - "created": 1609969749.655987, + "asctime": "2021-01-11 07:30:30,566", + "created": 1610346630.56658, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP client: TX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 445, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 655.987024307251, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 566.580057144165, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12820.802927017212, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,656", - "created": 1609969749.656756, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "test_helpers", - "msecs": 656.7559242248535, - "msg": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12821.571826934814, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,657", - "created": 1609969749.657286, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "test_helpers", - "msecs": 657.2859287261963, - "msg": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12822.101831436157, - "thread": 140012350113600, + "relativeCreated": 16500.1220703125, + "thread": 140634736203584, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" + ], + "asctime": "2021-01-11 07:30:30,598", + "created": 1610346630.598406, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", + "module": "__init__", + "msecs": 598.4060764312744, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16531.94808959961, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" + ], + "asctime": "2021-01-11 07:30:30,598", + "created": 1610346630.598974, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", + "module": "__init__", + "msecs": 598.9739894866943, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16532.51600265503, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,599", + "created": 1610346630.599296, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 599.2960929870605, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16532.838106155396, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:30,599", + "created": 1610346630.59953, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 599.5299816131592, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16533.071994781494, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,599", + "created": 1610346630.59979, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 599.790096282959, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16533.332109451294, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,599", + "created": 1610346630.599988, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 599.9879837036133, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16533.52999687195, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,600", + "created": 1610346630.600286, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 600.2860069274902, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16533.828020095825, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,600", + "created": 1610346630.600485, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 600.48508644104, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16534.027099609375, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,600", + "created": 1610346630.60083, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 600.830078125, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16534.372091293335, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,601", + "created": 1610346630.60105, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 601.0499000549316, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16534.591913223267, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,601", + "created": 1610346630.601319, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 601.3190746307373, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16534.861087799072, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,601", + "created": 1610346630.601554, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 601.5539169311523, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16535.095930099487, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-client:", + "(5): 17 fc 16 3a 3e" + ], + "asctime": "2021-01-11 07:30:30,601", + "created": 1610346630.60188, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", + "module": "__init__", + "msecs": 601.8800735473633, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16535.4220867157, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(5): 17 fc 16 3a 3e" + ], + "asctime": "2021-01-11 07:30:30,602", + "created": 1610346630.602324, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", + "module": "__init__", + "msecs": 602.3240089416504, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16535.866022109985, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,602", + "created": 1610346630.602549, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 602.5490760803223, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16536.091089248657, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:30,602", + "created": 1610346630.602776, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 602.776050567627, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16536.318063735962, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" + ], + "asctime": "2021-01-11 07:30:30,603", + "created": 1610346630.603614, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", + "module": "stp", + "msecs": 603.614091873169, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16537.156105041504, + "thread": 140632790132480, + "threadName": "Thread-27" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:09,657", - "created": 1609969749.657708, + "asctime": "2021-01-11 07:30:30,604", + "created": 1610346630.60407, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 445, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 657.707929611206, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 604.0699481964111, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12822.523832321167, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 16537.611961364746, + "thread": 140632790132480, + "threadName": "Thread-27" }, { "args": [ - "SP server:", + "prot-server:", "__callback3__" ], - "asctime": "2021-01-06 22:49:09,658", - "created": 1609969749.658056, + "asctime": "2021-01-11 07:30:30,604", + "created": 1610346630.604336, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __callback3__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __callback3__ to process received data", "module": "__init__", - "msecs": 658.0560207366943, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 604.3360233306885, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12822.871923446655, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 16537.878036499023, + "thread": 140632790132480, + "threadName": "Thread-27" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: read data response, data_id: 0", "status: okay", "36" ], - "asctime": "2021-01-06 22:49:09,658", - "created": 1609969749.658299, + "asctime": "2021-01-11 07:30:30,604", + "created": 1610346630.604933, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 719, - "message": "SP server: TX <- service: read data response, data_id: 0, status: okay, data: \"36\"", + "lineno": 445, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"36\"", "module": "__init__", - "msecs": 658.2989692687988, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 604.9330234527588, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12823.11487197876, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,658", - "created": 1609969749.65881, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 1a 5b f9 7e", - "module": "test_helpers", - "msecs": 658.8099002838135, - "msg": "Send data: (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 1a 5b f9 7e", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12823.625802993774, - "thread": 140012350113600, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:09,659", - "created": 1609969749.65929, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 1a 5b f9 7e", - "module": "test_helpers", - "msecs": 659.290075302124, - "msg": "Receive data (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 1a 5b f9 7e", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125831, - "processName": "MainProcess", - "relativeCreated": 12824.105978012085, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 16538.475036621094, + "thread": 140632790132480, + "threadName": "Thread-27" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 1a" + ], + "asctime": "2021-01-11 07:30:30,641", + "created": 1610346630.641298, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 1a", + "module": "__init__", + "msecs": 641.2980556488037, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16574.84006881714, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 1a" + ], + "asctime": "2021-01-11 07:30:30,642", + "created": 1610346630.642096, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 1a", + "module": "__init__", + "msecs": 642.0960426330566, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16575.63805580139, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,642", + "created": 1610346630.642386, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 642.3859596252441, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16575.92797279358, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:30,642", + "created": 1610346630.642586, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 642.5859928131104, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16576.128005981445, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,642", + "created": 1610346630.642826, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 642.8260803222656, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16576.3680934906, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,643", + "created": 1610346630.643367, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 643.3670520782471, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16576.909065246582, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,643", + "created": 1610346630.643625, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 643.625020980835, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16577.16703414917, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,643", + "created": 1610346630.643792, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 643.791913986206, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16577.33392715454, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,644", + "created": 1610346630.644041, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 644.0410614013672, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16577.583074569702, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,644", + "created": 1610346630.644272, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 644.2720890045166, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16577.81410217285, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,644", + "created": 1610346630.644467, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 644.4671154022217, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16578.009128570557, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:30,644", + "created": 1610346630.644645, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 644.6449756622314, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16578.186988830566, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-server:", + "(5): 5b f9 7e 3a 3e" + ], + "asctime": "2021-01-11 07:30:30,644", + "created": 1610346630.644874, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (5): 5b f9 7e 3a 3e", + "module": "__init__", + "msecs": 644.874095916748, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16578.416109085083, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-client:", + "(5): 5b f9 7e 3a 3e" + ], + "asctime": "2021-01-11 07:30:30,645", + "created": 1610346630.645061, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (5): 5b f9 7e 3a 3e", + "module": "__init__", + "msecs": 645.0610160827637, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16578.6030292511, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:30,645", + "created": 1610346630.645295, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 645.2949047088623, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16578.836917877197, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:30,645", + "created": 1610346630.645541, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 645.5409526824951, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16579.08296585083, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + "(61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 1a 5b f9 7e" + ], + "asctime": "2021-01-11 07:30:30,646", + "created": 1610346630.646065, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 1a 5b f9 7e", + "module": "stp", + "msecs": 646.0649967193604, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25380, + "processName": "MainProcess", + "relativeCreated": 16579.607009887695, + "thread": 140632781739776, + "threadName": "Thread-28" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: read data response, data_id: 0", "status: okay", "36" ], - "asctime": "2021-01-06 22:49:09,659", - "created": 1609969749.6598, + "asctime": "2021-01-11 07:30:30,646", + "created": 1610346630.646441, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "SP client: RX <- service: read data response, data_id: 0, status: okay, data: \"36\"", + "lineno": 445, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"36\"", "module": "__init__", - "msecs": 659.8000526428223, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 646.4409828186035, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12824.615955352783, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 16579.98299598694, + "thread": 140632781739776, + "threadName": "Thread-28" }, { "args": [ - "SP client:" + "prot-client:" ], - "asctime": "2021-01-06 22:49:09,660", - "created": 1609969749.66016, + "asctime": "2021-01-11 07:30:30,646", + "created": 1610346630.646677, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 660.1600646972656, + "msecs": 646.6770172119141, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12824.975967407227, - "thread": 140012350113600, - "threadName": "MainThread" + "relativeCreated": 16580.21903038025, + "thread": 140632781739776, + "threadName": "Thread-28" } ], - "msecs": 760.8680725097656, + "msecs": 767.7080631256104, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12925.683975219727, - "thread": 140012350113600, + "relativeCreated": 16701.250076293945, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.1007080078125 + "time_consumption": 0.12103104591369629 }, { "args": [ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,762", - "created": 1609969749.762912, + "asctime": "2021-01-11 07:30:30,768", + "created": 1610346630.768997, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -46276,8 +99893,8 @@ "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,762", - "created": 1609969749.76208, + "asctime": "2021-01-11 07:30:30,768", + "created": 1610346630.768449, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -46287,14 +99904,14 @@ "lineno": 22, "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", "module": "test", - "msecs": 762.0799541473389, + "msecs": 768.449068069458, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12926.8958568573, - "thread": 140012350113600, + "relativeCreated": 16701.991081237793, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -46303,8 +99920,8 @@ "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,762", - "created": 1609969749.762592, + "asctime": "2021-01-11 07:30:30,768", + "created": 1610346630.768725, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -46314,35 +99931,35 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", "module": "test", - "msecs": 762.592077255249, + "msecs": 768.7249183654785, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12927.40797996521, - "thread": 140012350113600, + "relativeCreated": 16702.266931533813, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 762.9120349884033, + "msecs": 768.9969539642334, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12927.727937698364, - "thread": 140012350113600, + "relativeCreated": 16702.53896713257, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.0003199577331542969 + "time_consumption": 0.0002720355987548828 }, { "args": [ "{u'status': 0, u'service_id': 11, u'data': 36, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,763", - "created": 1609969749.763963, + "asctime": "2021-01-11 07:30:30,770", + "created": 1610346630.770441, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -46359,8 +99976,8 @@ "{u'status': 0, u'service_id': 11, u'data': 36, u'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,763", - "created": 1609969749.763354, + "asctime": "2021-01-11 07:30:30,769", + "created": 1610346630.769522, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -46370,14 +99987,14 @@ "lineno": 22, "message": "Result (Message received by client): {u'status': 0, u'service_id': 11, u'data': 36, u'data_id': 0} ()", "module": "test", - "msecs": 763.3540630340576, + "msecs": 769.521951675415, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12928.169965744019, - "thread": 140012350113600, + "relativeCreated": 16703.06396484375, + "thread": 140634736203584, "threadName": "MainThread" }, { @@ -46386,8 +100003,8 @@ "{'status': 0, 'service_id': 11, 'data': 36, 'data_id': 0}", "" ], - "asctime": "2021-01-06 22:49:09,763", - "created": 1609969749.763654, + "asctime": "2021-01-11 07:30:30,770", + "created": 1610346630.770023, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -46397,38 +100014,38 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'status': 0, 'service_id': 11, 'data': 36, 'data_id': 0} ()", "module": "test", - "msecs": 763.6539936065674, + "msecs": 770.0231075286865, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12928.469896316528, - "thread": 140012350113600, + "relativeCreated": 16703.56512069702, + "thread": 140634736203584, "threadName": "MainThread" } ], - "msecs": 763.962984085083, + "msecs": 770.4410552978516, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125831, + "process": 25380, "processName": "MainProcess", - "relativeCreated": 12928.778886795044, - "thread": 140012350113600, + "relativeCreated": 16703.983068466187, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.000308990478515625 + "time_consumption": 0.00041794776916503906 } ], - "thread": 140012350113600, + "thread": 140634736203584, "threadName": "MainThread", - "time_consumption": 0.42955899238586426, - "time_finished": "2021-01-06 22:49:09,763", - "time_start": "2021-01-06 22:49:09,334" + "time_consumption": 1.1755900382995605, + "time_finished": "2021-01-11 07:30:30,770", + "time_start": "2021-01-11 07:30:29,594" } }, "testrun_id": "p2", - "time_consumption": 13.640483617782593, + "time_consumption": 19.390578746795654, "uid_list_sorted": [ "_XzMFcHYZEem_kd-7nxt1sg", "_7izDUEzYEeuiHtQbLi1mZg", @@ -46500,8 +100117,8 @@ "testcases": { "_-UtxUEzYEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:49:11,392", - "created": 1609969751.392793, + "asctime": "2021-01-11 07:30:35,487", + "created": 1610346635.4872475, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -46512,21 +100129,21 @@ "message": "_-UtxUEzYEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 392.7929401397705, + "msecs": 487.2474670410156, "msg": "_-UtxUEzYEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 93.13511848449707, + "relativeCreated": 136.78908348083496, "stack_info": null, "testcaseLogger": [ { "args": [ "{'data': None, 'data_id': None, 'service_id': None, 'status': None}" ], - "asctime": "2021-01-06 22:49:11,392", - "created": 1609969751.3929298, + "asctime": "2021-01-11 07:30:35,487", + "created": 1610346635.4875042, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -46537,15 +100154,15 @@ "message": "Creating empty message object: {'data': None, 'data_id': None, 'service_id': None, 'status': None}", "module": "test_message_object", "moduleLogger": [], - "msecs": 392.9297924041748, + "msecs": 487.504243850708, "msg": "Creating empty message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 93.27197074890137, + "relativeCreated": 137.04586029052734, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -46553,8 +100170,8 @@ "args": [ "'data_id'" ], - "asctime": "2021-01-06 22:49:11,393", - "created": 1609969751.3932602, + "asctime": "2021-01-11 07:30:35,488", + "created": 1610346635.488088, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -46571,8 +100188,8 @@ "{'data': None, 'data_id': None, 'service_id': None, 'status': None}", "" ], - "asctime": "2021-01-06 22:49:11,393", - "created": 1609969751.3930469, + "asctime": "2021-01-11 07:30:35,487", + "created": 1610346635.48777, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -46582,15 +100199,15 @@ "lineno": 22, "message": "Result (data_id is part of the message object): {'data': None, 'data_id': None, 'service_id': None, 'status': None} ()", "module": "test", - "msecs": 393.0468559265137, + "msecs": 487.77008056640625, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 93.38903427124023, + "relativeCreated": 137.3116970062256, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -46598,8 +100215,8 @@ "data_id is part of the message object", "'data_id'" ], - "asctime": "2021-01-06 22:49:11,393", - "created": 1609969751.3931406, + "asctime": "2021-01-11 07:30:35,487", + "created": 1610346635.4879348, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -46609,36 +100226,36 @@ "lineno": 30, "message": "Expectation (data_id is part of the message object): 'data_id' in result", "module": "test", - "msecs": 393.1405544281006, + "msecs": 487.93482780456543, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 93.48273277282715, + "relativeCreated": 137.47644424438477, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 393.26024055480957, + "msecs": 488.08789253234863, "msg": "data_id is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 93.60241889953613, + "relativeCreated": 137.62950897216797, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00011968612670898438 + "time_consumption": 0.00015306472778320312 }, { "args": [ "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}" ], - "asctime": "2021-01-06 22:49:11,393", - "created": 1609969751.3934636, + "asctime": "2021-01-11 07:30:35,488", + "created": 1610346635.4883852, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -46649,15 +100266,15 @@ "message": "Creating a maximum message object: {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", "module": "test_message_object", "moduleLogger": [], - "msecs": 393.4636116027832, + "msecs": 488.3852005004883, "msg": "Creating a maximum message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 93.80578994750977, + "relativeCreated": 137.92681694030762, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -46665,8 +100282,8 @@ "args": [ "'data_id'" ], - "asctime": "2021-01-06 22:49:11,393", - "created": 1609969751.3937156, + "asctime": "2021-01-11 07:30:35,488", + "created": 1610346635.4889886, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -46683,8 +100300,8 @@ "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", "" ], - "asctime": "2021-01-06 22:49:11,393", - "created": 1609969751.3935833, + "asctime": "2021-01-11 07:30:35,488", + "created": 1610346635.4886894, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -46694,15 +100311,15 @@ "lineno": 22, "message": "Result (data_id is part of the message object): {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'} ()", "module": "test", - "msecs": 393.5832977294922, + "msecs": 488.6894226074219, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 93.92547607421875, + "relativeCreated": 138.2310390472412, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -46710,8 +100327,8 @@ "data_id is part of the message object", "'data_id'" ], - "asctime": "2021-01-06 22:49:11,393", - "created": 1609969751.3936498, + "asctime": "2021-01-11 07:30:35,488", + "created": 1610346635.4888446, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -46721,37 +100338,37 @@ "lineno": 30, "message": "Expectation (data_id is part of the message object): 'data_id' in result", "module": "test", - "msecs": 393.6498165130615, + "msecs": 488.844633102417, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 93.99199485778809, + "relativeCreated": 138.38624954223633, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 393.71562004089355, + "msecs": 488.98863792419434, "msg": "data_id is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 94.05779838562012, + "relativeCreated": 138.53025436401367, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 6.580352783203125e-05 + "time_consumption": 0.00014400482177734375 }, { "args": [ "'DID'", "" ], - "asctime": "2021-01-06 22:49:11,394", - "created": 1609969751.3940609, + "asctime": "2021-01-11 07:30:35,489", + "created": 1610346635.4896102, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -46768,8 +100385,8 @@ "'DID'", "" ], - "asctime": "2021-01-06 22:49:11,393", - "created": 1609969751.3939006, + "asctime": "2021-01-11 07:30:35,489", + "created": 1610346635.4892473, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -46779,15 +100396,15 @@ "lineno": 22, "message": "Result (Content in message object for data_id): 'DID' ()", "module": "test", - "msecs": 393.90063285827637, + "msecs": 489.24732208251953, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 94.24281120300293, + "relativeCreated": 138.78893852233887, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -46796,8 +100413,8 @@ "'DID'", "" ], - "asctime": "2021-01-06 22:49:11,393", - "created": 1609969751.3939822, + "asctime": "2021-01-11 07:30:35,489", + "created": 1610346635.4893982, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -46807,41 +100424,41 @@ "lineno": 26, "message": "Expectation (Content in message object for data_id): result = 'DID' ()", "module": "test", - "msecs": 393.9821720123291, + "msecs": 489.3982410430908, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 94.32435035705566, + "relativeCreated": 138.93985748291016, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 394.0608501434326, + "msecs": 489.6101951599121, "msg": "Content in message object for data_id is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 94.40302848815918, + "relativeCreated": 139.15181159973145, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 7.867813110351562e-05 + "time_consumption": 0.00021195411682128906 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0012679100036621094, - "time_finished": "2021-01-06 22:49:11,394", - "time_start": "2021-01-06 22:49:11,392" + "time_consumption": 0.0023627281188964844, + "time_finished": "2021-01-11 07:30:35,489", + "time_start": "2021-01-11 07:30:35,487" }, "_2pi_8EzZEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:49:11,395", - "created": 1609969751.3957272, + "asctime": "2021-01-11 07:30:35,492", + "created": 1610346635.4925983, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -46852,1154 +100469,2519 @@ "message": "_2pi_8EzZEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 395.72715759277344, + "msecs": 492.598295211792, "msg": "_2pi_8EzZEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 96.0693359375, + "relativeCreated": 142.13991165161133, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:11,402", - "created": 1609969751.4029267, + "asctime": "2021-01-11 07:30:35,505", + "created": 1610346635.5054889, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:11,396", - "created": 1609969751.3960679, + "asctime": "2021-01-11 07:30:35,496", + "created": 1610346635.4962676, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 396.06785774230957, + "msecs": 496.26755714416504, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 96.41003608703613, + "relativeCreated": 145.80917358398438, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:11,396", - "created": 1609969751.3963127, + "asctime": "2021-01-11 07:30:35,497", + "created": 1610346635.4975367, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 396.3127136230469, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 497.53665924072266, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 96.65489196777344, + "relativeCreated": 147.078275680542, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:11,397", - "created": 1609969751.397577, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 397.57704734802246, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 97.91922569274902, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:11,397", - "created": 1609969751.397715, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 397.71509170532227, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 98.05727005004883, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:11,397", - "created": 1609969751.3978298, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 397.8297710418701, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 98.17194938659668, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:11,397", - "created": 1609969751.3979652, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 397.9651927947998, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 98.30737113952637, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:11,398", - "created": 1609969751.3980615, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 398.06151390075684, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 98.4036922454834, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:11,398", - "created": 1609969751.3981829, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 398.18286895751953, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 98.5250473022461, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:11,398", - "created": 1609969751.398392, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 398.3919620513916, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 98.73414039611816, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:11,398", - "created": 1609969751.3985484, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 398.5483646392822, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 98.89054298400879, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:11,398", - "created": 1609969751.3987327, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 398.73266220092773, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 99.0748405456543, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:11,398", - "created": 1609969751.3989034, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 398.90336990356445, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 99.24554824829102, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:11,399", - "created": 1609969751.3990636, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 399.0635871887207, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 99.40576553344727, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:11,399", - "created": 1609969751.3992622, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 399.2621898651123, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 99.60436820983887, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:11,399", - "created": 1609969751.3994906, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 399.4905948638916, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 99.83277320861816, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:11,399", - "created": 1609969751.399904, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 399.9040126800537, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 100.24619102478027, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:11,400", - "created": 1609969751.4001896, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 400.1896381378174, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 100.53181648254395, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:11,400", - "created": 1609969751.4003887, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 400.3887176513672, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 100.73089599609375, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:11,400", - "created": 1609969751.4004807, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 400.4807472229004, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 100.82292556762695, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:11,400", - "created": 1609969751.4005995, + "asctime": "2021-01-11 07:30:35,497", + "created": 1610346635.4978447, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 400.59947967529297, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 497.8446960449219, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 100.94165802001953, + "relativeCreated": 147.3863124847412, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:11,400", - "created": 1609969751.4008179, + "asctime": "2021-01-11 07:30:35,498", + "created": 1610346635.4983327, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 400.81787109375, + "msecs": 498.3327388763428, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 101.16004943847656, + "relativeCreated": 147.8743553161621, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:11,400", - "created": 1609969751.4008768, + "asctime": "2021-01-11 07:30:35,498", + "created": 1610346635.498607, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 400.8767604827881, + "msecs": 498.60692024230957, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 101.21893882751465, + "relativeCreated": 148.1485366821289, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:11,401", - "created": 1609969751.401014, + "asctime": "2021-01-11 07:30:35,498", + "created": 1610346635.4989064, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 401.0140895843506, + "msecs": 498.90637397766113, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 101.35626792907715, + "relativeCreated": 148.44799041748047, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:11,401", - "created": 1609969751.401109, + "asctime": "2021-01-11 07:30:35,499", + "created": 1610346635.4991105, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 401.108980178833, + "msecs": 499.11046028137207, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 101.45115852355957, + "relativeCreated": 148.6520767211914, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:11,401", - "created": 1609969751.4011724, + "asctime": "2021-01-11 07:30:35,499", + "created": 1610346635.4993052, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 401.172399520874, + "msecs": 499.30524826049805, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 101.51457786560059, + "relativeCreated": 148.84686470031738, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:11,401", - "created": 1609969751.401228, + "asctime": "2021-01-11 07:30:35,499", + "created": 1610346635.4994767, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 401.2279510498047, + "msecs": 499.47667121887207, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 101.57012939453125, + "relativeCreated": 149.0182876586914, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:11,401", - "created": 1609969751.401315, + "asctime": "2021-01-11 07:30:35,499", + "created": 1610346635.499684, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 401.31497383117676, + "msecs": 499.68409538269043, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 101.65715217590332, + "relativeCreated": 149.22571182250977, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:11,401", - "created": 1609969751.4013586, + "asctime": "2021-01-11 07:30:35,499", + "created": 1610346635.499909, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 401.35860443115234, + "msecs": 499.9089241027832, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 101.7007827758789, + "relativeCreated": 149.45054054260254, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:11,401", - "created": 1609969751.4014213, + "asctime": "2021-01-11 07:30:35,500", + "created": 1610346635.5001512, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 401.42130851745605, + "msecs": 500.1511573791504, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 101.76348686218262, + "relativeCreated": 149.69277381896973, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:11,401", - "created": 1609969751.4014654, + "asctime": "2021-01-11 07:30:35,500", + "created": 1610346635.5003686, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 401.46541595458984, + "msecs": 500.368595123291, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 101.8075942993164, + "relativeCreated": 149.91021156311035, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:11,401", - "created": 1609969751.4015205, + "asctime": "2021-01-11 07:30:35,500", + "created": 1610346635.5005915, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 401.5204906463623, + "msecs": 500.591516494751, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 101.86266899108887, + "relativeCreated": 150.1331329345703, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:11,401", - "created": 1609969751.4016323, + "asctime": "2021-01-11 07:30:35,500", + "created": 1610346635.500893, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 401.63230895996094, + "msecs": 500.89311599731445, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 101.9744873046875, + "relativeCreated": 150.4347324371338, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:11,401", - "created": 1609969751.4017167, + "asctime": "2021-01-11 07:30:35,501", + "created": 1610346635.501101, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 401.7167091369629, + "msecs": 501.101016998291, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 102.05888748168945, + "relativeCreated": 150.64263343811035, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:11,401", - "created": 1609969751.4017649, + "asctime": "2021-01-11 07:30:35,501", + "created": 1610346635.5011816, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 401.7648696899414, + "msecs": 501.18160247802734, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 102.10704803466797, + "relativeCreated": 150.72321891784668, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:11,401", - "created": 1609969751.40192, + "asctime": "2021-01-11 07:30:35,501", + "created": 1610346635.5012565, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 401.9200801849365, + "msecs": 501.25646591186523, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 102.26225852966309, + "relativeCreated": 150.79808235168457, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:11,402", - "created": 1609969751.402109, + "asctime": "2021-01-11 07:30:35,501", + "created": 1610346635.5013425, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 402.10890769958496, + "msecs": 501.3425350189209, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 102.45108604431152, + "relativeCreated": 150.88415145874023, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:11,402", - "created": 1609969751.4024303, + "asctime": "2021-01-11 07:30:35,501", + "created": 1610346635.5014777, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 402.43029594421387, + "msecs": 501.4777183532715, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 102.77247428894043, + "relativeCreated": 151.01933479309082, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:11,402", - "created": 1609969751.4026895, + "asctime": "2021-01-11 07:30:35,501", + "created": 1610346635.501611, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 402.68945693969727, + "msecs": 501.61099433898926, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 103.03163528442383, + "relativeCreated": 151.1526107788086, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:11,402", - "created": 1609969751.4028344, + "asctime": "2021-01-11 07:30:35,501", + "created": 1610346635.5017269, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 402.834415435791, + "msecs": 501.7268657684326, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 103.17659378051758, + "relativeCreated": 151.26848220825195, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:11,402", - "created": 1609969751.4028804, + "asctime": "2021-01-11 07:30:35,501", + "created": 1610346635.5019033, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 402.8804302215576, + "msecs": 501.9032955169678, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 103.22260856628418, + "relativeCreated": 151.4449119567871, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:35,502", + "created": 1610346635.5021713, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 502.17127799987793, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 151.71289443969727, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:35,502", + "created": 1610346635.5023215, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 502.3214817047119, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 151.86309814453125, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:35,502", + "created": 1610346635.5024998, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 502.4998188018799, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 152.04143524169922, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:35,502", + "created": 1610346635.5026264, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 502.6264190673828, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 152.16803550720215, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:35,502", + "created": 1610346635.502738, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 502.73799896240234, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 152.27961540222168, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:35,502", + "created": 1610346635.502865, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 502.8650760650635, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 152.4066925048828, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:35,502", + "created": 1610346635.5029945, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 502.9945373535156, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 152.53615379333496, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:35,503", + "created": 1610346635.5032454, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 503.24535369873047, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 152.7869701385498, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:35,503", + "created": 1610346635.5034044, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 503.4043788909912, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 152.94599533081055, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:35,503", + "created": 1610346635.503551, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 503.5510063171387, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 153.092622756958, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:35,503", + "created": 1610346635.5036786, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 503.678560256958, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 153.22017669677734, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:35,503", + "created": 1610346635.5038574, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 503.8573741912842, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 153.39899063110352, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:35,504", + "created": 1610346635.504013, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 504.0130615234375, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 153.55467796325684, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:35,504", + "created": 1610346635.5041869, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 504.18686866760254, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 153.72848510742188, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:35,504", + "created": 1610346635.504326, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 504.32610511779785, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 153.8677215576172, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:35,504", + "created": 1610346635.5044725, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 504.4724941253662, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 154.01411056518555, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:35,504", + "created": 1610346635.5046303, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 504.63032722473145, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 154.17194366455078, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:35,504", + "created": 1610346635.5047615, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 504.7614574432373, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 154.30307388305664, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:35,504", + "created": 1610346635.5049407, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 504.9407482147217, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 154.48236465454102, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:35,505", + "created": 1610346635.505181, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 505.18107414245605, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 154.7226905822754, + "stack_info": null, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 402.9266834259033, + "msecs": 505.4888725280762, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 103.26886177062988, + "relativeCreated": 155.0304889678955, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 4.6253204345703125e-05 + "time_consumption": 0.0003077983856201172 }, { "args": [], - "asctime": "2021-01-06 22:49:11,503", - "created": 1609969751.5039113, + "asctime": "2021-01-11 07:30:35,851", + "created": 1610346635.8516817, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:35,506", + "created": 1610346635.5060523, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 506.05225563049316, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 155.5938720703125, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:35,506", + "created": 1610346635.506287, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 506.2870979309082, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 155.82871437072754, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:35,506", + "created": 1610346635.5065236, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 506.52360916137695, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 156.0652256011963, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:35,506", + "created": 1610346635.5068982, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 506.8981647491455, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 156.43978118896484, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:35,507", + "created": 1610346635.507868, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 507.86805152893066, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 157.40966796875, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:35,508", + "created": 1610346635.5081317, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 508.131742477417, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 157.67335891723633, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:35,508", + "created": 1610346635.5082972, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 508.2972049713135, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 157.8388214111328, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:35,508", + "created": 1610346635.5087533, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 508.75329971313477, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 158.2949161529541, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:35,517", + "created": 1610346635.5174124, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 517.4124240875244, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 166.95404052734375, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:35,518", + "created": 1610346635.5181265, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 518.1264877319336, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 167.66810417175293, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:35,518", + "created": 1610346635.518395, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 518.394947052002, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 167.9365634918213, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:35,518", + "created": 1610346635.5186224, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 518.6223983764648, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 168.16401481628418, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:35,518", + "created": 1610346635.5188358, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 518.8357830047607, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 168.37739944458008, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:35,519", + "created": 1610346635.519052, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 519.0520286560059, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 168.5936450958252, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:35,519", + "created": 1610346635.5193198, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 519.3197727203369, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 168.86138916015625, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:35,519", + "created": 1610346635.5195463, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 519.5462703704834, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 169.08788681030273, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:35,519", + "created": 1610346635.5198352, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 519.8352336883545, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 169.37685012817383, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:35,520", + "created": 1610346635.52007, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 520.0700759887695, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 169.61169242858887, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:35,520", + "created": 1610346635.5202644, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 520.2643871307373, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 169.80600357055664, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:35,520", + "created": 1610346635.5207176, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 520.7176208496094, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 170.2592372894287, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:35,521", + "created": 1610346635.5218718, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 521.87180519104, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 171.41342163085938, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:35,522", + "created": 1610346635.5221663, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 522.1662521362305, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 171.7078685760498, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:35,522", + "created": 1610346635.5224085, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 522.4084854125977, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 171.950101852417, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" + ], + "asctime": "2021-01-11 07:30:35,522", + "created": 1610346635.5228236, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", + "module": "stp", + "msecs": 522.8235721588135, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 172.3651885986328, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:35,523", + "created": 1610346635.5231936, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 523.1935977935791, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 172.73521423339844, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:35,523", + "created": 1610346635.5233817, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 523.3817100524902, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 172.92332649230957, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:35,523", + "created": 1610346635.523613, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 523.6129760742188, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 173.1545925140381, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:35,524", + "created": 1610346635.524244, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 524.2440700531006, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 173.78568649291992, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:35,532", + "created": 1610346635.532498, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 532.4978828430176, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 182.0394992828369, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:35,532", + "created": 1610346635.532701, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 532.7010154724121, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 182.24263191223145, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:35,532", + "created": 1610346635.5328987, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 532.8986644744873, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 182.44028091430664, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:35,533", + "created": 1610346635.5331433, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 533.1432819366455, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 182.68489837646484, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:35,533", + "created": 1610346635.5332792, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 533.2791805267334, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 182.82079696655273, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:35,533", + "created": 1610346635.5334582, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 533.4582328796387, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 182.999849319458, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:35,533", + "created": 1610346635.5335908, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 533.5907936096191, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 183.13241004943848, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:35,533", + "created": 1610346635.533737, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 533.7369441986084, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 183.27856063842773, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:35,533", + "created": 1610346635.5338485, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 533.8485240936279, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 183.39014053344727, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:35,533", + "created": 1610346635.5339808, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 533.9808464050293, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 183.52246284484863, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:35,534", + "created": 1610346635.5341187, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 534.11865234375, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 183.66026878356934, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:35,534", + "created": 1610346635.534291, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 534.2910289764404, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 183.83264541625977, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:35,535", + "created": 1610346635.535401, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 535.4011058807373, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 184.94272232055664, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:35,535", + "created": 1610346635.535619, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 535.6190204620361, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 185.16063690185547, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:35,535", + "created": 1610346635.535787, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 535.7871055603027, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 185.32872200012207, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:35,535", + "created": 1610346635.5359952, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 535.9952449798584, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 185.53686141967773, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:35,536", + "created": 1610346635.53644, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 536.4398956298828, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 185.98151206970215, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:35,536", + "created": 1610346635.5366278, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 536.6277694702148, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 186.16938591003418, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + } + ], + "msecs": 851.6817092895508, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 501.2233257293701, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.31505393981933594 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:36,053", + "created": 1610346636.0535483, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -48012,156 +102994,575 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:11,403", - "created": 1609969751.4030576, + "asctime": "2021-01-11 07:30:35,852", + "created": 1610346635.8522367, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 438, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 403.0575752258301, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 852.2367477416992, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 103.39975357055664, + "relativeCreated": 501.77836418151855, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:11,403", - "created": 1609969751.4032357, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "test_helpers", - "msecs": 403.23567390441895, - "msg": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 103.57785224914551, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:11,403", - "created": 1609969751.4033332, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "test_helpers", - "msecs": 403.3331871032715, - "msg": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 103.67536544799805, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:35,853", + "created": 1610346635.8530836, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 853.083610534668, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 502.6252269744873, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:35,861", + "created": 1610346635.861558, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 861.5579605102539, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 511.09957695007324, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:35,861", + "created": 1610346635.8618274, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 861.8273735046387, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 511.368989944458, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:35,862", + "created": 1610346635.8620193, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 862.0193004608154, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 511.56091690063477, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:35,862", + "created": 1610346635.8622034, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 862.2033596038818, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 511.7449760437012, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:35,862", + "created": 1610346635.862343, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 862.3430728912354, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 511.8846893310547, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:35,862", + "created": 1610346635.8625321, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 862.5321388244629, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 512.0737552642822, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:35,862", + "created": 1610346635.8626652, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 862.6651763916016, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 512.2067928314209, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:35,862", + "created": 1610346635.862837, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 862.8370761871338, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 512.3786926269531, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:35,862", + "created": 1610346635.8629584, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 862.9584312438965, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 512.5000476837158, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:35,863", + "created": 1610346635.8631153, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 863.1153106689453, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 512.6569271087646, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:35,863", + "created": 1610346635.8632352, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 863.2352352142334, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 512.7768516540527, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "comm-client:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2021-01-11 07:30:35,863", + "created": 1610346635.863479, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 863.4788990020752, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 513.0205154418945, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "comm-server:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2021-01-11 07:30:35,867", + "created": 1610346635.8678646, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 867.8646087646484, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 517.4062252044678, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:35,868", + "created": 1610346635.8682685, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 868.2684898376465, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 517.8101062774658, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:35,868", + "created": 1610346635.8684242, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 868.4241771697998, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 517.9657936096191, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "STP:", + "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b" + ], + "asctime": "2021-01-11 07:30:35,868", + "created": 1610346635.8686943, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", + "module": "stp", + "msecs": 868.6943054199219, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 518.2359218597412, + "stack_info": null, + "thread": 140562498627328, + "threadName": "Thread-1" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:11,403", - "created": 1609969751.4034355, + "asctime": "2021-01-11 07:30:35,869", + "created": 1610346635.8690307, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 438, + "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 403.43546867370605, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 869.0307140350342, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 103.77764701843262, + "relativeCreated": 518.5723304748535, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562498627328, + "threadName": "Thread-1" }, { "args": [ - "SP server:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:11,403", - "created": 1609969751.4035053, + "asctime": "2021-01-11 07:30:35,869", + "created": 1610346635.8692293, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP server: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 403.5053253173828, + "msecs": 869.2293167114258, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 103.84750366210938, + "relativeCreated": 518.7709331512451, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562498627328, + "threadName": "Thread-1" } ], - "msecs": 503.91125679016113, + "msecs": 53.548336029052734, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 204.2534351348877, + "relativeCreated": 703.0899524688721, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.10040593147277832 + "time_consumption": 0.18431901931762695 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:11,504", - "created": 1609969751.5043533, + "asctime": "2021-01-11 07:30:36,054", + "created": 1610346636.0544128, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -48178,8 +103579,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:11,504", - "created": 1609969751.504169, + "asctime": "2021-01-11 07:30:36,054", + "created": 1610346636.0540686, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -48189,15 +103590,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 504.1689872741699, + "msecs": 54.068565368652344, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 204.51116561889648, + "relativeCreated": 703.6101818084717, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -48206,8 +103607,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:11,504", - "created": 1609969751.504267, + "asctime": "2021-01-11 07:30:36,054", + "created": 1610346636.0542514, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -48217,37 +103618,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 504.26697731018066, + "msecs": 54.25143241882324, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 204.60915565490723, + "relativeCreated": 703.7930488586426, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 504.35328483581543, + "msecs": 54.412841796875, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 204.695463180542, + "relativeCreated": 703.9544582366943, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 8.630752563476562e-05 + "time_consumption": 0.0001614093780517578 }, { "args": [ "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-06 22:49:11,504", - "created": 1609969751.5046616, + "asctime": "2021-01-11 07:30:36,054", + "created": 1610346636.054967, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -48264,8 +103665,8 @@ "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-06 22:49:11,504", - "created": 1609969751.5044875, + "asctime": "2021-01-11 07:30:36,054", + "created": 1610346636.0546608, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -48275,15 +103676,15 @@ "lineno": 22, "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 504.4875144958496, + "msecs": 54.660797119140625, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 204.82969284057617, + "relativeCreated": 704.20241355896, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -48292,8 +103693,8 @@ "{'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-06 22:49:11,504", - "created": 1609969751.5045786, + "asctime": "2021-01-11 07:30:36,054", + "created": 1610346636.0548162, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -48303,34 +103704,34 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 504.5785903930664, + "msecs": 54.816246032714844, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 204.92076873779297, + "relativeCreated": 704.3578624725342, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 504.66156005859375, + "msecs": 54.96692657470703, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 205.0037384033203, + "relativeCreated": 704.5085430145264, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 8.296966552734375e-05 + "time_consumption": 0.0001506805419921875 }, { "args": [], - "asctime": "2021-01-06 22:49:11,605", - "created": 1609969751.6059847, + "asctime": "2021-01-11 07:30:36,256", + "created": 1610346636.2565498, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -48343,183 +103744,575 @@ "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:11,504", - "created": 1609969751.5048249, + "asctime": "2021-01-11 07:30:36,055", + "created": 1610346636.055368, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 438, + "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 504.8248767852783, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 55.36794662475586, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 205.16705513000488, + "relativeCreated": 704.9095630645752, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:11,505", - "created": 1609969751.5050714, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "module": "test_helpers", - "msecs": 505.07140159606934, - "msg": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 205.4135799407959, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:11,505", - "created": 1609969751.5052316, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "module": "test_helpers", - "msecs": 505.2316188812256, - "msg": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 205.57379722595215, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:36,056", + "created": 1610346636.0562825, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 56.28252029418945, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 705.8241367340088, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:36,064", + "created": 1610346636.0648518, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 64.85176086425781, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 714.3933773040771, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,065", + "created": 1610346636.0651925, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 65.19246101379395, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 714.7340774536133, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:36,065", + "created": 1610346636.06536, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 65.36006927490234, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 714.9016857147217, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,065", + "created": 1610346636.0656192, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 65.61923027038574, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 715.1608467102051, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:36,065", + "created": 1610346636.0657697, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 65.76967239379883, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 715.3112888336182, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,065", + "created": 1610346636.065984, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 65.98401069641113, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 715.5256271362305, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:36,066", + "created": 1610346636.0661218, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 66.12181663513184, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 715.6634330749512, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,066", + "created": 1610346636.066313, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 66.31302833557129, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 715.8546447753906, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:36,066", + "created": 1610346636.0664494, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 66.44940376281738, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 715.9910202026367, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,066", + "created": 1610346636.0666263, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 66.62631034851074, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 716.1679267883301, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:36,066", + "created": 1610346636.0667715, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 66.7715072631836, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 716.3131237030029, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "comm-server:", + "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" + ], + "asctime": "2021-01-11 07:30:36,067", + "created": 1610346636.067196, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", + "module": "__init__", + "msecs": 67.19589233398438, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 716.7375087738037, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "comm-client:", + "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" + ], + "asctime": "2021-01-11 07:30:36,071", + "created": 1610346636.0716085, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", + "module": "__init__", + "msecs": 71.6085433959961, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 721.1501598358154, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,072", + "created": 1610346636.0720463, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 72.04627990722656, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 721.5878963470459, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:36,072", + "created": 1610346636.0724022, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 72.4022388458252, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 721.9438552856445, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "STP:", + "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f" + ], + "asctime": "2021-01-11 07:30:36,072", + "created": 1610346636.0727448, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", + "module": "stp", + "msecs": 72.74484634399414, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 722.2864627838135, + "stack_info": null, + "thread": 140562489972480, + "threadName": "Thread-2" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:11,505", - "created": 1609969751.5053875, + "asctime": "2021-01-11 07:30:36,073", + "created": 1610346636.0730762, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 438, + "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 505.387544631958, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 73.07624816894531, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 205.72972297668457, + "relativeCreated": 722.6178646087646, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562489972480, + "threadName": "Thread-2" }, { "args": [ - "SP client:", - "status: service or data unknown" + "prot-client:" ], - "asctime": "2021-01-06 22:49:11,505", - "created": 1609969751.505489, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: service or data unknown", - "module": "__init__", - "msecs": 505.4891109466553, - "msg": "%s RX <- Message has a peculiar status: %s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 205.83128929138184, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:" - ], - "asctime": "2021-01-06 22:49:11,505", - "created": 1609969751.5055985, + "asctime": "2021-01-11 07:30:36,073", + "created": 1610346636.0732524, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 505.5985450744629, + "msecs": 73.25243949890137, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 205.94072341918945, + "relativeCreated": 722.7940559387207, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562489972480, + "threadName": "Thread-2" } ], - "msecs": 605.9846878051758, + "msecs": 256.5498352050781, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 306.32686614990234, + "relativeCreated": 906.0914516448975, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.10038614273071289 + "time_consumption": 0.18329739570617676 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:11,606", - "created": 1609969751.6065326, + "asctime": "2021-01-11 07:30:36,257", + "created": 1610346636.2573695, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -48536,8 +104329,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:11,606", - "created": 1609969751.6062946, + "asctime": "2021-01-11 07:30:36,256", + "created": 1610346636.2569978, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -48547,15 +104340,15 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 606.2946319580078, + "msecs": 256.99782371520996, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 306.6368103027344, + "relativeCreated": 906.5394401550293, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -48564,8 +104357,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:11,606", - "created": 1609969751.606417, + "asctime": "2021-01-11 07:30:36,257", + "created": 1610346636.2572076, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -48575,37 +104368,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 606.4169406890869, + "msecs": 257.20763206481934, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 306.7591190338135, + "relativeCreated": 906.7492485046387, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 606.5325736999512, + "msecs": 257.3695182800293, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 306.87475204467773, + "relativeCreated": 906.9111347198486, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00011563301086425781 + "time_consumption": 0.00016188621520996094 }, { "args": [ "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-01-06 22:49:11,606", - "created": 1609969751.6069152, + "asctime": "2021-01-11 07:30:36,258", + "created": 1610346636.258347, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -48622,8 +104415,8 @@ "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-01-06 22:49:11,606", - "created": 1609969751.6066983, + "asctime": "2021-01-11 07:30:36,258", + "created": 1610346636.258004, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -48633,15 +104426,15 @@ "lineno": 22, "message": "Result (Received message on client side): {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", "module": "test", - "msecs": 606.6982746124268, + "msecs": 258.00395011901855, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 307.0404529571533, + "relativeCreated": 907.5455665588379, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -48650,8 +104443,8 @@ "{'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-01-06 22:49:11,606", - "created": 1609969751.6068108, + "asctime": "2021-01-11 07:30:36,258", + "created": 1610346636.2581823, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -48661,41 +104454,41 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = {'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", "module": "test", - "msecs": 606.8108081817627, + "msecs": 258.1822872161865, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 307.15298652648926, + "relativeCreated": 907.7239036560059, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 606.9152355194092, + "msecs": 258.3470344543457, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 307.25741386413574, + "relativeCreated": 907.888650894165, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00010442733764648438 + "time_consumption": 0.0001647472381591797 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.21118807792663574, - "time_finished": "2021-01-06 22:49:11,606", - "time_start": "2021-01-06 22:49:11,395" + "time_consumption": 0.7657487392425537, + "time_finished": "2021-01-11 07:30:36,258", + "time_start": "2021-01-11 07:30:35,492" }, "_4w4SsE1DEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:49:15,649", - "created": 1609969755.649329, + "asctime": "2021-01-11 07:30:38,181", + "created": 1610346638.1819305, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -48706,1154 +104499,2519 @@ "message": "_4w4SsE1DEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 649.3289470672607, + "msecs": 181.9305419921875, "msg": "_4w4SsE1DEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4349.671125411987, + "relativeCreated": 2831.472158432007, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:15,656", - "created": 1609969755.6562366, + "asctime": "2021-01-11 07:30:38,191", + "created": 1610346638.191457, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:15,649", - "created": 1609969755.6497364, + "asctime": "2021-01-11 07:30:38,183", + "created": 1610346638.1835608, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 649.7364044189453, + "msecs": 183.56084823608398, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4350.078582763672, + "relativeCreated": 2833.1024646759033, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:15,649", - "created": 1609969755.6499703, + "asctime": "2021-01-11 07:30:38,184", + "created": 1610346638.184414, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 649.970293045044, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 184.41390991210938, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4350.3124713897705, + "relativeCreated": 2833.9555263519287, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:15,650", - "created": 1609969755.6502025, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 650.2025127410889, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4350.544691085815, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:15,650", - "created": 1609969755.6503623, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 650.3622531890869, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4350.7044315338135, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:15,650", - "created": 1609969755.6505132, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 650.5131721496582, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4350.855350494385, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:15,650", - "created": 1609969755.6506603, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 650.6602764129639, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4351.00245475769, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:15,650", - "created": 1609969755.6508365, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 650.8364677429199, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4351.1786460876465, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:15,651", - "created": 1609969755.6510015, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 651.0014533996582, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4351.343631744385, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:15,651", - "created": 1609969755.6511602, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 651.1602401733398, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4351.502418518066, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:15,651", - "created": 1609969755.651318, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 651.3180732727051, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4351.660251617432, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:15,651", - "created": 1609969755.6514585, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 651.4585018157959, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4351.8006801605225, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:15,651", - "created": 1609969755.6516159, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 651.6158580780029, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4351.9580364227295, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:15,651", - "created": 1609969755.6517835, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 651.7834663391113, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4352.125644683838, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:15,651", - "created": 1609969755.651945, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 651.9451141357422, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4352.287292480469, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:15,652", - "created": 1609969755.6520984, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 652.0984172821045, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4352.440595626831, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:15,652", - "created": 1609969755.652253, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 652.2529125213623, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4352.595090866089, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:15,652", - "created": 1609969755.6524172, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 652.4171829223633, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4352.75936126709, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:15,652", - "created": 1609969755.6525643, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 652.564287185669, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4352.9064655303955, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:15,652", - "created": 1609969755.652707, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 652.7070999145508, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4353.049278259277, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:15,652", - "created": 1609969755.6528485, + "asctime": "2021-01-11 07:30:38,184", + "created": 1610346638.184639, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 652.848482131958, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 184.63897705078125, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4353.190660476685, + "relativeCreated": 2834.1805934906006, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:15,653", - "created": 1609969755.6531177, + "asctime": "2021-01-11 07:30:38,184", + "created": 1610346638.1849687, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 653.1176567077637, + "msecs": 184.9687099456787, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4353.45983505249, + "relativeCreated": 2834.510326385498, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:15,653", - "created": 1609969755.6532764, + "asctime": "2021-01-11 07:30:38,185", + "created": 1610346638.185149, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 653.2764434814453, + "msecs": 185.1489543914795, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4353.618621826172, + "relativeCreated": 2834.690570831299, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:15,653", - "created": 1609969755.6534774, + "asctime": "2021-01-11 07:30:38,185", + "created": 1610346638.1853704, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 653.4774303436279, + "msecs": 185.37044525146484, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4353.8196086883545, + "relativeCreated": 2834.912061691284, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:15,653", - "created": 1609969755.6536367, + "asctime": "2021-01-11 07:30:38,185", + "created": 1610346638.1855826, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 653.6366939544678, + "msecs": 185.58263778686523, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4353.978872299194, + "relativeCreated": 2835.1242542266846, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:15,653", - "created": 1609969755.6537817, + "asctime": "2021-01-11 07:30:38,185", + "created": 1610346638.1857345, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 653.7816524505615, + "msecs": 185.73451042175293, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4354.123830795288, + "relativeCreated": 2835.2761268615723, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:15,653", - "created": 1609969755.6539474, + "asctime": "2021-01-11 07:30:38,185", + "created": 1610346638.1858916, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 653.9473533630371, + "msecs": 185.89162826538086, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4354.289531707764, + "relativeCreated": 2835.4332447052, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:15,654", - "created": 1609969755.6541123, + "asctime": "2021-01-11 07:30:38,186", + "created": 1610346638.1860557, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 654.1123390197754, + "msecs": 186.05566024780273, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4354.454517364502, + "relativeCreated": 2835.597276687622, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:15,654", - "created": 1609969755.6542842, + "asctime": "2021-01-11 07:30:38,186", + "created": 1610346638.1862195, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 654.2842388153076, + "msecs": 186.2194538116455, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4354.626417160034, + "relativeCreated": 2835.761070251465, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:15,654", - "created": 1609969755.6544409, + "asctime": "2021-01-11 07:30:38,186", + "created": 1610346638.1863852, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 654.4408798217773, + "msecs": 186.3851547241211, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4354.783058166504, + "relativeCreated": 2835.9267711639404, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:15,654", - "created": 1609969755.6545947, + "asctime": "2021-01-11 07:30:38,186", + "created": 1610346638.1865413, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 654.5946598052979, + "msecs": 186.54131889343262, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4354.936838150024, + "relativeCreated": 2836.082935333252, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:15,654", - "created": 1609969755.6547318, + "asctime": "2021-01-11 07:30:38,186", + "created": 1610346638.186678, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 654.7317504882812, + "msecs": 186.6779327392578, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4355.073928833008, + "relativeCreated": 2836.219549179077, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:15,654", - "created": 1609969755.6548865, + "asctime": "2021-01-11 07:30:38,186", + "created": 1610346638.186834, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 654.8864841461182, + "msecs": 186.83409690856934, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4355.228662490845, + "relativeCreated": 2836.3757133483887, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:15,655", - "created": 1609969755.6550496, + "asctime": "2021-01-11 07:30:38,186", + "created": 1610346638.1869993, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 655.0495624542236, + "msecs": 186.99932098388672, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4355.39174079895, + "relativeCreated": 2836.540937423706, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:15,655", - "created": 1609969755.6551943, + "asctime": "2021-01-11 07:30:38,187", + "created": 1610346638.1871443, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 655.1942825317383, + "msecs": 187.14427947998047, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4355.536460876465, + "relativeCreated": 2836.6858959198, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:15,655", - "created": 1609969755.655355, + "asctime": "2021-01-11 07:30:38,187", + "created": 1610346638.1873004, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 655.3549766540527, + "msecs": 187.300443649292, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4355.697154998779, + "relativeCreated": 2836.8420600891113, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:15,655", - "created": 1609969755.6555188, + "asctime": "2021-01-11 07:30:38,187", + "created": 1610346638.1874566, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 655.5187702178955, + "msecs": 187.45660781860352, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4355.860948562622, + "relativeCreated": 2836.998224258423, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:15,655", - "created": 1609969755.6556802, + "asctime": "2021-01-11 07:30:38,187", + "created": 1610346638.1876051, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 655.6801795959473, + "msecs": 187.6051425933838, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4356.022357940674, + "relativeCreated": 2837.146759033203, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:15,655", - "created": 1609969755.655825, + "asctime": "2021-01-11 07:30:38,187", + "created": 1610346638.1877468, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 655.8248996734619, + "msecs": 187.74676322937012, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4356.1670780181885, + "relativeCreated": 2837.2883796691895, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:15,655", - "created": 1609969755.6559644, + "asctime": "2021-01-11 07:30:38,187", + "created": 1610346638.187885, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 655.9643745422363, + "msecs": 187.88504600524902, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4356.306552886963, + "relativeCreated": 2837.4266624450684, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:15,656", - "created": 1609969755.6561031, + "asctime": "2021-01-11 07:30:38,188", + "created": 1610346638.1880364, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 656.1031341552734, + "msecs": 188.03644180297852, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4356.4453125, + "relativeCreated": 2837.578058242798, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:38,188", + "created": 1610346638.1883152, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 188.31515312194824, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2837.8567695617676, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:38,188", + "created": 1610346638.1884754, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 188.4753704071045, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2838.016986846924, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:38,188", + "created": 1610346638.1886735, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 188.6734962463379, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2838.215112686157, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:38,188", + "created": 1610346638.1888256, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 188.8256072998047, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2838.367223739624, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:38,188", + "created": 1610346638.1889815, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 188.9815330505371, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2838.5231494903564, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:38,189", + "created": 1610346638.1891239, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 189.12386894226074, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2838.66548538208, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:38,189", + "created": 1610346638.189286, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 189.2859935760498, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2838.827610015869, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:38,189", + "created": 1610346638.1894734, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 189.47339057922363, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2839.015007019043, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:38,189", + "created": 1610346638.189651, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 189.6510124206543, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2839.1926288604736, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:38,189", + "created": 1610346638.1898067, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 189.80669975280762, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2839.348316192627, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:38,189", + "created": 1610346638.1899438, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 189.94379043579102, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2839.4854068756104, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:38,190", + "created": 1610346638.1900997, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 190.09971618652344, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2839.641332626343, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:38,190", + "created": 1610346638.190265, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 190.26494026184082, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2839.80655670166, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:38,190", + "created": 1610346638.1904113, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 190.41132926940918, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2839.9529457092285, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:38,190", + "created": 1610346638.1905603, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 190.56034088134766, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2840.101957321167, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:38,190", + "created": 1610346638.1907141, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 190.71412086486816, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2840.2557373046875, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:38,190", + "created": 1610346638.1908917, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 190.89174270629883, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2840.433359146118, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:38,191", + "created": 1610346638.1910355, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 191.03550910949707, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2840.5771255493164, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:38,191", + "created": 1610346638.1911755, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 191.1754608154297, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2840.717077255249, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:38,191", + "created": 1610346638.1913245, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 191.32447242736816, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2840.8660888671875, + "stack_info": null, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 656.2366485595703, + "msecs": 191.45703315734863, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4356.578826904297, + "relativeCreated": 2840.998649597168, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.000133514404296875 + "time_consumption": 0.00013256072998046875 }, { "args": [], - "asctime": "2021-01-06 22:49:15,656", - "created": 1609969755.6565113, + "asctime": "2021-01-11 07:30:38,536", + "created": 1610346638.5365884, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:38,191", + "created": 1610346638.1917553, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 191.7552947998047, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2841.296911239624, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:38,191", + "created": 1610346638.191934, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 191.93410873413086, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2841.47572517395, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:38,192", + "created": 1610346638.1920762, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 192.0762062072754, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2841.6178226470947, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:38,192", + "created": 1610346638.1923206, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 192.3205852508545, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2841.862201690674, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:38,192", + "created": 1610346638.1928978, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 192.89779663085938, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2842.4394130706787, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:38,193", + "created": 1610346638.1930666, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 193.06659698486328, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2842.6082134246826, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:38,193", + "created": 1610346638.1932182, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 193.21823120117188, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2842.759847640991, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:38,193", + "created": 1610346638.19353, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 193.53008270263672, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2843.071699142456, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:38,201", + "created": 1610346638.201654, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 201.65395736694336, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2851.1955738067627, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:38,201", + "created": 1610346638.201774, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 201.77388191223145, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2851.315498352051, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:38,201", + "created": 1610346638.2018297, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 201.8296718597412, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2851.3712882995605, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:38,201", + "created": 1610346638.2018936, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 201.89356803894043, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2851.4351844787598, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:38,201", + "created": 1610346638.201938, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 201.93791389465332, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2851.4795303344727, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:38,202", + "created": 1610346638.2020018, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 202.00181007385254, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2851.543426513672, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:38,202", + "created": 1610346638.2020435, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 202.0435333251953, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2851.5851497650146, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:38,202", + "created": 1610346638.2021003, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 202.10027694702148, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2851.641893386841, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:38,202", + "created": 1610346638.2021413, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 202.14128494262695, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2851.6829013824463, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:38,202", + "created": 1610346638.2021956, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 202.1956443786621, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2851.7372608184814, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:38,202", + "created": 1610346638.202237, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 202.23689079284668, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2851.778507232666, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:38,202", + "created": 1610346638.2023296, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 202.3296356201172, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2851.8712520599365, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:38,203", + "created": 1610346638.2032948, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 203.2947540283203, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2852.8363704681396, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:38,203", + "created": 1610346638.2034452, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 203.4451961517334, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2852.9868125915527, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:38,203", + "created": 1610346638.2035174, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 203.51743698120117, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2853.0590534210205, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" + ], + "asctime": "2021-01-11 07:30:38,203", + "created": 1610346638.203601, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", + "module": "stp", + "msecs": 203.60088348388672, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2853.142499923706, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:38,203", + "created": 1610346638.203758, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 203.75800132751465, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2853.299617767334, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:38,203", + "created": 1610346638.2038248, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 203.8247585296631, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2853.3663749694824, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:38,203", + "created": 1610346638.2039216, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 203.92155647277832, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2853.4631729125977, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:38,204", + "created": 1610346638.204208, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 204.2078971862793, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2853.7495136260986, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:38,212", + "created": 1610346638.2124162, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 212.4161720275879, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2861.957788467407, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:38,212", + "created": 1610346638.2125356, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 212.53561973571777, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2862.077236175537, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:38,212", + "created": 1610346638.2125885, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 212.58854866027832, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2862.1301651000977, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:38,212", + "created": 1610346638.212666, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 212.66603469848633, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2862.2076511383057, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:38,212", + "created": 1610346638.2127545, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 212.754487991333, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2862.2961044311523, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:38,212", + "created": 1610346638.2128901, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 212.8901481628418, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2862.431764602661, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:38,212", + "created": 1610346638.2129607, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 212.96072006225586, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2862.502336502075, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:38,213", + "created": 1610346638.213054, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 213.05394172668457, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2862.595558166504, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:38,213", + "created": 1610346638.2131264, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 213.12642097473145, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2862.668037414551, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:38,213", + "created": 1610346638.2132149, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 213.21487426757812, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2862.7564907073975, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:38,213", + "created": 1610346638.2132819, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 213.28186988830566, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2862.823486328125, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:38,213", + "created": 1610346638.2134194, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 213.41943740844727, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2862.9610538482666, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:38,214", + "created": 1610346638.2144613, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 214.4613265991211, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2864.0029430389404, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:38,214", + "created": 1610346638.214671, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 214.67089653015137, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2864.2125129699707, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:38,214", + "created": 1610346638.2147627, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 214.76268768310547, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2864.304304122925, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:38,214", + "created": 1610346638.214924, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 214.92409706115723, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2864.4657135009766, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:38,215", + "created": 1610346638.2151263, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 215.12627601623535, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2864.6678924560547, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:38,215", + "created": 1610346638.2152207, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 215.22068977355957, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2864.762306213379, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + } + ], + "msecs": 536.5884304046631, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3186.1300468444824, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.3213677406311035 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:38,537", + "created": 1610346638.5371456, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -49864,15 +107022,15 @@ "message": "Identical secrets set and automatic authentification", "module": "test_communication", "moduleLogger": [], - "msecs": 656.5113067626953, + "msecs": 537.1456146240234, "msg": "Identical secrets set and automatic authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4356.853485107422, + "relativeCreated": 3186.687231063843, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -49881,8 +107039,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:15,657", - "created": 1609969755.6570191, + "asctime": "2021-01-11 07:30:38,537", + "created": 1610346638.537785, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -49899,8 +107057,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:15,656", - "created": 1609969755.6567323, + "asctime": "2021-01-11 07:30:38,537", + "created": 1610346638.5374236, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -49910,15 +107068,15 @@ "lineno": 22, "message": "Result (Authentification state of server): False ()", "module": "test", - "msecs": 656.7323207855225, + "msecs": 537.4236106872559, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4357.074499130249, + "relativeCreated": 3186.965227127075, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -49927,8 +107085,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:15,656", - "created": 1609969755.6568778, + "asctime": "2021-01-11 07:30:38,537", + "created": 1610346638.5376325, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -49938,37 +107096,37 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = False ()", "module": "test", - "msecs": 656.8777561187744, + "msecs": 537.6324653625488, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4357.219934463501, + "relativeCreated": 3187.174081802368, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 657.0191383361816, + "msecs": 537.7850532531738, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4357.361316680908, + "relativeCreated": 3187.326669692993, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00014138221740722656 + "time_consumption": 0.000152587890625 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:15,657", - "created": 1609969755.6575334, + "asctime": "2021-01-11 07:30:38,538", + "created": 1610346638.5382922, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -49985,8 +107143,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:15,657", - "created": 1609969755.657247, + "asctime": "2021-01-11 07:30:38,538", + "created": 1610346638.538016, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -49996,15 +107154,15 @@ "lineno": 22, "message": "Result (Authentification state of client): False ()", "module": "test", - "msecs": 657.2470664978027, + "msecs": 538.0160808563232, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4357.589244842529, + "relativeCreated": 3187.5576972961426, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -50013,8 +107171,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:15,657", - "created": 1609969755.6573865, + "asctime": "2021-01-11 07:30:38,538", + "created": 1610346638.5381582, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -50024,34 +107182,34 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = False ()", "module": "test", - "msecs": 657.3865413665771, + "msecs": 538.1581783294678, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4357.728719711304, + "relativeCreated": 3187.699794769287, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 657.5334072113037, + "msecs": 538.2921695709229, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4357.87558555603, + "relativeCreated": 3187.833786010742, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001468658447265625 + "time_consumption": 0.00013399124145507812 }, { "args": [], - "asctime": "2021-01-06 22:49:16,361", - "created": 1609969756.3614037, + "asctime": "2021-01-11 07:30:40,890", + "created": 1610346640.8900318, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -50059,905 +107217,3789 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 139, - "message": "Server and Client connect callback triggered", + "message": "Connecting Server and Client", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:15,657", - "created": 1609969755.657919, + "asctime": "2021-01-11 07:30:38,538", + "created": 1610346638.5385058, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 538.5057926177979, + "msg": "%s Connection Lost...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3188.047409057617, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:38,538", + "created": 1610346638.5387003, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 538.7003421783447, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3188.241958618164, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:38,538", + "created": 1610346638.538848, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 538.8479232788086, + "msg": "%s Connection Lost...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3188.389539718628, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:38,538", + "created": 1610346638.5389876, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 538.9876365661621, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3188.5292530059814, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:38,539", + "created": 1610346638.5391316, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 539.1316413879395, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3188.673257827759, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:38,539", + "created": 1610346638.5392818, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 539.2818450927734, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3188.823461532593, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:38,539", + "created": 1610346638.5394258, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 657.9189300537109, + "msecs": 539.4258499145508, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4358.2611083984375, + "relativeCreated": 3188.96746635437, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" - ], - "asctime": "2021-01-06 22:49:15,657", - "created": 1609969755.6579764, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 657.9763889312744, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4358.318567276001, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: channel name request, data_id: name", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:15,658", - "created": 1609969755.658048, + "asctime": "2021-01-11 07:30:38,539", + "created": 1610346638.5396934, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 658.0479145050049, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 539.6933555603027, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4358.390092849731, + "relativeCreated": 3189.234972000122, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:15,658", - "created": 1609969755.6581764, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", - "module": "test_helpers", - "msecs": 658.1764221191406, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4358.518600463867, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:15,658", - "created": 1609969755.6582563, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", - "module": "test_helpers", - "msecs": 658.2562923431396, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4358.598470687866, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "prot-client:", + "TX ->", + "service: authentification request, data_id: seed", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:38,540", + "created": 1610346638.5404036, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 540.4036045074463, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3189.9452209472656, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:38,541", + "created": 1610346638.5413015, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 541.3014888763428, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3190.843105316162, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:38,549", + "created": 1610346638.5496213, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 549.6213436126709, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3199.1629600524902, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:38,549", + "created": 1610346638.5497983, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 549.7982501983643, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3199.3398666381836, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:38,549", + "created": 1610346638.5498834, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 549.8833656311035, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3199.424982070923, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:38,549", + "created": 1610346638.5499926, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 549.992561340332, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3199.5341777801514, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:38,550", + "created": 1610346638.5500658, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 550.0657558441162, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3199.6073722839355, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:38,550", + "created": 1610346638.5501652, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 550.1651763916016, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3199.706792831421, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:38,550", + "created": 1610346638.5502315, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 550.2314567565918, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3199.773073196411, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:38,550", + "created": 1610346638.5503223, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 550.3222942352295, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3199.863910675049, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:38,550", + "created": 1610346638.5503922, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 550.3921508789062, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3199.9337673187256, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:38,550", + "created": 1610346638.5504756, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 550.4755973815918, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3200.017213821411, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:38,550", + "created": 1610346638.550539, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 550.5390167236328, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3200.080633163452, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:38,550", + "created": 1610346638.5506606, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 550.6606101989746, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3200.202226638794, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:38,551", + "created": 1610346638.5516531, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 551.6531467437744, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3201.1947631835938, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:38,551", + "created": 1610346638.5518248, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 551.8248081207275, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3201.366424560547, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:38,551", + "created": 1610346638.551909, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 551.9089698791504, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3201.4505863189697, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" + ], + "asctime": "2021-01-11 07:30:38,552", + "created": 1610346638.5520484, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", + "module": "stp", + "msecs": 552.0484447479248, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3201.590061187744, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: channel name request, data_id: name", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:15,658", - "created": 1609969755.6583521, + "asctime": "2021-01-11 07:30:38,552", + "created": 1610346638.5522468, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 658.3521366119385, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 552.2468090057373, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4358.694314956665, + "relativeCreated": 3201.7884254455566, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562241931008, + "threadName": "Thread-7" }, { "args": [ - "SP server:", + "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-06 22:49:15,658", - "created": 1609969755.6584084, + "asctime": "2021-01-11 07:30:38,552", + "created": 1610346638.5523374, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __channel_name_request__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 658.4084033966064, - "msg": "%s RX <- Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4358.750581741333, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:15,658", - "created": 1609969755.6584716, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 658.4715843200684, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4358.813762664795, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:15,658", - "created": 1609969755.6585813, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "module": "test_helpers", - "msecs": 658.5812568664551, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4358.923435211182, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:15,658", - "created": 1609969755.6586597, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "module": "test_helpers", - "msecs": 658.6596965789795, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4359.001874923706, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:15,658", - "created": 1609969755.6587427, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 658.7426662445068, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4359.084844589233, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "__channel_name_response__" - ], - "asctime": "2021-01-06 22:49:15,658", - "created": 1609969755.6588001, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 658.8001251220703, + "msecs": 552.3374080657959, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4359.142303466797, + "relativeCreated": 3201.8790245056152, "stack_info": null, - "thread": 140247539738432, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:38,552", + "created": 1610346638.5524623, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 552.4623394012451, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 3202.0039558410645, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:40,546", + "created": 1610346640.546141, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 546.1409091949463, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5195.682525634766, + "stack_info": null, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "comm-server:" + ], + "asctime": "2021-01-11 07:30:40,546", + "created": 1610346640.546488, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 546.4880466461182, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5196.0296630859375, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:40,546", + "created": 1610346640.5466745, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 546.6744899749756, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5196.216106414795, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:40,558", + "created": 1610346640.5584478, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 558.4478378295898, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5207.989454269409, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:40,558", + "created": 1610346640.558921, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 558.9210987091064, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5208.462715148926, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:40,566", + "created": 1610346640.566934, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 566.9341087341309, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5216.47572517395, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,567", + "created": 1610346640.5672677, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 567.267656326294, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5216.809272766113, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:40,567", + "created": 1610346640.5674486, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 567.448616027832, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5216.990232467651, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,567", + "created": 1610346640.5676749, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 567.6748752593994, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5217.216491699219, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,567", + "created": 1610346640.5678215, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 567.8215026855469, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5217.363119125366, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,568", + "created": 1610346640.5680304, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 568.0303573608398, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5217.571973800659, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,568", + "created": 1610346640.5681684, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 568.1684017181396, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5217.710018157959, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,568", + "created": 1610346640.5683556, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 568.3555603027344, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5217.897176742554, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,568", + "created": 1610346640.568494, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 568.4940814971924, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5218.035697937012, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,568", + "created": 1610346640.5686722, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 568.6721801757812, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5218.213796615601, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,568", + "created": 1610346640.5688093, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 568.8092708587646, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5218.350887298584, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-client:", + "(6): fd 82 a2 a9 3a 3e" + ], + "asctime": "2021-01-11 07:30:40,569", + "created": 1610346640.5690708, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): fd 82 a2 a9 3a 3e", + "module": "__init__", + "msecs": 569.0708160400391, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5218.612432479858, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:40,569", + "created": 1610346640.5693913, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 569.3912506103516, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5218.932867050171, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,569", + "created": 1610346640.5696106, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 569.610595703125, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5219.152212142944, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:40,569", + "created": 1610346640.5697494, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 569.7493553161621, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5219.290971755981, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,569", + "created": 1610346640.5699525, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 569.9524879455566, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5219.494104385376, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,570", + "created": 1610346640.5701268, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 570.1267719268799, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5219.668388366699, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,570", + "created": 1610346640.5703313, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 570.331335067749, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5219.872951507568, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,570", + "created": 1610346640.5704694, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 570.4693794250488, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5220.010995864868, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,570", + "created": 1610346640.5706563, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 570.6562995910645, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5220.197916030884, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,570", + "created": 1610346640.5708015, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 570.8014965057373, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5220.343112945557, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,570", + "created": 1610346640.5709789, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 570.9788799285889, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5220.520496368408, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,571", + "created": 1610346640.5711157, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 571.1157321929932, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5220.6573486328125, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:40,571", + "created": 1610346640.5713637, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 571.3636875152588, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5220.905303955078, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-server:", + "(6): fd 82 a2 a9 3a 3e" + ], + "asctime": "2021-01-11 07:30:40,571", + "created": 1610346640.5715723, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): fd 82 a2 a9 3a 3e", + "module": "__init__", + "msecs": 571.5723037719727, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5221.113920211792, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,571", + "created": 1610346640.5717545, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 571.7544555664062, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5221.296072006226, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:40,571", + "created": 1610346640.5718951, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 571.8951225280762, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5221.4367389678955, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9" + ], + "asctime": "2021-01-11 07:30:40,572", + "created": 1610346640.5721397, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", + "module": "stp", + "msecs": 572.1397399902344, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5221.681356430054, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:15,658", - "created": 1609969755.6588728, + "asctime": "2021-01-11 07:30:40,572", + "created": 1610346640.572532, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 438, + "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 658.8728427886963, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 572.5319385528564, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4359.215021133423, + "relativeCreated": 5222.073554992676, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:15,658", - "created": 1609969755.6589584, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "module": "test_helpers", - "msecs": 658.9584350585938, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4359.30061340332, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:15,659", - "created": 1609969755.6590202, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "module": "test_helpers", - "msecs": 659.020185470581, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4359.362363815308, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562241931008, + "threadName": "Thread-7" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:15,659", - "created": 1609969755.6590874, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 659.0874195098877, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4359.429597854614, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", + "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-06 22:49:15,659", - "created": 1609969755.6591356, + "asctime": "2021-01-11 07:30:40,572", + "created": 1610346640.5727236, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __authentificate_create_seed__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 659.1355800628662, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 572.7236270904541, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4359.477758407593, + "relativeCreated": 5222.265243530273, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562241931008, + "threadName": "Thread-7" }, { "args": [ - "SP server:", - "service: authentification response, data_id: seed", - "status: okay", - "'4b113d63f8abce877c47ce12b08f6853f69d661539f981177eeedbd742eebad6'" + "comm-client:", + "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-01-06 22:49:15,659", - "created": 1609969755.6591916, + "asctime": "2021-01-11 07:30:40,572", + "created": 1610346640.5729387, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: authentification response, data_id: seed, status: okay, data: \"'4b113d63f8abce877c47ce12b08f6853f69d661539f981177eeedbd742eebad6'\"", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 659.1916084289551, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 572.9386806488037, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4359.533786773682, + "relativeCreated": 5222.480297088623, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:15,659", - "created": 1609969755.659304, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 62 31 31 33 64 36 33 66 38 61 62 63 65 38 37 37 63 34 37 63 65 31 32 62 30 38 66 36 38 35 33 66 36 39 64 36 36 31 35 33 39 66 39 38 31 31 37 37 65 65 65 64 62 64 37 34 32 65 65 62 61 64 36 22 7d df f9 3b be", - "module": "test_helpers", - "msecs": 659.3039035797119, - "msg": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 62 31 31 33 64 36 33 66 38 61 62 63 65 38 37 37 63 34 37 63 65 31 32 62 30 38 66 36 38 35 33 66 36 39 64 36 36 31 35 33 39 66 39 38 31 31 37 37 65 65 65 64 62 64 37 34 32 65 65 62 61 64 36 22 7d df f9 3b be", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4359.6460819244385, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:15,659", - "created": 1609969755.6593902, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 62 31 31 33 64 36 33 66 38 61 62 63 65 38 37 37 63 34 37 63 65 31 32 62 30 38 66 36 38 35 33 66 36 39 64 36 36 31 35 33 39 66 39 38 31 31 37 37 65 65 65 64 62 64 37 34 32 65 65 62 61 64 36 22 7d df f9 3b be", - "module": "test_helpers", - "msecs": 659.3902111053467, - "msg": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 62 31 31 33 64 36 33 66 38 61 62 63 65 38 37 37 63 34 37 63 65 31 32 62 30 38 66 36 38 35 33 66 36 39 64 36 36 31 35 33 39 66 39 38 31 31 37 37 65 65 65 64 62 64 37 34 32 65 65 62 61 64 36 22 7d df f9 3b be", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4359.732389450073, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562233538304, + "threadName": "Thread-8" }, { "args": [ - "SP client:", - "service: authentification response, data_id: seed", - "status: okay", - "'4b113d63f8abce877c47ce12b08f6853f69d661539f981177eeedbd742eebad6'" + "STP:", + 58 ], - "asctime": "2021-01-06 22:49:15,659", - "created": 1609969755.6594594, + "asctime": "2021-01-11 07:30:40,573", + "created": 1610346640.573045, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 573.045015335083, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5222.586631774902, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:40,573", + "created": 1610346640.5731206, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 573.1205940246582, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5222.6622104644775, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:40,573", + "created": 1610346640.5732443, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 573.2443332672119, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5222.785949707031, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:40,573", + "created": 1610346640.5734158, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 573.4157562255859, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5222.957372665405, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:40,573", + "created": 1610346640.57356, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'4b113d63f8abce877c47ce12b08f6853f69d661539f981177eeedbd742eebad6'\"", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 659.4593524932861, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 573.5599994659424, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4359.801530838013, + "relativeCreated": 5223.101615905762, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562233538304, + "threadName": "Thread-8" }, { "args": [ - "SP client:", + "prot-server:", + "TX ->", + "service: authentification response, data_id: seed", + "status: okay", + "'66f8db8052d1732e550899994677593e3545881a26f3f18583cc107eda8890a1'" + ], + "asctime": "2021-01-11 07:30:40,573", + "created": 1610346640.5737686, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'66f8db8052d1732e550899994677593e3545881a26f3f18583cc107eda8890a1'\"", + "module": "__init__", + "msecs": 573.7686157226562, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5223.310232162476, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 36 66 38" + ], + "asctime": "2021-01-11 07:30:40,574", + "created": 1610346640.5742593, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 36 66 38", + "module": "__init__", + "msecs": 574.2592811584473, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5223.800897598267, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 36 66 38" + ], + "asctime": "2021-01-11 07:30:40,582", + "created": 1610346640.5825055, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 36 66 38", + "module": "__init__", + "msecs": 582.505464553833, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5232.047080993652, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,582", + "created": 1610346640.5826848, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 582.6847553253174, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5232.226371765137, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:40,582", + "created": 1610346640.582776, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 582.7760696411133, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5232.317686080933, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,582", + "created": 1610346640.5829356, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 582.9355716705322, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5232.477188110352, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,583", + "created": 1610346640.583015, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 583.014965057373, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5232.556581497192, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,583", + "created": 1610346640.583144, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 583.143949508667, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5232.685565948486, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,583", + "created": 1610346640.5832202, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 583.2202434539795, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5232.761859893799, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,583", + "created": 1610346640.583335, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 583.3349227905273, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5232.876539230347, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,583", + "created": 1610346640.5834365, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 583.4364891052246, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5232.978105545044, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,583", + "created": 1610346640.583545, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 583.5449695587158, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5233.086585998535, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,583", + "created": 1610346640.5836184, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 583.6184024810791, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5233.160018920898, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-server:", + "(64): 64 62 38 30 35 32 64 31 37 33 32 65 35 35 30 38 39 39 39 39 34 36 37 37 35 39 33 65 33 35 34 35 38 38 31 61 32 36 66 33 66 31 38 35 38 33 63 63 31 30 37 65 64 61 38 38 39 30 61 31 22 7d d0 42" + ], + "asctime": "2021-01-11 07:30:40,583", + "created": 1610346640.5838022, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 64 62 38 30 35 32 64 31 37 33 32 65 35 35 30 38 39 39 39 39 34 36 37 37 35 39 33 65 33 35 34 35 38 38 31 61 32 36 66 33 66 31 38 35 38 33 63 63 31 30 37 65 64 61 38 38 39 30 61 31 22 7d d0 42", + "module": "__init__", + "msecs": 583.8022232055664, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5233.343839645386, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-client:", + "(64): 64 62 38 30 35 32 64 31 37 33 32 65 35 35 30 38 39 39 39 39 34 36 37 37 35 39 33 65 33 35 34 35 38 38 31 61 32 36 66 33 66 31 38 35 38 33 63 63 31 30 37 65 64 61 38 38 39 30 61 31 22 7d d0 42" + ], + "asctime": "2021-01-11 07:30:40,592", + "created": 1610346640.59208, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 64 62 38 30 35 32 64 31 37 33 32 65 35 35 30 38 39 39 39 39 34 36 37 37 35 39 33 65 33 35 34 35 38 38 31 61 32 36 66 33 66 31 38 35 38 33 63 63 31 30 37 65 64 61 38 38 39 30 61 31 22 7d d0 42", + "module": "__init__", + "msecs": 592.0801162719727, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5241.621732711792, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-server:", + "(4): 54 1d 3a 3e" + ], + "asctime": "2021-01-11 07:30:40,592", + "created": 1610346640.5924897, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (4): 54 1d 3a 3e", + "module": "__init__", + "msecs": 592.4897193908691, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5242.0313358306885, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-client:", + "(4): 54 1d 3a 3e" + ], + "asctime": "2021-01-11 07:30:40,593", + "created": 1610346640.5932117, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (4): 54 1d 3a 3e", + "module": "__init__", + "msecs": 593.2116508483887, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5242.753267288208, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,593", + "created": 1610346640.593342, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 593.3420658111572, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5242.883682250977, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:40,593", + "created": 1610346640.5934553, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 593.4553146362305, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5242.99693107605, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + "(124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 36 36 66 38 64 62 38 30 35 32 64 31 37 33 32 65 35 35 30 38 39 39 39 39 34 36 37 37 35 39 33 65 33 35 34 35 38 38 31 61 32 36 66 33 66 31 38 35 38 33 63 63 31 30 37 65 64 61 38 38 39 30 61 31 22 7d d0 42 54 1d" + ], + "asctime": "2021-01-11 07:30:40,593", + "created": 1610346640.593664, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 36 36 66 38 64 62 38 30 35 32 64 31 37 33 32 65 35 35 30 38 39 39 39 39 34 36 37 37 35 39 33 65 33 35 34 35 38 38 31 61 32 36 66 33 66 31 38 35 38 33 63 63 31 30 37 65 64 61 38 38 39 30 61 31 22 7d d0 42 54 1d", + "module": "stp", + "msecs": 593.6639308929443, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5243.205547332764, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: seed", + "status: okay", + "'66f8db8052d1732e550899994677593e3545881a26f3f18583cc107eda8890a1'" + ], + "asctime": "2021-01-11 07:30:40,593", + "created": 1610346640.5938888, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'66f8db8052d1732e550899994677593e3545881a26f3f18583cc107eda8890a1'\"", + "module": "__init__", + "msecs": 593.8887596130371, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5243.430376052856, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-01-06 22:49:15,659", - "created": 1609969755.6595051, + "asctime": "2021-01-11 07:30:40,593", + "created": 1610346640.5939941, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __authentificate_create_key__ to process received data", + "lineno": 492, + "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 659.5051288604736, + "msecs": 593.994140625, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4359.8473072052, + "relativeCreated": 5243.535757064819, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562233538304, + "threadName": "Thread-8" }, { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: authentification request, data_id: key", "status: okay", - "'42fe894ec6b6928e3998e3019538576f3abea09f26af28523ef41bd8dff89522e05cc05cd777a69a0b74f67d3ed4fb5e6af25bb054e2744afc20f7451b1d3886'" + "'c7cf239d9c6032a48ef18c626cd36e03ad3a295fbcff0214bb009b8f0ecf4dec58600bb043dac054ab51cbd92a9884861e0fe2571bf4415576b372f1296f810a'" ], - "asctime": "2021-01-06 22:49:15,659", - "created": 1609969755.6595635, + "asctime": "2021-01-11 07:30:40,594", + "created": 1610346640.5941546, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: authentification request, data_id: key, status: okay, data: \"'42fe894ec6b6928e3998e3019538576f3abea09f26af28523ef41bd8dff89522e05cc05cd777a69a0b74f67d3ed4fb5e6af25bb054e2744afc20f7451b1d3886'\"", + "lineno": 438, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'c7cf239d9c6032a48ef18c626cd36e03ad3a295fbcff0214bb009b8f0ecf4dec58600bb043dac054ab51cbd92a9884861e0fe2571bf4415576b372f1296f810a'\"", "module": "__init__", - "msecs": 659.5635414123535, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 594.1545963287354, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4359.90571975708, + "relativeCreated": 5243.696212768555, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:15,659", - "created": 1609969755.659703, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 32 66 65 38 39 34 65 63 36 62 36 39 32 38 65 33 39 39 38 65 33 30 31 39 35 33 38 35 37 36 66 33 61 62 65 61 30 39 66 32 36 61 66 32 38 35 32 33 65 66 34 31 62 64 38 64 66 66 38 39 35 32 32 65 30 35 63 63 30 35 63 64 37 37 37 61 36 39 61 30 62 37 34 66 36 37 64 33 65 64 34 66 62 35 65 36 61 66 32 35 62 62 30 35 34 65 32 37 34 34 61 66 63 32 30 66 37 34 35 31 62 31 64 33 38 38 36 22 7d c2 eb 87 db", - "module": "test_helpers", - "msecs": 659.7030162811279, - "msg": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 32 66 65 38 39 34 65 63 36 62 36 39 32 38 65 33 39 39 38 65 33 30 31 39 35 33 38 35 37 36 66 33 61 62 65 61 30 39 66 32 36 61 66 32 38 35 32 33 65 66 34 31 62 64 38 64 66 66 38 39 35 32 32 65 30 35 63 63 30 35 63 64 37 37 37 61 36 39 61 30 62 37 34 66 36 37 64 33 65 64 34 66 62 35 65 36 61 66 32 35 62 62 30 35 34 65 32 37 34 34 61 66 63 32 30 66 37 34 35 31 62 31 64 33 38 38 36 22 7d c2 eb 87 db", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4360.0451946258545, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:15,659", - "created": 1609969755.6598184, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 32 66 65 38 39 34 65 63 36 62 36 39 32 38 65 33 39 39 38 65 33 30 31 39 35 33 38 35 37 36 66 33 61 62 65 61 30 39 66 32 36 61 66 32 38 35 32 33 65 66 34 31 62 64 38 64 66 66 38 39 35 32 32 65 30 35 63 63 30 35 63 64 37 37 37 61 36 39 61 30 62 37 34 66 36 37 64 33 65 64 34 66 62 35 65 36 61 66 32 35 62 62 30 35 34 65 32 37 34 34 61 66 63 32 30 66 37 34 35 31 62 31 64 33 38 38 36 22 7d c2 eb 87 db", - "module": "test_helpers", - "msecs": 659.8184108734131, - "msg": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 32 66 65 38 39 34 65 63 36 62 36 39 32 38 65 33 39 39 38 65 33 30 31 39 35 33 38 35 37 36 66 33 61 62 65 61 30 39 66 32 36 61 66 32 38 35 32 33 65 66 34 31 62 64 38 64 66 66 38 39 35 32 32 65 30 35 63 63 30 35 63 64 37 37 37 61 36 39 61 30 62 37 34 66 36 37 64 33 65 64 34 66 62 35 65 36 61 66 32 35 62 62 30 35 34 65 32 37 34 34 61 66 63 32 30 66 37 34 35 31 62 31 64 33 38 38 36 22 7d c2 eb 87 db", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4360.16058921814, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562233538304, + "threadName": "Thread-8" }, { "args": [ - "SP server:", - "service: authentification request, data_id: key", - "status: okay", - "'42fe894ec6b6928e3998e3019538576f3abea09f26af28523ef41bd8dff89522e05cc05cd777a69a0b74f67d3ed4fb5e6af25bb054e2744afc20f7451b1d3886'" + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 37 63 66" ], - "asctime": "2021-01-06 22:49:15,659", - "created": 1609969755.6598911, + "asctime": "2021-01-11 07:30:40,594", + "created": 1610346640.5947738, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__tx__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: authentification request, data_id: key, status: okay, data: \"'42fe894ec6b6928e3998e3019538576f3abea09f26af28523ef41bd8dff89522e05cc05cd777a69a0b74f67d3ed4fb5e6af25bb054e2744afc20f7451b1d3886'\"", + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 37 63 66", "module": "__init__", - "msecs": 659.8911285400391, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 594.7737693786621, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4360.233306884766, + "relativeCreated": 5244.315385818481, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562241931008, + "threadName": "Thread-7" }, { "args": [ - "SP server:", + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 37 63 66" + ], + "asctime": "2021-01-11 07:30:40,603", + "created": 1610346640.603169, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 37 63 66", + "module": "__init__", + "msecs": 603.1689643859863, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5252.710580825806, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,603", + "created": 1610346640.6034439, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 603.4438610076904, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5252.98547744751, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:40,603", + "created": 1610346640.6036081, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 603.6081314086914, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5253.149747848511, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,603", + "created": 1610346640.6037803, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 603.7802696228027, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5253.321886062622, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,603", + "created": 1610346640.6039064, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 603.9063930511475, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5253.448009490967, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,604", + "created": 1610346640.6040747, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 604.0747165679932, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5253.6163330078125, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,604", + "created": 1610346640.6041873, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 604.1872501373291, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5253.728866577148, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,604", + "created": 1610346640.6043346, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 604.3345928192139, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5253.876209259033, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,604", + "created": 1610346640.6044421, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 604.4421195983887, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5253.983736038208, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,604", + "created": 1610346640.6045833, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 604.5832633972168, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5254.124879837036, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,604", + "created": 1610346640.6046898, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 604.6898365020752, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5254.2314529418945, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-client:", + "(64): 32 33 39 64 39 63 36 30 33 32 61 34 38 65 66 31 38 63 36 32 36 63 64 33 36 65 30 33 61 64 33 61 32 39 35 66 62 63 66 66 30 32 31 34 62 62 30 30 39 62 38 66 30 65 63 66 34 64 65 63 35 38 36 30" + ], + "asctime": "2021-01-11 07:30:40,604", + "created": 1610346640.6049564, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 32 33 39 64 39 63 36 30 33 32 61 34 38 65 66 31 38 63 36 32 36 63 64 33 36 65 30 33 61 64 33 61 32 39 35 66 62 63 66 66 30 32 31 34 62 62 30 30 39 62 38 66 30 65 63 66 34 64 65 63 35 38 36 30", + "module": "__init__", + "msecs": 604.9563884735107, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5254.49800491333, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(64): 32 33 39 64 39 63 36 30 33 32 61 34 38 65 66 31 38 63 36 32 36 63 64 33 36 65 30 33 61 64 33 61 32 39 35 66 62 63 66 66 30 32 31 34 62 62 30 30 39 62 38 66 30 65 63 66 34 64 65 63 35 38 36 30" + ], + "asctime": "2021-01-11 07:30:40,613", + "created": 1610346640.613312, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 32 33 39 64 39 63 36 30 33 32 61 34 38 65 66 31 38 63 36 32 36 63 64 33 36 65 30 33 61 64 33 61 32 39 35 66 62 63 66 66 30 32 31 34 62 62 30 30 39 62 38 66 30 65 63 66 34 64 65 63 35 38 36 30", + "module": "__init__", + "msecs": 613.3120059967041, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5262.853622436523, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-client:", + "(64): 30 62 62 30 34 33 64 61 63 30 35 34 61 62 35 31 63 62 64 39 32 61 39 38 38 34 38 36 31 65 30 66 65 32 35 37 31 62 66 34 34 31 35 35 37 36 62 33 37 32 66 31 32 39 36 66 38 31 30 61 22 7d 56 f7" + ], + "asctime": "2021-01-11 07:30:40,614", + "created": 1610346640.614014, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 30 62 62 30 34 33 64 61 63 30 35 34 61 62 35 31 63 62 64 39 32 61 39 38 38 34 38 36 31 65 30 66 65 32 35 37 31 62 66 34 34 31 35 35 37 36 62 33 37 32 66 31 32 39 36 66 38 31 30 61 22 7d 56 f7", + "module": "__init__", + "msecs": 614.0139102935791, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5263.555526733398, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(64): 30 62 62 30 34 33 64 61 63 30 35 34 61 62 35 31 63 62 64 39 32 61 39 38 38 34 38 36 31 65 30 66 65 32 35 37 31 62 66 34 34 31 35 35 37 36 62 33 37 32 66 31 32 39 36 66 38 31 30 61 22 7d 56 f7" + ], + "asctime": "2021-01-11 07:30:40,622", + "created": 1610346640.6223524, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 30 62 62 30 34 33 64 61 63 30 35 34 61 62 35 31 63 62 64 39 32 61 39 38 38 34 38 36 31 65 30 66 65 32 35 37 31 62 66 34 34 31 35 35 37 36 62 33 37 32 66 31 32 39 36 66 38 31 30 61 22 7d 56 f7", + "module": "__init__", + "msecs": 622.3523616790771, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5271.8939781188965, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-client:", + "(4): c8 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:40,622", + "created": 1610346640.6229138, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (4): c8 2f 3a 3e", + "module": "__init__", + "msecs": 622.9138374328613, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5272.455453872681, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(4): c8 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:40,623", + "created": 1610346640.6236682, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (4): c8 2f 3a 3e", + "module": "__init__", + "msecs": 623.6681938171387, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5273.209810256958, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,623", + "created": 1610346640.6238165, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 623.8164901733398, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5273.358106613159, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:40,623", + "created": 1610346640.6239383, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 623.9383220672607, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5273.47993850708, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "STP:", + "(188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 37 63 66 32 33 39 64 39 63 36 30 33 32 61 34 38 65 66 31 38 63 36 32 36 63 64 33 36 65 30 33 61 64 33 61 32 39 35 66 62 63 66 66 30 32 31 34 62 62 30 30 39 62 38 66 30 65 63 66 34 64 65 63 35 38 36 30 30 62 62 30 34 33 64 61 63 30 35 34 61 62 35 31 63 62 64 39 32 61 39 38 38 34 38 36 31 65 30 66 65 32 35 37 31 62 66 34 34 31 35 35 37 36 62 33 37 32 66 31 32 39 36 66 38 31 30 61 22 7d 56 f7 c8 2f" + ], + "asctime": "2021-01-11 07:30:40,624", + "created": 1610346640.6243181, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 37 63 66 32 33 39 64 39 63 36 30 33 32 61 34 38 65 66 31 38 63 36 32 36 63 64 33 36 65 30 33 61 64 33 61 32 39 35 66 62 63 66 66 30 32 31 34 62 62 30 30 39 62 38 66 30 65 63 66 34 64 65 63 35 38 36 30 30 62 62 30 34 33 64 61 63 30 35 34 61 62 35 31 63 62 64 39 32 61 39 38 38 34 38 36 31 65 30 66 65 32 35 37 31 62 66 34 34 31 35 35 37 36 62 33 37 32 66 31 32 39 36 66 38 31 30 61 22 7d 56 f7 c8 2f", + "module": "stp", + "msecs": 624.3181228637695, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5273.859739303589, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: authentification request, data_id: key", + "status: okay", + "'c7cf239d9c6032a48ef18c626cd36e03ad3a295fbcff0214bb009b8f0ecf4dec58600bb043dac054ab51cbd92a9884861e0fe2571bf4415576b372f1296f810a'" + ], + "asctime": "2021-01-11 07:30:40,624", + "created": 1610346640.6246364, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'c7cf239d9c6032a48ef18c626cd36e03ad3a295fbcff0214bb009b8f0ecf4dec58600bb043dac054ab51cbd92a9884861e0fe2571bf4415576b372f1296f810a'\"", + "module": "__init__", + "msecs": 624.6364116668701, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5274.178028106689, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-01-06 22:49:15,659", - "created": 1609969755.6599374, + "asctime": "2021-01-11 07:30:40,624", + "created": 1610346640.6248002, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __authentificate_check_key__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 659.9373817443848, - "msg": "%s RX <- Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4360.279560089111, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-01-06 22:49:15,659", - "created": 1609969755.6599905, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 659.9905490875244, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4360.332727432251, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:15,660", - "created": 1609969755.6600878, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", - "module": "test_helpers", - "msecs": 660.0878238677979, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4360.430002212524, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:15,660", - "created": 1609969755.6601543, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", - "module": "test_helpers", - "msecs": 660.1543426513672, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4360.496520996094, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-01-06 22:49:15,660", - "created": 1609969755.6602309, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 660.2308750152588, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 4360.573053359985, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "__authentificate_process_feedback__" - ], - "asctime": "2021-01-06 22:49:15,660", - "created": 1609969755.6602745, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __authentificate_process_feedback__ to process received data", - "module": "__init__", - "msecs": 660.2745056152344, + "msecs": 624.8002052307129, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4360.616683959961, + "relativeCreated": 5274.341821670532, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562241931008, + "threadName": "Thread-7" }, { "args": [ - "SP client:" + "prot-server:", + "TX ->", + "service: authentification response, data_id: key", + "status: okay", + "True" ], - "asctime": "2021-01-06 22:49:15,660", - "created": 1609969755.6603117, + "asctime": "2021-01-11 07:30:40,625", + "created": 1610346640.6250288, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 625.0288486480713, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5274.570465087891, + "stack_info": null, + "thread": 140562241931008, + "threadName": "Thread-7" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" + ], + "asctime": "2021-01-11 07:30:40,625", + "created": 1610346640.625765, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", + "module": "__init__", + "msecs": 625.7650852203369, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5275.306701660156, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" + ], + "asctime": "2021-01-11 07:30:40,634", + "created": 1610346640.6341646, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", + "module": "__init__", + "msecs": 634.164571762085, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5283.706188201904, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,634", + "created": 1610346640.6344368, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 634.436845779419, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5283.978462219238, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:40,634", + "created": 1610346640.634585, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 634.584903717041, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5284.12652015686, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,634", + "created": 1610346640.634767, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 634.7670555114746, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5284.308671951294, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,634", + "created": 1610346640.6348948, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 634.894847869873, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5284.436464309692, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,635", + "created": 1610346640.6350782, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 635.0781917572021, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5284.6198081970215, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,635", + "created": 1610346640.6352005, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 635.2005004882812, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5284.742116928101, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,635", + "created": 1610346640.6353636, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 635.3635787963867, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5284.905195236206, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,635", + "created": 1610346640.635482, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 635.4820728302002, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5285.0236892700195, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,635", + "created": 1610346640.63564, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 635.6399059295654, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5285.181522369385, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,635", + "created": 1610346640.6357849, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 635.7848644256592, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5285.3264808654785, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-server:", + "(6): 94 fe 74 32 3a 3e" + ], + "asctime": "2021-01-11 07:30:40,636", + "created": 1610346640.6360188, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 94 fe 74 32 3a 3e", + "module": "__init__", + "msecs": 636.0187530517578, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5285.560369491577, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "comm-client:", + "(6): 94 fe 74 32 3a 3e" + ], + "asctime": "2021-01-11 07:30:40,637", + "created": 1610346640.6371121, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 94 fe 74 32 3a 3e", + "module": "__init__", + "msecs": 637.1121406555176, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5286.653757095337, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,637", + "created": 1610346640.6374004, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 637.4003887176514, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5286.942005157471, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:40,637", + "created": 1610346640.6375725, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 637.5725269317627, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5287.114143371582, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32" + ], + "asctime": "2021-01-11 07:30:40,637", + "created": 1610346640.6377718, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", + "module": "stp", + "msecs": 637.7718448638916, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5287.313461303711, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: key", + "status: okay", + "True" + ], + "asctime": "2021-01-11 07:30:40,638", + "created": 1610346640.6380813, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 638.0813121795654, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5287.622928619385, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "prot-client:", + "__authentificate_process_feedback__" + ], + "asctime": "2021-01-11 07:30:40,638", + "created": 1610346640.6382313, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", + "module": "__init__", + "msecs": 638.2312774658203, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5287.77289390564, + "stack_info": null, + "thread": 140562233538304, + "threadName": "Thread-8" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:40,638", + "created": 1610346640.6383538, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "INFO", "levelno": 20, - "lineno": 350, - "message": "SP client: Got positive authentification feedback", + "lineno": 360, + "message": "prot-client: Got positive authentification feedback", "module": "__init__", - "msecs": 660.3116989135742, + "msecs": 638.3538246154785, "msg": "%s Got positive authentification feedback", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4360.653877258301, + "relativeCreated": 5287.895441055298, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562233538304, + "threadName": "Thread-8" } ], - "msecs": 361.4037036895752, - "msg": "Server and Client connect callback triggered", + "msecs": 890.0318145751953, + "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5061.745882034302, + "relativeCreated": 5539.573431015015, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.701092004776001 + "time_consumption": 0.2516779899597168 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:16,362", - "created": 1609969756.3622675, + "asctime": "2021-01-11 07:30:40,891", + "created": 1610346640.8911066, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -50974,8 +111016,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:16,361", - "created": 1609969756.3619003, + "asctime": "2021-01-11 07:30:40,890", + "created": 1610346640.8907187, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -50985,15 +111027,15 @@ "lineno": 22, "message": "Result (Authentification state of server): True ()", "module": "test", - "msecs": 361.90032958984375, + "msecs": 890.7186985015869, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5062.24250793457, + "relativeCreated": 5540.260314941406, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -51002,8 +111044,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:16,362", - "created": 1609969756.3621068, + "asctime": "2021-01-11 07:30:40,890", + "created": 1610346640.890917, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51013,37 +111055,37 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = True ()", "module": "test", - "msecs": 362.1068000793457, + "msecs": 890.9170627593994, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5062.448978424072, + "relativeCreated": 5540.458679199219, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 362.26749420166016, + "msecs": 891.1066055297852, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5062.609672546387, + "relativeCreated": 5540.6482219696045, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00016069412231445312 + "time_consumption": 0.0001895427703857422 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:16,362", - "created": 1609969756.3627923, + "asctime": "2021-01-11 07:30:40,891", + "created": 1610346640.8916543, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51060,8 +111102,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:16,362", - "created": 1609969756.3625054, + "asctime": "2021-01-11 07:30:40,891", + "created": 1610346640.891356, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51071,15 +111113,15 @@ "lineno": 22, "message": "Result (Authentification state of client): True ()", "module": "test", - "msecs": 362.5054359436035, + "msecs": 891.3559913635254, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5062.84761428833, + "relativeCreated": 5540.897607803345, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -51088,8 +111130,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:16,362", - "created": 1609969756.3626516, + "asctime": "2021-01-11 07:30:40,891", + "created": 1610346640.8915038, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51099,41 +111141,41 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = True ()", "module": "test", - "msecs": 362.6515865325928, + "msecs": 891.5038108825684, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5062.993764877319, + "relativeCreated": 5541.045427322388, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 362.7922534942627, + "msecs": 891.6542530059814, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5063.134431838989, + "relativeCreated": 5541.195869445801, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00014066696166992188 + "time_consumption": 0.00015044212341308594 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.713463306427002, - "time_finished": "2021-01-06 22:49:16,362", - "time_start": "2021-01-06 22:49:15,649" + "time_consumption": 2.709723711013794, + "time_finished": "2021-01-11 07:30:40,891", + "time_start": "2021-01-11 07:30:38,181" }, "_7izDUEzYEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:49:11,390", - "created": 1609969751.3906856, + "asctime": "2021-01-11 07:30:35,484", + "created": 1610346635.4847867, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -51144,21 +111186,21 @@ "message": "_7izDUEzYEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 390.6855583190918, + "msecs": 484.7867488861084, "msg": "_7izDUEzYEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 91.02773666381836, + "relativeCreated": 134.32836532592773, "stack_info": null, "testcaseLogger": [ { "args": [ "{'data': None, 'data_id': None, 'service_id': None, 'status': None}" ], - "asctime": "2021-01-06 22:49:11,390", - "created": 1609969751.3909419, + "asctime": "2021-01-11 07:30:35,484", + "created": 1610346635.48498, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -51169,15 +111211,15 @@ "message": "Creating empty message object: {'data': None, 'data_id': None, 'service_id': None, 'status': None}", "module": "test_message_object", "moduleLogger": [], - "msecs": 390.941858291626, + "msecs": 484.98010635375977, "msg": "Creating empty message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 91.28403663635254, + "relativeCreated": 134.5217227935791, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -51185,8 +111227,8 @@ "args": [ "'service_id'" ], - "asctime": "2021-01-06 22:49:11,391", - "created": 1609969751.3914442, + "asctime": "2021-01-11 07:30:35,485", + "created": 1610346635.4853826, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51203,8 +111245,8 @@ "{'data': None, 'data_id': None, 'service_id': None, 'status': None}", "" ], - "asctime": "2021-01-06 22:49:11,391", - "created": 1609969751.3911738, + "asctime": "2021-01-11 07:30:35,485", + "created": 1610346635.4851348, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51214,15 +111256,15 @@ "lineno": 22, "message": "Result (service_id is part of the message object): {'data': None, 'data_id': None, 'service_id': None, 'status': None} ()", "module": "test", - "msecs": 391.1738395690918, + "msecs": 485.1348400115967, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 91.51601791381836, + "relativeCreated": 134.67645645141602, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -51230,8 +111272,8 @@ "service_id is part of the message object", "'service_id'" ], - "asctime": "2021-01-06 22:49:11,391", - "created": 1609969751.3913212, + "asctime": "2021-01-11 07:30:35,485", + "created": 1610346635.4852488, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51241,36 +111283,36 @@ "lineno": 30, "message": "Expectation (service_id is part of the message object): 'service_id' in result", "module": "test", - "msecs": 391.32118225097656, + "msecs": 485.2488040924072, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 91.66336059570312, + "relativeCreated": 134.79042053222656, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 391.44420623779297, + "msecs": 485.3825569152832, "msg": "service_id is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 91.78638458251953, + "relativeCreated": 134.92417335510254, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00012302398681640625 + "time_consumption": 0.00013375282287597656 }, { "args": [ "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}" ], - "asctime": "2021-01-06 22:49:11,391", - "created": 1609969751.3916738, + "asctime": "2021-01-11 07:30:35,485", + "created": 1610346635.485704, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -51281,15 +111323,15 @@ "message": "Creating a maximum message object: {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", "module": "test_message_object", "moduleLogger": [], - "msecs": 391.6738033294678, + "msecs": 485.7039451599121, "msg": "Creating a maximum message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 92.01598167419434, + "relativeCreated": 135.24556159973145, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -51297,8 +111339,8 @@ "args": [ "'service_id'" ], - "asctime": "2021-01-06 22:49:11,392", - "created": 1609969751.3922055, + "asctime": "2021-01-11 07:30:35,486", + "created": 1610346635.4862254, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51315,8 +111357,8 @@ "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", "" ], - "asctime": "2021-01-06 22:49:11,391", - "created": 1609969751.391912, + "asctime": "2021-01-11 07:30:35,485", + "created": 1610346635.4859276, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51326,15 +111368,15 @@ "lineno": 22, "message": "Result (service_id is part of the message object): {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'} ()", "module": "test", - "msecs": 391.91198348999023, + "msecs": 485.9275817871094, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 92.2541618347168, + "relativeCreated": 135.4691982269287, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -51342,8 +111384,8 @@ "service_id is part of the message object", "'service_id'" ], - "asctime": "2021-01-06 22:49:11,392", - "created": 1609969751.3920913, + "asctime": "2021-01-11 07:30:35,486", + "created": 1610346635.4860663, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51353,37 +111395,37 @@ "lineno": 30, "message": "Expectation (service_id is part of the message object): 'service_id' in result", "module": "test", - "msecs": 392.0912742614746, + "msecs": 486.0663414001465, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 92.43345260620117, + "relativeCreated": 135.60795783996582, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 392.20547676086426, + "msecs": 486.2253665924072, "msg": "service_id is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 92.54765510559082, + "relativeCreated": 135.76698303222656, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00011420249938964844 + "time_consumption": 0.0001590251922607422 }, { "args": [ "'SID'", "" ], - "asctime": "2021-01-06 22:49:11,392", - "created": 1609969751.3925679, + "asctime": "2021-01-11 07:30:35,486", + "created": 1610346635.4868205, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51400,8 +111442,8 @@ "'SID'", "" ], - "asctime": "2021-01-06 22:49:11,392", - "created": 1609969751.3923998, + "asctime": "2021-01-11 07:30:35,486", + "created": 1610346635.486518, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51411,15 +111453,15 @@ "lineno": 22, "message": "Result (Content in message object for service_id): 'SID' ()", "module": "test", - "msecs": 392.39978790283203, + "msecs": 486.51790618896484, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 92.7419662475586, + "relativeCreated": 136.05952262878418, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -51428,8 +111470,8 @@ "'SID'", "" ], - "asctime": "2021-01-06 22:49:11,392", - "created": 1609969751.3924847, + "asctime": "2021-01-11 07:30:35,486", + "created": 1610346635.4866865, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51439,41 +111481,41 @@ "lineno": 26, "message": "Expectation (Content in message object for service_id): result = 'SID' ()", "module": "test", - "msecs": 392.4846649169922, + "msecs": 486.68646812438965, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 92.82684326171875, + "relativeCreated": 136.22808456420898, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 392.56787300109863, + "msecs": 486.8204593658447, "msg": "Content in message object for service_id is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 92.9100513458252, + "relativeCreated": 136.36207580566406, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 8.320808410644531e-05 + "time_consumption": 0.00013399124145507812 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.001882314682006836, - "time_finished": "2021-01-06 22:49:11,392", - "time_start": "2021-01-06 22:49:11,390" + "time_consumption": 0.002033710479736328, + "time_finished": "2021-01-11 07:30:35,486", + "time_start": "2021-01-11 07:30:35,484" }, "_AlIUwEzZEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:49:11,394", - "created": 1609969751.394323, + "asctime": "2021-01-11 07:30:35,490", + "created": 1610346635.4900365, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -51484,21 +111526,21 @@ "message": "_AlIUwEzZEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 394.32311058044434, + "msecs": 490.0364875793457, "msg": "_AlIUwEzZEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 94.6652889251709, + "relativeCreated": 139.57810401916504, "stack_info": null, "testcaseLogger": [ { "args": [ "{'data': None, 'data_id': None, 'service_id': None, 'status': None}" ], - "asctime": "2021-01-06 22:49:11,394", - "created": 1609969751.3944955, + "asctime": "2021-01-11 07:30:35,490", + "created": 1610346635.4903386, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -51509,15 +111551,15 @@ "message": "Creating empty message object: {'data': None, 'data_id': None, 'service_id': None, 'status': None}", "module": "test_message_object", "moduleLogger": [], - "msecs": 394.49548721313477, + "msecs": 490.3385639190674, "msg": "Creating empty message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 94.83766555786133, + "relativeCreated": 139.88018035888672, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -51525,8 +111567,8 @@ "args": [ "'data'" ], - "asctime": "2021-01-06 22:49:11,394", - "created": 1609969751.3947809, + "asctime": "2021-01-11 07:30:35,491", + "created": 1610346635.4910383, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51543,8 +111585,8 @@ "{'data': None, 'data_id': None, 'service_id': None, 'status': None}", "" ], - "asctime": "2021-01-06 22:49:11,394", - "created": 1609969751.394629, + "asctime": "2021-01-11 07:30:35,490", + "created": 1610346635.4906669, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51554,15 +111596,15 @@ "lineno": 22, "message": "Result (data is part of the message object): {'data': None, 'data_id': None, 'service_id': None, 'status': None} ()", "module": "test", - "msecs": 394.62900161743164, + "msecs": 490.66686630249023, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 94.9711799621582, + "relativeCreated": 140.20848274230957, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -51570,8 +111612,8 @@ "data is part of the message object", "'data'" ], - "asctime": "2021-01-06 22:49:11,394", - "created": 1609969751.3947084, + "asctime": "2021-01-11 07:30:35,490", + "created": 1610346635.4908423, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51581,36 +111623,36 @@ "lineno": 30, "message": "Expectation (data is part of the message object): 'data' in result", "module": "test", - "msecs": 394.70839500427246, + "msecs": 490.842342376709, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 95.05057334899902, + "relativeCreated": 140.38395881652832, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 394.78087425231934, + "msecs": 491.03832244873047, "msg": "data is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 95.1230525970459, + "relativeCreated": 140.5799388885498, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 7.2479248046875e-05 + "time_consumption": 0.00019598007202148438 }, { "args": [ "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}" ], - "asctime": "2021-01-06 22:49:11,394", - "created": 1609969751.3949237, + "asctime": "2021-01-11 07:30:35,491", + "created": 1610346635.4912643, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -51621,15 +111663,15 @@ "message": "Creating a maximum message object: {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", "module": "test_message_object", "moduleLogger": [], - "msecs": 394.9236869812012, + "msecs": 491.26434326171875, "msg": "Creating a maximum message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 95.26586532592773, + "relativeCreated": 140.8059597015381, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -51637,8 +111679,8 @@ "args": [ "'data'" ], - "asctime": "2021-01-06 22:49:11,395", - "created": 1609969751.3951828, + "asctime": "2021-01-11 07:30:35,491", + "created": 1610346635.49169, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51655,8 +111697,8 @@ "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", "" ], - "asctime": "2021-01-06 22:49:11,395", - "created": 1609969751.3950467, + "asctime": "2021-01-11 07:30:35,491", + "created": 1610346635.4914885, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51666,15 +111708,15 @@ "lineno": 22, "message": "Result (data is part of the message object): {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'} ()", "module": "test", - "msecs": 395.0467109680176, + "msecs": 491.4884567260742, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 95.38888931274414, + "relativeCreated": 141.03007316589355, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -51682,8 +111724,8 @@ "data is part of the message object", "'data'" ], - "asctime": "2021-01-06 22:49:11,395", - "created": 1609969751.39512, + "asctime": "2021-01-11 07:30:35,491", + "created": 1610346635.4915948, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51693,37 +111735,37 @@ "lineno": 30, "message": "Expectation (data is part of the message object): 'data' in result", "module": "test", - "msecs": 395.11990547180176, + "msecs": 491.5947914123535, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 95.46208381652832, + "relativeCreated": 141.13640785217285, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 395.18284797668457, + "msecs": 491.68992042541504, "msg": "data is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 95.52502632141113, + "relativeCreated": 141.23153686523438, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 6.29425048828125e-05 + "time_consumption": 9.512901306152344e-05 }, { "args": [ "'D'", "" ], - "asctime": "2021-01-06 22:49:11,395", - "created": 1609969751.3954804, + "asctime": "2021-01-11 07:30:35,492", + "created": 1610346635.4920077, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51740,8 +111782,8 @@ "'D'", "" ], - "asctime": "2021-01-06 22:49:11,395", - "created": 1609969751.3953173, + "asctime": "2021-01-11 07:30:35,491", + "created": 1610346635.491824, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51751,15 +111793,15 @@ "lineno": 22, "message": "Result (Content in message object for data): 'D' ()", "module": "test", - "msecs": 395.31731605529785, + "msecs": 491.8239116668701, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 95.65949440002441, + "relativeCreated": 141.36552810668945, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -51768,8 +111810,8 @@ "'D'", "" ], - "asctime": "2021-01-06 22:49:11,395", - "created": 1609969751.395392, + "asctime": "2021-01-11 07:30:35,491", + "created": 1610346635.4919057, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -51779,41 +111821,41 @@ "lineno": 26, "message": "Expectation (Content in message object for data): result = 'D' ()", "module": "test", - "msecs": 395.39194107055664, + "msecs": 491.90568923950195, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 95.7341194152832, + "relativeCreated": 141.4473056793213, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 395.4803943634033, + "msecs": 492.0077323913574, "msg": "Content in message object for data is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 95.82257270812988, + "relativeCreated": 141.54934883117676, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 8.845329284667969e-05 + "time_consumption": 0.00010204315185546875 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0011572837829589844, - "time_finished": "2021-01-06 22:49:11,395", - "time_start": "2021-01-06 22:49:11,394" + "time_consumption": 0.0019712448120117188, + "time_finished": "2021-01-11 07:30:35,492", + "time_start": "2021-01-11 07:30:35,490" }, "_CZeooE0YEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:49:17,698", - "created": 1609969757.6981235, + "asctime": "2021-01-11 07:30:42,867", + "created": 1610346642.8672276, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -51824,1154 +111866,2519 @@ "message": "_CZeooE0YEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 698.1234550476074, + "msecs": 867.2275543212891, "msg": "_CZeooE0YEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6398.465633392334, + "relativeCreated": 7516.769170761108, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:17,704", - "created": 1609969757.7049952, + "asctime": "2021-01-11 07:30:42,876", + "created": 1610346642.8762999, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:17,698", - "created": 1609969757.6985416, + "asctime": "2021-01-11 07:30:42,868", + "created": 1610346642.8682718, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 698.5416412353516, + "msecs": 868.2718276977539, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6398.883819580078, + "relativeCreated": 7517.813444137573, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:17,698", - "created": 1609969757.6987364, + "asctime": "2021-01-11 07:30:42,869", + "created": 1610346642.8691795, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 698.7364292144775, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 869.1794872283936, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6399.078607559204, + "relativeCreated": 7518.721103668213, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:17,698", - "created": 1609969757.698967, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 698.9669799804688, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6399.309158325195, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:17,699", - "created": 1609969757.6991282, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 699.1281509399414, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6399.470329284668, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:17,699", - "created": 1609969757.6992786, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 699.2785930633545, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6399.620771408081, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:17,699", - "created": 1609969757.699427, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 699.4268894195557, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6399.769067764282, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:17,699", - "created": 1609969757.6995864, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 699.5863914489746, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6399.928569793701, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:17,699", - "created": 1609969757.6997497, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 699.7497081756592, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6400.091886520386, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:17,699", - "created": 1609969757.6999059, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 699.9058723449707, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6400.248050689697, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:17,700", - "created": 1609969757.7000723, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 700.0722885131836, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6400.41446685791, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:17,700", - "created": 1609969757.7002137, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 700.2136707305908, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6400.555849075317, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:17,700", - "created": 1609969757.7003806, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 700.3805637359619, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6400.7227420806885, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:17,700", - "created": 1609969757.7005491, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 700.5491256713867, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6400.891304016113, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:17,700", - "created": 1609969757.7006953, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 700.695276260376, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6401.0374546051025, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:17,700", - "created": 1609969757.7008471, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 700.8471488952637, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6401.18932723999, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:17,701", - "created": 1609969757.7010026, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 701.0025978088379, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6401.344776153564, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:17,701", - "created": 1609969757.701156, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 701.1559009552002, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6401.498079299927, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:17,701", - "created": 1609969757.7013016, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 701.3015747070312, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6401.643753051758, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:17,701", - "created": 1609969757.7014544, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 701.4544010162354, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6401.796579360962, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:17,701", - "created": 1609969757.701597, + "asctime": "2021-01-11 07:30:42,869", + "created": 1610346642.8693933, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 701.5969753265381, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 869.3933486938477, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6401.939153671265, + "relativeCreated": 7518.934965133667, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:17,701", - "created": 1609969757.701889, + "asctime": "2021-01-11 07:30:42,869", + "created": 1610346642.869768, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 701.8890380859375, + "msecs": 869.7679042816162, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6402.231216430664, + "relativeCreated": 7519.309520721436, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:17,702", - "created": 1609969757.7020602, + "asctime": "2021-01-11 07:30:42,869", + "created": 1610346642.8699484, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 702.0602226257324, + "msecs": 869.9483871459961, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6402.402400970459, + "relativeCreated": 7519.490003585815, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:17,702", - "created": 1609969757.7022603, + "asctime": "2021-01-11 07:30:42,870", + "created": 1610346642.8701694, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 702.2602558135986, + "msecs": 870.1694011688232, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6402.602434158325, + "relativeCreated": 7519.711017608643, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:17,702", - "created": 1609969757.7024097, + "asctime": "2021-01-11 07:30:42,870", + "created": 1610346642.8703256, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 702.4097442626953, + "msecs": 870.3255653381348, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6402.751922607422, + "relativeCreated": 7519.867181777954, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:17,702", - "created": 1609969757.702552, + "asctime": "2021-01-11 07:30:42,870", + "created": 1610346642.8704731, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 702.552080154419, + "msecs": 870.4731464385986, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6402.8942584991455, + "relativeCreated": 7520.014762878418, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:17,702", - "created": 1609969757.7026935, + "asctime": "2021-01-11 07:30:42,870", + "created": 1610346642.8706155, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 702.6934623718262, + "msecs": 870.6154823303223, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6403.035640716553, + "relativeCreated": 7520.157098770142, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:17,702", - "created": 1609969757.7028453, + "asctime": "2021-01-11 07:30:42,870", + "created": 1610346642.8707786, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 702.8453350067139, + "msecs": 870.7785606384277, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6403.18751335144, + "relativeCreated": 7520.320177078247, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:17,703", - "created": 1609969757.7030022, + "asctime": "2021-01-11 07:30:42,870", + "created": 1610346642.8709593, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 703.0022144317627, + "msecs": 870.9592819213867, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6403.344392776489, + "relativeCreated": 7520.500898361206, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:17,703", - "created": 1609969757.703159, + "asctime": "2021-01-11 07:30:42,871", + "created": 1610346642.8711154, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 703.1590938568115, + "msecs": 871.1154460906982, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6403.501272201538, + "relativeCreated": 7520.657062530518, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:17,703", - "created": 1609969757.70333, + "asctime": "2021-01-11 07:30:42,871", + "created": 1610346642.8712785, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 703.3300399780273, + "msecs": 871.2785243988037, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6403.672218322754, + "relativeCreated": 7520.820140838623, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:17,703", - "created": 1609969757.7034726, + "asctime": "2021-01-11 07:30:42,871", + "created": 1610346642.871416, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 703.4726142883301, + "msecs": 871.4160919189453, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6403.814792633057, + "relativeCreated": 7520.957708358765, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:17,703", - "created": 1609969757.7036402, + "asctime": "2021-01-11 07:30:42,871", + "created": 1610346642.8715684, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 703.6402225494385, + "msecs": 871.5684413909912, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6403.982400894165, + "relativeCreated": 7521.110057830811, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:17,703", - "created": 1609969757.7038083, + "asctime": "2021-01-11 07:30:42,871", + "created": 1610346642.8717308, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 703.8083076477051, + "msecs": 871.7308044433594, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6404.150485992432, + "relativeCreated": 7521.272420883179, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:17,703", - "created": 1609969757.7039645, + "asctime": "2021-01-11 07:30:42,871", + "created": 1610346642.871874, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 703.9644718170166, + "msecs": 871.8740940093994, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6404.306650161743, + "relativeCreated": 7521.415710449219, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:17,704", - "created": 1609969757.704114, + "asctime": "2021-01-11 07:30:42,872", + "created": 1610346642.872027, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 704.1139602661133, + "msecs": 872.0269203186035, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6404.45613861084, + "relativeCreated": 7521.568536758423, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:17,704", - "created": 1609969757.70427, + "asctime": "2021-01-11 07:30:42,872", + "created": 1610346642.8721898, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 704.2698860168457, + "msecs": 872.1897602081299, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6404.612064361572, + "relativeCreated": 7521.731376647949, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:17,704", - "created": 1609969757.704422, + "asctime": "2021-01-11 07:30:42,872", + "created": 1610346642.8724248, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 704.4219970703125, + "msecs": 872.424840927124, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6404.764175415039, + "relativeCreated": 7521.966457366943, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:17,704", - "created": 1609969757.7045662, + "asctime": "2021-01-11 07:30:42,872", + "created": 1610346642.8725903, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 704.566240310669, + "msecs": 872.5903034210205, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6404.9084186553955, + "relativeCreated": 7522.13191986084, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:17,704", - "created": 1609969757.7047071, + "asctime": "2021-01-11 07:30:42,872", + "created": 1610346642.872729, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 704.707145690918, + "msecs": 872.7290630340576, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6405.0493240356445, + "relativeCreated": 7522.270679473877, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:17,704", - "created": 1609969757.7048602, + "asctime": "2021-01-11 07:30:42,872", + "created": 1610346642.872879, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 704.8602104187012, + "msecs": 872.8790283203125, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6405.202388763428, + "relativeCreated": 7522.420644760132, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:42,873", + "created": 1610346642.8731637, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 873.1637001037598, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7522.705316543579, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:42,873", + "created": 1610346642.8733199, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 873.3198642730713, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7522.861480712891, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:42,873", + "created": 1610346642.87355, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 873.5499382019043, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7523.091554641724, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:42,873", + "created": 1610346642.8737044, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 873.7044334411621, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7523.246049880981, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:42,873", + "created": 1610346642.8738463, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 873.8462924957275, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7523.387908935547, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:42,873", + "created": 1610346642.8739855, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 873.9855289459229, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7523.527145385742, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:42,874", + "created": 1610346642.8741453, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 874.1452693939209, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7523.68688583374, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:42,874", + "created": 1610346642.8743024, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 874.3023872375488, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7523.844003677368, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:42,874", + "created": 1610346642.8744688, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 874.4688034057617, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7524.010419845581, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:42,874", + "created": 1610346642.8746324, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 874.6323585510254, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7524.173974990845, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:42,874", + "created": 1610346642.8747807, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 874.7806549072266, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7524.322271347046, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:42,874", + "created": 1610346642.8749423, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 874.9423027038574, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7524.483919143677, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:42,875", + "created": 1610346642.875107, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 875.1070499420166, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7524.648666381836, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:42,875", + "created": 1610346642.8752527, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 875.2527236938477, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7524.794340133667, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:42,875", + "created": 1610346642.8754013, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 875.4012584686279, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7524.942874908447, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:42,875", + "created": 1610346642.8755548, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 875.5548000335693, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7525.096416473389, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:42,875", + "created": 1610346642.875733, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 875.7328987121582, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7525.2745151519775, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:42,875", + "created": 1610346642.8758729, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 875.8728504180908, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7525.41446685791, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:42,876", + "created": 1610346642.8760092, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 876.0092258453369, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7525.550842285156, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:42,876", + "created": 1610346642.8761473, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 876.1472702026367, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7525.688886642456, + "stack_info": null, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 704.9951553344727, + "msecs": 876.2998580932617, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6405.337333679199, + "relativeCreated": 7525.841474533081, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00013494491577148438 + "time_consumption": 0.000152587890625 }, { "args": [], - "asctime": "2021-01-06 22:49:17,705", - "created": 1609969757.7052703, + "asctime": "2021-01-11 07:30:43,220", + "created": 1610346643.2209494, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:42,876", + "created": 1610346642.876605, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 876.6050338745117, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7526.146650314331, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:42,876", + "created": 1610346642.8767588, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 876.7588138580322, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7526.300430297852, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:42,876", + "created": 1610346642.8769255, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 876.9254684448242, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7526.467084884644, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:42,877", + "created": 1610346642.877182, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 877.1820068359375, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7526.723623275757, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:42,877", + "created": 1610346642.8775861, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 877.5861263275146, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7527.127742767334, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:42,877", + "created": 1610346642.877639, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 877.6390552520752, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7527.1806716918945, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:42,877", + "created": 1610346642.877684, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 877.6841163635254, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7527.225732803345, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:42,877", + "created": 1610346642.8778782, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 877.8781890869141, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7527.419805526733, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:42,886", + "created": 1610346642.8860488, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 886.0487937927246, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7535.590410232544, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,886", + "created": 1610346642.8861663, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 886.1663341522217, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7535.707950592041, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:42,886", + "created": 1610346642.8862178, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 886.2178325653076, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7535.759449005127, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,886", + "created": 1610346642.886282, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 886.2819671630859, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7535.823583602905, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,886", + "created": 1610346642.886327, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 886.3270282745361, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7535.8686447143555, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,886", + "created": 1610346642.8863904, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 886.3904476165771, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7535.9320640563965, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,886", + "created": 1610346642.886449, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 886.4490985870361, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7535.9907150268555, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,886", + "created": 1610346642.8865097, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 886.5096569061279, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7536.051273345947, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,886", + "created": 1610346642.886552, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 886.552095413208, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7536.093711853027, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,886", + "created": 1610346642.8866076, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 886.6076469421387, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7536.149263381958, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,886", + "created": 1610346642.8866487, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 886.6486549377441, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7536.1902713775635, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:42,886", + "created": 1610346642.8867252, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 886.7251873016357, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7536.266803741455, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:42,887", + "created": 1610346642.887614, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 887.6140117645264, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7537.155628204346, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,887", + "created": 1610346642.8876927, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 887.6926898956299, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7537.234306335449, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:42,887", + "created": 1610346642.8877497, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 887.7496719360352, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7537.2912883758545, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" + ], + "asctime": "2021-01-11 07:30:42,887", + "created": 1610346642.8878305, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", + "module": "stp", + "msecs": 887.8304958343506, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7537.37211227417, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:42,887", + "created": 1610346642.8879633, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 887.9632949829102, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7537.5049114227295, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:42,888", + "created": 1610346642.888026, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 888.0259990692139, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7537.567615509033, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:42,888", + "created": 1610346642.8881102, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 888.1101608276367, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7537.651777267456, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:42,888", + "created": 1610346642.8883667, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 888.36669921875, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7537.908315658569, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:42,896", + "created": 1610346642.8966196, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 896.6195583343506, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7546.16117477417, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,896", + "created": 1610346642.8968241, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 896.8241214752197, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7546.365737915039, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:42,896", + "created": 1610346642.8969166, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 896.9166278839111, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7546.4582443237305, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,897", + "created": 1610346642.8970265, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 897.026538848877, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7546.568155288696, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,897", + "created": 1610346642.8971026, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 897.1025943756104, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7546.64421081543, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,897", + "created": 1610346642.8972113, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 897.2113132476807, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7546.7529296875, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,897", + "created": 1610346642.8972826, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 897.282600402832, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7546.824216842651, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,897", + "created": 1610346642.8973792, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 897.3791599273682, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7546.9207763671875, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,897", + "created": 1610346642.8974903, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 897.4902629852295, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7547.031879425049, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,897", + "created": 1610346642.897659, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 897.6590633392334, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7547.200679779053, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,897", + "created": 1610346642.8977804, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 897.7804183959961, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7547.322034835815, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:42,897", + "created": 1610346642.8979194, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 897.9194164276123, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7547.461032867432, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:42,898", + "created": 1610346642.8988793, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 898.8792896270752, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7548.4209060668945, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,899", + "created": 1610346642.8990173, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 899.017333984375, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7548.558950424194, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:42,899", + "created": 1610346642.899105, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 899.1050720214844, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7548.646688461304, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:42,899", + "created": 1610346642.8992364, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 899.2364406585693, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7548.778057098389, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:42,899", + "created": 1610346642.8994584, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 899.4584083557129, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7549.000024795532, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:42,899", + "created": 1610346642.8995612, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 899.5611667633057, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7549.102783203125, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + } + ], + "msecs": 220.9494113922119, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7870.491027832031, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.32138824462890625 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:43,221", + "created": 1610346643.221423, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -52982,22 +114389,22 @@ "message": "Identical secrets set", "module": "test_communication", "moduleLogger": [], - "msecs": 705.2702903747559, + "msecs": 221.42291069030762, "msg": "Identical secrets set", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6405.612468719482, + "relativeCreated": 7870.964527130127, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-06 22:49:18,006", - "created": 1609969758.006867, + "asctime": "2021-01-11 07:30:43,523", + "created": 1610346643.5233154, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -53010,82 +114417,82 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:17,705", - "created": 1609969757.705538, + "asctime": "2021-01-11 07:30:43,221", + "created": 1610346643.2218096, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 724, - "message": "SP client: TX -> Authentification is required. Message service: 17, data_id: 34, status: okay, data: 'msg1_data_to_be_transfered' will be ignored.", + "lineno": 736, + "message": "prot-client: Authentification is required. TX-Message service: 17, data_id: 34, status: okay, data: 'msg1_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 705.5380344390869, - "msg": "%s TX -> Authentification is required. Message %s, %s, data: %s will be ignored.", + "msecs": 221.80962562561035, + "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6405.8802127838135, + "relativeCreated": 7871.35124206543, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "0.25", + "prot-server:", + "0.28705533596837945", "17", "34" ], - "asctime": "2021-01-06 22:49:18,006", - "created": 1609969758.0065958, + "asctime": "2021-01-11 07:30:43,523", + "created": 1610346643.5230336, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP server: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 34) not in buffer.", + "lineno": 668, + "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 6.595849990844727, + "msecs": 523.033618927002, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6706.938028335571, + "relativeCreated": 8172.575235366821, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 6.866931915283203, + "msecs": 523.3154296875, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6707.20911026001, + "relativeCreated": 8172.857046127319, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00027108192443847656 + "time_consumption": 0.0002818107604980469 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:18,007", - "created": 1609969758.0075154, + "asctime": "2021-01-11 07:30:43,523", + "created": 1610346643.5239522, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -53102,8 +114509,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:18,007", - "created": 1609969758.0071862, + "asctime": "2021-01-11 07:30:43,523", + "created": 1610346643.5236425, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -53113,15 +114520,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): False ()", "module": "test", - "msecs": 7.186174392700195, + "msecs": 523.6425399780273, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6707.528352737427, + "relativeCreated": 8173.184156417847, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -53130,8 +114537,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:18,007", - "created": 1609969758.007352, + "asctime": "2021-01-11 07:30:43,523", + "created": 1610346643.5238056, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -53141,37 +114548,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = False ()", "module": "test", - "msecs": 7.352113723754883, + "msecs": 523.8056182861328, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6707.694292068481, + "relativeCreated": 8173.347234725952, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 7.515430450439453, + "msecs": 523.9522457122803, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6707.857608795166, + "relativeCreated": 8173.4938621521, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001633167266845703 + "time_consumption": 0.00014662742614746094 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:18,008", - "created": 1609969758.0080416, + "asctime": "2021-01-11 07:30:43,524", + "created": 1610346643.5244496, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -53188,8 +114595,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:18,007", - "created": 1609969758.0077562, + "asctime": "2021-01-11 07:30:43,524", + "created": 1610346643.5241768, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -53199,15 +114606,15 @@ "lineno": 22, "message": "Result (Received message on server side): None ()", "module": "test", - "msecs": 7.756233215332031, + "msecs": 524.176836013794, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6708.098411560059, + "relativeCreated": 8173.718452453613, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -53216,8 +114623,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:18,007", - "created": 1609969758.0079007, + "asctime": "2021-01-11 07:30:43,524", + "created": 1610346643.5243142, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -53227,34 +114634,34 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = None ()", "module": "test", - "msecs": 7.900714874267578, + "msecs": 524.3141651153564, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6708.242893218994, + "relativeCreated": 8173.855781555176, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 8.041620254516602, + "msecs": 524.4495868682861, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6708.383798599243, + "relativeCreated": 8173.9912033081055, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00014090538024902344 + "time_consumption": 0.0001354217529296875 }, { "args": [], - "asctime": "2021-01-06 22:49:18,309", - "created": 1609969758.3097255, + "asctime": "2021-01-11 07:30:43,826", + "created": 1610346643.8262825, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -53267,82 +114674,82 @@ "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:18,008", - "created": 1609969758.0083263, + "asctime": "2021-01-11 07:30:43,524", + "created": 1610346643.5247397, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 724, - "message": "SP server: TX -> Authentification is required. Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", + "lineno": 736, + "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 8.326292037963867, - "msg": "%s TX -> Authentification is required. Message %s, %s, data: %s will be ignored.", + "msecs": 524.7397422790527, + "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6708.66847038269, + "relativeCreated": 8174.281358718872, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", - "0.25", + "prot-client:", + "0.28705533596837945", "17", "35" ], - "asctime": "2021-01-06 22:49:18,309", - "created": 1609969758.3094482, + "asctime": "2021-01-11 07:30:43,825", + "created": 1610346643.8259964, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP client: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 35) not in buffer.", + "lineno": 668, + "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 309.4482421875, + "msecs": 825.9963989257812, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7009.790420532227, + "relativeCreated": 8475.5380153656, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 309.7255229949951, + "msecs": 826.2825012207031, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7010.067701339722, + "relativeCreated": 8475.824117660522, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0002772808074951172 + "time_consumption": 0.000286102294921875 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:18,310", - "created": 1609969758.3103714, + "asctime": "2021-01-11 07:30:43,826", + "created": 1610346643.826943, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -53359,8 +114766,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:18,310", - "created": 1609969758.3100514, + "asctime": "2021-01-11 07:30:43,826", + "created": 1610346643.8266125, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -53370,15 +114777,15 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): False ()", "module": "test", - "msecs": 310.05144119262695, + "msecs": 826.6124725341797, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7010.3936195373535, + "relativeCreated": 8476.154088973999, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -53387,8 +114794,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:18,310", - "created": 1609969758.310217, + "asctime": "2021-01-11 07:30:43,826", + "created": 1610346643.826785, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -53398,37 +114805,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = False ()", "module": "test", - "msecs": 310.21690368652344, + "msecs": 826.7850875854492, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7010.55908203125, + "relativeCreated": 8476.326704025269, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 310.37139892578125, + "msecs": 826.9429206848145, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7010.713577270508, + "relativeCreated": 8476.484537124634, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001544952392578125 + "time_consumption": 0.00015783309936523438 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:18,310", - "created": 1609969758.3109212, + "asctime": "2021-01-11 07:30:43,827", + "created": 1610346643.8274474, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -53445,8 +114852,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:18,310", - "created": 1609969758.3106382, + "asctime": "2021-01-11 07:30:43,827", + "created": 1610346643.82717, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -53456,15 +114863,15 @@ "lineno": 22, "message": "Result (Received message on client side): None ()", "module": "test", - "msecs": 310.6381893157959, + "msecs": 827.1698951721191, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7010.9803676605225, + "relativeCreated": 8476.711511611938, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -53473,8 +114880,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:18,310", - "created": 1609969758.3107815, + "asctime": "2021-01-11 07:30:43,827", + "created": 1610346643.8273103, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -53484,37 +114891,37 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = None ()", "module": "test", - "msecs": 310.78147888183594, + "msecs": 827.31032371521, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7011.1236572265625, + "relativeCreated": 8476.85194015503, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 310.92119216918945, + "msecs": 827.4474143981934, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7011.263370513916, + "relativeCreated": 8476.989030838013, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00013971328735351562 + "time_consumption": 0.00013709068298339844 }, { "args": [ 17, 34 ], - "asctime": "2021-01-06 22:49:18,311", - "created": 1609969758.3113244, + "asctime": "2021-01-11 07:30:43,827", + "created": 1610346643.8278348, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -53527,48 +114934,48 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", "service: 17, data_id: 34" ], - "asctime": "2021-01-06 22:49:18,311", - "created": 1609969758.3111684, + "asctime": "2021-01-11 07:30:43,827", + "created": 1610346643.827693, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: 17, data_id: 34) to the authentification whitelist", + "lineno": 556, + "message": "prot-client: Adding Message (service: 17, data_id: 34) to the authentification whitelist", "module": "__init__", - "msecs": 311.1684322357178, + "msecs": 827.692985534668, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7011.510610580444, + "relativeCreated": 8477.234601974487, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 311.3243579864502, + "msecs": 827.8348445892334, "msg": "Added msg1 to client whitelist (sid=%d, did=%d)", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7011.666536331177, + "relativeCreated": 8477.376461029053, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00015592575073242188 + "time_consumption": 0.0001418590545654297 }, { "args": [], - "asctime": "2021-01-06 22:49:18,614", - "created": 1609969758.6140554, + "asctime": "2021-01-11 07:30:44,130", + "created": 1610346644.130247, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -53581,156 +114988,604 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:18,311", - "created": 1609969758.311606, + "asctime": "2021-01-11 07:30:43,828", + "created": 1610346643.828177, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 438, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 311.60593032836914, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 828.1769752502441, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7011.948108673096, + "relativeCreated": 8477.718591690063, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:18,312", - "created": 1609969758.3120413, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "test_helpers", - "msecs": 312.0412826538086, - "msg": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 7012.383460998535, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:18,312", - "created": 1609969758.3123436, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "test_helpers", - "msecs": 312.3435974121094, - "msg": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 7012.685775756836, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:" + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-06 22:49:18,312", - "created": 1609969758.3126109, + "asctime": "2021-01-11 07:30:43,829", + "created": 1610346643.8291266, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 829.1265964508057, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 8478.668212890625, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:43,837", + "created": 1610346643.8376472, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 837.6471996307373, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 8487.188816070557, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:43,837", + "created": 1610346643.8379412, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 837.9411697387695, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 8487.482786178589, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:43,838", + "created": 1610346643.838111, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 838.1109237670898, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 8487.65254020691, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:43,838", + "created": 1610346643.8383386, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 838.3386135101318, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 8487.880229949951, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:43,838", + "created": 1610346643.8385122, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 838.5121822357178, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 8488.053798675537, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:43,838", + "created": 1610346643.8387222, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 838.7222290039062, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 8488.263845443726, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:43,838", + "created": 1610346643.838855, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 838.8550281524658, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 8488.396644592285, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:43,839", + "created": 1610346643.839045, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 839.0450477600098, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 8488.58666419983, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:43,839", + "created": 1610346643.8391771, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 839.177131652832, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 8488.718748092651, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:43,839", + "created": 1610346643.8393502, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 839.3502235412598, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 8488.89183998108, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:43,839", + "created": 1610346643.8394804, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 839.4804000854492, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 8489.022016525269, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-client:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2021-01-11 07:30:43,839", + "created": 1610346643.8397658, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 839.7657871246338, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 8489.307403564453, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-server:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2021-01-11 07:30:43,844", + "created": 1610346643.8441355, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 844.1355228424072, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 8493.677139282227, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:43,844", + "created": 1610346643.8444574, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 844.4573879241943, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 8493.999004364014, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:43,844", + "created": 1610346643.8445826, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 844.5825576782227, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 8494.124174118042, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b" + ], + "asctime": "2021-01-11 07:30:43,844", + "created": 1610346643.8447924, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", + "module": "stp", + "msecs": 844.792366027832, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 8494.333982467651, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: 17, data_id: 34", + "status: okay", + "'msg1_data_to_be_transfered'" + ], + "asctime": "2021-01-11 07:30:43,845", + "created": 1610346643.8451087, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 845.1087474822998, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 8494.65036392212, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:43,845", + "created": 1610346643.8452399, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 441, - "message": "SP server: RX <- Authentification is required. Message will be ignored.", + "lineno": 463, + "message": "prot-server: Authentification is required. Incomming message will be ignored.", "module": "__init__", - "msecs": 312.6108646392822, - "msg": "%s RX <- Authentification is required. Message will be ignored.", + "msecs": 845.2398777008057, + "msg": "%s Authentification is required. Incomming message will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7012.953042984009, + "relativeCreated": 8494.781494140625, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561730238208, + "threadName": "Thread-11" }, { "args": [ - "SP server:", - "0.25", + "prot-server:", + "0.28705533596837945", "17", "34" ], - "asctime": "2021-01-06 22:49:18,613", - "created": 1609969758.6137252, + "asctime": "2021-01-11 07:30:44,129", + "created": 1610346644.1299562, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP server: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 34) not in buffer.", + "lineno": 668, + "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 613.7251853942871, + "msecs": 129.95624542236328, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7314.067363739014, + "relativeCreated": 8779.497861862183, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 614.0553951263428, + "msecs": 130.2471160888672, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7314.397573471069, + "relativeCreated": 8779.788732528687, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00033020973205566406 + "time_consumption": 0.00029087066650390625 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:18,614", - "created": 1609969758.6147068, + "asctime": "2021-01-11 07:30:44,130", + "created": 1610346644.1309376, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -53747,8 +115602,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:18,614", - "created": 1609969758.6143682, + "asctime": "2021-01-11 07:30:44,130", + "created": 1610346644.1306148, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -53758,15 +115613,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 614.368200302124, + "msecs": 130.6147575378418, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7314.710378646851, + "relativeCreated": 8780.156373977661, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -53775,8 +115630,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:18,614", - "created": 1609969758.614548, + "asctime": "2021-01-11 07:30:44,130", + "created": 1610346644.1307771, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -53786,37 +115641,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 614.5479679107666, + "msecs": 130.77712059020996, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7314.890146255493, + "relativeCreated": 8780.31873703003, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 614.7067546844482, + "msecs": 130.9375762939453, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7315.048933029175, + "relativeCreated": 8780.479192733765, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00015878677368164062 + "time_consumption": 0.00016045570373535156 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:18,615", - "created": 1609969758.6152225, + "asctime": "2021-01-11 07:30:44,131", + "created": 1610346644.1314368, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -53833,8 +115688,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:18,614", - "created": 1609969758.614936, + "asctime": "2021-01-11 07:30:44,131", + "created": 1610346644.1311626, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -53844,15 +115699,15 @@ "lineno": 22, "message": "Result (Received message on server side): None ()", "module": "test", - "msecs": 614.936113357544, + "msecs": 131.1626434326172, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7315.2782917022705, + "relativeCreated": 8780.704259872437, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -53861,8 +115716,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:18,615", - "created": 1609969758.6150806, + "asctime": "2021-01-11 07:30:44,131", + "created": 1610346644.1313026, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -53872,34 +115727,34 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = None ()", "module": "test", - "msecs": 615.0805950164795, + "msecs": 131.3025951385498, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7315.422773361206, + "relativeCreated": 8780.84421157837, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 615.2224540710449, + "msecs": 131.43682479858398, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7315.5646324157715, + "relativeCreated": 8780.978441238403, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001418590545654297 + "time_consumption": 0.0001342296600341797 }, { "args": [], - "asctime": "2021-01-06 22:49:18,916", - "created": 1609969758.9168777, + "asctime": "2021-01-11 07:30:44,433", + "created": 1610346644.4331126, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -53912,82 +115767,82 @@ "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:18,615", - "created": 1609969758.6155064, + "asctime": "2021-01-11 07:30:44,131", + "created": 1610346644.1317189, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 724, - "message": "SP server: TX -> Authentification is required. Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", + "lineno": 736, + "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 615.5064105987549, - "msg": "%s TX -> Authentification is required. Message %s, %s, data: %s will be ignored.", + "msecs": 131.71887397766113, + "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7315.848588943481, + "relativeCreated": 8781.26049041748, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", - "0.25", + "prot-client:", + "0.28705533596837945", "17", "35" ], - "asctime": "2021-01-06 22:49:18,916", - "created": 1609969758.9166036, + "asctime": "2021-01-11 07:30:44,432", + "created": 1610346644.432803, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP client: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 35) not in buffer.", + "lineno": 668, + "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 916.6035652160645, + "msecs": 432.8029155731201, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7616.945743560791, + "relativeCreated": 9082.34453201294, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 916.8777465820312, + "msecs": 433.11262130737305, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7617.219924926758, + "relativeCreated": 9082.654237747192, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0002741813659667969 + "time_consumption": 0.0003097057342529297 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:18,917", - "created": 1609969758.9175198, + "asctime": "2021-01-11 07:30:44,433", + "created": 1610346644.433904, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -54004,8 +115859,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:18,917", - "created": 1609969758.917172, + "asctime": "2021-01-11 07:30:44,433", + "created": 1610346644.4334166, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -54015,15 +115870,15 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): False ()", "module": "test", - "msecs": 917.1719551086426, + "msecs": 433.41660499572754, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7617.514133453369, + "relativeCreated": 9082.958221435547, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -54032,8 +115887,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:18,917", - "created": 1609969758.9173377, + "asctime": "2021-01-11 07:30:44,433", + "created": 1610346644.433641, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -54043,37 +115898,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = False ()", "module": "test", - "msecs": 917.3376560211182, + "msecs": 433.6409568786621, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7617.679834365845, + "relativeCreated": 9083.182573318481, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 917.5198078155518, + "msecs": 433.90393257141113, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7617.861986160278, + "relativeCreated": 9083.44554901123, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00018215179443359375 + "time_consumption": 0.00026297569274902344 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:18,918", - "created": 1609969758.91808, + "asctime": "2021-01-11 07:30:44,434", + "created": 1610346644.4346728, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -54090,8 +115945,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:18,917", - "created": 1609969758.9177537, + "asctime": "2021-01-11 07:30:44,434", + "created": 1610346644.434274, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -54101,15 +115956,15 @@ "lineno": 22, "message": "Result (Received message on client side): None ()", "module": "test", - "msecs": 917.7536964416504, + "msecs": 434.27395820617676, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7618.095874786377, + "relativeCreated": 9083.815574645996, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -54118,8 +115973,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:18,917", - "created": 1609969758.9179356, + "asctime": "2021-01-11 07:30:44,434", + "created": 1610346644.4345067, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -54129,37 +115984,37 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = None ()", "module": "test", - "msecs": 917.9356098175049, + "msecs": 434.5066547393799, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7618.277788162231, + "relativeCreated": 9084.0482711792, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 918.0800914764404, + "msecs": 434.6728324890137, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7618.422269821167, + "relativeCreated": 9084.214448928833, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00014448165893554688 + "time_consumption": 0.00016617774963378906 }, { "args": [ 17, 34 ], - "asctime": "2021-01-06 22:49:18,918", - "created": 1609969758.9185092, + "asctime": "2021-01-11 07:30:44,435", + "created": 1610346644.435092, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -54172,48 +116027,48 @@ "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "service: 17, data_id: 34" ], - "asctime": "2021-01-06 22:49:18,918", - "created": 1609969758.9183593, + "asctime": "2021-01-11 07:30:44,434", + "created": 1610346644.4349453, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: 17, data_id: 34) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: 17, data_id: 34) to the authentification whitelist", "module": "__init__", - "msecs": 918.3592796325684, + "msecs": 434.94534492492676, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7618.701457977295, + "relativeCreated": 9084.486961364746, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 918.5092449188232, + "msecs": 435.0919723510742, "msg": "Added msg1 to server whitelist (sid=%d, did=%d)", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7618.85142326355, + "relativeCreated": 9084.633588790894, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001499652862548828 + "time_consumption": 0.00014662742614746094 }, { "args": [], - "asctime": "2021-01-06 22:49:19,020", - "created": 1609969759.0206451, + "asctime": "2021-01-11 07:30:44,636", + "created": 1610346644.6367595, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -54226,156 +116081,575 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:18,918", - "created": 1609969758.9188557, + "asctime": "2021-01-11 07:30:44,435", + "created": 1610346644.4354527, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 438, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 918.8556671142578, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 435.4526996612549, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7619.197845458984, + "relativeCreated": 9084.994316101074, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:18,919", - "created": 1609969758.9193037, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "test_helpers", - "msecs": 919.3036556243896, - "msg": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 7619.645833969116, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:18,919", - "created": 1609969758.9196026, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "test_helpers", - "msecs": 919.602632522583, - "msg": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 7619.94481086731, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:44,436", + "created": 1610346644.4364183, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 436.4182949066162, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9085.959911346436, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:44,444", + "created": 1610346644.4449267, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 444.9267387390137, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9094.468355178833, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:44,445", + "created": 1610346644.4452715, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 445.27149200439453, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9094.813108444214, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:44,445", + "created": 1610346644.4454777, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 445.4777240753174, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9095.019340515137, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:44,445", + "created": 1610346644.4457142, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 445.71423530578613, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9095.255851745605, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:44,445", + "created": 1610346644.4458642, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 445.864200592041, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9095.40581703186, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:44,446", + "created": 1610346644.4461024, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 446.1023807525635, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9095.643997192383, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:44,446", + "created": 1610346644.4462426, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 446.2425708770752, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9095.784187316895, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:44,446", + "created": 1610346644.4464345, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 446.43449783325195, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9095.976114273071, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:44,446", + "created": 1610346644.4465814, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 446.5813636779785, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9096.122980117798, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:44,446", + "created": 1610346644.4467685, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 446.76852226257324, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9096.310138702393, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:44,446", + "created": 1610346644.4469025, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 446.9025135040283, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9096.444129943848, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-client:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2021-01-11 07:30:44,447", + "created": 1610346644.4471765, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 447.176456451416, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9096.718072891235, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-server:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2021-01-11 07:30:44,451", + "created": 1610346644.4515924, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 451.59244537353516, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9101.134061813354, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:44,452", + "created": 1610346644.4520023, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 452.00228691101074, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9101.54390335083, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:44,452", + "created": 1610346644.452145, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 452.1450996398926, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9101.686716079712, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b" + ], + "asctime": "2021-01-11 07:30:44,452", + "created": 1610346644.4523883, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", + "module": "stp", + "msecs": 452.3882865905762, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9101.929903030396, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:18,919", - "created": 1609969758.9198983, + "asctime": "2021-01-11 07:30:44,452", + "created": 1610346644.4527028, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 438, + "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 919.898271560669, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 452.70276069641113, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7620.2404499053955, + "relativeCreated": 9102.24437713623, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561730238208, + "threadName": "Thread-11" }, { "args": [ - "SP server:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:18,920", - "created": 1609969758.9201255, + "asctime": "2021-01-11 07:30:44,452", + "created": 1610346644.4528818, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP server: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 920.1254844665527, + "msecs": 452.8818130493164, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7620.467662811279, + "relativeCreated": 9102.423429489136, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561730238208, + "threadName": "Thread-11" } ], - "msecs": 20.6451416015625, + "msecs": 636.7595195770264, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7720.987319946289, + "relativeCreated": 9286.301136016846, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.10051965713500977 + "time_consumption": 0.18387770652770996 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:19,021", - "created": 1609969759.0214796, + "asctime": "2021-01-11 07:30:44,637", + "created": 1610346644.6375873, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -54392,8 +116666,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:19,021", - "created": 1609969759.0211103, + "asctime": "2021-01-11 07:30:44,637", + "created": 1610346644.6372173, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -54403,15 +116677,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 21.11029624938965, + "msecs": 637.2172832489014, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7721.452474594116, + "relativeCreated": 9286.75889968872, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -54420,8 +116694,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:19,021", - "created": 1609969759.0212934, + "asctime": "2021-01-11 07:30:44,637", + "created": 1610346644.637394, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -54431,37 +116705,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 21.29340171813965, + "msecs": 637.3939514160156, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7721.635580062866, + "relativeCreated": 9286.935567855835, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 21.47960662841797, + "msecs": 637.587308883667, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7721.8217849731445, + "relativeCreated": 9287.128925323486, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001862049102783203 + "time_consumption": 0.0001933574676513672 }, { "args": [ "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-06 22:49:19,022", - "created": 1609969759.0221078, + "asctime": "2021-01-11 07:30:44,638", + "created": 1610346644.638166, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -54478,8 +116752,8 @@ "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-06 22:49:19,021", - "created": 1609969759.0217328, + "asctime": "2021-01-11 07:30:44,637", + "created": 1610346644.6378348, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -54489,15 +116763,15 @@ "lineno": 22, "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 21.732807159423828, + "msecs": 637.8347873687744, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7722.07498550415, + "relativeCreated": 9287.376403808594, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -54506,8 +116780,8 @@ "{'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-06 22:49:19,021", - "created": 1609969759.0219233, + "asctime": "2021-01-11 07:30:44,637", + "created": 1610346644.637989, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -54517,34 +116791,34 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 21.923303604125977, + "msecs": 637.9890441894531, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7722.2654819488525, + "relativeCreated": 9287.530660629272, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 22.107839584350586, + "msecs": 638.1659507751465, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7722.450017929077, + "relativeCreated": 9287.707567214966, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00018453598022460938 + "time_consumption": 0.00017690658569335938 }, { "args": [], - "asctime": "2021-01-06 22:49:19,323", - "created": 1609969759.323803, + "asctime": "2021-01-11 07:30:44,940", + "created": 1610346644.9400847, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -54557,82 +116831,82 @@ "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:19,022", - "created": 1609969759.022403, + "asctime": "2021-01-11 07:30:44,638", + "created": 1610346644.6384864, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 724, - "message": "SP server: TX -> Authentification is required. Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", + "lineno": 736, + "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 22.40300178527832, - "msg": "%s TX -> Authentification is required. Message %s, %s, data: %s will be ignored.", + "msecs": 638.486385345459, + "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 7722.745180130005, + "relativeCreated": 9288.028001785278, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", - "0.25", + "prot-client:", + "0.28705533596837945", "17", "35" ], - "asctime": "2021-01-06 22:49:19,323", - "created": 1609969759.323532, + "asctime": "2021-01-11 07:30:44,939", + "created": 1610346644.9398072, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP client: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 35) not in buffer.", + "lineno": 668, + "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 323.5321044921875, + "msecs": 939.8071765899658, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8023.874282836914, + "relativeCreated": 9589.348793029785, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 323.8029479980469, + "msecs": 940.08469581604, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8024.145126342773, + "relativeCreated": 9589.62631225586, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.000270843505859375 + "time_consumption": 0.00027751922607421875 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:19,324", - "created": 1609969759.324862, + "asctime": "2021-01-11 07:30:44,940", + "created": 1610346644.940721, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -54649,8 +116923,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:19,324", - "created": 1609969759.324492, + "asctime": "2021-01-11 07:30:44,940", + "created": 1610346644.940391, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -54660,15 +116934,15 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): False ()", "module": "test", - "msecs": 324.4919776916504, + "msecs": 940.3910636901855, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8024.834156036377, + "relativeCreated": 9589.932680130005, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -54677,8 +116951,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:19,324", - "created": 1609969759.3246965, + "asctime": "2021-01-11 07:30:44,940", + "created": 1610346644.9405718, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -54688,37 +116962,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = False ()", "module": "test", - "msecs": 324.69654083251953, + "msecs": 940.5717849731445, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8025.038719177246, + "relativeCreated": 9590.113401412964, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 324.862003326416, + "msecs": 940.7210350036621, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8025.204181671143, + "relativeCreated": 9590.262651443481, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00016546249389648438 + "time_consumption": 0.00014925003051757812 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:19,325", - "created": 1609969759.3253894, + "asctime": "2021-01-11 07:30:44,941", + "created": 1610346644.9412203, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -54735,8 +117009,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:19,325", - "created": 1609969759.3250988, + "asctime": "2021-01-11 07:30:44,940", + "created": 1610346644.940948, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -54746,15 +117020,15 @@ "lineno": 22, "message": "Result (Received message on client side): None ()", "module": "test", - "msecs": 325.09875297546387, + "msecs": 940.9480094909668, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8025.44093132019, + "relativeCreated": 9590.489625930786, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -54763,8 +117037,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:19,325", - "created": 1609969759.3252468, + "asctime": "2021-01-11 07:30:44,941", + "created": 1610346644.9410865, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -54774,37 +117048,37 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = None ()", "module": "test", - "msecs": 325.24681091308594, + "msecs": 941.0865306854248, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8025.5889892578125, + "relativeCreated": 9590.628147125244, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 325.3893852233887, + "msecs": 941.2202835083008, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8025.731563568115, + "relativeCreated": 9590.76189994812, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00014257431030273438 + "time_consumption": 0.00013375282287597656 }, { "args": [ 17, 35 ], - "asctime": "2021-01-06 22:49:19,326", - "created": 1609969759.326004, + "asctime": "2021-01-11 07:30:44,941", + "created": 1610346644.9418538, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -54817,75 +117091,75 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", "service: 17, data_id: 35" ], - "asctime": "2021-01-06 22:49:19,325", - "created": 1609969759.325636, + "asctime": "2021-01-11 07:30:44,941", + "created": 1610346644.9415324, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: 17, data_id: 35) to the authentification whitelist", + "lineno": 556, + "message": "prot-client: Adding Message (service: 17, data_id: 35) to the authentification whitelist", "module": "__init__", - "msecs": 325.6359100341797, + "msecs": 941.5323734283447, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8025.978088378906, + "relativeCreated": 9591.073989868164, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "prot-server:", "service: 17, data_id: 35" ], - "asctime": "2021-01-06 22:49:19,325", - "created": 1609969759.3258476, + "asctime": "2021-01-11 07:30:44,941", + "created": 1610346644.941706, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: 17, data_id: 35) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: 17, data_id: 35) to the authentification whitelist", "module": "__init__", - "msecs": 325.8476257324219, + "msecs": 941.7059421539307, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8026.189804077148, + "relativeCreated": 9591.24755859375, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 326.0040283203125, + "msecs": 941.8537616729736, "msg": "Added msg2 to client and server whitelist (sid=%d, did=%d)", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8026.346206665039, + "relativeCreated": 9591.395378112793, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.000156402587890625 + "time_consumption": 0.00014781951904296875 }, { "args": [], - "asctime": "2021-01-06 22:49:19,428", - "created": 1609969759.4280608, + "asctime": "2021-01-11 07:30:45,143", + "created": 1610346645.1434078, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -54898,156 +117172,575 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:19,326", - "created": 1609969759.3262875, + "asctime": "2021-01-11 07:30:44,942", + "created": 1610346644.942194, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 438, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 326.28750801086426, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 942.1939849853516, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8026.629686355591, + "relativeCreated": 9591.73560142517, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:19,326", - "created": 1609969759.3267205, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "test_helpers", - "msecs": 326.7204761505127, - "msg": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8027.062654495239, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:19,327", - "created": 1609969759.327053, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "test_helpers", - "msecs": 327.0530700683594, - "msg": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8027.395248413086, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:44,943", + "created": 1610346644.9430804, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 943.0804252624512, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9592.62204170227, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:44,951", + "created": 1610346644.9515145, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 951.514482498169, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9601.056098937988, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:44,951", + "created": 1610346644.951739, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 951.7390727996826, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9601.280689239502, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:44,951", + "created": 1610346644.9518447, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 951.8446922302246, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9601.386308670044, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:44,951", + "created": 1610346644.9519696, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 951.9696235656738, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9601.511240005493, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:44,952", + "created": 1610346644.9520595, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 952.0595073699951, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9601.601123809814, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:44,952", + "created": 1610346644.9521918, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 952.1918296813965, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9601.733446121216, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:44,952", + "created": 1610346644.9522731, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 952.2731304168701, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9601.81474685669, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:44,952", + "created": 1610346644.9523883, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 952.3882865905762, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9601.929903030396, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:44,952", + "created": 1610346644.9524696, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 952.4695873260498, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9602.01120376587, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:44,952", + "created": 1610346644.9525752, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 952.5752067565918, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9602.116823196411, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:44,952", + "created": 1610346644.952673, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 952.6729583740234, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9602.214574813843, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-client:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2021-01-11 07:30:44,952", + "created": 1610346644.9528434, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 952.843427658081, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9602.3850440979, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "comm-server:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2021-01-11 07:30:44,957", + "created": 1610346644.957151, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 957.150936126709, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9606.692552566528, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:44,957", + "created": 1610346644.9574904, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 957.4904441833496, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9607.032060623169, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:44,957", + "created": 1610346644.9576175, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 957.6175212860107, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9607.15913772583, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "STP:", + "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b" + ], + "asctime": "2021-01-11 07:30:44,957", + "created": 1610346644.9578106, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", + "module": "stp", + "msecs": 957.810640335083, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9607.352256774902, + "stack_info": null, + "thread": 140561730238208, + "threadName": "Thread-11" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:19,327", - "created": 1609969759.3273482, + "asctime": "2021-01-11 07:30:44,958", + "created": 1610346644.9580905, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 438, + "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 327.3482322692871, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 958.0905437469482, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8027.690410614014, + "relativeCreated": 9607.632160186768, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561730238208, + "threadName": "Thread-11" }, { "args": [ - "SP server:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:19,327", - "created": 1609969759.3275545, + "asctime": "2021-01-11 07:30:44,958", + "created": 1610346644.958225, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP server: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 327.55446434020996, + "msecs": 958.2250118255615, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8027.8966426849365, + "relativeCreated": 9607.76662826538, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561730238208, + "threadName": "Thread-11" } ], - "msecs": 428.06077003479004, + "msecs": 143.40782165527344, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8128.402948379517, + "relativeCreated": 9792.949438095093, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.10050630569458008 + "time_consumption": 0.18518280982971191 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:19,428", - "created": 1609969759.4288328, + "asctime": "2021-01-11 07:30:45,144", + "created": 1610346645.1441996, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -55064,8 +117757,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:19,428", - "created": 1609969759.428468, + "asctime": "2021-01-11 07:30:45,143", + "created": 1610346645.143871, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -55075,15 +117768,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 428.4679889678955, + "msecs": 143.87106895446777, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8128.810167312622, + "relativeCreated": 9793.412685394287, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -55092,8 +117785,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:19,428", - "created": 1609969759.4286456, + "asctime": "2021-01-11 07:30:45,144", + "created": 1610346645.1440456, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -55103,37 +117796,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 428.6456108093262, + "msecs": 144.04559135437012, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8128.987789154053, + "relativeCreated": 9793.58720779419, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 428.8327693939209, + "msecs": 144.19960975646973, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8129.1749477386475, + "relativeCreated": 9793.741226196289, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00018715858459472656 + "time_consumption": 0.00015401840209960938 }, { "args": [ "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-06 22:49:19,429", - "created": 1609969759.4293854, + "asctime": "2021-01-11 07:30:45,144", + "created": 1610346645.1447759, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -55150,8 +117843,8 @@ "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-06 22:49:19,429", - "created": 1609969759.429082, + "asctime": "2021-01-11 07:30:45,144", + "created": 1610346645.1444738, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -55161,15 +117854,15 @@ "lineno": 22, "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 429.08191680908203, + "msecs": 144.47379112243652, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8129.424095153809, + "relativeCreated": 9794.015407562256, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -55178,8 +117871,8 @@ "{'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-06 22:49:19,429", - "created": 1609969759.4292345, + "asctime": "2021-01-11 07:30:45,144", + "created": 1610346645.144628, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -55189,34 +117882,34 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 429.23450469970703, + "msecs": 144.62804794311523, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8129.576683044434, + "relativeCreated": 9794.169664382935, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 429.3854236602783, + "msecs": 144.7758674621582, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8129.727602005005, + "relativeCreated": 9794.317483901978, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00015091896057128906 + "time_consumption": 0.00014781951904296875 }, { "args": [], - "asctime": "2021-01-06 22:49:19,531", - "created": 1609969759.5316155, + "asctime": "2021-01-11 07:30:45,346", + "created": 1610346645.3464649, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -55229,183 +117922,575 @@ "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:19,429", - "created": 1609969759.4296749, + "asctime": "2021-01-11 07:30:45,145", + "created": 1610346645.1451535, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 438, + "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 429.6748638153076, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 145.15352249145508, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8130.017042160034, + "relativeCreated": 9794.695138931274, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:19,430", - "created": 1609969759.4301596, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "module": "test_helpers", - "msecs": 430.1595687866211, - "msg": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8130.501747131348, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:19,430", - "created": 1609969759.4304597, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "module": "test_helpers", - "msecs": 430.45973777770996, - "msg": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8130.8019161224365, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:45,146", + "created": 1610346645.1461644, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 146.1644172668457, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9795.706033706665, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:45,154", + "created": 1610346645.1546202, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 154.62017059326172, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9804.161787033081, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,154", + "created": 1610346645.1549537, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 154.9537181854248, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9804.495334625244, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:45,155", + "created": 1610346645.1551247, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 155.12466430664062, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9804.66628074646, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,155", + "created": 1610346645.1553693, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 155.36928176879883, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9804.910898208618, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:45,155", + "created": 1610346645.155516, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 155.5159091949463, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9805.057525634766, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,155", + "created": 1610346645.1557233, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 155.72333335876465, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9805.264949798584, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:45,155", + "created": 1610346645.1558578, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 155.85780143737793, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9805.399417877197, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,156", + "created": 1610346645.1560574, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 156.05735778808594, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9805.598974227905, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:45,156", + "created": 1610346645.1561954, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 156.19540214538574, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9805.737018585205, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,156", + "created": 1610346645.1563833, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 156.38327598571777, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9805.924892425537, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:45,156", + "created": 1610346645.1565192, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 156.51917457580566, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9806.060791015625, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "comm-server:", + "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" + ], + "asctime": "2021-01-11 07:30:45,156", + "created": 1610346645.1568034, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", + "module": "__init__", + "msecs": 156.80336952209473, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9806.344985961914, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "comm-client:", + "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" + ], + "asctime": "2021-01-11 07:30:45,161", + "created": 1610346645.1612256, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", + "module": "__init__", + "msecs": 161.2255573272705, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9810.76717376709, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,161", + "created": 1610346645.1616297, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 161.62967681884766, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9811.171293258667, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:45,161", + "created": 1610346645.1617832, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 161.78321838378906, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9811.324834823608, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "STP:", + "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f" + ], + "asctime": "2021-01-11 07:30:45,162", + "created": 1610346645.162022, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", + "module": "stp", + "msecs": 162.02211380004883, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 9811.563730239868, + "stack_info": null, + "thread": 140561721845504, + "threadName": "Thread-12" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:19,430", - "created": 1609969759.4307544, + "asctime": "2021-01-11 07:30:45,162", + "created": 1610346645.1623724, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 438, + "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 430.7544231414795, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 162.37235069274902, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8131.096601486206, + "relativeCreated": 9811.913967132568, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561721845504, + "threadName": "Thread-12" }, { "args": [ - "SP client:", - "status: service or data unknown" + "prot-client:" ], - "asctime": "2021-01-06 22:49:19,430", - "created": 1609969759.4309213, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: service or data unknown", - "module": "__init__", - "msecs": 430.9213161468506, - "msg": "%s RX <- Message has a peculiar status: %s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8131.263494491577, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:" - ], - "asctime": "2021-01-06 22:49:19,431", - "created": 1609969759.4311225, + "asctime": "2021-01-11 07:30:45,162", + "created": 1610346645.1625516, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 431.1225414276123, + "msecs": 162.5516414642334, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8131.464719772339, + "relativeCreated": 9812.093257904053, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561721845504, + "threadName": "Thread-12" } ], - "msecs": 531.6154956817627, + "msecs": 346.4648723602295, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8231.95767402649, + "relativeCreated": 9996.006488800049, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.10049295425415039 + "time_consumption": 0.1839132308959961 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:19,532", - "created": 1609969759.532369, + "asctime": "2021-01-11 07:30:45,347", + "created": 1610346645.3473575, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -55422,8 +118507,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:19,532", - "created": 1609969759.5320249, + "asctime": "2021-01-11 07:30:45,347", + "created": 1610346645.347007, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -55433,15 +118518,15 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 532.0248603820801, + "msecs": 347.00703620910645, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8232.367038726807, + "relativeCreated": 9996.548652648926, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -55450,8 +118535,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:19,532", - "created": 1609969759.5322077, + "asctime": "2021-01-11 07:30:45,347", + "created": 1610346645.3472013, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -55461,37 +118546,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 532.207727432251, + "msecs": 347.2013473510742, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8232.549905776978, + "relativeCreated": 9996.742963790894, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 532.3688983917236, + "msecs": 347.35751152038574, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8232.71107673645, + "relativeCreated": 9996.899127960205, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00016117095947265625 + "time_consumption": 0.00015616416931152344 }, { "args": [ "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-01-06 22:49:19,532", - "created": 1609969759.5329769, + "asctime": "2021-01-11 07:30:45,347", + "created": 1610346645.347936, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -55508,8 +118593,8 @@ "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-01-06 22:49:19,532", - "created": 1609969759.5326471, + "asctime": "2021-01-11 07:30:45,347", + "created": 1610346645.3476095, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -55519,15 +118604,15 @@ "lineno": 22, "message": "Result (Received message on client side): {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", "module": "test", - "msecs": 532.6471328735352, + "msecs": 347.6095199584961, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8232.989311218262, + "relativeCreated": 9997.151136398315, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -55536,8 +118621,8 @@ "{'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-01-06 22:49:19,532", - "created": 1609969759.5328093, + "asctime": "2021-01-11 07:30:45,347", + "created": 1610346645.3477752, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -55547,41 +118632,41 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = {'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", "module": "test", - "msecs": 532.8092575073242, + "msecs": 347.7752208709717, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8233.15143585205, + "relativeCreated": 9997.316837310791, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 532.9768657684326, + "msecs": 347.93591499328613, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8233.31904411316, + "relativeCreated": 9997.477531433105, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00016760826110839844 + "time_consumption": 0.00016069412231445312 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 1.8348534107208252, - "time_finished": "2021-01-06 22:49:19,532", - "time_start": "2021-01-06 22:49:17,698" + "time_consumption": 2.480708360671997, + "time_finished": "2021-01-11 07:30:45,347", + "time_start": "2021-01-11 07:30:42,867" }, "_Lmn-kE0hEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:49:19,533", - "created": 1609969759.5336149, + "asctime": "2021-01-11 07:30:45,348", + "created": 1610346645.3489585, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -55592,1154 +118677,2519 @@ "message": "_Lmn-kE0hEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 533.6148738861084, + "msecs": 348.95849227905273, "msg": "_Lmn-kE0hEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8233.957052230835, + "relativeCreated": 9998.500108718872, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:19,540", - "created": 1609969759.5406404, + "asctime": "2021-01-11 07:30:45,357", + "created": 1610346645.3575613, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:19,534", - "created": 1609969759.5340724, + "asctime": "2021-01-11 07:30:45,349", + "created": 1610346645.3499653, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 534.0723991394043, + "msecs": 349.96533393859863, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8234.41457748413, + "relativeCreated": 9999.506950378418, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:19,534", - "created": 1609969759.5342734, + "asctime": "2021-01-11 07:30:45,350", + "created": 1610346645.3508475, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 534.2733860015869, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 350.8474826812744, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8234.615564346313, + "relativeCreated": 10000.389099121094, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:19,534", - "created": 1609969759.5344973, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 534.4972610473633, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8234.83943939209, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:19,534", - "created": 1609969759.534661, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 534.661054611206, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8235.003232955933, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:19,534", - "created": 1609969759.5348327, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 534.8327159881592, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8235.174894332886, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:19,534", - "created": 1609969759.534986, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 534.9860191345215, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8235.328197479248, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:19,535", - "created": 1609969759.5351605, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 535.1605415344238, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8235.50271987915, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:19,535", - "created": 1609969759.535335, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 535.3350639343262, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8235.677242279053, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:19,535", - "created": 1609969759.535496, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 535.4959964752197, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8235.838174819946, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:19,535", - "created": 1609969759.5356565, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 535.6564521789551, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8235.998630523682, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:19,535", - "created": 1609969759.5357985, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 535.7985496520996, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8236.140727996826, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:19,535", - "created": 1609969759.5359597, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 535.9597206115723, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8236.301898956299, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:19,536", - "created": 1609969759.5361295, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 536.1294746398926, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8236.47165298462, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:19,536", - "created": 1609969759.5362885, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 536.2884998321533, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8236.63067817688, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:19,536", - "created": 1609969759.5364437, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 536.4437103271484, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8236.785888671875, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:19,536", - "created": 1609969759.5366013, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 536.6013050079346, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8236.943483352661, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:19,536", - "created": 1609969759.5367544, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 536.7543697357178, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8237.096548080444, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:19,536", - "created": 1609969759.5369105, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 536.9105339050293, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8237.252712249756, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:19,537", - "created": 1609969759.5370555, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 537.055492401123, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8237.39767074585, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:19,537", - "created": 1609969759.5371988, + "asctime": "2021-01-11 07:30:45,351", + "created": 1610346645.3510604, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 537.1987819671631, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 351.0603904724121, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8237.54096031189, + "relativeCreated": 10000.602006912231, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:19,537", - "created": 1609969759.5374813, + "asctime": "2021-01-11 07:30:45,351", + "created": 1610346645.3514223, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 537.4813079833984, + "msecs": 351.4223098754883, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8237.823486328125, + "relativeCreated": 10000.963926315308, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:19,537", - "created": 1609969759.537642, + "asctime": "2021-01-11 07:30:45,351", + "created": 1610346645.3516047, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 537.6420021057129, + "msecs": 351.604700088501, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8237.98418045044, + "relativeCreated": 10001.14631652832, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:19,537", - "created": 1609969759.5378668, + "asctime": "2021-01-11 07:30:45,351", + "created": 1610346645.35183, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 537.8668308258057, + "msecs": 351.83000564575195, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8238.209009170532, + "relativeCreated": 10001.371622085571, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:19,538", - "created": 1609969759.5380228, + "asctime": "2021-01-11 07:30:45,351", + "created": 1610346645.351987, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 538.0227565765381, + "msecs": 351.9868850708008, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8238.364934921265, + "relativeCreated": 10001.52850151062, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:19,538", - "created": 1609969759.5381703, + "asctime": "2021-01-11 07:30:45,352", + "created": 1610346645.3521657, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 538.170337677002, + "msecs": 352.16569900512695, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8238.512516021729, + "relativeCreated": 10001.707315444946, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:19,538", - "created": 1609969759.538317, + "asctime": "2021-01-11 07:30:45,352", + "created": 1610346645.3523095, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 538.3169651031494, + "msecs": 352.3094654083252, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8238.659143447876, + "relativeCreated": 10001.851081848145, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:19,538", - "created": 1609969759.5384748, + "asctime": "2021-01-11 07:30:45,352", + "created": 1610346645.3524702, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 538.4747982025146, + "msecs": 352.47015953063965, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8238.816976547241, + "relativeCreated": 10002.011775970459, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:19,538", - "created": 1609969759.5386357, + "asctime": "2021-01-11 07:30:45,352", + "created": 1610346645.3526304, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 538.6357307434082, + "msecs": 352.6303768157959, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8238.977909088135, + "relativeCreated": 10002.171993255615, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:19,538", - "created": 1609969759.5388045, + "asctime": "2021-01-11 07:30:45,352", + "created": 1610346645.3527849, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 538.8045310974121, + "msecs": 352.7848720550537, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8239.146709442139, + "relativeCreated": 10002.326488494873, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:19,538", - "created": 1609969759.5389602, + "asctime": "2021-01-11 07:30:45,352", + "created": 1610346645.3529508, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 538.9602184295654, + "msecs": 352.9508113861084, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8239.302396774292, + "relativeCreated": 10002.492427825928, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:19,539", - "created": 1609969759.5391002, + "asctime": "2021-01-11 07:30:45,353", + "created": 1610346645.3530893, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 539.100170135498, + "msecs": 353.0893325805664, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8239.442348480225, + "relativeCreated": 10002.630949020386, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:19,539", - "created": 1609969759.539259, + "asctime": "2021-01-11 07:30:45,353", + "created": 1610346645.3532422, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 539.2589569091797, + "msecs": 353.2421588897705, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8239.601135253906, + "relativeCreated": 10002.78377532959, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:19,539", - "created": 1609969759.5394275, + "asctime": "2021-01-11 07:30:45,353", + "created": 1610346645.3534057, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 539.4275188446045, + "msecs": 353.4057140350342, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8239.769697189331, + "relativeCreated": 10002.947330474854, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:19,539", - "created": 1609969759.5395746, + "asctime": "2021-01-11 07:30:45,353", + "created": 1610346645.3535957, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 539.5746231079102, + "msecs": 353.5957336425781, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8239.916801452637, + "relativeCreated": 10003.137350082397, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:19,539", - "created": 1609969759.539736, + "asctime": "2021-01-11 07:30:45,353", + "created": 1610346645.353752, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 539.7360324859619, + "msecs": 353.75189781188965, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8240.078210830688, + "relativeCreated": 10003.293514251709, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:19,539", - "created": 1609969759.5399034, + "asctime": "2021-01-11 07:30:45,353", + "created": 1610346645.3539093, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 539.9034023284912, + "msecs": 353.9092540740967, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8240.245580673218, + "relativeCreated": 10003.450870513916, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:19,540", - "created": 1609969759.540058, + "asctime": "2021-01-11 07:30:45,354", + "created": 1610346645.354058, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 540.057897567749, + "msecs": 354.05802726745605, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8240.400075912476, + "relativeCreated": 10003.599643707275, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:19,540", - "created": 1609969759.5402036, + "asctime": "2021-01-11 07:30:45,354", + "created": 1610346645.3541975, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 540.2035713195801, + "msecs": 354.19750213623047, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8240.545749664307, + "relativeCreated": 10003.73911857605, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:19,540", - "created": 1609969759.5403476, + "asctime": "2021-01-11 07:30:45,354", + "created": 1610346645.3543499, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 540.3475761413574, + "msecs": 354.34985160827637, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8240.689754486084, + "relativeCreated": 10003.891468048096, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:19,540", - "created": 1609969759.540504, + "asctime": "2021-01-11 07:30:45,354", + "created": 1610346645.3544893, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 540.503978729248, + "msecs": 354.4893264770508, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8240.846157073975, + "relativeCreated": 10004.03094291687, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:45,354", + "created": 1610346645.3547878, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 354.78782653808594, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10004.329442977905, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:45,354", + "created": 1610346645.3549433, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 354.94327545166016, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10004.48489189148, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:45,355", + "created": 1610346645.355151, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 355.1509380340576, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10004.692554473877, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:45,355", + "created": 1610346645.3553042, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 355.3042411804199, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10004.84585762024, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:45,355", + "created": 1610346645.3554463, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 355.44633865356445, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10004.987955093384, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:45,355", + "created": 1610346645.3555865, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 355.5865287780762, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10005.128145217896, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:45,355", + "created": 1610346645.3557353, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 355.73530197143555, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10005.276918411255, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:45,355", + "created": 1610346645.3558912, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 355.89122772216797, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10005.432844161987, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:45,356", + "created": 1610346645.3560443, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 356.0442924499512, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10005.58590888977, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:45,356", + "created": 1610346645.3562086, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 356.20856285095215, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10005.750179290771, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:45,356", + "created": 1610346645.3563452, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 356.34517669677734, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10005.886793136597, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:45,356", + "created": 1610346645.356496, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 356.49609565734863, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10006.037712097168, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:45,356", + "created": 1610346645.3566844, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 356.68444633483887, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10006.226062774658, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:45,356", + "created": 1610346645.3568413, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 356.8413257598877, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10006.382942199707, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:45,356", + "created": 1610346645.3569927, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 356.9927215576172, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10006.534337997437, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:45,357", + "created": 1610346645.3571475, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 357.1474552154541, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10006.689071655273, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:45,357", + "created": 1610346645.3573544, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 357.35440254211426, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10006.896018981934, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:45,357", + "created": 1610346645.357404, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 357.4039936065674, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10006.945610046387, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:45,357", + "created": 1610346645.3574655, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 357.4655055999756, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10007.007122039795, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:45,357", + "created": 1610346645.3575149, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 357.5148582458496, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10007.056474685669, + "stack_info": null, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 540.6403541564941, + "msecs": 357.5613498687744, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8240.98253250122, + "relativeCreated": 10007.102966308594, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00013637542724609375 + "time_consumption": 4.649162292480469e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:19,540", - "created": 1609969759.5409148, + "asctime": "2021-01-11 07:30:45,701", + "created": 1610346645.701418, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:45,357", + "created": 1610346645.3576658, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 357.6657772064209, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10007.20739364624, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:45,357", + "created": 1610346645.3577123, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 357.7122688293457, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10007.253885269165, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:45,357", + "created": 1610346645.357758, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 357.7580451965332, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10007.299661636353, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:45,357", + "created": 1610346645.357846, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 357.8460216522217, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10007.387638092041, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:45,358", + "created": 1610346645.358042, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 358.04200172424316, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10007.583618164062, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:45,358", + "created": 1610346645.3580933, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 358.09326171875, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10007.63487815857, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:45,358", + "created": 1610346645.3581388, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 358.1387996673584, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10007.680416107178, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:45,358", + "created": 1610346645.358323, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 358.3230972290039, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10007.864713668823, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:45,366", + "created": 1610346645.366497, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 366.4970397949219, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10016.038656234741, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,366", + "created": 1610346645.3666177, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 366.61767959594727, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10016.159296035767, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:45,366", + "created": 1610346645.3666687, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 366.668701171875, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10016.210317611694, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,366", + "created": 1610346645.3667305, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 366.7304515838623, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10016.272068023682, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:45,366", + "created": 1610346645.3667772, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 366.7771816253662, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10016.318798065186, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,366", + "created": 1610346645.3668559, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 366.8558597564697, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10016.397476196289, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:45,366", + "created": 1610346645.3668993, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 366.8992519378662, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10016.440868377686, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,366", + "created": 1610346645.3669596, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 366.9595718383789, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10016.501188278198, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:45,367", + "created": 1610346645.3670006, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 367.0005798339844, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10016.542196273804, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,367", + "created": 1610346645.3670585, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 367.05851554870605, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10016.600131988525, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:45,367", + "created": 1610346645.3671002, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 367.1002388000488, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10016.641855239868, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:45,367", + "created": 1610346645.367181, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 367.18106269836426, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10016.722679138184, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:45,368", + "created": 1610346645.3681464, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 368.1464195251465, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10017.688035964966, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,368", + "created": 1610346645.368309, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 368.30902099609375, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10017.850637435913, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:45,368", + "created": 1610346645.3683665, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 368.3664798736572, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10017.908096313477, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" + ], + "asctime": "2021-01-11 07:30:45,368", + "created": 1610346645.3684485, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", + "module": "stp", + "msecs": 368.44849586486816, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10017.990112304688, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:45,368", + "created": 1610346645.3686025, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 368.6025142669678, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10018.144130706787, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:45,368", + "created": 1610346645.3686666, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 368.6666488647461, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10018.208265304565, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:45,368", + "created": 1610346645.3687515, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 368.75152587890625, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10018.293142318726, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:45,369", + "created": 1610346645.3690293, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 369.02928352355957, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10018.570899963379, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:45,377", + "created": 1610346645.3772445, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 377.2444725036621, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10026.786088943481, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,377", + "created": 1610346645.3773673, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 377.3672580718994, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10026.908874511719, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:45,377", + "created": 1610346645.377423, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 377.4230480194092, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10026.964664459229, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,377", + "created": 1610346645.3774993, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 377.4993419647217, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10027.040958404541, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:45,377", + "created": 1610346645.3775458, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 377.5458335876465, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10027.087450027466, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,377", + "created": 1610346645.3776212, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 377.6211738586426, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10027.162790298462, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:45,377", + "created": 1610346645.3776634, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 377.66337394714355, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10027.204990386963, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,377", + "created": 1610346645.3777199, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 377.7198791503906, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10027.26149559021, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:45,377", + "created": 1610346645.377762, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 377.7620792388916, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10027.303695678711, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,377", + "created": 1610346645.3778152, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 377.81524658203125, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10027.35686302185, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:45,377", + "created": 1610346645.377856, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 377.8560161590576, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10027.397632598877, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:45,377", + "created": 1610346645.3779428, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 377.9428005218506, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10027.48441696167, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:45,378", + "created": 1610346645.3789034, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 378.9033889770508, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10028.44500541687, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,379", + "created": 1610346645.3790529, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 379.05287742614746, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10028.594493865967, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:45,379", + "created": 1610346645.379113, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 379.11295890808105, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10028.6545753479, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:45,379", + "created": 1610346645.3792038, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 379.20379638671875, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10028.745412826538, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:45,379", + "created": 1610346645.3793728, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 379.37283515930176, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10028.914451599121, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:45,379", + "created": 1610346645.3794408, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 379.4407844543457, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10028.982400894165, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + } + ], + "msecs": 701.4179229736328, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10350.959539413452, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.3219771385192871 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:45,701", + "created": 1610346645.7019894, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -56750,370 +121200,25 @@ "message": "Setting no Channel name for server and client", "module": "test_communication", "moduleLogger": [], - "msecs": 540.91477394104, + "msecs": 701.9894123077393, "msg": "Setting no Channel name for server and client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8241.256952285767, + "relativeCreated": 10351.531028747559, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", "time_consumption": 0.0 }, - { - "args": [], - "asctime": "2021-01-06 22:49:20,142", - "created": 1609969760.142994, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 265, - "message": "Server and Client connect callback triggered", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:19,541", - "created": 1609969759.5411282, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 541.1281585693359, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8241.470336914062, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:" - ], - "asctime": "2021-01-06 22:49:19,541", - "created": 1609969759.5412867, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 541.2867069244385, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8241.628885269165, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:19,541", - "created": 1609969759.5414762, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 541.4762496948242, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8241.81842803955, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:19,541", - "created": 1609969759.5418363, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", - "module": "test_helpers", - "msecs": 541.8362617492676, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8242.178440093994, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:19,541", - "created": 1609969759.541916, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", - "module": "test_helpers", - "msecs": 541.9158935546875, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8242.258071899414, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:19,542", - "created": 1609969759.542008, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 542.0079231262207, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8242.350101470947, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "__channel_name_request__" - ], - "asctime": "2021-01-06 22:49:19,542", - "created": 1609969759.542064, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 542.0639514923096, - "msg": "%s RX <- Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8242.406129837036, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:19,542", - "created": 1609969759.5421252, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 542.1252250671387, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8242.467403411865, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:19,542", - "created": 1609969759.542235, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "module": "test_helpers", - "msecs": 542.2348976135254, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8242.577075958252, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:19,542", - "created": 1609969759.542316, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "module": "test_helpers", - "msecs": 542.3159599304199, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8242.658138275146, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:19,542", - "created": 1609969759.5423994, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 542.3994064331055, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8242.741584777832, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "__channel_name_response__" - ], - "asctime": "2021-01-06 22:49:19,542", - "created": 1609969759.542453, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 542.4530506134033, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8242.79522895813, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - } - ], - "msecs": 142.99392700195312, - "msg": "Server and Client connect callback triggered", - "name": "__tLogger__", - "pathname": "src/tests/test_communication.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8843.33610534668, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread", - "time_consumption": 0.6005408763885498 - }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:20,143", - "created": 1609969760.1436076, + "asctime": "2021-01-11 07:30:45,702", + "created": 1610346645.7025774, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -57130,8 +121235,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:20,143", - "created": 1609969760.1433346, + "asctime": "2021-01-11 07:30:45,702", + "created": 1610346645.7022684, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -57141,15 +121246,15 @@ "lineno": 22, "message": "Result (Channel name of server): None ()", "module": "test", - "msecs": 143.33462715148926, + "msecs": 702.2683620452881, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8843.676805496216, + "relativeCreated": 10351.809978485107, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -57158,8 +121263,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:20,143", - "created": 1609969760.1434875, + "asctime": "2021-01-11 07:30:45,702", + "created": 1610346645.7024286, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -57169,37 +121274,37 @@ "lineno": 26, "message": "Expectation (Channel name of server): result = None ()", "module": "test", - "msecs": 143.48745346069336, + "msecs": 702.4285793304443, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8843.82963180542, + "relativeCreated": 10351.970195770264, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 143.60761642456055, + "msecs": 702.5773525238037, "msg": "Channel name of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8843.949794769287, + "relativeCreated": 10352.118968963623, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001201629638671875 + "time_consumption": 0.000148773193359375 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:20,143", - "created": 1609969760.1439989, + "asctime": "2021-01-11 07:30:45,703", + "created": 1610346645.7031188, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -57216,8 +121321,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:20,143", - "created": 1609969760.1437876, + "asctime": "2021-01-11 07:30:45,702", + "created": 1610346645.7028334, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -57227,15 +121332,15 @@ "lineno": 22, "message": "Result (Channel name of client): None ()", "module": "test", - "msecs": 143.78762245178223, + "msecs": 702.8334140777588, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8844.129800796509, + "relativeCreated": 10352.375030517578, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -57244,8 +121349,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:20,143", - "created": 1609969760.143896, + "asctime": "2021-01-11 07:30:45,702", + "created": 1610346645.7029736, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -57255,34 +121360,60 @@ "lineno": 26, "message": "Expectation (Channel name of client): result = None ()", "module": "test", - "msecs": 143.89610290527344, + "msecs": 702.9736042022705, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8844.23828125, + "relativeCreated": 10352.51522064209, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 143.9988613128662, + "msecs": 703.1188011169434, "msg": "Channel name of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8844.341039657593, + "relativeCreated": 10352.660417556763, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00010275840759277344 + "time_consumption": 0.00014519691467285156 }, { "args": [], - "asctime": "2021-01-06 22:49:20,144", - "created": 1609969760.144268, + "asctime": "2021-01-11 07:30:45,703", + "created": 1610346645.7035458, + "exc_info": null, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "channel_name_exchange", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 267, + "message": "Setting different Channel names for client and Server", + "module": "test_communication", + "moduleLogger": [], + "msecs": 703.5458087921143, + "msg": "Setting different Channel names for client and Server", + "name": "__tLogger__", + "pathname": "src/tests/test_communication.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10353.087425231934, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:46,049", + "created": 1610346646.0494645, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -57290,401 +121421,1421 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 271, - "message": "Setting different Channel names for client and Server", - "module": "test_communication", - "moduleLogger": [], - "msecs": 144.26803588867188, - "msg": "Setting different Channel names for client and Server", - "name": "__tLogger__", - "pathname": "src/tests/test_communication.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8844.610214233398, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-01-06 22:49:20,747", - "created": 1609969760.7477922, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 275, - "message": "Server and Client connect callback triggered", + "message": "Connecting Server and Client", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:20,144", - "created": 1609969760.1444526, + "asctime": "2021-01-11 07:30:45,703", + "created": 1610346645.7037945, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 703.7944793701172, + "msg": "%s Connection Lost...", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10353.336095809937, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:45,703", + "created": 1610346645.7039752, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 703.9752006530762, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.client", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10353.516817092896, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:45,704", + "created": 1610346645.7041316, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 704.1316032409668, + "msg": "%s Connection Lost...", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10353.673219680786, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:45,704", + "created": 1610346645.7042806, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 704.2806148529053, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.server", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10353.822231292725, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:45,704", + "created": 1610346645.7044244, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 704.4243812561035, + "msg": "%s Connection established...", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10353.965997695923, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:45,704", + "created": 1610346645.7045846, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 704.5845985412598, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10354.12621498108, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:45,704", + "created": 1610346645.7047372, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 144.45257186889648, + "msecs": 704.7371864318848, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.server", + "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8844.794750213623, + "relativeCreated": 10354.278802871704, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "'client'" ], - "asctime": "2021-01-06 22:49:20,144", - "created": 1609969760.1445973, + "asctime": "2021-01-11 07:30:45,705", + "created": 1610346645.7050083, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"'client'\"", + "module": "__init__", + "msecs": 705.0082683563232, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.client", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10354.549884796143, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:45,705", + "created": 1610346645.7056763, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 705.6763172149658, + "msg": "%s Connection established...", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10355.217933654785, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:45,705", + "created": 1610346645.705864, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 705.8639526367188, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10355.405569076538, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:45,706", + "created": 1610346645.7060397, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 144.59729194641113, + "msecs": 706.0396671295166, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.client", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8844.939470291138, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: channel name request, data_id: name", - "status: okay", - "'client'" - ], - "asctime": "2021-01-06 22:49:20,144", - "created": 1609969760.1447535, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: channel name request, data_id: name, status: okay, data: \"'client'\"", - "module": "__init__", - "msecs": 144.75345611572266, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.client", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8845.09563446045, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:20,145", - "created": 1609969760.1450603, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 7d ee af 7b 7e", - "module": "test_helpers", - "msecs": 145.06030082702637, - "msg": "Send data: (66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 7d ee af 7b 7e", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8845.402479171753, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:20,145", - "created": 1609969760.1452546, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 7d ee af 7b 7e", - "module": "test_helpers", - "msecs": 145.25461196899414, - "msg": "Receive data (66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 7d ee af 7b 7e", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8845.59679031372, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name", - "status: okay", - "'client'" - ], - "asctime": "2021-01-06 22:49:20,145", - "created": 1609969760.1454778, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: channel name request, data_id: name, status: okay, data: \"'client'\"", - "module": "__init__", - "msecs": 145.4777717590332, - "msg": "%s RX <- %s, %s, data: \"%s\"", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8845.81995010376, + "relativeCreated": 10355.581283569336, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65" + ], + "asctime": "2021-01-11 07:30:45,706", + "created": 1610346645.7063978, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65", + "module": "__init__", + "msecs": 706.3977718353271, + "msg": "%s TX -> %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10355.939388275146, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65" + ], + "asctime": "2021-01-11 07:30:45,714", + "created": 1610346645.7146904, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65", + "module": "__init__", + "msecs": 714.6904468536377, + "msg": "%s RX <- %s", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10364.232063293457, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,714", + "created": 1610346645.7148588, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 714.8587703704834, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10364.400386810303, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:45,714", + "created": 1610346645.7149446, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 714.94460105896, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10364.48621749878, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,715", + "created": 1610346645.715046, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 715.0459289550781, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10364.587545394897, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:45,715", + "created": 1610346645.7151349, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 715.134859085083, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10364.676475524902, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,715", + "created": 1610346645.7152557, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 715.2557373046875, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10364.797353744507, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:45,715", + "created": 1610346645.715324, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 715.3239250183105, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10364.86554145813, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,715", + "created": 1610346645.7154145, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 715.4145240783691, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10364.956140518188, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:45,715", + "created": 1610346645.7154863, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 715.4862880706787, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10365.027904510498, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,715", + "created": 1610346645.715572, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 715.5721187591553, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10365.113735198975, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:45,715", + "created": 1610346645.715637, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 715.6369686126709, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10365.17858505249, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-client:", + "(10): 6e 74 22 7d ee af 7b 7e 3a 3e" + ], + "asctime": "2021-01-11 07:30:45,715", + "created": 1610346645.715766, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (10): 6e 74 22 7d ee af 7b 7e 3a 3e", + "module": "__init__", + "msecs": 715.7659530639648, + "msg": "%s TX -> %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10365.307569503784, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(10): 6e 74 22 7d ee af 7b 7e 3a 3e" + ], + "asctime": "2021-01-11 07:30:45,717", + "created": 1610346645.717304, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (10): 6e 74 22 7d ee af 7b 7e 3a 3e", + "module": "__init__", + "msecs": 717.303991317749, + "msg": "%s RX <- %s", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10366.845607757568, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,717", + "created": 1610346645.7175121, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 717.5121307373047, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10367.053747177124, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:45,717", + "created": 1610346645.7176042, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 717.6041603088379, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10367.145776748657, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + "(66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 7d ee af 7b 7e" + ], + "asctime": "2021-01-11 07:30:45,717", + "created": 1610346645.7177348, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 7d ee af 7b 7e", + "module": "stp", + "msecs": 717.7348136901855, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10367.276430130005, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "'client'" + ], + "asctime": "2021-01-11 07:30:45,717", + "created": 1610346645.7179544, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"'client'\"", + "module": "__init__", + "msecs": 717.9543972015381, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.server", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10367.496013641357, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-06 22:49:20,145", - "created": 1609969760.1456127, + "asctime": "2021-01-11 07:30:45,718", + "created": 1610346645.7180526, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __channel_name_request__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 145.6127166748047, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 718.0526256561279, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8845.954895019531, + "relativeCreated": 10367.594242095947, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561713452800, + "threadName": "Thread-13" }, { "args": [ - "SP server:", + "prot-server:", "'server'", "'client'" ], - "asctime": "2021-01-06 22:49:20,145", - "created": 1609969760.1457858, + "asctime": "2021-01-11 07:30:45,718", + "created": 1610346645.718224, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__channel_name_request__", "levelname": "WARNING", "levelno": 30, - "lineno": 408, - "message": "SP server: overwriting user defined channel name from 'server' to 'client'", + "lineno": 418, + "message": "prot-server: overwriting user defined channel name from 'server' to 'client'", "module": "__init__", - "msecs": 145.78580856323242, + "msecs": 718.224048614502, "msg": "%s overwriting user defined channel name from %s to %s", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8846.127986907959, + "relativeCreated": 10367.765665054321, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561713452800, + "threadName": "Thread-13" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: channel name response, data_id: name", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:20,145", - "created": 1609969760.145988, + "asctime": "2021-01-11 07:30:45,718", + "created": 1610346645.718351, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 145.98798751831055, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 718.350887298584, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8846.330165863037, + "relativeCreated": 10367.892503738403, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:20,146", - "created": 1609969760.1462672, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "module": "test_helpers", - "msecs": 146.26717567443848, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8846.609354019165, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:20,146", - "created": 1609969760.1464765, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "module": "test_helpers", - "msecs": 146.47650718688965, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 8846.818685531616, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561713452800, + "threadName": "Thread-13" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:45,718", + "created": 1610346645.7188232, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 718.8231945037842, + "msg": "%s TX -> %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10368.364810943604, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:45,727", + "created": 1610346645.7270958, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 727.0958423614502, + "msg": "%s RX <- %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10376.63745880127, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,727", + "created": 1610346645.7272625, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 727.2624969482422, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10376.804113388062, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:45,727", + "created": 1610346645.7273471, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 727.3471355438232, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10376.888751983643, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,727", + "created": 1610346645.7274497, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 727.4496555328369, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10376.991271972656, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:45,727", + "created": 1610346645.727521, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 727.5209426879883, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10377.062559127808, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,727", + "created": 1610346645.7276232, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 727.6232242584229, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10377.164840698242, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:45,727", + "created": 1610346645.7276902, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 727.6902198791504, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10377.23183631897, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,727", + "created": 1610346645.7277944, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 727.7944087982178, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10377.336025238037, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:45,727", + "created": 1610346645.7278633, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 727.8633117675781, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10377.404928207397, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,727", + "created": 1610346645.7279503, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 727.9503345489502, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10377.49195098877, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:45,728", + "created": 1610346645.728016, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 728.0158996582031, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10377.557516098022, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:45,728", + "created": 1610346645.728162, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 728.1620502471924, + "msg": "%s TX -> %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10377.703666687012, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:45,729", + "created": 1610346645.7291865, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 729.1865348815918, + "msg": "%s RX <- %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10378.728151321411, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:45,729", + "created": 1610346645.7293885, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 729.3884754180908, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10378.93009185791, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:45,729", + "created": 1610346645.7295065, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 729.5064926147461, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10379.048109054565, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:45,729", + "created": 1610346645.7296398, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 729.6397686004639, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10379.181385040283, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: channel name response, data_id: name", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:20,146", - "created": 1609969760.146684, + "asctime": "2021-01-11 07:30:45,729", + "created": 1610346645.7298536, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 146.683931350708, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 729.853630065918, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8847.026109695435, + "relativeCreated": 10379.395246505737, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561705060096, + "threadName": "Thread-14" }, { "args": [ - "SP client:", + "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-06 22:49:20,146", - "created": 1609969760.1468246, + "asctime": "2021-01-11 07:30:45,729", + "created": 1610346645.729948, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __channel_name_response__ to process received data", + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 146.82459831237793, + "msecs": 729.9480438232422, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 8847.166776657104, + "relativeCreated": 10379.489660263062, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561705060096, + "threadName": "Thread-14" } ], - "msecs": 747.7922439575195, - "msg": "Server and Client connect callback triggered", + "msecs": 49.46446418762207, + "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 9448.134422302246, + "relativeCreated": 10699.006080627441, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.6009676456451416 + "time_consumption": 0.3195164203643799 }, { "args": [ "'client'", "" ], - "asctime": "2021-01-06 22:49:20,748", - "created": 1609969760.748584, + "asctime": "2021-01-11 07:30:46,050", + "created": 1610346646.0503314, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -57701,8 +122852,8 @@ "'client'", "" ], - "asctime": "2021-01-06 22:49:20,748", - "created": 1609969760.7482393, + "asctime": "2021-01-11 07:30:46,049", + "created": 1610346646.049997, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -57712,15 +122863,15 @@ "lineno": 22, "message": "Result (Channel name of server): 'client' ()", "module": "test", - "msecs": 748.239278793335, + "msecs": 49.99709129333496, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 9448.581457138062, + "relativeCreated": 10699.538707733154, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -57729,8 +122880,8 @@ "'client'", "" ], - "asctime": "2021-01-06 22:49:20,748", - "created": 1609969760.748424, + "asctime": "2021-01-11 07:30:46,050", + "created": 1610346646.0501745, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -57740,37 +122891,37 @@ "lineno": 26, "message": "Expectation (Channel name of server): result = 'client' ()", "module": "test", - "msecs": 748.4240531921387, + "msecs": 50.17447471618652, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 9448.766231536865, + "relativeCreated": 10699.716091156006, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 748.5840320587158, + "msecs": 50.33135414123535, "msg": "Channel name of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 9448.926210403442, + "relativeCreated": 10699.872970581055, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00015997886657714844 + "time_consumption": 0.00015687942504882812 }, { "args": [ "'client'", "" ], - "asctime": "2021-01-06 22:49:20,749", - "created": 1609969760.749148, + "asctime": "2021-01-11 07:30:46,050", + "created": 1610346646.0508902, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -57787,8 +122938,8 @@ "'client'", "" ], - "asctime": "2021-01-06 22:49:20,748", - "created": 1609969760.748857, + "asctime": "2021-01-11 07:30:46,050", + "created": 1610346646.0506008, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -57798,15 +122949,15 @@ "lineno": 22, "message": "Result (Channel name of client): 'client' ()", "module": "test", - "msecs": 748.8570213317871, + "msecs": 50.60076713562012, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 9449.199199676514, + "relativeCreated": 10700.14238357544, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -57815,8 +122966,8 @@ "'client'", "" ], - "asctime": "2021-01-06 22:49:20,749", - "created": 1609969760.7490063, + "asctime": "2021-01-11 07:30:46,050", + "created": 1610346646.0507517, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -57826,34 +122977,60 @@ "lineno": 26, "message": "Expectation (Channel name of client): result = 'client' ()", "module": "test", - "msecs": 749.0062713623047, + "msecs": 50.751686096191406, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 9449.348449707031, + "relativeCreated": 10700.29330253601, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 749.147891998291, + "msecs": 50.890207290649414, "msg": "Channel name of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 9449.490070343018, + "relativeCreated": 10700.431823730469, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00014162063598632812 + "time_consumption": 0.0001385211944580078 }, { "args": [], - "asctime": "2021-01-06 22:49:20,749", - "created": 1609969760.7494981, + "asctime": "2021-01-11 07:30:46,051", + "created": 1610346646.0513105, + "exc_info": null, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "channel_name_exchange", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 277, + "message": "Setting identical Channel names for client and server", + "module": "test_communication", + "moduleLogger": [], + "msecs": 51.31053924560547, + "msg": "Setting identical Channel names for client and server", + "name": "__tLogger__", + "pathname": "src/tests/test_communication.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10700.852155685425, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:46,397", + "created": 1610346646.3970842, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -57861,373 +123038,1393 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 281, - "message": "Setting identical Channel names for client and server", - "module": "test_communication", - "moduleLogger": [], - "msecs": 749.4981288909912, - "msg": "Setting identical Channel names for client and server", - "name": "__tLogger__", - "pathname": "src/tests/test_communication.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 9449.840307235718, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-01-06 22:49:21,353", - "created": 1609969761.3535893, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 285, - "message": "Server and Client connect callback triggered", + "message": "Connecting Server and Client", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:20,749", - "created": 1609969760.7497363, + "asctime": "2021-01-11 07:30:46,051", + "created": 1610346646.0515583, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 51.55825614929199, + "msg": "%s Connection Lost...", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10701.099872589111, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:46,051", + "created": 1610346646.0517395, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 51.73945426940918, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.unittest", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10701.281070709229, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:46,051", + "created": 1610346646.051885, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 51.88488960266113, + "msg": "%s Connection Lost...", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10701.42650604248, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:46,052", + "created": 1610346646.0520205, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 52.02054977416992, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.unittest", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10701.56216621399, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:46,052", + "created": 1610346646.0521612, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 52.161216735839844, + "msg": "%s Connection established...", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10701.70283317566, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:46,052", + "created": 1610346646.0523107, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 52.31070518493652, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10701.852321624756, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:46,052", + "created": 1610346646.0524595, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 749.7363090515137, + "msecs": 52.4594783782959, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 9450.07848739624, + "relativeCreated": 10702.001094818115, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "'unittest'" ], - "asctime": "2021-01-06 22:49:20,749", - "created": 1609969760.7499502, + "asctime": "2021-01-11 07:30:46,052", + "created": 1610346646.0527277, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"'unittest'\"", + "module": "__init__", + "msecs": 52.727699279785156, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.unittest", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10702.269315719604, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:46,053", + "created": 1610346646.0533319, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 53.331851959228516, + "msg": "%s Connection established...", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10702.873468399048, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:46,053", + "created": 1610346646.0535595, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 53.55954170227051, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10703.10115814209, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:46,053", + "created": 1610346646.0537148, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 749.9501705169678, + "msecs": 53.714752197265625, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 9450.292348861694, + "relativeCreated": 10703.256368637085, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74" + ], + "asctime": "2021-01-11 07:30:46,054", + "created": 1610346646.0540948, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74", + "module": "__init__", + "msecs": 54.094791412353516, + "msg": "%s TX -> %s", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10703.636407852173, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74" + ], + "asctime": "2021-01-11 07:30:46,062", + "created": 1610346646.0625668, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74", + "module": "__init__", + "msecs": 62.56675720214844, + "msg": "%s RX <- %s", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10712.108373641968, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,062", + "created": 1610346646.0629044, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 62.90435791015625, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10712.445974349976, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:46,063", + "created": 1610346646.0630746, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 63.074588775634766, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10712.616205215454, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,063", + "created": 1610346646.0632977, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 63.29774856567383, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10712.839365005493, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,063", + "created": 1610346646.0634396, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 63.43960762023926, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10712.981224060059, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,063", + "created": 1610346646.0636444, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 63.6444091796875, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10713.186025619507, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,063", + "created": 1610346646.06379, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 63.790082931518555, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10713.331699371338, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,063", + "created": 1610346646.063993, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 63.992977142333984, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10713.534593582153, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,064", + "created": 1610346646.064127, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 64.12696838378906, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10713.668584823608, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,064", + "created": 1610346646.0643122, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 64.31221961975098, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10713.85383605957, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,064", + "created": 1610346646.0644448, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 64.44478034973145, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10713.98639678955, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-client:", + "(12): 74 65 73 74 22 7d f8 f6 c9 e9 3a 3e" + ], + "asctime": "2021-01-11 07:30:46,064", + "created": 1610346646.064708, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (12): 74 65 73 74 22 7d f8 f6 c9 e9 3a 3e", + "module": "__init__", + "msecs": 64.70799446105957, + "msg": "%s TX -> %s", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10714.249610900879, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(12): 74 65 73 74 22 7d f8 f6 c9 e9 3a 3e" + ], + "asctime": "2021-01-11 07:30:46,066", + "created": 1610346646.066609, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (12): 74 65 73 74 22 7d f8 f6 c9 e9 3a 3e", + "module": "__init__", + "msecs": 66.60890579223633, + "msg": "%s RX <- %s", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10716.150522232056, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,066", + "created": 1610346646.0669582, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 66.95818901062012, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10716.49980545044, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:46,067", + "created": 1610346646.0671325, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 67.13247299194336, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10716.674089431763, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + "(68): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 75 6e 69 74 74 65 73 74 22 7d f8 f6 c9 e9" + ], + "asctime": "2021-01-11 07:30:46,067", + "created": 1610346646.0673947, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (68): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 75 6e 69 74 74 65 73 74 22 7d f8 f6 c9 e9", + "module": "stp", + "msecs": 67.39473342895508, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10716.936349868774, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: channel name request, data_id: name", "status: okay", "'unittest'" ], - "asctime": "2021-01-06 22:49:20,750", - "created": 1609969760.7501664, + "asctime": "2021-01-11 07:30:46,067", + "created": 1610346646.067822, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: channel name request, data_id: name, status: okay, data: \"'unittest'\"", + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"'unittest'\"", "module": "__init__", - "msecs": 750.1664161682129, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 67.82197952270508, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 9450.50859451294, + "relativeCreated": 10717.363595962524, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:20,750", - "created": 1609969760.7505622, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (68): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 75 6e 69 74 74 65 73 74 22 7d f8 f6 c9 e9", - "module": "test_helpers", - "msecs": 750.5621910095215, - "msg": "Send data: (68): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 75 6e 69 74 74 65 73 74 22 7d f8 f6 c9 e9", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 9450.904369354248, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:20,750", - "created": 1609969760.7508361, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (68): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 75 6e 69 74 74 65 73 74 22 7d f8 f6 c9 e9", - "module": "test_helpers", - "msecs": 750.8361339569092, - "msg": "Receive data (68): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 75 6e 69 74 74 65 73 74 22 7d f8 f6 c9 e9", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 9451.178312301636, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561713452800, + "threadName": "Thread-13" }, { "args": [ - "SP server:", - "service: channel name request, data_id: name", - "status: okay", - "'unittest'" - ], - "asctime": "2021-01-06 22:49:20,751", - "created": 1609969760.75112, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: channel name request, data_id: name, status: okay, data: \"'unittest'\"", - "module": "__init__", - "msecs": 751.1200904846191, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.unittest", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 9451.462268829346, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", + "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-06 22:49:20,751", - "created": 1609969760.7513034, + "asctime": "2021-01-11 07:30:46,068", + "created": 1610346646.0680346, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __channel_name_request__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 751.3034343719482, - "msg": "%s RX <- Executing callback %s to process received data", - "name": "root.socket_protocol.unittest", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 9451.645612716675, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:20,751", - "created": 1609969760.7515702, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 751.5702247619629, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.unittest", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 9451.91240310669, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:20,751", - "created": 1609969760.7519255, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "module": "test_helpers", - "msecs": 751.9254684448242, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 9452.26764678955, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:20,752", - "created": 1609969760.7521765, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "module": "test_helpers", - "msecs": 752.1765232086182, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 9452.518701553345, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:20,752", - "created": 1609969760.7524376, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 752.4375915527344, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.unittest", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 9452.779769897461, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "__channel_name_response__" - ], - "asctime": "2021-01-06 22:49:20,752", - "created": 1609969760.7526114, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 752.6113986968994, + "msecs": 68.03464889526367, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.unittest", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 9452.953577041626, + "relativeCreated": 10717.576265335083, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:46,068", + "created": 1610346646.0684006, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 68.40062141418457, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.unittest", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10717.942237854004, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:46,069", + "created": 1610346646.0692213, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 69.22125816345215, + "msg": "%s TX -> %s", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10718.762874603271, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:46,077", + "created": 1610346646.0776799, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 77.67987251281738, + "msg": "%s RX <- %s", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10727.221488952637, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,077", + "created": 1610346646.0779462, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 77.94618606567383, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10727.487802505493, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:46,078", + "created": 1610346646.0780814, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 78.08136940002441, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10727.622985839844, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,078", + "created": 1610346646.0782437, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 78.24373245239258, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10727.785348892212, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,078", + "created": 1610346646.078365, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 78.36508750915527, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10727.906703948975, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,078", + "created": 1610346646.078532, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 78.53198051452637, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10728.073596954346, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,078", + "created": 1610346646.0786405, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 78.64046096801758, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10728.182077407837, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,078", + "created": 1610346646.0787852, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 78.78518104553223, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10728.326797485352, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,078", + "created": 1610346646.0788918, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 78.89175415039062, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10728.43337059021, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,079", + "created": 1610346646.079055, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 79.0550708770752, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10728.596687316895, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,079", + "created": 1610346646.0791614, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 79.16140556335449, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10728.703022003174, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:46,079", + "created": 1610346646.0793717, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 79.37169075012207, + "msg": "%s TX -> %s", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10728.913307189941, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:46,080", + "created": 1610346646.080488, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 80.48796653747559, + "msg": "%s RX <- %s", + "name": "root.helpers.unittest", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10730.029582977295, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,080", + "created": 1610346646.0808294, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 80.82938194274902, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10730.370998382568, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:46,081", + "created": 1610346646.0810115, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 81.01153373718262, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10730.553150177002, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:46,081", + "created": 1610346646.0812705, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 81.27045631408691, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10730.812072753906, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:46,081", + "created": 1610346646.0816772, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 81.67719841003418, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.unittest", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10731.218814849854, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:46,081", + "created": 1610346646.0818706, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 81.87055587768555, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.unittest", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 10731.412172317505, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" } ], - "msecs": 353.5892963409424, - "msg": "Server and Client connect callback triggered", + "msecs": 397.08423614501953, + "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10053.931474685669, + "relativeCreated": 11046.625852584839, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.600977897644043 + "time_consumption": 0.315213680267334 }, { "args": [ "'unittest'", "" ], - "asctime": "2021-01-06 22:49:21,354", - "created": 1609969761.3544455, + "asctime": "2021-01-11 07:30:46,397", + "created": 1610346646.3979964, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58244,8 +124441,8 @@ "'unittest'", "" ], - "asctime": "2021-01-06 22:49:21,354", - "created": 1609969761.3540854, + "asctime": "2021-01-11 07:30:46,397", + "created": 1610346646.3976603, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58255,15 +124452,15 @@ "lineno": 22, "message": "Result (Channel name of server): 'unittest' ()", "module": "test", - "msecs": 354.08544540405273, + "msecs": 397.6602554321289, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10054.42762374878, + "relativeCreated": 11047.201871871948, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -58272,8 +124469,8 @@ "'unittest'", "" ], - "asctime": "2021-01-06 22:49:21,354", - "created": 1609969761.3542814, + "asctime": "2021-01-11 07:30:46,397", + "created": 1610346646.397841, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58283,37 +124480,37 @@ "lineno": 26, "message": "Expectation (Channel name of server): result = 'unittest' ()", "module": "test", - "msecs": 354.2814254760742, + "msecs": 397.8409767150879, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10054.6236038208, + "relativeCreated": 11047.382593154907, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 354.4454574584961, + "msecs": 397.9964256286621, "msg": "Channel name of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10054.787635803223, + "relativeCreated": 11047.538042068481, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.000164031982421875 + "time_consumption": 0.00015544891357421875 }, { "args": [ "'unittest'", "" ], - "asctime": "2021-01-06 22:49:21,354", - "created": 1609969761.3549926, + "asctime": "2021-01-11 07:30:46,398", + "created": 1610346646.3985183, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58330,8 +124527,8 @@ "'unittest'", "" ], - "asctime": "2021-01-06 22:49:21,354", - "created": 1609969761.3547058, + "asctime": "2021-01-11 07:30:46,398", + "created": 1610346646.3982377, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58341,15 +124538,15 @@ "lineno": 22, "message": "Result (Channel name of client): 'unittest' ()", "module": "test", - "msecs": 354.705810546875, + "msecs": 398.2377052307129, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10055.047988891602, + "relativeCreated": 11047.779321670532, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -58358,8 +124555,8 @@ "'unittest'", "" ], - "asctime": "2021-01-06 22:49:21,354", - "created": 1609969761.3548532, + "asctime": "2021-01-11 07:30:46,398", + "created": 1610346646.3983796, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58369,34 +124566,60 @@ "lineno": 26, "message": "Expectation (Channel name of client): result = 'unittest' ()", "module": "test", - "msecs": 354.85315322875977, + "msecs": 398.3795642852783, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10055.195331573486, + "relativeCreated": 11047.921180725098, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 354.9926280975342, + "msecs": 398.51832389831543, "msg": "Channel name of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10055.33480644226, + "relativeCreated": 11048.059940338135, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00013947486877441406 + "time_consumption": 0.00013875961303710938 }, { "args": [], - "asctime": "2021-01-06 22:49:21,355", - "created": 1609969761.3553154, + "asctime": "2021-01-11 07:30:46,398", + "created": 1610346646.398878, + "exc_info": null, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "channel_name_exchange", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 287, + "message": "Setting Channel name for client only", + "module": "test_communication", + "moduleLogger": [], + "msecs": 398.8780975341797, + "msg": "Setting Channel name for client only", + "name": "__tLogger__", + "pathname": "src/tests/test_communication.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11048.419713973999, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:46,744", + "created": 1610346646.744939, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -58404,400 +124627,1420 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 291, - "message": "Setting Channel name for client only", - "module": "test_communication", - "moduleLogger": [], - "msecs": 355.3154468536377, - "msg": "Setting Channel name for client only", - "name": "__tLogger__", - "pathname": "src/tests/test_communication.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 10055.657625198364, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-01-06 22:49:21,959", - "created": 1609969761.9595382, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 295, - "message": "Server and Client connect callback triggered", + "message": "Connecting Server and Client", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:21,355", - "created": 1609969761.355536, + "asctime": "2021-01-11 07:30:46,399", + "created": 1610346646.3990917, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 399.0917205810547, + "msg": "%s Connection Lost...", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11048.633337020874, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:46,399", + "created": 1610346646.3992524, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 399.25241470336914, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.client", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11048.794031143188, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:46,399", + "created": 1610346646.3993974, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 399.3973731994629, + "msg": "%s Connection Lost...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11048.938989639282, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:46,399", + "created": 1610346646.3995316, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 399.53160285949707, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11049.073219299316, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:46,399", + "created": 1610346646.3996735, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 399.6734619140625, + "msg": "%s Connection established...", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11049.215078353882, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:46,399", + "created": 1610346646.3998184, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 399.81842041015625, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11049.360036849976, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:46,399", + "created": 1610346646.3999584, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 355.53598403930664, + "msecs": 399.95837211608887, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", + "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10055.878162384033, + "relativeCreated": 11049.499988555908, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "'client'" ], - "asctime": "2021-01-06 22:49:21,355", - "created": 1609969761.3557076, + "asctime": "2021-01-11 07:30:46,400", + "created": 1610346646.4005508, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"'client'\"", + "module": "__init__", + "msecs": 400.55084228515625, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.client", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11050.092458724976, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:46,401", + "created": 1610346646.401231, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 401.231050491333, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11050.772666931152, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:46,401", + "created": 1610346646.401414, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 401.4139175415039, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11050.955533981323, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:46,401", + "created": 1610346646.401617, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 355.70764541625977, + "msecs": 401.61705017089844, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.client", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 10056.049823760986, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: channel name request, data_id: name", - "status: okay", - "'client'" - ], - "asctime": "2021-01-06 22:49:21,355", - "created": 1609969761.355902, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: channel name request, data_id: name, status: okay, data: \"'client'\"", - "module": "__init__", - "msecs": 355.90195655822754, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.client", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 10056.244134902954, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:21,356", - "created": 1609969761.356334, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 7d ee af 7b 7e", - "module": "test_helpers", - "msecs": 356.33397102355957, - "msg": "Send data: (66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 7d ee af 7b 7e", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 10056.676149368286, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:21,356", - "created": 1609969761.3565967, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 7d ee af 7b 7e", - "module": "test_helpers", - "msecs": 356.5967082977295, - "msg": "Receive data (66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 7d ee af 7b 7e", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 10056.938886642456, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name", - "status: okay", - "'client'" - ], - "asctime": "2021-01-06 22:49:21,356", - "created": 1609969761.3568814, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: channel name request, data_id: name, status: okay, data: \"'client'\"", - "module": "__init__", - "msecs": 356.88138008117676, - "msg": "%s RX <- %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10057.223558425903, + "relativeCreated": 11051.158666610718, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65" + ], + "asctime": "2021-01-11 07:30:46,402", + "created": 1610346646.4020038, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65", + "module": "__init__", + "msecs": 402.0037651062012, + "msg": "%s TX -> %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11051.54538154602, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65" + ], + "asctime": "2021-01-11 07:30:46,410", + "created": 1610346646.4104302, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65", + "module": "__init__", + "msecs": 410.4301929473877, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11059.971809387207, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,410", + "created": 1610346646.410729, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 410.72893142700195, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11060.270547866821, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:46,410", + "created": 1610346646.410894, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 410.89391708374023, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11060.43553352356, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,411", + "created": 1610346646.4110987, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 411.0987186431885, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11060.640335083008, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,411", + "created": 1610346646.4112556, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 411.2555980682373, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11060.797214508057, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,411", + "created": 1610346646.411468, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 411.4680290222168, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11061.009645462036, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,411", + "created": 1610346646.4116197, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 411.6196632385254, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11061.161279678345, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,411", + "created": 1610346646.4118073, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 411.8072986602783, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11061.348915100098, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,411", + "created": 1610346646.4119413, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 411.9412899017334, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11061.482906341553, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,412", + "created": 1610346646.4121158, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 412.11581230163574, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11061.657428741455, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,412", + "created": 1610346646.4122467, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 412.2467041015625, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11061.788320541382, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-client:", + "(10): 6e 74 22 7d ee af 7b 7e 3a 3e" + ], + "asctime": "2021-01-11 07:30:46,412", + "created": 1610346646.4125264, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (10): 6e 74 22 7d ee af 7b 7e 3a 3e", + "module": "__init__", + "msecs": 412.52636909484863, + "msg": "%s TX -> %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11062.067985534668, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(10): 6e 74 22 7d ee af 7b 7e 3a 3e" + ], + "asctime": "2021-01-11 07:30:46,414", + "created": 1610346646.4141052, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (10): 6e 74 22 7d ee af 7b 7e 3a 3e", + "module": "__init__", + "msecs": 414.1051769256592, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11063.646793365479, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,414", + "created": 1610346646.414386, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 414.3860340118408, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11063.92765045166, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:46,414", + "created": 1610346646.414526, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 414.52598571777344, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11064.067602157593, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + "(66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 7d ee af 7b 7e" + ], + "asctime": "2021-01-11 07:30:46,414", + "created": 1610346646.4147317, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 7d ee af 7b 7e", + "module": "stp", + "msecs": 414.7317409515381, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11064.273357391357, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "'client'" + ], + "asctime": "2021-01-11 07:30:46,415", + "created": 1610346646.4150417, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"'client'\"", + "module": "__init__", + "msecs": 415.0416851043701, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11064.58330154419, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-06 22:49:21,357", - "created": 1609969761.357064, + "asctime": "2021-01-11 07:30:46,415", + "created": 1610346646.4152112, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __channel_name_request__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 357.06400871276855, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 415.2112007141113, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10057.406187057495, + "relativeCreated": 11064.75281715393, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561713452800, + "threadName": "Thread-13" }, { "args": [ - "SP server:", + "prot-server:", "'client'" ], - "asctime": "2021-01-06 22:49:21,357", - "created": 1609969761.3572946, + "asctime": "2021-01-11 07:30:46,415", + "created": 1610346646.4154673, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__channel_name_request__", "levelname": "INFO", "levelno": 20, - "lineno": 410, - "message": "SP server: channel name is now 'client'", + "lineno": 420, + "message": "prot-server: channel name is now 'client'", "module": "__init__", - "msecs": 357.29455947875977, + "msecs": 415.4672622680664, "msg": "%s channel name is now %s", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10057.636737823486, + "relativeCreated": 11065.008878707886, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561713452800, + "threadName": "Thread-13" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: channel name response, data_id: name", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:21,357", - "created": 1609969761.35749, + "asctime": "2021-01-11 07:30:46,415", + "created": 1610346646.4156628, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 357.49006271362305, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 415.6627655029297, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10057.83224105835, + "relativeCreated": 11065.204381942749, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:21,357", - "created": 1609969761.3578658, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "module": "test_helpers", - "msecs": 357.8658103942871, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 10058.207988739014, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:21,358", - "created": 1609969761.3581192, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "module": "test_helpers", - "msecs": 358.11924934387207, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 10058.461427688599, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561713452800, + "threadName": "Thread-13" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:46,416", + "created": 1610346646.416453, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 416.45288467407227, + "msg": "%s TX -> %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11065.994501113892, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:46,424", + "created": 1610346646.424847, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 424.846887588501, + "msg": "%s RX <- %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11074.38850402832, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,425", + "created": 1610346646.4250934, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 425.093412399292, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11074.635028839111, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:46,425", + "created": 1610346646.4252462, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 425.2462387084961, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11074.787855148315, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,425", + "created": 1610346646.4254134, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 425.4133701324463, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11074.954986572266, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,425", + "created": 1610346646.425565, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 425.5650043487549, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11075.106620788574, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,425", + "created": 1610346646.4257317, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 425.7316589355469, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11075.273275375366, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,425", + "created": 1610346646.4258428, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 425.8427619934082, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11075.384378433228, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,425", + "created": 1610346646.4259896, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 425.98962783813477, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11075.531244277954, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,426", + "created": 1610346646.426096, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 426.09596252441406, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11075.637578964233, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,426", + "created": 1610346646.4262354, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 426.2354373931885, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11075.777053833008, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,426", + "created": 1610346646.4263406, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 426.34057998657227, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11075.882196426392, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:46,426", + "created": 1610346646.4265378, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 426.53775215148926, + "msg": "%s TX -> %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11076.079368591309, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:46,427", + "created": 1610346646.4276154, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 427.6154041290283, + "msg": "%s RX <- %s", + "name": "root.helpers.client", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11077.157020568848, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,427", + "created": 1610346646.4279096, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 427.90961265563965, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11077.451229095459, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:46,428", + "created": 1610346646.4280784, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 428.07841300964355, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11077.620029449463, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:46,428", + "created": 1610346646.4282837, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 428.28369140625, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11077.82530784607, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: channel name response, data_id: name", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:21,358", - "created": 1609969761.3583813, + "asctime": "2021-01-11 07:30:46,428", + "created": 1610346646.4286535, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 358.3812713623047, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 428.6534786224365, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10058.723449707031, + "relativeCreated": 11078.195095062256, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561705060096, + "threadName": "Thread-14" }, { "args": [ - "SP client:", + "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-06 22:49:21,358", - "created": 1609969761.3585565, + "asctime": "2021-01-11 07:30:46,428", + "created": 1610346646.4288104, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __channel_name_response__ to process received data", + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 358.55650901794434, + "msecs": 428.81035804748535, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.client", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10058.89868736267, + "relativeCreated": 11078.351974487305, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561705060096, + "threadName": "Thread-14" } ], - "msecs": 959.5382213592529, - "msg": "Server and Client connect callback triggered", + "msecs": 744.9390888214111, + "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10659.88039970398, + "relativeCreated": 11394.48070526123, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.6009817123413086 + "time_consumption": 0.3161287307739258 }, { "args": [ "'client'", "" ], - "asctime": "2021-01-06 22:49:21,960", - "created": 1609969761.9603531, + "asctime": "2021-01-11 07:30:46,745", + "created": 1610346646.7459352, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58814,8 +126057,8 @@ "'client'", "" ], - "asctime": "2021-01-06 22:49:21,959", - "created": 1609969761.9599824, + "asctime": "2021-01-11 07:30:46,745", + "created": 1610346646.7455792, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58825,15 +126068,15 @@ "lineno": 22, "message": "Result (Channel name of server): 'client' ()", "module": "test", - "msecs": 959.9823951721191, + "msecs": 745.5792427062988, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10660.324573516846, + "relativeCreated": 11395.120859146118, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -58842,8 +126085,8 @@ "'client'", "" ], - "asctime": "2021-01-06 22:49:21,960", - "created": 1609969761.960167, + "asctime": "2021-01-11 07:30:46,745", + "created": 1610346646.7457676, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58853,37 +126096,37 @@ "lineno": 26, "message": "Expectation (Channel name of server): result = 'client' ()", "module": "test", - "msecs": 960.1669311523438, + "msecs": 745.7675933837891, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10660.50910949707, + "relativeCreated": 11395.309209823608, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 960.3531360626221, + "msecs": 745.9352016448975, "msg": "Channel name of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10660.695314407349, + "relativeCreated": 11395.476818084717, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001862049102783203 + "time_consumption": 0.00016760826110839844 }, { "args": [ "'client'", "" ], - "asctime": "2021-01-06 22:49:21,960", - "created": 1609969761.960926, + "asctime": "2021-01-11 07:30:46,746", + "created": 1610346646.7464561, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58900,8 +126143,8 @@ "'client'", "" ], - "asctime": "2021-01-06 22:49:21,960", - "created": 1609969761.9606216, + "asctime": "2021-01-11 07:30:46,746", + "created": 1610346646.7461772, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58911,15 +126154,15 @@ "lineno": 22, "message": "Result (Channel name of client): 'client' ()", "module": "test", - "msecs": 960.6215953826904, + "msecs": 746.1771965026855, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10660.963773727417, + "relativeCreated": 11395.718812942505, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -58928,8 +126171,8 @@ "'client'", "" ], - "asctime": "2021-01-06 22:49:21,960", - "created": 1609969761.9607823, + "asctime": "2021-01-11 07:30:46,746", + "created": 1610346646.7463205, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -58939,34 +126182,60 @@ "lineno": 26, "message": "Expectation (Channel name of client): result = 'client' ()", "module": "test", - "msecs": 960.7822895050049, + "msecs": 746.3204860687256, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10661.124467849731, + "relativeCreated": 11395.862102508545, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 960.9260559082031, + "msecs": 746.4561462402344, "msg": "Channel name of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10661.26823425293, + "relativeCreated": 11395.997762680054, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001437664031982422 + "time_consumption": 0.00013566017150878906 }, { "args": [], - "asctime": "2021-01-06 22:49:21,961", - "created": 1609969761.9612663, + "asctime": "2021-01-11 07:30:46,746", + "created": 1610346646.7468078, + "exc_info": null, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "channel_name_exchange", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 297, + "message": "Setting Channel name for server only", + "module": "test_communication", + "moduleLogger": [], + "msecs": 746.8078136444092, + "msg": "Setting Channel name for server only", + "name": "__tLogger__", + "pathname": "src/tests/test_communication.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11396.349430084229, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:47,092", + "created": 1610346647.0924075, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -58974,400 +126243,1420 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 301, - "message": "Setting Channel name for server only", - "module": "test_communication", - "moduleLogger": [], - "msecs": 961.266279220581, - "msg": "Setting Channel name for server only", - "name": "__tLogger__", - "pathname": "src/tests/test_communication.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 10661.608457565308, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-01-06 22:49:22,565", - "created": 1609969762.5654993, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 305, - "message": "Server and Client connect callback triggered", + "message": "Connecting Server and Client", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:21,961", - "created": 1609969761.9614851, + "asctime": "2021-01-11 07:30:46,747", + "created": 1610346646.747034, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 747.0340728759766, + "msg": "%s Connection Lost...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11396.575689315796, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:46,747", + "created": 1610346646.7471967, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 747.1966743469238, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11396.738290786743, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:46,747", + "created": 1610346646.7473383, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 747.3382949829102, + "msg": "%s Connection Lost...", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11396.87991142273, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:46,747", + "created": 1610346646.7474732, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 747.4732398986816, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.server", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11397.014856338501, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:46,747", + "created": 1610346646.7476146, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 747.6146221160889, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11397.156238555908, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:46,747", + "created": 1610346646.747762, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 747.7619647979736, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11397.303581237793, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:46,747", + "created": 1610346646.7479024, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 961.4851474761963, + "msecs": 747.9023933410645, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.server", + "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10661.827325820923, + "relativeCreated": 11397.444009780884, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" ], - "asctime": "2021-01-06 22:49:21,961", - "created": 1609969761.9616585, + "asctime": "2021-01-11 07:30:46,748", + "created": 1610346646.7481546, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 748.1546401977539, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11397.696256637573, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:46,748", + "created": 1610346646.7487395, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 748.73948097229, + "msg": "%s Connection established...", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11398.28109741211, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:46,748", + "created": 1610346646.7489042, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 748.9042282104492, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11398.445844650269, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:46,749", + "created": 1610346646.749053, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 961.6584777832031, + "msecs": 749.0530014038086, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 10662.00065612793, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:21,961", - "created": 1609969761.9618974, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 961.8973731994629, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 10662.23955154419, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:21,962", - "created": 1609969761.9622889, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", - "module": "test_helpers", - "msecs": 962.2888565063477, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 10662.631034851074, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:21,962", - "created": 1609969761.962546, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", - "module": "test_helpers", - "msecs": 962.5461101531982, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 10662.888288497925, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:21,962", - "created": 1609969761.9628344, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 962.834358215332, - "msg": "%s RX <- %s, %s, data: \"%s\"", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10663.176536560059, + "relativeCreated": 11398.594617843628, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:46,749", + "created": 1610346646.7494125, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 749.4125366210938, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11398.954153060913, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:46,757", + "created": 1610346646.7578113, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 757.8113079071045, + "msg": "%s RX <- %s", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11407.352924346924, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,758", + "created": 1610346646.758079, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 758.0790519714355, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11407.620668411255, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:46,758", + "created": 1610346646.758237, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 758.2368850708008, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11407.77850151062, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,758", + "created": 1610346646.7584162, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 758.4161758422852, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11407.957792282104, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,758", + "created": 1610346646.7585413, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 758.5413455963135, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11408.082962036133, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,758", + "created": 1610346646.758727, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 758.7270736694336, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11408.268690109253, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,758", + "created": 1610346646.758848, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 758.8479518890381, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11408.389568328857, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,759", + "created": 1610346646.7590103, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 759.0103149414062, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11408.551931381226, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,759", + "created": 1610346646.7591276, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 759.1276168823242, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11408.669233322144, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,759", + "created": 1610346646.7592824, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 759.2823505401611, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11408.82396697998, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,759", + "created": 1610346646.7594101, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 759.4101428985596, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11408.951759338379, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:46,759", + "created": 1610346646.7596462, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 759.6461772918701, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11409.18779373169, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:46,760", + "created": 1610346646.7607527, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 760.7526779174805, + "msg": "%s RX <- %s", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11410.2942943573, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,761", + "created": 1610346646.761033, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 761.0330581665039, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11410.574674606323, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:46,761", + "created": 1610346646.7611754, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 761.1753940582275, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11410.717010498047, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" + ], + "asctime": "2021-01-11 07:30:46,761", + "created": 1610346646.7614095, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", + "module": "stp", + "msecs": 761.4095211029053, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11410.951137542725, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:46,761", + "created": 1610346646.7618194, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 761.8193626403809, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.server", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11411.3609790802, + "stack_info": null, + "thread": 140561713452800, + "threadName": "Thread-13" + }, + { + "args": [ + "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-06 22:49:21,963", - "created": 1609969761.9630153, + "asctime": "2021-01-11 07:30:46,761", + "created": 1610346646.7619965, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __channel_name_request__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 963.0153179168701, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 761.9965076446533, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10663.357496261597, + "relativeCreated": 11411.538124084473, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561713452800, + "threadName": "Thread-13" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: channel name response, data_id: name", "status: okay", "'server'" ], - "asctime": "2021-01-06 22:49:21,963", - "created": 1609969761.9632137, + "asctime": "2021-01-11 07:30:46,762", + "created": 1610346646.7622097, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: channel name response, data_id: name, status: okay, data: \"'server'\"", + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"'server'\"", "module": "__init__", - "msecs": 963.2136821746826, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 762.2096538543701, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10663.55586051941, + "relativeCreated": 11411.75127029419, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:21,963", - "created": 1609969761.9635763, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 73 65 72 76 65 72 22 7d ac a3 7b cc", - "module": "test_helpers", - "msecs": 963.5763168334961, - "msg": "Send data: (66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 73 65 72 76 65 72 22 7d ac a3 7b cc", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 10663.918495178223, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:21,963", - "created": 1609969761.9638584, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 73 65 72 76 65 72 22 7d ac a3 7b cc", - "module": "test_helpers", - "msecs": 963.8583660125732, - "msg": "Receive data (66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 73 65 72 76 65 72 22 7d ac a3 7b cc", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 10664.2005443573, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561713452800, + "threadName": "Thread-13" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76" + ], + "asctime": "2021-01-11 07:30:46,763", + "created": 1610346646.7631829, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76", + "module": "__init__", + "msecs": 763.1828784942627, + "msg": "%s TX -> %s", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11412.724494934082, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76" + ], + "asctime": "2021-01-11 07:30:46,771", + "created": 1610346646.7716062, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76", + "module": "__init__", + "msecs": 771.6062068939209, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11421.14782333374, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,771", + "created": 1610346646.771853, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 771.852970123291, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11421.39458656311, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:46,771", + "created": 1610346646.7719865, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 771.9864845275879, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11421.528100967407, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,772", + "created": 1610346646.7721477, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 772.1476554870605, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11421.68927192688, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,772", + "created": 1610346646.7722933, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 772.2933292388916, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11421.834945678711, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,772", + "created": 1610346646.7724662, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 772.4661827087402, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11422.00779914856, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,772", + "created": 1610346646.7725759, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 772.575855255127, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11422.117471694946, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,772", + "created": 1610346646.7727208, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 772.7208137512207, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11422.26243019104, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,772", + "created": 1610346646.772826, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 772.8259563446045, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11422.367572784424, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,772", + "created": 1610346646.7729638, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 772.9637622833252, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11422.505378723145, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:46,773", + "created": 1610346646.7730668, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 773.0667591094971, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11422.608375549316, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-server:", + "(10): 65 72 22 7d ac a3 7b cc 3a 3e" + ], + "asctime": "2021-01-11 07:30:46,773", + "created": 1610346646.7732673, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (10): 65 72 22 7d ac a3 7b cc 3a 3e", + "module": "__init__", + "msecs": 773.2672691345215, + "msg": "%s TX -> %s", + "name": "root.helpers.server", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11422.80888557434, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "comm-client:", + "(10): 65 72 22 7d ac a3 7b cc 3a 3e" + ], + "asctime": "2021-01-11 07:30:46,774", + "created": 1610346646.7748485, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (10): 65 72 22 7d ac a3 7b cc 3a 3e", + "module": "__init__", + "msecs": 774.848461151123, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11424.390077590942, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:46,775", + "created": 1610346646.7751296, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 775.1295566558838, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11424.671173095703, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:46,775", + "created": 1610346646.7752655, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 775.2654552459717, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11424.807071685791, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "STP:", + "(66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 73 65 72 76 65 72 22 7d ac a3 7b cc" + ], + "asctime": "2021-01-11 07:30:46,775", + "created": 1610346646.7754745, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (66): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 73 65 72 76 65 72 22 7d ac a3 7b cc", + "module": "stp", + "msecs": 775.4745483398438, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11425.016164779663, + "stack_info": null, + "thread": 140561705060096, + "threadName": "Thread-14" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: channel name response, data_id: name", "status: okay", "'server'" ], - "asctime": "2021-01-06 22:49:21,964", - "created": 1609969761.9641232, + "asctime": "2021-01-11 07:30:46,775", + "created": 1610346646.7758012, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: channel name response, data_id: name, status: okay, data: \"'server'\"", + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"'server'\"", "module": "__init__", - "msecs": 964.1232490539551, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 775.8011817932129, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10664.465427398682, + "relativeCreated": 11425.342798233032, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561705060096, + "threadName": "Thread-14" }, { "args": [ - "SP client:", + "prot-client:", "__channel_name_response__" ], - "asctime": "2021-01-06 22:49:21,964", - "created": 1609969761.9643114, + "asctime": "2021-01-11 07:30:46,775", + "created": 1610346646.775953, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __channel_name_response__ to process received data", + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 964.3113613128662, + "msecs": 775.9530544281006, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10664.653539657593, + "relativeCreated": 11425.49467086792, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561705060096, + "threadName": "Thread-14" }, { "args": [ - "SP client:", + "prot-client:", "'server'" ], - "asctime": "2021-01-06 22:49:21,964", - "created": 1609969761.9645405, + "asctime": "2021-01-11 07:30:46,776", + "created": 1610346646.7761838, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__channel_name_response__", "levelname": "INFO", "levelno": 20, - "lineno": 397, - "message": "SP client: channel name is now 'server'", + "lineno": 407, + "message": "prot-client: channel name is now 'server'", "module": "__init__", - "msecs": 964.5404815673828, + "msecs": 776.1838436126709, "msg": "%s channel name is now %s", "name": "root.socket_protocol.server", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 10664.88265991211, + "relativeCreated": 11425.72546005249, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561705060096, + "threadName": "Thread-14" } ], - "msecs": 565.4993057250977, - "msg": "Server and Client connect callback triggered", + "msecs": 92.4074649810791, + "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11265.841484069824, + "relativeCreated": 11741.949081420898, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.6009588241577148 + "time_consumption": 0.3162236213684082 }, { "args": [ "'server'", "" ], - "asctime": "2021-01-06 22:49:22,566", - "created": 1609969762.5663636, + "asctime": "2021-01-11 07:30:47,093", + "created": 1610346647.0933638, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -59384,8 +127673,8 @@ "'server'", "" ], - "asctime": "2021-01-06 22:49:22,565", - "created": 1609969762.565983, + "asctime": "2021-01-11 07:30:47,093", + "created": 1610346647.0930219, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -59395,15 +127684,15 @@ "lineno": 22, "message": "Result (Channel name of server): 'server' ()", "module": "test", - "msecs": 565.9830570220947, + "msecs": 93.02186965942383, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11266.325235366821, + "relativeCreated": 11742.563486099243, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -59412,8 +127701,8 @@ "'server'", "" ], - "asctime": "2021-01-06 22:49:22,566", - "created": 1609969762.5661893, + "asctime": "2021-01-11 07:30:47,093", + "created": 1610346647.093206, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -59423,37 +127712,37 @@ "lineno": 26, "message": "Expectation (Channel name of server): result = 'server' ()", "module": "test", - "msecs": 566.1892890930176, + "msecs": 93.20592880249023, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11266.531467437744, + "relativeCreated": 11742.74754524231, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 566.3635730743408, + "msecs": 93.36376190185547, "msg": "Channel name of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11266.705751419067, + "relativeCreated": 11742.905378341675, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001742839813232422 + "time_consumption": 0.00015783309936523438 }, { "args": [ "'server'", "" ], - "asctime": "2021-01-06 22:49:22,566", - "created": 1609969762.5669034, + "asctime": "2021-01-11 07:30:47,093", + "created": 1610346647.093924, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -59470,8 +127759,8 @@ "'server'", "" ], - "asctime": "2021-01-06 22:49:22,566", - "created": 1609969762.5666118, + "asctime": "2021-01-11 07:30:47,093", + "created": 1610346647.0936456, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -59481,15 +127770,15 @@ "lineno": 22, "message": "Result (Channel name of client): 'server' ()", "module": "test", - "msecs": 566.6117668151855, + "msecs": 93.64557266235352, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11266.953945159912, + "relativeCreated": 11743.187189102173, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -59498,8 +127787,8 @@ "'server'", "" ], - "asctime": "2021-01-06 22:49:22,566", - "created": 1609969762.5667605, + "asctime": "2021-01-11 07:30:47,093", + "created": 1610346647.0937881, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -59509,41 +127798,41 @@ "lineno": 26, "message": "Expectation (Channel name of client): result = 'server' ()", "module": "test", - "msecs": 566.7605400085449, + "msecs": 93.78814697265625, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11267.102718353271, + "relativeCreated": 11743.329763412476, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 566.9033527374268, + "msecs": 93.92404556274414, "msg": "Channel name of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11267.245531082153, + "relativeCreated": 11743.465662002563, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00014281272888183594 + "time_consumption": 0.00013589859008789062 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 3.0332884788513184, - "time_finished": "2021-01-06 22:49:22,566", - "time_start": "2021-01-06 22:49:19,533" + "time_consumption": 1.7449655532836914, + "time_finished": "2021-01-11 07:30:47,093", + "time_start": "2021-01-11 07:30:45,348" }, "_Pn3WgE0NEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:49:16,363", - "created": 1609969756.363234, + "asctime": "2021-01-11 07:30:40,892", + "created": 1610346640.8921463, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -59554,1154 +127843,2519 @@ "message": "_Pn3WgE0NEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 363.2340431213379, + "msecs": 892.1463489532471, "msg": "_Pn3WgE0NEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5063.576221466064, + "relativeCreated": 5541.687965393066, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:16,370", - "created": 1609969756.3702793, + "asctime": "2021-01-11 07:30:40,901", + "created": 1610346640.9012935, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:16,363", - "created": 1609969756.3636532, + "asctime": "2021-01-11 07:30:40,898", + "created": 1610346640.8988354, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 363.65318298339844, + "msecs": 898.8354206085205, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5063.995361328125, + "relativeCreated": 5548.37703704834, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:16,363", - "created": 1609969756.3638444, + "asctime": "2021-01-11 07:30:40,899", + "created": 1610346640.8992076, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 363.8443946838379, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 899.207592010498, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5064.186573028564, + "relativeCreated": 5548.749208450317, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:16,364", - "created": 1609969756.3640637, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 364.0637397766113, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5064.405918121338, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:16,364", - "created": 1609969756.36422, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 364.21990394592285, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5064.562082290649, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:16,364", - "created": 1609969756.364369, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 364.3689155578613, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5064.711093902588, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:16,364", - "created": 1609969756.3645265, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 364.52651023864746, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5064.868688583374, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:16,364", - "created": 1609969756.3646896, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 364.68958854675293, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5065.0317668914795, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:16,364", - "created": 1609969756.3648622, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 364.86220359802246, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5065.204381942749, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:16,365", - "created": 1609969756.3651464, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 365.1463985443115, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5065.488576889038, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:16,365", - "created": 1609969756.36533, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 365.3299808502197, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5065.672159194946, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:16,365", - "created": 1609969756.3654733, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 365.47327041625977, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5065.815448760986, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:16,365", - "created": 1609969756.3656325, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 365.6325340270996, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5065.974712371826, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:16,365", - "created": 1609969756.3658216, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 365.82159996032715, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5066.163778305054, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:16,365", - "created": 1609969756.365982, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 365.9820556640625, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5066.324234008789, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:16,366", - "created": 1609969756.366134, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 366.1339282989502, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5066.476106643677, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:16,366", - "created": 1609969756.366288, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 366.2879467010498, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5066.630125045776, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:16,366", - "created": 1609969756.3664393, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 366.4393424987793, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5066.781520843506, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:16,366", - "created": 1609969756.3665957, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 366.5957450866699, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5066.9379234313965, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:16,366", - "created": 1609969756.3667507, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 366.75071716308594, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5067.0928955078125, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:16,366", - "created": 1609969756.3668933, + "asctime": "2021-01-11 07:30:40,899", + "created": 1610346640.8993046, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 366.8932914733887, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 899.3046283721924, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5067.235469818115, + "relativeCreated": 5548.846244812012, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:16,367", - "created": 1609969756.3671653, + "asctime": "2021-01-11 07:30:40,899", + "created": 1610346640.8994355, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 367.16532707214355, + "msecs": 899.4355201721191, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5067.50750541687, + "relativeCreated": 5548.9771366119385, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:16,367", - "created": 1609969756.3673232, + "asctime": "2021-01-11 07:30:40,899", + "created": 1610346640.899505, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 367.3231601715088, + "msecs": 899.5048999786377, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5067.665338516235, + "relativeCreated": 5549.046516418457, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:16,367", - "created": 1609969756.3675344, + "asctime": "2021-01-11 07:30:40,899", + "created": 1610346640.899584, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 367.5343990325928, + "msecs": 899.5840549468994, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5067.876577377319, + "relativeCreated": 5549.125671386719, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:16,367", - "created": 1609969756.3676848, + "asctime": "2021-01-11 07:30:40,899", + "created": 1610346640.8996398, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 367.68484115600586, + "msecs": 899.6398448944092, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5068.027019500732, + "relativeCreated": 5549.1814613342285, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:16,367", - "created": 1609969756.3678293, + "asctime": "2021-01-11 07:30:40,899", + "created": 1610346640.8996959, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 367.8293228149414, + "msecs": 899.695873260498, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5068.171501159668, + "relativeCreated": 5549.237489700317, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:16,367", - "created": 1609969756.3679807, + "asctime": "2021-01-11 07:30:40,899", + "created": 1610346640.8997464, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 367.9807186126709, + "msecs": 899.7464179992676, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5068.3228969573975, + "relativeCreated": 5549.288034439087, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:16,368", - "created": 1609969756.3681338, + "asctime": "2021-01-11 07:30:40,899", + "created": 1610346640.8998084, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 368.1337833404541, + "msecs": 899.808406829834, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5068.475961685181, + "relativeCreated": 5549.350023269653, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:16,368", - "created": 1609969756.3682907, + "asctime": "2021-01-11 07:30:40,899", + "created": 1610346640.899858, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 368.29066276550293, + "msecs": 899.8579978942871, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5068.6328411102295, + "relativeCreated": 5549.399614334106, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:16,368", - "created": 1609969756.3684583, + "asctime": "2021-01-11 07:30:40,899", + "created": 1610346640.8999038, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 368.4582710266113, + "msecs": 899.9037742614746, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5068.800449371338, + "relativeCreated": 5549.445390701294, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:16,368", - "created": 1609969756.3686144, + "asctime": "2021-01-11 07:30:40,899", + "created": 1610346640.899947, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 368.61443519592285, + "msecs": 899.946928024292, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5068.956613540649, + "relativeCreated": 5549.488544464111, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:16,368", - "created": 1609969756.3687637, + "asctime": "2021-01-11 07:30:40,899", + "created": 1610346640.8999856, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 368.76368522644043, + "msecs": 899.9855518341064, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5069.105863571167, + "relativeCreated": 5549.527168273926, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:16,368", - "created": 1609969756.3689172, + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.900029, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 368.91722679138184, + "msecs": 900.0289440155029, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5069.259405136108, + "relativeCreated": 5549.570560455322, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:16,369", - "created": 1609969756.3690846, + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.9000764, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 369.08459663391113, + "msecs": 900.0763893127441, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5069.426774978638, + "relativeCreated": 5549.6180057525635, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:16,369", - "created": 1609969756.3692305, + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.9001164, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 369.2305088043213, + "msecs": 900.1164436340332, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5069.572687149048, + "relativeCreated": 5549.6580600738525, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:16,369", - "created": 1609969756.3693798, + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.900167, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 369.37975883483887, + "msecs": 900.1669883728027, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5069.721937179565, + "relativeCreated": 5549.708604812622, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:16,369", - "created": 1609969756.3695333, + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.9002137, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 369.5333003997803, + "msecs": 900.2137184143066, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5069.875478744507, + "relativeCreated": 5549.755334854126, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:16,369", - "created": 1609969756.3696854, + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.9002585, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 369.68541145324707, + "msecs": 900.2585411071777, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5070.027589797974, + "relativeCreated": 5549.800157546997, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:16,369", - "created": 1609969756.3698623, + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.900297, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 369.86231803894043, + "msecs": 900.2969264984131, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5070.204496383667, + "relativeCreated": 5549.838542938232, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:16,370", - "created": 1609969756.3700066, + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.900334, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 370.0065612792969, + "msecs": 900.3338813781738, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5070.348739624023, + "relativeCreated": 5549.875497817993, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:16,370", - "created": 1609969756.3701465, + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.9003713, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 370.1465129852295, + "msecs": 900.3713130950928, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5070.488691329956, + "relativeCreated": 5549.912929534912, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.9004495, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 900.4495143890381, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5549.991130828857, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.900493, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 900.4929065704346, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5550.034523010254, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.9005473, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 900.5472660064697, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5550.088882446289, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.9005883, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 900.5882740020752, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5550.1298904418945, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.9006293, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 900.6292819976807, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5550.1708984375, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.9006667, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 900.6667137145996, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5550.208330154419, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.9007087, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 900.7086753845215, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5550.250291824341, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.900754, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 900.7539749145508, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5550.29559135437, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.9007943, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 900.794267654419, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5550.335884094238, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.9008415, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 900.841474533081, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5550.3830909729, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.9008965, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 900.8965492248535, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5550.438165664673, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.9009461, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 900.9461402893066, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5550.487756729126, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:40,900", + "created": 1610346640.900988, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 900.9881019592285, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5550.529718399048, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:40,901", + "created": 1610346640.9010296, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 901.0295867919922, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5550.5712032318115, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:40,901", + "created": 1610346640.9010677, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 901.0677337646484, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5550.609350204468, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:40,901", + "created": 1610346640.9011095, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 901.1094570159912, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5550.651073455811, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:40,901", + "created": 1610346640.9011478, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 901.1478424072266, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5550.689458847046, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:40,901", + "created": 1610346640.9011838, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 901.1838436126709, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5550.72546005249, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:40,901", + "created": 1610346640.9012191, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 901.2191295623779, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5550.760746002197, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:40,901", + "created": 1610346640.9012573, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 901.2572765350342, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5550.7988929748535, + "stack_info": null, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 370.27931213378906, + "msecs": 901.2935161590576, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5070.621490478516, + "relativeCreated": 5550.835132598877, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001327991485595703 + "time_consumption": 3.62396240234375e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:16,370", - "created": 1609969756.3705657, + "asctime": "2021-01-11 07:30:41,245", + "created": 1610346641.2450788, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:40,901", + "created": 1610346640.9013855, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 901.3855457305908, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5550.92716217041, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:40,901", + "created": 1610346640.9014235, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 901.423454284668, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5550.965070724487, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:40,901", + "created": 1610346640.9014926, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 901.4925956726074, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5551.034212112427, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:40,901", + "created": 1610346640.9015622, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 901.5622138977051, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5551.103830337524, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:40,901", + "created": 1610346640.9017377, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 901.7376899719238, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5551.279306411743, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:40,901", + "created": 1610346640.9017887, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 901.7887115478516, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5551.330327987671, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:40,901", + "created": 1610346640.9018297, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 901.829719543457, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5551.371335983276, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:40,901", + "created": 1610346640.9019907, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 901.9906520843506, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5551.53226852417, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:40,910", + "created": 1610346640.910167, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 910.1669788360596, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5559.708595275879, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,910", + "created": 1610346640.9103398, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 910.3398323059082, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5559.8814487457275, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:40,910", + "created": 1610346640.9104204, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 910.4204177856445, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5559.962034225464, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,910", + "created": 1610346640.9105172, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 910.5172157287598, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5560.058832168579, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,910", + "created": 1610346640.9105864, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 910.5863571166992, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5560.127973556519, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,910", + "created": 1610346640.910684, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 910.6841087341309, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5560.22572517395, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,910", + "created": 1610346640.9107518, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 910.7518196105957, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5560.293436050415, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,910", + "created": 1610346640.9108422, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 910.8421802520752, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5560.3837966918945, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,910", + "created": 1610346640.9109087, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 910.9086990356445, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5560.450315475464, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,911", + "created": 1610346640.9110003, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 911.0002517700195, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5560.541868209839, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,911", + "created": 1610346640.9110656, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 911.0655784606934, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5560.607194900513, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:40,911", + "created": 1610346640.9111934, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 911.1933708190918, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5560.734987258911, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:40,912", + "created": 1610346640.912183, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 912.1830463409424, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5561.724662780762, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,912", + "created": 1610346640.9123523, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 912.3523235321045, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5561.893939971924, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:40,912", + "created": 1610346640.9124513, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 912.4512672424316, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5561.992883682251, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" + ], + "asctime": "2021-01-11 07:30:40,912", + "created": 1610346640.9125786, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", + "module": "stp", + "msecs": 912.5785827636719, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5562.120199203491, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:40,912", + "created": 1610346640.912798, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 912.7979278564453, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5562.339544296265, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:40,912", + "created": 1610346640.9128954, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 912.8954410552979, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5562.437057495117, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:40,913", + "created": 1610346640.9130235, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 913.0234718322754, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5562.565088272095, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:40,913", + "created": 1610346640.9134896, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 913.489580154419, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5563.031196594238, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:40,921", + "created": 1610346640.9216444, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 921.6444492340088, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5571.186065673828, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,921", + "created": 1610346640.921787, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 921.7870235443115, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5571.328639984131, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:40,921", + "created": 1610346640.9218614, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 921.8614101409912, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5571.403026580811, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,921", + "created": 1610346640.921965, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 921.9648838043213, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5571.506500244141, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,922", + "created": 1610346640.9220307, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 922.0306873321533, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5571.572303771973, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,922", + "created": 1610346640.9221213, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 922.1212863922119, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5571.662902832031, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,922", + "created": 1610346640.9221826, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 922.182559967041, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5571.72417640686, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,922", + "created": 1610346640.92227, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 922.2700595855713, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5571.811676025391, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,922", + "created": 1610346640.9223332, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 922.3332405090332, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5571.8748569488525, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,922", + "created": 1610346640.9224112, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 922.4112033843994, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5571.952819824219, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:40,922", + "created": 1610346640.92247, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 922.4700927734375, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5572.011709213257, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:40,922", + "created": 1610346640.9226, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 922.6000308990479, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5572.141647338867, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:40,923", + "created": 1610346640.9235857, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 923.5856533050537, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5573.127269744873, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:40,923", + "created": 1610346640.9237676, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 923.7675666809082, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5573.3091831207275, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:40,923", + "created": 1610346640.9238546, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 923.8545894622803, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5573.3962059021, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:40,923", + "created": 1610346640.9239686, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 923.9685535430908, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5573.51016998291, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:40,924", + "created": 1610346640.9241529, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 924.1528511047363, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5573.694467544556, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:40,924", + "created": 1610346640.9242368, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 924.2367744445801, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5573.778390884399, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + } + ], + "msecs": 245.07880210876465, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5894.620418548584, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.32084202766418457 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:41,245", + "created": 1610346641.2456217, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -60712,22 +130366,22 @@ "message": "Setting a Server secret and no Client secret", "module": "test_communication", "moduleLogger": [], - "msecs": 370.56565284729004, + "msecs": 245.6216812133789, "msg": "Setting a Server secret and no Client secret", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5070.907831192017, + "relativeCreated": 5895.163297653198, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-06 22:49:16,473", - "created": 1609969756.47373, + "asctime": "2021-01-11 07:30:41,447", + "created": 1610346641.4473662, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -60740,286 +130394,1126 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: execute request, data_id: 36", "status: okay", "'msg3_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:16,370", - "created": 1609969756.3708239, + "asctime": "2021-01-11 07:30:41,246", + "created": 1610346641.2460504, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: execute request, data_id: 36, status: okay, data: \"'msg3_data_to_be_transfered'\"", + "lineno": 438, + "message": "prot-client: TX -> service: execute request, data_id: 36, status: okay, data: \"'msg3_data_to_be_transfered'\"", "module": "__init__", - "msecs": 370.82386016845703, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 246.05035781860352, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5071.166038513184, + "relativeCreated": 5895.591974258423, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:16,371", - "created": 1609969756.3712626, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d", - "module": "test_helpers", - "msecs": 371.2625503540039, - "msg": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5071.6047286987305, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:16,371", - "created": 1609969756.3715584, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d", - "module": "test_helpers", - "msecs": 371.55842781066895, - "msg": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5071.9006061553955, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:" + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-06 22:49:16,371", - "created": 1609969756.3718185, + "asctime": "2021-01-11 07:30:41,247", + "created": 1610346641.2470407, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 247.0407485961914, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5896.582365036011, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:41,255", + "created": 1610346641.2555237, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 255.523681640625, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5905.065298080444, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:41,255", + "created": 1610346641.25583, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 255.8300495147705, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5905.37166595459, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:41,256", + "created": 1610346641.2560518, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 256.05177879333496, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5905.593395233154, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:41,256", + "created": 1610346641.2562768, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 256.27684593200684, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5905.818462371826, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:41,256", + "created": 1610346641.2564278, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 256.4277648925781, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5905.9693813323975, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:41,256", + "created": 1610346641.2566395, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 256.6394805908203, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5906.18109703064, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:41,256", + "created": 1610346641.2567887, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 256.7887306213379, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5906.330347061157, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:41,257", + "created": 1610346641.257001, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 257.0009231567383, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5906.542539596558, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:41,257", + "created": 1610346641.2571607, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 257.1606636047363, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5906.702280044556, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:41,257", + "created": 1610346641.2573397, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 257.3397159576416, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5906.881332397461, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:41,257", + "created": 1610346641.2575111, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 257.5111389160156, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5907.052755355835, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-client:", + "(32): 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d 3a 3e" + ], + "asctime": "2021-01-11 07:30:41,257", + "created": 1610346641.2577944, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d 3a 3e", + "module": "__init__", + "msecs": 257.7943801879883, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5907.335996627808, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(32): 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d 3a 3e" + ], + "asctime": "2021-01-11 07:30:41,262", + "created": 1610346641.2621317, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d 3a 3e", + "module": "__init__", + "msecs": 262.1316909790039, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5911.673307418823, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:41,262", + "created": 1610346641.2625685, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 262.56847381591797, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5912.110090255737, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:41,262", + "created": 1610346641.2627294, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 262.7294063568115, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5912.271022796631, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d" + ], + "asctime": "2021-01-11 07:30:41,263", + "created": 1610346641.263003, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d", + "module": "stp", + "msecs": 263.0031108856201, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5912.544727325439, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: execute request, data_id: 36", + "status: okay", + "'msg3_data_to_be_transfered'" + ], + "asctime": "2021-01-11 07:30:41,263", + "created": 1610346641.2633839, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: execute request, data_id: 36, status: okay, data: \"'msg3_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 263.3838653564453, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5912.925481796265, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:41,263", + "created": 1610346641.2635407, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 437, - "message": "SP server: RX <- Authentification is required. Just sending negative response.", + "lineno": 459, + "message": "prot-server: Authentification is required. Just sending negative response.", "module": "__init__", - "msecs": 371.81854248046875, - "msg": "%s RX <- Authentification is required. Just sending negative response.", + "msecs": 263.54074478149414, + "msg": "%s Authentification is required. Just sending negative response.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5072.160720825195, + "relativeCreated": 5913.0823612213135, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562225145600, + "threadName": "Thread-9" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: execute response, data_id: 36", "status: authentification required", "None" ], - "asctime": "2021-01-06 22:49:16,372", - "created": 1609969756.3720262, + "asctime": "2021-01-11 07:30:41,263", + "created": 1610346641.2637758, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: execute response, data_id: 36, status: authentification required, data: \"None\"", - "module": "__init__", - "msecs": 372.0262050628662, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5072.368383407593, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:16,372", - "created": 1609969756.3723743, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (64): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 5d 78 af a4", - "module": "test_helpers", - "msecs": 372.3742961883545, - "msg": "Send data: (64): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 5d 78 af a4", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5072.716474533081, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:16,372", - "created": 1609969756.3726275, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (64): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 5d 78 af a4", - "module": "test_helpers", - "msecs": 372.62749671936035, - "msg": "Receive data (64): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 5d 78 af a4", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5072.969675064087, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: execute response, data_id: 36", - "status: authentification required", - "None" - ], - "asctime": "2021-01-06 22:49:16,372", - "created": 1609969756.372916, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: execute response, data_id: 36, status: authentification required, data: \"None\"", - "module": "__init__", - "msecs": 372.91598320007324, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5073.2581615448, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "status: authentification required" - ], - "asctime": "2021-01-06 22:49:16,373", - "created": 1609969756.3730948, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: authentification required", + "lineno": 438, + "message": "prot-server: TX -> service: execute response, data_id: 36, status: authentification required, data: \"None\"", "module": "__init__", - "msecs": 373.0947971343994, - "msg": "%s RX <- Message has a peculiar status: %s", + "msecs": 263.7758255004883, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5073.436975479126, + "relativeCreated": 5913.317441940308, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562225145600, + "threadName": "Thread-9" }, { "args": [ - "SP client:" + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c" ], - "asctime": "2021-01-06 22:49:16,373", - "created": 1609969756.3732939, + "asctime": "2021-01-11 07:30:41,264", + "created": 1610346641.264533, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c", + "module": "__init__", + "msecs": 264.53304290771484, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5914.074659347534, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c" + ], + "asctime": "2021-01-11 07:30:41,273", + "created": 1610346641.2730381, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c", + "module": "__init__", + "msecs": 273.0381488800049, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5922.579765319824, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:41,273", + "created": 1610346641.2733176, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 273.3175754547119, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5922.859191894531, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:41,273", + "created": 1610346641.2735074, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 273.50735664367676, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5923.048973083496, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:41,273", + "created": 1610346641.273694, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 273.6940383911133, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5923.235654830933, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:41,273", + "created": 1610346641.2738266, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 273.82659912109375, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5923.368215560913, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:41,274", + "created": 1610346641.2740119, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 274.01185035705566, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5923.553466796875, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:41,274", + "created": 1610346641.2741327, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 274.13272857666016, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5923.6743450164795, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:41,274", + "created": 1610346641.2742984, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 274.29842948913574, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5923.840045928955, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:41,274", + "created": 1610346641.2744148, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 274.4147777557373, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5923.956394195557, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:41,274", + "created": 1610346641.2745693, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 274.5692729949951, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5924.110889434814, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:41,274", + "created": 1610346641.2746854, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 274.6853828430176, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5924.226999282837, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-server:", + "(8): 6c 7d 5d 78 af a4 3a 3e" + ], + "asctime": "2021-01-11 07:30:41,274", + "created": 1610346641.2748957, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (8): 6c 7d 5d 78 af a4 3a 3e", + "module": "__init__", + "msecs": 274.89566802978516, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5924.4372844696045, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(8): 6c 7d 5d 78 af a4 3a 3e" + ], + "asctime": "2021-01-11 07:30:41,276", + "created": 1610346641.2762516, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (8): 6c 7d 5d 78 af a4 3a 3e", + "module": "__init__", + "msecs": 276.25155448913574, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5925.793170928955, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:41,276", + "created": 1610346641.276553, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 276.5529155731201, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5926.094532012939, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:41,276", + "created": 1610346641.2767313, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 276.7312526702881, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5926.272869110107, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + "(64): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 5d 78 af a4" + ], + "asctime": "2021-01-11 07:30:41,276", + "created": 1610346641.276965, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (64): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 5d 78 af a4", + "module": "stp", + "msecs": 276.9649028778076, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5926.506519317627, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: execute response, data_id: 36", + "status: authentification required", + "None" + ], + "asctime": "2021-01-11 07:30:41,277", + "created": 1610346641.2773035, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "WARNING", + "levelno": 30, + "lineno": 438, + "message": "prot-client: RX <- service: execute response, data_id: 36, status: authentification required, data: \"None\"", + "module": "__init__", + "msecs": 277.30345726013184, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 5926.845073699951, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:41,277", + "created": 1610346641.2775412, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 373.2938766479492, + "msecs": 277.5411605834961, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5073.636054992676, + "relativeCreated": 5927.082777023315, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562216752896, + "threadName": "Thread-10" } ], - "msecs": 473.73008728027344, + "msecs": 447.36623764038086, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5174.072265625, + "relativeCreated": 6096.9078540802, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.10043621063232422 + "time_consumption": 0.16982507705688477 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:16,474", - "created": 1609969756.4741805, + "asctime": "2021-01-11 07:30:41,448", + "created": 1610346641.4481888, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61036,8 +131530,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:16,473", - "created": 1609969756.4739966, + "asctime": "2021-01-11 07:30:41,447", + "created": 1610346641.4478614, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61047,15 +131541,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 473.996639251709, + "msecs": 447.8614330291748, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5174.338817596436, + "relativeCreated": 6097.403049468994, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -61064,8 +131558,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:16,474", - "created": 1609969756.4740946, + "asctime": "2021-01-11 07:30:41,448", + "created": 1610346641.448035, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61075,37 +131569,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 474.0946292877197, + "msecs": 448.03500175476074, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5174.436807632446, + "relativeCreated": 6097.57661819458, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 474.1804599761963, + "msecs": 448.18878173828125, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5174.522638320923, + "relativeCreated": 6097.730398178101, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 8.58306884765625e-05 + "time_consumption": 0.0001537799835205078 }, { "args": [ "{'data_id': 36, 'service_id': 31, 'status': 3, 'data': None}", "" ], - "asctime": "2021-01-06 22:49:16,474", - "created": 1609969756.474479, + "asctime": "2021-01-11 07:30:41,448", + "created": 1610346641.4488018, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61122,8 +131616,8 @@ "{'data_id': 36, 'service_id': 31, 'status': 3, 'data': None}", "" ], - "asctime": "2021-01-06 22:49:16,474", - "created": 1609969756.474313, + "asctime": "2021-01-11 07:30:41,448", + "created": 1610346641.4484587, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61133,15 +131627,15 @@ "lineno": 22, "message": "Result (Received message on server side): {'data_id': 36, 'service_id': 31, 'status': 3, 'data': None} ()", "module": "test", - "msecs": 474.31302070617676, + "msecs": 448.4586715698242, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5174.655199050903, + "relativeCreated": 6098.000288009644, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -61150,8 +131644,8 @@ "{'service_id': 31, 'data_id': 36, 'status': 3, 'data': None}", "" ], - "asctime": "2021-01-06 22:49:16,474", - "created": 1609969756.4743972, + "asctime": "2021-01-11 07:30:41,448", + "created": 1610346641.4486222, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61161,34 +131655,34 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'service_id': 31, 'data_id': 36, 'status': 3, 'data': None} ()", "module": "test", - "msecs": 474.3971824645996, + "msecs": 448.6222267150879, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5174.739360809326, + "relativeCreated": 6098.163843154907, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 474.47896003723145, + "msecs": 448.80175590515137, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5174.821138381958, + "relativeCreated": 6098.343372344971, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 8.177757263183594e-05 + "time_consumption": 0.00017952919006347656 }, { "args": [], - "asctime": "2021-01-06 22:49:16,474", - "created": 1609969756.474605, + "asctime": "2021-01-11 07:30:41,449", + "created": 1610346641.449014, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -61199,22 +131693,22 @@ "message": "Setting no Server secret but a Client secret", "module": "test_communication", "moduleLogger": [], - "msecs": 474.6050834655762, + "msecs": 449.01394844055176, "msg": "Setting no Server secret but a Client secret", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5174.947261810303, + "relativeCreated": 6098.555564880371, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-06 22:49:16,776", - "created": 1609969756.7764945, + "asctime": "2021-01-11 07:30:41,751", + "created": 1610346641.7513459, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -61227,156 +131721,604 @@ "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:16,474", - "created": 1609969756.474752, + "asctime": "2021-01-11 07:30:41,449", + "created": 1610346641.449354, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 438, + "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 474.75194931030273, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 449.3539333343506, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5175.094127655029, + "relativeCreated": 6098.89554977417, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:16,474", - "created": 1609969756.4749985, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "module": "test_helpers", - "msecs": 474.99847412109375, - "msg": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5175.34065246582, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:16,475", - "created": 1609969756.4751582, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "module": "test_helpers", - "msecs": 475.1582145690918, - "msg": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 5175.500392913818, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-06 22:49:16,475", - "created": 1609969756.4753034, + "asctime": "2021-01-11 07:30:41,450", + "created": 1610346641.4504886, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 450.4885673522949, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 6100.030183792114, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:41,458", + "created": 1610346641.4588683, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 458.86826515197754, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 6108.409881591797, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:41,459", + "created": 1610346641.459094, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 459.0940475463867, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 6108.635663986206, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:41,459", + "created": 1610346641.4592016, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 459.2015743255615, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 6108.743190765381, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:41,459", + "created": 1610346641.4593265, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 459.32650566101074, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 6108.86812210083, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:41,459", + "created": 1610346641.4594145, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 459.4144821166992, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 6108.956098556519, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:41,459", + "created": 1610346641.4595711, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 459.57112312316895, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 6109.112739562988, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:41,459", + "created": 1610346641.4596548, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 459.6548080444336, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 6109.196424484253, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:41,459", + "created": 1610346641.4597719, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 459.77187156677246, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 6109.313488006592, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:41,459", + "created": 1610346641.4598606, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 459.86056327819824, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 6109.402179718018, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:41,459", + "created": 1610346641.459974, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 459.9740505218506, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 6109.51566696167, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:41,460", + "created": 1610346641.460056, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 460.0560665130615, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 6109.597682952881, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-server:", + "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" + ], + "asctime": "2021-01-11 07:30:41,460", + "created": 1610346641.4602292, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", + "module": "__init__", + "msecs": 460.22915840148926, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 6109.770774841309, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" + ], + "asctime": "2021-01-11 07:30:41,464", + "created": 1610346641.4648438, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", + "module": "__init__", + "msecs": 464.84375, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 6114.385366439819, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:41,465", + "created": 1610346641.4657967, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 465.79670906066895, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 6115.338325500488, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:41,466", + "created": 1610346641.466219, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 466.2189483642578, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 6115.760564804077, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f" + ], + "asctime": "2021-01-11 07:30:41,466", + "created": 1610346641.4666297, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", + "module": "stp", + "msecs": 466.6297435760498, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 6116.171360015869, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: 17, data_id: 35", + "status: service or data unknown", + "'msg2_data_to_be_transfered'" + ], + "asctime": "2021-01-11 07:30:41,466", + "created": 1610346641.4669623, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 438, + "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 466.9623374938965, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 6116.503953933716, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:41,467", + "created": 1610346641.4671168, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 441, - "message": "SP client: RX <- Authentification is required. Message will be ignored.", + "lineno": 463, + "message": "prot-client: Authentification is required. Incomming message will be ignored.", "module": "__init__", - "msecs": 475.30341148376465, - "msg": "%s RX <- Authentification is required. Message will be ignored.", + "msecs": 467.1168327331543, + "msg": "%s Authentification is required. Incomming message will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5175.645589828491, + "relativeCreated": 6116.658449172974, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562216752896, + "threadName": "Thread-10" }, { "args": [ - "SP client:", - "0.25", + "prot-client:", + "0.28705533596837945", "17", "35" ], - "asctime": "2021-01-06 22:49:16,776", - "created": 1609969756.776217, + "asctime": "2021-01-11 07:30:41,751", + "created": 1610346641.7510672, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP client: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 35) not in buffer.", + "lineno": 668, + "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 776.216983795166, + "msecs": 751.0671615600586, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5476.559162139893, + "relativeCreated": 6400.608777999878, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 776.4945030212402, + "msecs": 751.3458728790283, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5476.836681365967, + "relativeCreated": 6400.887489318848, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00027751922607421875 + "time_consumption": 0.00027871131896972656 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:16,777", - "created": 1609969756.7771208, + "asctime": "2021-01-11 07:30:41,752", + "created": 1610346641.7520573, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61393,8 +132335,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:16,776", - "created": 1609969756.7767968, + "asctime": "2021-01-11 07:30:41,751", + "created": 1610346641.7517292, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61404,15 +132346,15 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 776.796817779541, + "msecs": 751.7292499542236, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5477.138996124268, + "relativeCreated": 6401.270866394043, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -61421,8 +132363,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:16,776", - "created": 1609969756.7769642, + "asctime": "2021-01-11 07:30:41,751", + "created": 1610346641.7518923, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61432,37 +132374,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 776.9641876220703, + "msecs": 751.8923282623291, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5477.306365966797, + "relativeCreated": 6401.433944702148, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 777.12082862854, + "msecs": 752.0573139190674, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5477.463006973267, + "relativeCreated": 6401.598930358887, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00015664100646972656 + "time_consumption": 0.00016498565673828125 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:16,777", - "created": 1609969756.77766, + "asctime": "2021-01-11 07:30:41,752", + "created": 1610346641.7525764, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61479,8 +132421,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:16,777", - "created": 1609969756.7773743, + "asctime": "2021-01-11 07:30:41,752", + "created": 1610346641.7522979, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61490,15 +132432,15 @@ "lineno": 22, "message": "Result (Received message on client side): None ()", "module": "test", - "msecs": 777.374267578125, + "msecs": 752.2978782653809, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5477.716445922852, + "relativeCreated": 6401.8394947052, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -61507,8 +132449,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:16,777", - "created": 1609969756.7775187, + "asctime": "2021-01-11 07:30:41,752", + "created": 1610346641.7524397, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61518,34 +132460,34 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = None ()", "module": "test", - "msecs": 777.5187492370605, + "msecs": 752.4397373199463, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5477.860927581787, + "relativeCreated": 6401.981353759766, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 777.6598930358887, + "msecs": 752.5763511657715, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5478.002071380615, + "relativeCreated": 6402.117967605591, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.000141143798828125 + "time_consumption": 0.0001366138458251953 }, { "args": [], - "asctime": "2021-01-06 22:49:16,777", - "created": 1609969756.7779126, + "asctime": "2021-01-11 07:30:41,752", + "created": 1610346641.7527788, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -61556,22 +132498,22 @@ "message": "Identical secrets set", "module": "test_communication", "moduleLogger": [], - "msecs": 777.9126167297363, + "msecs": 752.7787685394287, "msg": "Identical secrets set", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5478.254795074463, + "relativeCreated": 6402.320384979248, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-06 22:49:17,079", - "created": 1609969757.0795755, + "asctime": "2021-01-11 07:30:42,054", + "created": 1610346642.054479, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -61584,82 +132526,82 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:16,778", - "created": 1609969756.7781885, + "asctime": "2021-01-11 07:30:41,753", + "created": 1610346641.7530632, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 724, - "message": "SP client: TX -> Authentification is required. Message service: 17, data_id: 34, status: okay, data: 'msg1_data_to_be_transfered' will be ignored.", + "lineno": 736, + "message": "prot-client: Authentification is required. TX-Message service: 17, data_id: 34, status: okay, data: 'msg1_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 778.1884670257568, - "msg": "%s TX -> Authentification is required. Message %s, %s, data: %s will be ignored.", + "msecs": 753.0632019042969, + "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5478.530645370483, + "relativeCreated": 6402.604818344116, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "0.25", + "prot-server:", + "0.28705533596837945", "17", "34" ], - "asctime": "2021-01-06 22:49:17,079", - "created": 1609969757.0793025, + "asctime": "2021-01-11 07:30:42,054", + "created": 1610346642.0541914, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP server: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 34) not in buffer.", + "lineno": 668, + "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 79.30254936218262, + "msecs": 54.19135093688965, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5779.644727706909, + "relativeCreated": 6703.732967376709, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 79.5755386352539, + "msecs": 54.47888374328613, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5779.9177169799805, + "relativeCreated": 6704.0205001831055, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00027298927307128906 + "time_consumption": 0.0002875328063964844 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:17,080", - "created": 1609969757.080212, + "asctime": "2021-01-11 07:30:42,055", + "created": 1610346642.0551245, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61676,8 +132618,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:17,079", - "created": 1609969757.079871, + "asctime": "2021-01-11 07:30:42,054", + "created": 1610346642.0547872, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61687,15 +132629,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): False ()", "module": "test", - "msecs": 79.87093925476074, + "msecs": 54.78715896606445, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5780.213117599487, + "relativeCreated": 6704.328775405884, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -61704,8 +132646,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:17,080", - "created": 1609969757.080036, + "asctime": "2021-01-11 07:30:42,054", + "created": 1610346642.0549679, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61715,37 +132657,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = False ()", "module": "test", - "msecs": 80.03592491149902, + "msecs": 54.96788024902344, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5780.378103256226, + "relativeCreated": 6704.509496688843, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 80.21211624145508, + "msecs": 55.124521255493164, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5780.554294586182, + "relativeCreated": 6704.6661376953125, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001761913299560547 + "time_consumption": 0.00015664100646972656 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:17,080", - "created": 1609969757.0807524, + "asctime": "2021-01-11 07:30:42,055", + "created": 1610346642.0556295, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61762,8 +132704,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:17,080", - "created": 1609969757.0804558, + "asctime": "2021-01-11 07:30:42,055", + "created": 1610346642.0553489, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61773,15 +132715,15 @@ "lineno": 22, "message": "Result (Received message on server side): None ()", "module": "test", - "msecs": 80.45578002929688, + "msecs": 55.348873138427734, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5780.797958374023, + "relativeCreated": 6704.890489578247, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -61790,8 +132732,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:17,080", - "created": 1609969757.0806003, + "asctime": "2021-01-11 07:30:42,055", + "created": 1610346642.055485, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61801,34 +132743,34 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = None ()", "module": "test", - "msecs": 80.60026168823242, + "msecs": 55.48501014709473, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5780.942440032959, + "relativeCreated": 6705.026626586914, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 80.75237274169922, + "msecs": 55.62949180603027, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5781.094551086426, + "relativeCreated": 6705.17110824585, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00015211105346679688 + "time_consumption": 0.00014448165893554688 }, { "args": [], - "asctime": "2021-01-06 22:49:17,382", - "created": 1609969757.3824248, + "asctime": "2021-01-11 07:30:42,357", + "created": 1610346642.3573496, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -61841,82 +132783,82 @@ "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:17,081", - "created": 1609969757.0810354, + "asctime": "2021-01-11 07:30:42,055", + "created": 1610346642.0559306, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "WARNING", "levelno": 30, - "lineno": 724, - "message": "SP server: TX -> Authentification is required. Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", + "lineno": 736, + "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", "module": "__init__", - "msecs": 81.03537559509277, - "msg": "%s TX -> Authentification is required. Message %s, %s, data: %s will be ignored.", + "msecs": 55.93061447143555, + "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 5781.377553939819, + "relativeCreated": 6705.472230911255, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", - "0.25", + "prot-client:", + "0.28705533596837945", "17", "35" ], - "asctime": "2021-01-06 22:49:17,382", - "created": 1609969757.3821533, + "asctime": "2021-01-11 07:30:42,357", + "created": 1610346642.3570683, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP client: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 35) not in buffer.", + "lineno": 668, + "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 382.1532726287842, + "msecs": 357.0683002471924, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6082.495450973511, + "relativeCreated": 7006.609916687012, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 382.42483139038086, + "msecs": 357.3496341705322, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6082.767009735107, + "relativeCreated": 7006.891250610352, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0002715587615966797 + "time_consumption": 0.00028133392333984375 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:17,383", - "created": 1609969757.3830373, + "asctime": "2021-01-11 07:30:42,358", + "created": 1610346642.358006, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61933,8 +132875,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:17,382", - "created": 1609969757.3827193, + "asctime": "2021-01-11 07:30:42,357", + "created": 1610346642.3576946, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61944,15 +132886,15 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): False ()", "module": "test", - "msecs": 382.7192783355713, + "msecs": 357.6946258544922, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6083.061456680298, + "relativeCreated": 7007.2362422943115, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -61961,8 +132903,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:17,382", - "created": 1609969757.382884, + "asctime": "2021-01-11 07:30:42,357", + "created": 1610346642.357857, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -61972,37 +132914,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = False ()", "module": "test", - "msecs": 382.88402557373047, + "msecs": 357.85698890686035, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6083.226203918457, + "relativeCreated": 7007.39860534668, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 383.0373287200928, + "msecs": 358.0060005187988, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6083.379507064819, + "relativeCreated": 7007.547616958618, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001533031463623047 + "time_consumption": 0.00014901161193847656 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:17,383", - "created": 1609969757.3835526, + "asctime": "2021-01-11 07:30:42,358", + "created": 1610346642.3585358, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -62019,8 +132961,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:17,383", - "created": 1609969757.383266, + "asctime": "2021-01-11 07:30:42,358", + "created": 1610346642.3582306, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -62030,15 +132972,15 @@ "lineno": 22, "message": "Result (Received message on client side): None ()", "module": "test", - "msecs": 383.2659721374512, + "msecs": 358.2305908203125, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6083.608150482178, + "relativeCreated": 7007.772207260132, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -62047,8 +132989,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:17,383", - "created": 1609969757.3834102, + "asctime": "2021-01-11 07:30:42,358", + "created": 1610346642.358369, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -62058,34 +133000,34 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = None ()", "module": "test", - "msecs": 383.4102153778076, + "msecs": 358.3691120147705, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6083.752393722534, + "relativeCreated": 7007.91072845459, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 383.55255126953125, + "msecs": 358.5357666015625, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6083.894729614258, + "relativeCreated": 7008.077383041382, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001423358917236328 + "time_consumption": 0.0001666545867919922 }, { "args": [], - "asctime": "2021-01-06 22:49:17,490", - "created": 1609969757.4901412, + "asctime": "2021-01-11 07:30:42,459", + "created": 1610346642.4598093, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -62098,579 +133040,2417 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:17,383", - "created": 1609969757.3838372, + "asctime": "2021-01-11 07:30:42,358", + "created": 1610346642.3588905, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 438, + "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 383.8372230529785, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 358.8905334472656, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6084.179401397705, + "relativeCreated": 7008.432149887085, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:17,384", - "created": 1609969757.3842354, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "module": "test_helpers", - "msecs": 384.2353820800781, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6084.577560424805, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:17,384", - "created": 1609969757.384502, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "module": "test_helpers", - "msecs": 384.5019340515137, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6084.84411239624, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:42,359", + "created": 1610346642.3596964, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 359.6963882446289, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7009.238004684448, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:42,368", + "created": 1610346642.3681927, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 368.1926727294922, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7017.7342891693115, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,368", + "created": 1610346642.368487, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 368.4868812561035, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7018.028497695923, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:42,368", + "created": 1610346642.3686793, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 368.6792850494385, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7018.220901489258, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,368", + "created": 1610346642.368885, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 368.8850402832031, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7018.4266567230225, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,369", + "created": 1610346642.3690336, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 369.0335750579834, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7018.575191497803, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,369", + "created": 1610346642.369241, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 369.24099922180176, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7018.782615661621, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,369", + "created": 1610346642.369389, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 369.3890571594238, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7018.930673599243, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,369", + "created": 1610346642.369624, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 369.62389945983887, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7019.165515899658, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,369", + "created": 1610346642.3697603, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 369.76027488708496, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7019.301891326904, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,369", + "created": 1610346642.3699868, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 369.98677253723145, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7019.528388977051, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,370", + "created": 1610346642.3701222, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 370.12219429016113, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7019.6638107299805, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-client:", + "(6): fd 82 a2 a9 3a 3e" + ], + "asctime": "2021-01-11 07:30:42,370", + "created": 1610346642.3703644, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): fd 82 a2 a9 3a 3e", + "module": "__init__", + "msecs": 370.3644275665283, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7019.906044006348, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(6): fd 82 a2 a9 3a 3e" + ], + "asctime": "2021-01-11 07:30:42,371", + "created": 1610346642.371397, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): fd 82 a2 a9 3a 3e", + "module": "__init__", + "msecs": 371.3970184326172, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7020.9386348724365, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,371", + "created": 1610346642.3715765, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 371.57654762268066, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7021.1181640625, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:42,371", + "created": 1610346642.3717163, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 371.7162609100342, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7021.2578773498535, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9" + ], + "asctime": "2021-01-11 07:30:42,371", + "created": 1610346642.371947, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", + "module": "stp", + "msecs": 371.9470500946045, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7021.488666534424, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:17,384", - "created": 1609969757.3848128, + "asctime": "2021-01-11 07:30:42,372", + "created": 1610346642.3723478, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 438, + "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 384.8128318786621, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 372.3478317260742, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6085.155010223389, + "relativeCreated": 7021.889448165894, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562225145600, + "threadName": "Thread-9" }, { "args": [ - "SP server:", + "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-06 22:49:17,385", - "created": 1609969757.385002, + "asctime": "2021-01-11 07:30:42,372", + "created": 1610346642.3725483, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __authentificate_create_seed__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 385.00189781188965, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 372.54834175109863, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6085.344076156616, + "relativeCreated": 7022.089958190918, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562225145600, + "threadName": "Thread-9" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: authentification response, data_id: seed", "status: okay", - "'41f7a354bad5b87f222af96df7699c2ca907ea76a307ca31303b1ae2798f21b4'" + "'96cb6529524276ead0dc20e0d01a064b1af7cd082588b53d08e20cf770b5e3f0'" ], - "asctime": "2021-01-06 22:49:17,385", - "created": 1609969757.3852332, + "asctime": "2021-01-11 07:30:42,372", + "created": 1610346642.3728135, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: authentification response, data_id: seed, status: okay, data: \"'41f7a354bad5b87f222af96df7699c2ca907ea76a307ca31303b1ae2798f21b4'\"", + "lineno": 438, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'96cb6529524276ead0dc20e0d01a064b1af7cd082588b53d08e20cf770b5e3f0'\"", "module": "__init__", - "msecs": 385.23316383361816, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 372.81346321105957, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6085.575342178345, + "relativeCreated": 7022.355079650879, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:17,385", - "created": 1609969757.3856778, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 31 66 37 61 33 35 34 62 61 64 35 62 38 37 66 32 32 32 61 66 39 36 64 66 37 36 39 39 63 32 63 61 39 30 37 65 61 37 36 61 33 30 37 63 61 33 31 33 30 33 62 31 61 65 32 37 39 38 66 32 31 62 34 22 7d 6d 22 3f b7", - "module": "test_helpers", - "msecs": 385.6778144836426, - "msg": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 31 66 37 61 33 35 34 62 61 64 35 62 38 37 66 32 32 32 61 66 39 36 64 66 37 36 39 39 63 32 63 61 39 30 37 65 61 37 36 61 33 30 37 63 61 33 31 33 30 33 62 31 61 65 32 37 39 38 66 32 31 62 34 22 7d 6d 22 3f b7", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6086.019992828369, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:17,386", - "created": 1609969757.3860562, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 31 66 37 61 33 35 34 62 61 64 35 62 38 37 66 32 32 32 61 66 39 36 64 66 37 36 39 39 63 32 63 61 39 30 37 65 61 37 36 61 33 30 37 63 61 33 31 33 30 33 62 31 61 65 32 37 39 38 66 32 31 62 34 22 7d 6d 22 3f b7", - "module": "test_helpers", - "msecs": 386.05618476867676, - "msg": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 31 66 37 61 33 35 34 62 61 64 35 62 38 37 66 32 32 32 61 66 39 36 64 66 37 36 39 39 63 32 63 61 39 30 37 65 61 37 36 61 33 30 37 63 61 33 31 33 30 33 62 31 61 65 32 37 39 38 66 32 31 62 34 22 7d 6d 22 3f b7", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6086.398363113403, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562225145600, + "threadName": "Thread-9" }, { "args": [ - "SP client:", - "service: authentification response, data_id: seed", - "status: okay", - "'41f7a354bad5b87f222af96df7699c2ca907ea76a307ca31303b1ae2798f21b4'" + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 39 36 63 62" ], - "asctime": "2021-01-06 22:49:17,386", - "created": 1609969757.386342, + "asctime": "2021-01-11 07:30:42,373", + "created": 1610346642.3736107, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__tx__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'41f7a354bad5b87f222af96df7699c2ca907ea76a307ca31303b1ae2798f21b4'\"", + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 39 36 63 62", "module": "__init__", - "msecs": 386.34204864501953, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 373.6107349395752, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6086.684226989746, + "relativeCreated": 7023.1523513793945, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562216752896, + "threadName": "Thread-10" }, { "args": [ - "SP client:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 39 36 63 62" + ], + "asctime": "2021-01-11 07:30:42,381", + "created": 1610346642.3818004, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 39 36 63 62", + "module": "__init__", + "msecs": 381.80041313171387, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7031.342029571533, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,381", + "created": 1610346642.3819644, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 381.96444511413574, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7031.506061553955, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:42,382", + "created": 1610346642.382049, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 382.0490837097168, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7031.590700149536, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,382", + "created": 1610346642.3821483, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 382.14826583862305, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7031.689882278442, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,382", + "created": 1610346642.382224, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 382.22408294677734, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7031.765699386597, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,382", + "created": 1610346642.382325, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 382.3249340057373, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7031.866550445557, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,382", + "created": 1610346642.3823917, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 382.39169120788574, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7031.933307647705, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,382", + "created": 1610346642.382483, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 382.48300552368164, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7032.024621963501, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,382", + "created": 1610346642.382549, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 382.5490474700928, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7032.090663909912, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,382", + "created": 1610346642.382636, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 382.63607025146484, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7032.177686691284, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,382", + "created": 1610346642.3827176, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 382.7176094055176, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7032.259225845337, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-server:", + "(64): 36 35 32 39 35 32 34 32 37 36 65 61 64 30 64 63 32 30 65 30 64 30 31 61 30 36 34 62 31 61 66 37 63 64 30 38 32 35 38 38 62 35 33 64 30 38 65 32 30 63 66 37 37 30 62 35 65 33 66 30 22 7d ec 0b" + ], + "asctime": "2021-01-11 07:30:42,382", + "created": 1610346642.3828897, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 36 35 32 39 35 32 34 32 37 36 65 61 64 30 64 63 32 30 65 30 64 30 31 61 30 36 34 62 31 61 66 37 63 64 30 38 32 35 38 38 62 35 33 64 30 38 65 32 30 63 66 37 37 30 62 35 65 33 66 30 22 7d ec 0b", + "module": "__init__", + "msecs": 382.8897476196289, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7032.431364059448, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(64): 36 35 32 39 35 32 34 32 37 36 65 61 64 30 64 63 32 30 65 30 64 30 31 61 30 36 34 62 31 61 66 37 63 64 30 38 32 35 38 38 62 35 33 64 30 38 65 32 30 63 66 37 37 30 62 35 65 33 66 30 22 7d ec 0b" + ], + "asctime": "2021-01-11 07:30:42,391", + "created": 1610346642.391134, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 36 35 32 39 35 32 34 32 37 36 65 61 64 30 64 63 32 30 65 30 64 30 31 61 30 36 34 62 31 61 66 37 63 64 30 38 32 35 38 38 62 35 33 64 30 38 65 32 30 63 66 37 37 30 62 35 65 33 66 30 22 7d ec 0b", + "module": "__init__", + "msecs": 391.13402366638184, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7040.675640106201, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-server:", + "(4): f4 59 3a 3e" + ], + "asctime": "2021-01-11 07:30:42,391", + "created": 1610346642.391498, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (4): f4 59 3a 3e", + "module": "__init__", + "msecs": 391.4980888366699, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7041.039705276489, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(4): f4 59 3a 3e" + ], + "asctime": "2021-01-11 07:30:42,392", + "created": 1610346642.3921952, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (4): f4 59 3a 3e", + "module": "__init__", + "msecs": 392.1952247619629, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7041.736841201782, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,392", + "created": 1610346642.3922865, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 392.2865390777588, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7041.828155517578, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:42,392", + "created": 1610346642.3923602, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 392.3602104187012, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7041.9018268585205, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + "(124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 39 36 63 62 36 35 32 39 35 32 34 32 37 36 65 61 64 30 64 63 32 30 65 30 64 30 31 61 30 36 34 62 31 61 66 37 63 64 30 38 32 35 38 38 62 35 33 64 30 38 65 32 30 63 66 37 37 30 62 35 65 33 66 30 22 7d ec 0b f4 59" + ], + "asctime": "2021-01-11 07:30:42,392", + "created": 1610346642.3925328, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 39 36 63 62 36 35 32 39 35 32 34 32 37 36 65 61 64 30 64 63 32 30 65 30 64 30 31 61 30 36 34 62 31 61 66 37 63 64 30 38 32 35 38 38 62 35 33 64 30 38 65 32 30 63 66 37 37 30 62 35 65 33 66 30 22 7d ec 0b f4 59", + "module": "stp", + "msecs": 392.5328254699707, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7042.07444190979, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: seed", + "status: okay", + "'96cb6529524276ead0dc20e0d01a064b1af7cd082588b53d08e20cf770b5e3f0'" + ], + "asctime": "2021-01-11 07:30:42,392", + "created": 1610346642.392738, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'96cb6529524276ead0dc20e0d01a064b1af7cd082588b53d08e20cf770b5e3f0'\"", + "module": "__init__", + "msecs": 392.73810386657715, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7042.2797203063965, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-01-06 22:49:17,386", - "created": 1609969757.3865259, + "asctime": "2021-01-11 07:30:42,392", + "created": 1610346642.3928306, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __authentificate_create_key__ to process received data", + "lineno": 492, + "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 386.52586936950684, + "msecs": 392.83061027526855, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6086.868047714233, + "relativeCreated": 7042.372226715088, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562216752896, + "threadName": "Thread-10" }, { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: authentification request, data_id: key", "status: okay", - "'6485a87794493911204e7f17d57cdcc3c043590ff6793a2f8b97c47c5c5da24f7cb1aa1b1fc4996a6224091528c4577fb9531128dfb829d214351bcc7eb46275'" + "'47a67096f3b2f8a24f4b306d3afdcfa03c2d8dab41cabe831141763caed7ed90380d7952d0ed50e6174242c4b2c8acddf4a75f72c73137c3b76f4509d8793e28'" ], - "asctime": "2021-01-06 22:49:17,386", - "created": 1609969757.3867464, + "asctime": "2021-01-11 07:30:42,392", + "created": 1610346642.3929718, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: authentification request, data_id: key, status: okay, data: \"'6485a87794493911204e7f17d57cdcc3c043590ff6793a2f8b97c47c5c5da24f7cb1aa1b1fc4996a6224091528c4577fb9531128dfb829d214351bcc7eb46275'\"", + "lineno": 438, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'47a67096f3b2f8a24f4b306d3afdcfa03c2d8dab41cabe831141763caed7ed90380d7952d0ed50e6174242c4b2c8acddf4a75f72c73137c3b76f4509d8793e28'\"", "module": "__init__", - "msecs": 386.7464065551758, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 392.9717540740967, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6087.088584899902, + "relativeCreated": 7042.513370513916, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:17,387", - "created": 1609969757.3873072, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 36 34 38 35 61 38 37 37 39 34 34 39 33 39 31 31 32 30 34 65 37 66 31 37 64 35 37 63 64 63 63 33 63 30 34 33 35 39 30 66 66 36 37 39 33 61 32 66 38 62 39 37 63 34 37 63 35 63 35 64 61 32 34 66 37 63 62 31 61 61 31 62 31 66 63 34 39 39 36 61 36 32 32 34 30 39 31 35 32 38 63 34 35 37 37 66 62 39 35 33 31 31 32 38 64 66 62 38 32 39 64 32 31 34 33 35 31 62 63 63 37 65 62 34 36 32 37 35 22 7d 83 7d e8 6d", - "module": "test_helpers", - "msecs": 387.30716705322266, - "msg": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 36 34 38 35 61 38 37 37 39 34 34 39 33 39 31 31 32 30 34 65 37 66 31 37 64 35 37 63 64 63 63 33 63 30 34 33 35 39 30 66 66 36 37 39 33 61 32 66 38 62 39 37 63 34 37 63 35 63 35 64 61 32 34 66 37 63 62 31 61 61 31 62 31 66 63 34 39 39 36 61 36 32 32 34 30 39 31 35 32 38 63 34 35 37 37 66 62 39 35 33 31 31 32 38 64 66 62 38 32 39 64 32 31 34 33 35 31 62 63 63 37 65 62 34 36 32 37 35 22 7d 83 7d e8 6d", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6087.649345397949, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:17,387", - "created": 1609969757.3877575, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 36 34 38 35 61 38 37 37 39 34 34 39 33 39 31 31 32 30 34 65 37 66 31 37 64 35 37 63 64 63 63 33 63 30 34 33 35 39 30 66 66 36 37 39 33 61 32 66 38 62 39 37 63 34 37 63 35 63 35 64 61 32 34 66 37 63 62 31 61 61 31 62 31 66 63 34 39 39 36 61 36 32 32 34 30 39 31 35 32 38 63 34 35 37 37 66 62 39 35 33 31 31 32 38 64 66 62 38 32 39 64 32 31 34 33 35 31 62 63 63 37 65 62 34 36 32 37 35 22 7d 83 7d e8 6d", - "module": "test_helpers", - "msecs": 387.7575397491455, - "msg": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 36 34 38 35 61 38 37 37 39 34 34 39 33 39 31 31 32 30 34 65 37 66 31 37 64 35 37 63 64 63 63 33 63 30 34 33 35 39 30 66 66 36 37 39 33 61 32 66 38 62 39 37 63 34 37 63 35 63 35 64 61 32 34 66 37 63 62 31 61 61 31 62 31 66 63 34 39 39 36 61 36 32 32 34 30 39 31 35 32 38 63 34 35 37 37 66 62 39 35 33 31 31 32 38 64 66 62 38 32 39 64 32 31 34 33 35 31 62 63 63 37 65 62 34 36 32 37 35 22 7d 83 7d e8 6d", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6088.099718093872, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562216752896, + "threadName": "Thread-10" }, { "args": [ - "SP server:", - "service: authentification request, data_id: key", - "status: okay", - "'6485a87794493911204e7f17d57cdcc3c043590ff6793a2f8b97c47c5c5da24f7cb1aa1b1fc4996a6224091528c4577fb9531128dfb829d214351bcc7eb46275'" + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 37 61 36" ], - "asctime": "2021-01-06 22:49:17,388", - "created": 1609969757.3880339, + "asctime": "2021-01-11 07:30:42,393", + "created": 1610346642.3935957, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__tx__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: authentification request, data_id: key, status: okay, data: \"'6485a87794493911204e7f17d57cdcc3c043590ff6793a2f8b97c47c5c5da24f7cb1aa1b1fc4996a6224091528c4577fb9531128dfb829d214351bcc7eb46275'\"", + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 37 61 36", "module": "__init__", - "msecs": 388.0338668823242, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 393.59569549560547, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6088.376045227051, + "relativeCreated": 7043.137311935425, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562225145600, + "threadName": "Thread-9" }, { "args": [ - "SP server:", + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 37 61 36" + ], + "asctime": "2021-01-11 07:30:42,401", + "created": 1610346642.401874, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 37 61 36", + "module": "__init__", + "msecs": 401.8740653991699, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7051.415681838989, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,402", + "created": 1610346642.4021537, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 402.15373039245605, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7051.695346832275, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:42,402", + "created": 1610346642.4022782, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 402.27818489074707, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7051.819801330566, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,402", + "created": 1610346642.4024305, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 402.43053436279297, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7051.972150802612, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,402", + "created": 1610346642.4025357, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 402.53567695617676, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7052.077293395996, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,402", + "created": 1610346642.4026852, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 402.68516540527344, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7052.226781845093, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,402", + "created": 1610346642.402814, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 402.8139114379883, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7052.355527877808, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,402", + "created": 1610346642.402999, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 402.9989242553711, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7052.54054069519, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,403", + "created": 1610346642.4031098, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 403.1097888946533, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7052.651405334473, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,403", + "created": 1610346642.403251, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 403.25093269348145, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7052.792549133301, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,403", + "created": 1610346642.403358, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 403.35798263549805, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7052.899599075317, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-client:", + "(64): 37 30 39 36 66 33 62 32 66 38 61 32 34 66 34 62 33 30 36 64 33 61 66 64 63 66 61 30 33 63 32 64 38 64 61 62 34 31 63 61 62 65 38 33 31 31 34 31 37 36 33 63 61 65 64 37 65 64 39 30 33 38 30 64" + ], + "asctime": "2021-01-11 07:30:42,403", + "created": 1610346642.4036443, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 37 30 39 36 66 33 62 32 66 38 61 32 34 66 34 62 33 30 36 64 33 61 66 64 63 66 61 30 33 63 32 64 38 64 61 62 34 31 63 61 62 65 38 33 31 31 34 31 37 36 33 63 61 65 64 37 65 64 39 30 33 38 30 64", + "module": "__init__", + "msecs": 403.644323348999, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7053.185939788818, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(64): 37 30 39 36 66 33 62 32 66 38 61 32 34 66 34 62 33 30 36 64 33 61 66 64 63 66 61 30 33 63 32 64 38 64 61 62 34 31 63 61 62 65 38 33 31 31 34 31 37 36 33 63 61 65 64 37 65 64 39 30 33 38 30 64" + ], + "asctime": "2021-01-11 07:30:42,412", + "created": 1610346642.4120095, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 37 30 39 36 66 33 62 32 66 38 61 32 34 66 34 62 33 30 36 64 33 61 66 64 63 66 61 30 33 63 32 64 38 64 61 62 34 31 63 61 62 65 38 33 31 31 34 31 37 36 33 63 61 65 64 37 65 64 39 30 33 38 30 64", + "module": "__init__", + "msecs": 412.00947761535645, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7061.551094055176, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-client:", + "(64): 37 39 35 32 64 30 65 64 35 30 65 36 31 37 34 32 34 32 63 34 62 32 63 38 61 63 64 64 66 34 61 37 35 66 37 32 63 37 33 31 33 37 63 33 62 37 36 66 34 35 30 39 64 38 37 39 33 65 32 38 22 7d 6f b8" + ], + "asctime": "2021-01-11 07:30:42,412", + "created": 1610346642.4126546, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 37 39 35 32 64 30 65 64 35 30 65 36 31 37 34 32 34 32 63 34 62 32 63 38 61 63 64 64 66 34 61 37 35 66 37 32 63 37 33 31 33 37 63 33 62 37 36 66 34 35 30 39 64 38 37 39 33 65 32 38 22 7d 6f b8", + "module": "__init__", + "msecs": 412.6546382904053, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7062.196254730225, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(64): 37 39 35 32 64 30 65 64 35 30 65 36 31 37 34 32 34 32 63 34 62 32 63 38 61 63 64 64 66 34 61 37 35 66 37 32 63 37 33 31 33 37 63 33 62 37 36 66 34 35 30 39 64 38 37 39 33 65 32 38 22 7d 6f b8" + ], + "asctime": "2021-01-11 07:30:42,421", + "created": 1610346642.4210322, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 37 39 35 32 64 30 65 64 35 30 65 36 31 37 34 32 34 32 63 34 62 32 63 38 61 63 64 64 66 34 61 37 35 66 37 32 63 37 33 31 33 37 63 33 62 37 36 66 34 35 30 39 64 38 37 39 33 65 32 38 22 7d 6f b8", + "module": "__init__", + "msecs": 421.032190322876, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7070.573806762695, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-client:", + "(4): f7 86 3a 3e" + ], + "asctime": "2021-01-11 07:30:42,421", + "created": 1610346642.421589, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (4): f7 86 3a 3e", + "module": "__init__", + "msecs": 421.5888977050781, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7071.1305141448975, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(4): f7 86 3a 3e" + ], + "asctime": "2021-01-11 07:30:42,422", + "created": 1610346642.4223452, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (4): f7 86 3a 3e", + "module": "__init__", + "msecs": 422.3451614379883, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7071.886777877808, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,422", + "created": 1610346642.4224935, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 422.49345779418945, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7072.035074234009, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:42,422", + "created": 1610346642.422614, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 422.61409759521484, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7072.155714035034, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + "(188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 37 61 36 37 30 39 36 66 33 62 32 66 38 61 32 34 66 34 62 33 30 36 64 33 61 66 64 63 66 61 30 33 63 32 64 38 64 61 62 34 31 63 61 62 65 38 33 31 31 34 31 37 36 33 63 61 65 64 37 65 64 39 30 33 38 30 64 37 39 35 32 64 30 65 64 35 30 65 36 31 37 34 32 34 32 63 34 62 32 63 38 61 63 64 64 66 34 61 37 35 66 37 32 63 37 33 31 33 37 63 33 62 37 36 66 34 35 30 39 64 38 37 39 33 65 32 38 22 7d 6f b8 f7 86" + ], + "asctime": "2021-01-11 07:30:42,422", + "created": 1610346642.422981, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 37 61 36 37 30 39 36 66 33 62 32 66 38 61 32 34 66 34 62 33 30 36 64 33 61 66 64 63 66 61 30 33 63 32 64 38 64 61 62 34 31 63 61 62 65 38 33 31 31 34 31 37 36 33 63 61 65 64 37 65 64 39 30 33 38 30 64 37 39 35 32 64 30 65 64 35 30 65 36 31 37 34 32 34 32 63 34 62 32 63 38 61 63 64 64 66 34 61 37 35 66 37 32 63 37 33 31 33 37 63 33 62 37 36 66 34 35 30 39 64 38 37 39 33 65 32 38 22 7d 6f b8 f7 86", + "module": "stp", + "msecs": 422.98102378845215, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7072.5226402282715, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: authentification request, data_id: key", + "status: okay", + "'47a67096f3b2f8a24f4b306d3afdcfa03c2d8dab41cabe831141763caed7ed90380d7952d0ed50e6174242c4b2c8acddf4a75f72c73137c3b76f4509d8793e28'" + ], + "asctime": "2021-01-11 07:30:42,423", + "created": 1610346642.4232838, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'47a67096f3b2f8a24f4b306d3afdcfa03c2d8dab41cabe831141763caed7ed90380d7952d0ed50e6174242c4b2c8acddf4a75f72c73137c3b76f4509d8793e28'\"", + "module": "__init__", + "msecs": 423.28381538391113, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7072.8254318237305, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-01-06 22:49:17,388", - "created": 1609969757.3882294, + "asctime": "2021-01-11 07:30:42,423", + "created": 1610346642.4234369, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __authentificate_check_key__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 388.2293701171875, - "msg": "%s RX <- Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6088.571548461914, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-01-06 22:49:17,388", - "created": 1609969757.3884528, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 388.45276832580566, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6088.794946670532, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:17,388", - "created": 1609969757.388794, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", - "module": "test_helpers", - "msecs": 388.7939453125, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6089.136123657227, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:17,389", - "created": 1609969757.3890455, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", - "module": "test_helpers", - "msecs": 389.04547691345215, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6089.387655258179, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-01-06 22:49:17,389", - "created": 1609969757.389311, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 389.3110752105713, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6089.653253555298, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "__authentificate_process_feedback__" - ], - "asctime": "2021-01-06 22:49:17,389", - "created": 1609969757.3894837, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __authentificate_process_feedback__ to process received data", - "module": "__init__", - "msecs": 389.4836902618408, + "msecs": 423.43688011169434, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6089.825868606567, + "relativeCreated": 7072.978496551514, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562225145600, + "threadName": "Thread-9" }, { "args": [ - "SP client:" + "prot-server:", + "TX ->", + "service: authentification response, data_id: key", + "status: okay", + "True" ], - "asctime": "2021-01-06 22:49:17,389", - "created": 1609969757.3896303, + "asctime": "2021-01-11 07:30:42,423", + "created": 1610346642.4236684, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 423.66838455200195, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7073.210000991821, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" + ], + "asctime": "2021-01-11 07:30:42,424", + "created": 1610346642.4243119, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", + "module": "__init__", + "msecs": 424.31187629699707, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7073.853492736816, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" + ], + "asctime": "2021-01-11 07:30:42,432", + "created": 1610346642.4327662, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", + "module": "__init__", + "msecs": 432.7661991119385, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7082.307815551758, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,433", + "created": 1610346642.4330611, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 433.0611228942871, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7082.602739334106, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:42,433", + "created": 1610346642.433229, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 433.2289695739746, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7082.770586013794, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,433", + "created": 1610346642.433465, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 433.46500396728516, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7083.0066204071045, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,433", + "created": 1610346642.4336178, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 433.61783027648926, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7083.159446716309, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,433", + "created": 1610346642.4338272, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 433.82716178894043, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7083.36877822876, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,433", + "created": 1610346642.433988, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 433.988094329834, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7083.529710769653, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,434", + "created": 1610346642.4341724, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 434.1723918914795, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7083.714008331299, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,434", + "created": 1610346642.434324, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 434.3240261077881, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7083.865642547607, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,434", + "created": 1610346642.4344995, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 434.49950218200684, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7084.041118621826, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,434", + "created": 1610346642.434631, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 434.6311092376709, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7084.17272567749, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-server:", + "(6): 94 fe 74 32 3a 3e" + ], + "asctime": "2021-01-11 07:30:42,434", + "created": 1610346642.4348867, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 94 fe 74 32 3a 3e", + "module": "__init__", + "msecs": 434.8866939544678, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7084.428310394287, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(6): 94 fe 74 32 3a 3e" + ], + "asctime": "2021-01-11 07:30:42,436", + "created": 1610346642.4360216, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 94 fe 74 32 3a 3e", + "module": "__init__", + "msecs": 436.0215663909912, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7085.563182830811, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,436", + "created": 1610346642.436331, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 436.33103370666504, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7085.872650146484, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:42,436", + "created": 1610346642.4364717, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 436.47170066833496, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7086.013317108154, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32" + ], + "asctime": "2021-01-11 07:30:42,436", + "created": 1610346642.436688, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", + "module": "stp", + "msecs": 436.6879463195801, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7086.229562759399, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: key", + "status: okay", + "True" + ], + "asctime": "2021-01-11 07:30:42,437", + "created": 1610346642.4370039, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 437.00385093688965, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7086.545467376709, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:", + "__authentificate_process_feedback__" + ], + "asctime": "2021-01-11 07:30:42,437", + "created": 1610346642.4371572, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", + "module": "__init__", + "msecs": 437.15715408325195, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7086.698770523071, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:42,437", + "created": 1610346642.4372866, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "INFO", "levelno": 20, - "lineno": 350, - "message": "SP client: Got positive authentification feedback", + "lineno": 360, + "message": "prot-client: Got positive authentification feedback", "module": "__init__", - "msecs": 389.6303176879883, + "msecs": 437.2866153717041, "msg": "%s Got positive authentification feedback", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6089.972496032715, + "relativeCreated": 7086.828231811523, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562216752896, + "threadName": "Thread-10" } ], - "msecs": 490.1411533355713, + "msecs": 459.8093032836914, "msg": "Performing Authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6190.483331680298, + "relativeCreated": 7109.350919723511, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.10051083564758301 + "time_consumption": 0.022522687911987305 }, { "args": [], - "asctime": "2021-01-06 22:49:17,592", - "created": 1609969757.5925245, + "asctime": "2021-01-11 07:30:42,661", + "created": 1610346642.66166, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -62683,156 +135463,575 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:17,490", - "created": 1609969757.4906483, + "asctime": "2021-01-11 07:30:42,460", + "created": 1610346642.4604144, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 438, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 490.6482696533203, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 460.4144096374512, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6190.990447998047, + "relativeCreated": 7109.9560260772705, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:17,491", - "created": 1609969757.4911463, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "test_helpers", - "msecs": 491.1463260650635, - "msg": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6191.48850440979, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:17,491", - "created": 1609969757.4914622, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "test_helpers", - "msecs": 491.46223068237305, - "msg": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6191.8044090271, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:42,461", + "created": 1610346642.4612186, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 461.21859550476074, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7110.76021194458, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:42,469", + "created": 1610346642.4697044, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 469.70438957214355, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7119.246006011963, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,470", + "created": 1610346642.4700007, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 470.0007438659668, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7119.542360305786, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:42,470", + "created": 1610346642.4701684, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 470.1683521270752, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7119.7099685668945, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,470", + "created": 1610346642.4703712, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 470.3712463378906, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7119.91286277771, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,470", + "created": 1610346642.4705148, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 470.51477432250977, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7120.056390762329, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,470", + "created": 1610346642.4707243, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 470.72434425354004, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7120.265960693359, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,470", + "created": 1610346642.4708583, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 470.8583354949951, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7120.399951934814, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,471", + "created": 1610346642.4710479, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 471.04787826538086, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7120.5894947052, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,471", + "created": 1610346642.4711823, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 471.18234634399414, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7120.7239627838135, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,471", + "created": 1610346642.4713857, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 471.3857173919678, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7120.927333831787, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,471", + "created": 1610346642.4715214, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 471.52137756347656, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7121.062994003296, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-client:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2021-01-11 07:30:42,471", + "created": 1610346642.4717915, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 471.79150581359863, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7121.333122253418, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "comm-server:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2021-01-11 07:30:42,476", + "created": 1610346642.4762049, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 476.20487213134766, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7125.746488571167, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,476", + "created": 1610346642.4765599, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 476.5598773956299, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7126.101493835449, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:42,476", + "created": 1610346642.4766958, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 476.6957759857178, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7126.237392425537, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "STP:", + "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b" + ], + "asctime": "2021-01-11 07:30:42,476", + "created": 1610346642.4769585, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", + "module": "stp", + "msecs": 476.9585132598877, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7126.500129699707, + "stack_info": null, + "thread": 140562225145600, + "threadName": "Thread-9" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:17,491", - "created": 1609969757.4917758, + "asctime": "2021-01-11 07:30:42,477", + "created": 1610346642.4772882, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 438, + "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 491.7757511138916, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 477.28824615478516, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6192.117929458618, + "relativeCreated": 7126.8298625946045, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562225145600, + "threadName": "Thread-9" }, { "args": [ - "SP server:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:17,492", - "created": 1609969757.492011, + "asctime": "2021-01-11 07:30:42,477", + "created": 1610346642.4774985, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP server: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 492.01107025146484, + "msecs": 477.49853134155273, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6192.353248596191, + "relativeCreated": 7127.040147781372, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562225145600, + "threadName": "Thread-9" } ], - "msecs": 592.524528503418, + "msecs": 661.6599559783936, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6292.8667068481445, + "relativeCreated": 7311.201572418213, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.10051345825195312 + "time_consumption": 0.18416142463684082 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:17,593", - "created": 1609969757.5932796, + "asctime": "2021-01-11 07:30:42,662", + "created": 1610346642.662458, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -62849,8 +136048,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:17,592", - "created": 1609969757.5929399, + "asctime": "2021-01-11 07:30:42,662", + "created": 1610346642.6621265, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -62860,15 +136059,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 592.9398536682129, + "msecs": 662.1265411376953, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6293.282032012939, + "relativeCreated": 7311.668157577515, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -62877,8 +136076,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:17,593", - "created": 1609969757.5931187, + "asctime": "2021-01-11 07:30:42,662", + "created": 1610346642.6623003, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -62888,37 +136087,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 593.1186676025391, + "msecs": 662.3003482818604, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6293.460845947266, + "relativeCreated": 7311.84196472168, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 593.2796001434326, + "msecs": 662.4579429626465, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6293.621778488159, + "relativeCreated": 7311.999559402466, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001609325408935547 + "time_consumption": 0.0001575946807861328 }, { "args": [ "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-06 22:49:17,593", - "created": 1609969757.593909, + "asctime": "2021-01-11 07:30:42,663", + "created": 1610346642.6630118, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -62935,8 +136134,8 @@ "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-06 22:49:17,593", - "created": 1609969757.5935483, + "asctime": "2021-01-11 07:30:42,662", + "created": 1610346642.6627061, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -62946,15 +136145,15 @@ "lineno": 22, "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 593.5482978820801, + "msecs": 662.7061367034912, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6293.890476226807, + "relativeCreated": 7312.247753143311, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -62963,8 +136162,8 @@ "{'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-01-06 22:49:17,593", - "created": 1609969757.5937066, + "asctime": "2021-01-11 07:30:42,662", + "created": 1610346642.6628609, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -62974,34 +136173,34 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 593.7066078186035, + "msecs": 662.8608703613281, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6294.04878616333, + "relativeCreated": 7312.4024868011475, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 593.9090251922607, + "msecs": 663.0117893218994, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6294.251203536987, + "relativeCreated": 7312.553405761719, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00020241737365722656 + "time_consumption": 0.00015091896057128906 }, { "args": [], - "asctime": "2021-01-06 22:49:17,696", - "created": 1609969757.696103, + "asctime": "2021-01-11 07:30:42,864", + "created": 1610346642.8647206, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -63014,183 +136213,575 @@ "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:17,594", - "created": 1609969757.5941975, + "asctime": "2021-01-11 07:30:42,663", + "created": 1610346642.6634004, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 438, + "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 594.1975116729736, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 663.400411605835, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6294.5396900177, + "relativeCreated": 7312.942028045654, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:17,594", - "created": 1609969757.594642, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "module": "test_helpers", - "msecs": 594.641923904419, - "msg": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6294.9841022491455, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:17,594", - "created": 1609969757.5949416, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "module": "test_helpers", - "msecs": 594.9416160583496, - "msg": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6295.283794403076, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:42,664", + "created": 1610346642.6643248, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 664.3247604370117, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7313.866376876831, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:42,672", + "created": 1610346642.6728222, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 672.8222370147705, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7322.36385345459, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,673", + "created": 1610346642.6731088, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 673.1088161468506, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7322.65043258667, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:42,673", + "created": 1610346642.6732726, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 673.2726097106934, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7322.814226150513, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,673", + "created": 1610346642.673531, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 673.5310554504395, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7323.072671890259, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,673", + "created": 1610346642.673685, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 673.6850738525391, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7323.226690292358, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,673", + "created": 1610346642.6739058, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 673.9058494567871, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7323.447465896606, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,674", + "created": 1610346642.6740422, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 674.0422248840332, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7323.5838413238525, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,674", + "created": 1610346642.6742313, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 674.2312908172607, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7323.77290725708, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,674", + "created": 1610346642.6743667, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 674.3667125701904, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7323.90832901001, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,674", + "created": 1610346642.6745505, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 674.5505332946777, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7324.092149734497, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:42,674", + "created": 1610346642.6746824, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 674.6823787689209, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7324.22399520874, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-server:", + "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" + ], + "asctime": "2021-01-11 07:30:42,674", + "created": 1610346642.6749697, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", + "module": "__init__", + "msecs": 674.9696731567383, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7324.511289596558, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "comm-client:", + "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" + ], + "asctime": "2021-01-11 07:30:42,679", + "created": 1610346642.6794322, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", + "module": "__init__", + "msecs": 679.4321537017822, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7328.973770141602, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:42,679", + "created": 1610346642.6798275, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 679.8274517059326, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7329.369068145752, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:42,679", + "created": 1610346642.6799693, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 679.969310760498, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7329.510927200317, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "STP:", + "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f" + ], + "asctime": "2021-01-11 07:30:42,680", + "created": 1610346642.680231, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", + "module": "stp", + "msecs": 680.2310943603516, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 7329.772710800171, + "stack_info": null, + "thread": 140562216752896, + "threadName": "Thread-10" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:17,595", - "created": 1609969757.5952296, + "asctime": "2021-01-11 07:30:42,680", + "created": 1610346642.6806037, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 438, + "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 595.2296257019043, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 680.6037425994873, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6295.571804046631, + "relativeCreated": 7330.145359039307, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562216752896, + "threadName": "Thread-10" }, { "args": [ - "SP client:", - "status: service or data unknown" + "prot-client:" ], - "asctime": "2021-01-06 22:49:17,595", - "created": 1609969757.5953984, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: service or data unknown", - "module": "__init__", - "msecs": 595.3984260559082, - "msg": "%s RX <- Message has a peculiar status: %s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 6295.740604400635, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:" - ], - "asctime": "2021-01-06 22:49:17,595", - "created": 1609969757.5956028, + "asctime": "2021-01-11 07:30:42,680", + "created": 1610346642.6808124, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 595.6027507781982, + "msecs": 680.8123588562012, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6295.944929122925, + "relativeCreated": 7330.3539752960205, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562216752896, + "threadName": "Thread-10" } ], - "msecs": 696.1030960083008, + "msecs": 864.7205829620361, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6396.445274353027, + "relativeCreated": 7514.2621994018555, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.10050034523010254 + "time_consumption": 0.18390822410583496 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:17,696", - "created": 1609969757.6968763, + "asctime": "2021-01-11 07:30:42,865", + "created": 1610346642.8655598, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -63207,8 +136798,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:17,696", - "created": 1609969757.6965334, + "asctime": "2021-01-11 07:30:42,865", + "created": 1610346642.8651788, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -63218,15 +136809,15 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 696.5334415435791, + "msecs": 865.1788234710693, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6396.875619888306, + "relativeCreated": 7514.720439910889, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -63235,8 +136826,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:17,696", - "created": 1609969757.696714, + "asctime": "2021-01-11 07:30:42,865", + "created": 1610346642.8653545, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -63246,37 +136837,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 696.713924407959, + "msecs": 865.3545379638672, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6397.056102752686, + "relativeCreated": 7514.8961544036865, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 696.8762874603271, + "msecs": 865.5598163604736, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6397.218465805054, + "relativeCreated": 7515.101432800293, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00016236305236816406 + "time_consumption": 0.0002052783966064453 }, { "args": [ "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-01-06 22:49:17,697", - "created": 1609969757.6974525, + "asctime": "2021-01-11 07:30:42,866", + "created": 1610346642.8661559, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -63293,8 +136884,8 @@ "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-01-06 22:49:17,697", - "created": 1609969757.6971233, + "asctime": "2021-01-11 07:30:42,865", + "created": 1610346642.8658085, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -63304,15 +136895,15 @@ "lineno": 22, "message": "Result (Received message on client side): {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", "module": "test", - "msecs": 697.1232891082764, + "msecs": 865.8084869384766, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6397.465467453003, + "relativeCreated": 7515.350103378296, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -63321,8 +136912,8 @@ "{'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-01-06 22:49:17,697", - "created": 1609969757.697279, + "asctime": "2021-01-11 07:30:42,865", + "created": 1610346642.8659933, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -63332,41 +136923,41 @@ "lineno": 26, "message": "Expectation (Received message on client side): result = {'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", "module": "test", - "msecs": 697.2789764404297, + "msecs": 865.9932613372803, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6397.621154785156, + "relativeCreated": 7515.5348777771, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 697.4525451660156, + "msecs": 866.1558628082275, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 6397.794723510742, + "relativeCreated": 7515.697479248047, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001735687255859375 + "time_consumption": 0.00016260147094726562 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 1.3342185020446777, - "time_finished": "2021-01-06 22:49:17,697", - "time_start": "2021-01-06 22:49:16,363" + "time_consumption": 1.9740095138549805, + "time_finished": "2021-01-11 07:30:42,866", + "time_start": "2021-01-11 07:30:40,892" }, "_Tb-78E4LEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-06 22:49:23,505", - "created": 1609969763.5054047, + "asctime": "2021-01-11 07:30:49,276", + "created": 1610346649.2766762, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -63377,1505 +136968,3708 @@ "message": "_Tb-78E4LEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 505.4047107696533, + "msecs": 276.6761779785156, "msg": "_Tb-78E4LEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12205.74688911438, + "relativeCreated": 13926.217794418335, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:23,512", - "created": 1609969763.5122588, + "asctime": "2021-01-11 07:30:49,285", + "created": 1610346649.2859824, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:23,505", - "created": 1609969763.505842, + "asctime": "2021-01-11 07:30:49,278", + "created": 1610346649.2786531, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 505.8419704437256, + "msecs": 278.6531448364258, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12206.184148788452, + "relativeCreated": 13928.194761276245, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:23,506", - "created": 1609969763.5060377, + "asctime": "2021-01-11 07:30:49,279", + "created": 1610346649.2795947, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 506.03771209716797, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 279.59465980529785, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12206.379890441895, + "relativeCreated": 13929.136276245117, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:23,506", - "created": 1609969763.5062554, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 506.2553882598877, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12206.597566604614, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:23,506", - "created": 1609969763.5064123, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 506.4122676849365, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12206.754446029663, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:23,506", - "created": 1609969763.5065603, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 506.5603256225586, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12206.902503967285, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:23,506", - "created": 1609969763.5067058, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 506.70576095581055, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12207.047939300537, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:23,506", - "created": 1609969763.5068655, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 506.8655014038086, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12207.207679748535, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:23,507", - "created": 1609969763.5070264, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 507.02643394470215, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12207.368612289429, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:23,507", - "created": 1609969763.5071836, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 507.1835517883301, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12207.525730133057, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:23,507", - "created": 1609969763.5073395, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 507.3394775390625, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12207.681655883789, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:23,507", - "created": 1609969763.5074801, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 507.4801445007324, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12207.822322845459, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:23,507", - "created": 1609969763.5076354, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 507.63535499572754, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12207.977533340454, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:23,507", - "created": 1609969763.507815, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 507.814884185791, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12208.157062530518, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:23,507", - "created": 1609969763.5079613, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 507.9612731933594, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12208.303451538086, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:23,508", - "created": 1609969763.508109, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 508.10909271240234, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12208.451271057129, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:23,508", - "created": 1609969763.508261, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 508.26096534729004, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12208.603143692017, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:23,508", - "created": 1609969763.5084116, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 508.4116458892822, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12208.753824234009, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:23,508", - "created": 1609969763.5085652, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 508.56518745422363, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12208.90736579895, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:23,508", - "created": 1609969763.5087059, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 508.70585441589355, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12209.04803276062, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:23,508", - "created": 1609969763.5088463, + "asctime": "2021-01-11 07:30:49,279", + "created": 1610346649.2798476, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 508.8462829589844, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 279.8476219177246, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12209.188461303711, + "relativeCreated": 13929.389238357544, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:23,509", - "created": 1609969763.509126, + "asctime": "2021-01-11 07:30:49,280", + "created": 1610346649.2801926, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 509.1259479522705, + "msecs": 280.19261360168457, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12209.468126296997, + "relativeCreated": 13929.734230041504, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:23,509", - "created": 1609969763.509284, + "asctime": "2021-01-11 07:30:49,280", + "created": 1610346649.2803771, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 509.28401947021484, + "msecs": 280.3771495819092, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12209.626197814941, + "relativeCreated": 13929.918766021729, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:23,509", - "created": 1609969763.509503, + "asctime": "2021-01-11 07:30:49,280", + "created": 1610346649.2806199, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 509.5028877258301, + "msecs": 280.61985969543457, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12209.845066070557, + "relativeCreated": 13930.161476135254, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:23,509", - "created": 1609969763.5096552, + "asctime": "2021-01-11 07:30:49,280", + "created": 1610346649.2807813, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 509.655237197876, + "msecs": 280.7812690734863, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12209.997415542603, + "relativeCreated": 13930.322885513306, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:23,509", - "created": 1609969763.5098348, + "asctime": "2021-01-11 07:30:49,280", + "created": 1610346649.2809298, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 509.83476638793945, + "msecs": 280.9298038482666, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12210.176944732666, + "relativeCreated": 13930.471420288086, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:23,509", - "created": 1609969763.50998, + "asctime": "2021-01-11 07:30:49,281", + "created": 1610346649.281073, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 509.9799633026123, + "msecs": 281.07309341430664, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12210.322141647339, + "relativeCreated": 13930.614709854126, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:23,510", - "created": 1609969763.5101447, + "asctime": "2021-01-11 07:30:49,281", + "created": 1610346649.281232, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 510.1447105407715, + "msecs": 281.2321186065674, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12210.486888885498, + "relativeCreated": 13930.773735046387, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:23,510", - "created": 1609969763.5103033, + "asctime": "2021-01-11 07:30:49,281", + "created": 1610346649.281396, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 510.303258895874, + "msecs": 281.39591217041016, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12210.6454372406, + "relativeCreated": 13930.93752861023, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:23,510", - "created": 1609969763.5104682, + "asctime": "2021-01-11 07:30:49,281", + "created": 1610346649.2815793, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 510.4682445526123, + "msecs": 281.57925605773926, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12210.810422897339, + "relativeCreated": 13931.120872497559, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:23,510", - "created": 1609969763.5106208, + "asctime": "2021-01-11 07:30:49,281", + "created": 1610346649.2817357, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 510.6208324432373, + "msecs": 281.7356586456299, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12210.963010787964, + "relativeCreated": 13931.27727508545, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:23,510", - "created": 1609969763.510757, + "asctime": "2021-01-11 07:30:49,281", + "created": 1610346649.2818956, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 510.7569694519043, + "msecs": 281.89563751220703, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12211.09914779663, + "relativeCreated": 13931.437253952026, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:23,510", - "created": 1609969763.510912, + "asctime": "2021-01-11 07:30:49,282", + "created": 1610346649.2820535, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 510.9119415283203, + "msecs": 282.05347061157227, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12211.254119873047, + "relativeCreated": 13931.595087051392, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:23,511", - "created": 1609969763.5110765, + "asctime": "2021-01-11 07:30:49,282", + "created": 1610346649.2822175, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 511.0764503479004, + "msecs": 282.21750259399414, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12211.418628692627, + "relativeCreated": 13931.759119033813, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:23,511", - "created": 1609969763.5112212, + "asctime": "2021-01-11 07:30:49,282", + "created": 1610346649.282361, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 511.22117042541504, + "msecs": 282.3610305786133, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12211.563348770142, + "relativeCreated": 13931.902647018433, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:23,511", - "created": 1609969763.5113685, + "asctime": "2021-01-11 07:30:49,282", + "created": 1610346649.2825136, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 511.3685131072998, + "msecs": 282.5136184692383, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12211.710691452026, + "relativeCreated": 13932.055234909058, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:23,511", - "created": 1609969763.51153, + "asctime": "2021-01-11 07:30:49,282", + "created": 1610346649.2827005, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 511.52992248535156, + "msecs": 282.7005386352539, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12211.872100830078, + "relativeCreated": 13932.242155075073, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:23,511", - "created": 1609969763.511689, + "asctime": "2021-01-11 07:30:49,282", + "created": 1610346649.2828522, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 511.6889476776123, + "msecs": 282.8521728515625, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12212.031126022339, + "relativeCreated": 13932.393789291382, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:23,511", - "created": 1609969763.5118413, + "asctime": "2021-01-11 07:30:49,283", + "created": 1610346649.2830021, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 511.8412971496582, + "msecs": 283.0021381378174, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12212.183475494385, + "relativeCreated": 13932.543754577637, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:23,511", - "created": 1609969763.5119808, + "asctime": "2021-01-11 07:30:49,283", + "created": 1610346649.2831395, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 511.9807720184326, + "msecs": 283.1394672393799, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12212.32295036316, + "relativeCreated": 13932.6810836792, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:23,512", - "created": 1609969763.5121195, + "asctime": "2021-01-11 07:30:49,283", + "created": 1610346649.2832775, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 512.1195316314697, + "msecs": 283.2775115966797, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12212.461709976196, + "relativeCreated": 13932.819128036499, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:49,283", + "created": 1610346649.2835698, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 283.5698127746582, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13933.111429214478, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:49,283", + "created": 1610346649.2837434, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 283.74338150024414, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13933.284997940063, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:49,283", + "created": 1610346649.283943, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 283.94293785095215, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13933.484554290771, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:49,284", + "created": 1610346649.2840924, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 284.0924263000488, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13933.634042739868, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:49,284", + "created": 1610346649.2842333, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 284.23333168029785, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13933.774948120117, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:49,284", + "created": 1610346649.2843726, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 284.37256813049316, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13933.914184570312, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:49,284", + "created": 1610346649.2845218, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 284.52181816101074, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13934.06343460083, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:49,284", + "created": 1610346649.2846878, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 284.68775749206543, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13934.229373931885, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:49,284", + "created": 1610346649.284854, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 284.8539352416992, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13934.395551681519, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:49,285", + "created": 1610346649.2850075, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 285.0074768066406, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13934.54909324646, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:49,285", + "created": 1610346649.2851424, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 285.1424217224121, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13934.684038162231, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:49,285", + "created": 1610346649.2853014, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 285.30144691467285, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13934.843063354492, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:49,285", + "created": 1610346649.2854762, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 285.4762077331543, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13935.017824172974, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:49,285", + "created": 1610346649.285529, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 285.52889823913574, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13935.070514678955, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:49,285", + "created": 1610346649.285575, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 285.57491302490234, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13935.116529464722, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:49,285", + "created": 1610346649.2856226, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 285.62259674072266, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13935.164213180542, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:49,285", + "created": 1610346649.2856705, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 285.67051887512207, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13935.212135314941, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:49,285", + "created": 1610346649.285848, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 285.84790229797363, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13935.389518737793, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:49,285", + "created": 1610346649.2858975, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 285.89749336242676, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13935.439109802246, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:49,285", + "created": 1610346649.2859416, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 285.94160079956055, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13935.48321723938, + "stack_info": null, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 512.258768081665, + "msecs": 285.9823703765869, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12212.600946426392, + "relativeCreated": 13935.523986816406, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001392364501953125 + "time_consumption": 4.076957702636719e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:23,512", - "created": 1609969763.5127332, + "asctime": "2021-01-11 07:30:49,629", + "created": 1610346649.6296175, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:49,286", + "created": 1610346649.2860763, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 286.07630729675293, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13935.617923736572, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:49,286", + "created": 1610346649.286144, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 286.1440181732178, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13935.685634613037, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:49,286", + "created": 1610346649.2862053, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 286.2052917480469, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13935.746908187866, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:49,286", + "created": 1610346649.2863028, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 286.3028049468994, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13935.844421386719, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:49,286", + "created": 1610346649.286507, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 286.50689125061035, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13936.04850769043, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:49,286", + "created": 1610346649.2865584, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 286.5583896636963, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13936.100006103516, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:49,286", + "created": 1610346649.2866035, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 286.6034507751465, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13936.145067214966, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:49,286", + "created": 1610346649.2868624, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 286.8623733520508, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13936.40398979187, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:49,295", + "created": 1610346649.295097, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 295.09711265563965, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13944.638729095459, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,295", + "created": 1610346649.2952418, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 295.2418327331543, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13944.783449172974, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:49,295", + "created": 1610346649.2952998, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 295.299768447876, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13944.841384887695, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,295", + "created": 1610346649.2953732, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 295.37320137023926, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13944.914817810059, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,295", + "created": 1610346649.2954206, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 295.42064666748047, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13944.9622631073, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,295", + "created": 1610346649.2954848, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 295.4847812652588, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13945.026397705078, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,295", + "created": 1610346649.2955265, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 295.52650451660156, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13945.06812095642, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,295", + "created": 1610346649.2955832, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 295.58324813842773, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13945.124864578247, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,295", + "created": 1610346649.2956307, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 295.63069343566895, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13945.172309875488, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,295", + "created": 1610346649.2956846, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 295.6845760345459, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13945.226192474365, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,295", + "created": 1610346649.2957258, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 295.72582244873047, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13945.26743888855, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:49,295", + "created": 1610346649.2958057, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 295.8056926727295, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13945.347309112549, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:49,296", + "created": 1610346649.2967548, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 296.7548370361328, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13946.296453475952, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,296", + "created": 1610346649.2968833, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 296.88334465026855, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13946.424961090088, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:49,296", + "created": 1610346649.2969365, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 296.9365119934082, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13946.478128433228, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" + ], + "asctime": "2021-01-11 07:30:49,297", + "created": 1610346649.2970133, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", + "module": "stp", + "msecs": 297.0132827758789, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13946.554899215698, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:49,297", + "created": 1610346649.2971587, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 297.15871810913086, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13946.70033454895, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:49,297", + "created": 1610346649.2972243, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 297.2242832183838, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13946.765899658203, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:49,297", + "created": 1610346649.2973053, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 297.3053455352783, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13946.846961975098, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:49,297", + "created": 1610346649.2976289, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 297.62887954711914, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13947.170495986938, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:49,305", + "created": 1610346649.3058, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 305.7999610900879, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13955.341577529907, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,305", + "created": 1610346649.305922, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 305.9220314025879, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13955.463647842407, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:49,305", + "created": 1610346649.3059752, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 305.97519874572754, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13955.516815185547, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,306", + "created": 1610346649.3060493, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 306.0493469238281, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13955.590963363647, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,306", + "created": 1610346649.3060942, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 306.0941696166992, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13955.635786056519, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,306", + "created": 1610346649.3061574, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 306.15735054016113, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13955.69896697998, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,306", + "created": 1610346649.306199, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 306.1990737915039, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13955.740690231323, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,306", + "created": 1610346649.3062546, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 306.25462532043457, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13955.796241760254, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,306", + "created": 1610346649.3062968, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 306.29682540893555, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13955.838441848755, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,306", + "created": 1610346649.30635, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 306.3499927520752, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13955.891609191895, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,306", + "created": 1610346649.306391, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 306.39100074768066, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13955.9326171875, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:49,306", + "created": 1610346649.3064804, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 306.48040771484375, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13956.022024154663, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:49,307", + "created": 1610346649.307441, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 307.44099617004395, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13956.982612609863, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,307", + "created": 1610346649.3075678, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 307.567834854126, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13957.109451293945, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:49,307", + "created": 1610346649.3076239, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 307.62386322021484, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13957.165479660034, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:49,307", + "created": 1610346649.307716, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 307.71589279174805, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13957.257509231567, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:49,307", + "created": 1610346649.3078527, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 307.85274505615234, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13957.394361495972, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:49,307", + "created": 1610346649.3079145, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 307.91449546813965, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13957.456111907959, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + } + ], + "msecs": 629.61745262146, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14279.15906906128, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.3217029571533203 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:49,630", + "created": 1610346649.630165, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "all_did_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 131, + "lineno": 132, "message": "Registering a correct working Callback", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "'__callback__'", "10", "None" ], - "asctime": "2021-01-06 22:49:23,512", - "created": 1609969763.5125866, + "asctime": "2021-01-11 07:30:49,630", + "created": 1610346649.6300266, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__callback__' for SID=10 and DID=None", + "lineno": 170, + "message": "prot-server: Adding callback '__callback__' for SID=10 and DID=None", "module": "__init__", - "msecs": 512.5865936279297, + "msecs": 630.0265789031982, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12212.928771972656, + "relativeCreated": 14279.568195343018, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 512.7332210540771, + "msecs": 630.1651000976562, "msg": "Registering a correct working Callback", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12213.075399398804, + "relativeCreated": 14279.706716537476, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00014662742614746094 + "time_consumption": 0.0001385211944580078 }, { "args": [], - "asctime": "2021-01-06 22:49:23,614", - "created": 1609969763.6146863, + "asctime": "2021-01-11 07:30:49,831", + "created": 1610346649.831452, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "all_did_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 134, + "lineno": 135, "message": "Transfering data", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:23,513", - "created": 1609969763.513053, + "asctime": "2021-01-11 07:30:49,630", + "created": 1610346649.630409, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 438, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 513.0529403686523, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 630.4090023040771, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12213.395118713379, + "relativeCreated": 14279.950618743896, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,513", - "created": 1609969763.5135257, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "test_helpers", - "msecs": 513.5257244110107, - "msg": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12213.867902755737, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,513", - "created": 1609969763.5138307, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "test_helpers", - "msecs": 513.8306617736816, - "msg": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12214.172840118408, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2021-01-11 07:30:49,631", + "created": 1610346649.631063, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 631.0629844665527, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14280.604600906372, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2021-01-11 07:30:49,639", + "created": 1610346649.6394744, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 639.4743919372559, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14289.016008377075, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,639", + "created": 1610346649.6397414, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 639.7414207458496, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14289.283037185669, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:49,639", + "created": 1610346649.6398761, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 639.876127243042, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14289.417743682861, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,640", + "created": 1610346649.640041, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 640.0411128997803, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14289.5827293396, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,640", + "created": 1610346649.6401608, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 640.1607990264893, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14289.702415466309, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,640", + "created": 1610346649.6403246, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 640.324592590332, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14289.866209030151, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,640", + "created": 1610346649.6404312, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 640.4311656951904, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14289.97278213501, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,640", + "created": 1610346649.6405818, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 640.5818462371826, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14290.123462677002, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,640", + "created": 1610346649.6406882, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 640.6881809234619, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14290.229797363281, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,640", + "created": 1610346649.6408598, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 640.859842300415, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14290.401458740234, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,640", + "created": 1610346649.640968, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 640.9680843353271, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14290.509700775146, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "comm-client:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:49,641", + "created": 1610346649.6411638, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 641.1638259887695, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14290.705442428589, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "comm-server:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:49,642", + "created": 1610346649.6420236, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 642.0235633850098, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14291.56517982483, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,642", + "created": 1610346649.6421835, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 642.1835422515869, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14291.725158691406, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:49,642", + "created": 1610346649.642294, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 642.2939300537109, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14291.83554649353, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "STP:", + "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" + ], + "asctime": "2021-01-11 07:30:49,642", + "created": 1610346649.642479, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", + "module": "stp", + "msecs": 642.4789428710938, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14292.020559310913, + "stack_info": null, + "thread": 140561168189184, + "threadName": "Thread-21" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:23,513", - "created": 1609969763.5139315, + "asctime": "2021-01-11 07:30:49,642", + "created": 1610346649.642788, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 438, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 513.9315128326416, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 642.7879333496094, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12214.273691177368, + "relativeCreated": 14292.329549789429, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561168189184, + "threadName": "Thread-21" }, { "args": [ - "SP server:", + "prot-server:", "__callback__" ], - "asctime": "2021-01-06 22:49:23,514", - "created": 1609969763.5140028, + "asctime": "2021-01-11 07:30:49,642", + "created": 1610346649.6429465, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __callback__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 514.002799987793, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 642.9464817047119, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12214.34497833252, + "relativeCreated": 14292.488098144531, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561168189184, + "threadName": "Thread-21" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: read data response, data_id: 0", "status: okay", "33" ], - "asctime": "2021-01-06 22:49:23,514", - "created": 1609969763.5140715, + "asctime": "2021-01-11 07:30:49,643", + "created": 1610346649.6431403, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "lineno": 438, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 514.0714645385742, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 643.1403160095215, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12214.4136428833, + "relativeCreated": 14292.68193244934, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,514", - "created": 1609969763.5141768, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "module": "test_helpers", - "msecs": 514.1768455505371, - "msg": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12214.519023895264, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,514", - "created": 1609969763.5142536, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "module": "test_helpers", - "msecs": 514.2536163330078, - "msg": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12214.595794677734, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561168189184, + "threadName": "Thread-21" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" + ], + "asctime": "2021-01-11 07:30:49,643", + "created": 1610346649.6437242, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", + "module": "__init__", + "msecs": 643.7242031097412, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14293.26581954956, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" + ], + "asctime": "2021-01-11 07:30:49,652", + "created": 1610346649.6520145, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", + "module": "__init__", + "msecs": 652.0144939422607, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14301.55611038208, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,652", + "created": 1610346649.6521916, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 652.1916389465332, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14301.733255386353, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:49,652", + "created": 1610346649.6522818, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 652.2817611694336, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14301.823377609253, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,652", + "created": 1610346649.652404, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 652.4040699005127, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14301.945686340332, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,652", + "created": 1610346649.6524818, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 652.4817943572998, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14302.02341079712, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,652", + "created": 1610346649.652598, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 652.5979042053223, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14302.139520645142, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,652", + "created": 1610346649.6526704, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 652.6703834533691, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14302.211999893188, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,652", + "created": 1610346649.6527712, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 652.7712345123291, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14302.312850952148, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,652", + "created": 1610346649.652842, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 652.8420448303223, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14302.383661270142, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,652", + "created": 1610346649.6529682, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 652.968168258667, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14302.509784698486, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,653", + "created": 1610346649.653086, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 653.0859470367432, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14302.627563476562, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "comm-server:", + "(5): e1 8c bb 3a 3e" + ], + "asctime": "2021-01-11 07:30:49,653", + "created": 1610346649.6532927, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (5): e1 8c bb 3a 3e", + "module": "__init__", + "msecs": 653.2926559448242, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14302.834272384644, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "comm-client:", + "(5): e1 8c bb 3a 3e" + ], + "asctime": "2021-01-11 07:30:49,654", + "created": 1610346649.654135, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (5): e1 8c bb 3a 3e", + "module": "__init__", + "msecs": 654.13498878479, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14303.67660522461, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,654", + "created": 1610346649.6542804, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 654.280424118042, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14303.822040557861, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:49,654", + "created": 1610346649.6543994, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 654.3993949890137, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14303.941011428833, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "STP:", + "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb" + ], + "asctime": "2021-01-11 07:30:49,654", + "created": 1610346649.654616, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", + "module": "stp", + "msecs": 654.616117477417, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14304.157733917236, + "stack_info": null, + "thread": 140561159796480, + "threadName": "Thread-22" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: read data response, data_id: 0", "status: okay", "33" ], - "asctime": "2021-01-06 22:49:23,514", - "created": 1609969763.5143335, + "asctime": "2021-01-11 07:30:49,654", + "created": 1610346649.6549165, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "lineno": 438, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 514.3334865570068, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 654.916524887085, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12214.675664901733, + "relativeCreated": 14304.458141326904, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561159796480, + "threadName": "Thread-22" }, { "args": [ - "SP client:" + "prot-client:" ], - "asctime": "2021-01-06 22:49:23,514", - "created": 1609969763.514398, + "asctime": "2021-01-11 07:30:49,655", + "created": 1610346649.6550744, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 514.3980979919434, + "msecs": 655.0743579864502, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12214.74027633667, + "relativeCreated": 14304.61597442627, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561159796480, + "threadName": "Thread-22" } ], - "msecs": 614.6862506866455, + "msecs": 831.4518928527832, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12315.028429031372, + "relativeCreated": 14480.993509292603, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.10028815269470215 + "time_consumption": 0.176377534866333 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-06 22:49:23,615", - "created": 1609969763.6152532, + "asctime": "2021-01-11 07:30:49,832", + "created": 1610346649.8323278, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -64892,8 +140686,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-06 22:49:23,614", - "created": 1609969763.6149964, + "asctime": "2021-01-11 07:30:49,831", + "created": 1610346649.8319738, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -64903,15 +140697,15 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 614.9964332580566, + "msecs": 831.9737911224365, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12315.338611602783, + "relativeCreated": 14481.515407562256, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -64920,8 +140714,8 @@ "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-01-06 22:49:23,615", - "created": 1609969763.615124, + "asctime": "2021-01-11 07:30:49,832", + "created": 1610346649.8321621, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -64931,37 +140725,37 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 615.123987197876, + "msecs": 832.1621417999268, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12315.466165542603, + "relativeCreated": 14481.703758239746, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 615.253210067749, + "msecs": 832.3278427124023, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12315.595388412476, + "relativeCreated": 14481.869459152222, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00012922286987304688 + "time_consumption": 0.00016570091247558594 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-01-06 22:49:23,615", - "created": 1609969763.6156297, + "asctime": "2021-01-11 07:30:49,832", + "created": 1610346649.832855, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -64978,8 +140772,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-01-06 22:49:23,615", - "created": 1609969763.615422, + "asctime": "2021-01-11 07:30:49,832", + "created": 1610346649.8325653, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -64989,15 +140783,15 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} ()", "module": "test", - "msecs": 615.4220104217529, + "msecs": 832.5653076171875, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12315.76418876648, + "relativeCreated": 14482.106924057007, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -65006,8 +140800,8 @@ "{'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0}", "" ], - "asctime": "2021-01-06 22:49:23,615", - "created": 1609969763.6155298, + "asctime": "2021-01-11 07:30:49,832", + "created": 1610346649.832713, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -65017,41 +140811,41 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0} ()", "module": "test", - "msecs": 615.5297756195068, + "msecs": 832.7128887176514, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12315.871953964233, + "relativeCreated": 14482.25450515747, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 615.6296730041504, + "msecs": 832.8549861907959, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12315.971851348877, + "relativeCreated": 14482.396602630615, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 9.989738464355469e-05 + "time_consumption": 0.00014209747314453125 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.11022496223449707, - "time_finished": "2021-01-06 22:49:23,615", - "time_start": "2021-01-06 22:49:23,505" + "time_consumption": 0.5561788082122803, + "time_finished": "2021-01-11 07:30:49,832", + "time_start": "2021-01-11 07:30:49,276" }, "_XzMFcHYZEem_kd-7nxt1sg": { "args": null, - "asctime": "2021-01-06 22:49:11,386", - "created": 1609969751.386638, + "asctime": "2021-01-11 07:30:35,482", + "created": 1610346635.4823277, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -65062,21 +140856,21 @@ "message": "_XzMFcHYZEem_kd-7nxt1sg", "module": "__init__", "moduleLogger": [], - "msecs": 386.63792610168457, + "msecs": 482.3276996612549, "msg": "_XzMFcHYZEem_kd-7nxt1sg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 86.98010444641113, + "relativeCreated": 131.86931610107422, "stack_info": null, "testcaseLogger": [ { "args": [ "{'data': None, 'data_id': None, 'service_id': None, 'status': None}" ], - "asctime": "2021-01-06 22:49:11,387", - "created": 1609969751.3876169, + "asctime": "2021-01-11 07:30:35,483", + "created": 1610346635.483037, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -65087,15 +140881,15 @@ "message": "Creating empty message object: {'data': None, 'data_id': None, 'service_id': None, 'status': None}", "module": "test_message_object", "moduleLogger": [], - "msecs": 387.6168727874756, + "msecs": 483.03699493408203, "msg": "Creating empty message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 87.95905113220215, + "relativeCreated": 132.57861137390137, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -65103,8 +140897,8 @@ "args": [ "'status'" ], - "asctime": "2021-01-06 22:49:11,388", - "created": 1609969751.3887422, + "asctime": "2021-01-11 07:30:35,483", + "created": 1610346635.4836185, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -65121,8 +140915,8 @@ "{'data': None, 'data_id': None, 'service_id': None, 'status': None}", "" ], - "asctime": "2021-01-06 22:49:11,388", - "created": 1609969751.3882809, + "asctime": "2021-01-11 07:30:35,483", + "created": 1610346635.4834223, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -65132,15 +140926,15 @@ "lineno": 22, "message": "Result (status is part of the message object): {'data': None, 'data_id': None, 'service_id': None, 'status': None} ()", "module": "test", - "msecs": 388.28086853027344, + "msecs": 483.42227935791016, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 88.623046875, + "relativeCreated": 132.9638957977295, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -65148,8 +140942,8 @@ "status is part of the message object", "'status'" ], - "asctime": "2021-01-06 22:49:11,388", - "created": 1609969751.3885238, + "asctime": "2021-01-11 07:30:35,483", + "created": 1610346635.4835367, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -65159,36 +140953,36 @@ "lineno": 30, "message": "Expectation (status is part of the message object): 'status' in result", "module": "test", - "msecs": 388.52381706237793, + "msecs": 483.5367202758789, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 88.86599540710449, + "relativeCreated": 133.07833671569824, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 388.74220848083496, + "msecs": 483.61849784851074, "msg": "status is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 89.08438682556152, + "relativeCreated": 133.16011428833008, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00021839141845703125 + "time_consumption": 8.177757263183594e-05 }, { "args": [ "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}" ], - "asctime": "2021-01-06 22:49:11,389", - "created": 1609969751.3891156, + "asctime": "2021-01-11 07:30:35,483", + "created": 1610346635.4838026, "exc_info": null, "exc_text": null, "filename": "test_message_object.py", @@ -65199,15 +140993,15 @@ "message": "Creating a maximum message object: {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", "module": "test_message_object", "moduleLogger": [], - "msecs": 389.115571975708, + "msecs": 483.80255699157715, "msg": "Creating a maximum message object: %s", "name": "__tLogger__", "pathname": "src/tests/test_message_object.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 89.45775032043457, + "relativeCreated": 133.34417343139648, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -65215,8 +141009,8 @@ "args": [ "'status'" ], - "asctime": "2021-01-06 22:49:11,389", - "created": 1609969751.389657, + "asctime": "2021-01-11 07:30:35,484", + "created": 1610346635.4841702, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -65233,8 +141027,8 @@ "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", "" ], - "asctime": "2021-01-06 22:49:11,389", - "created": 1609969751.3893707, + "asctime": "2021-01-11 07:30:35,483", + "created": 1610346635.483964, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -65244,15 +141038,15 @@ "lineno": 22, "message": "Result (status is part of the message object): {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'} ()", "module": "test", - "msecs": 389.3706798553467, + "msecs": 483.9639663696289, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 89.71285820007324, + "relativeCreated": 133.50558280944824, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -65260,8 +141054,8 @@ "status is part of the message object", "'status'" ], - "asctime": "2021-01-06 22:49:11,389", - "created": 1609969751.3895214, + "asctime": "2021-01-11 07:30:35,484", + "created": 1610346635.4840713, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -65271,37 +141065,37 @@ "lineno": 30, "message": "Expectation (status is part of the message object): 'status' in result", "module": "test", - "msecs": 389.52136039733887, + "msecs": 484.0712547302246, "msg": "Expectation (%s): %s in result", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 89.86353874206543, + "relativeCreated": 133.61287117004395, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 389.65702056884766, + "msecs": 484.17019844055176, "msg": "status is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 89.99919891357422, + "relativeCreated": 133.7118148803711, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00013566017150878906 + "time_consumption": 9.894371032714844e-05 }, { "args": [ "'S'", "" ], - "asctime": "2021-01-06 22:49:11,390", - "created": 1609969751.3902407, + "asctime": "2021-01-11 07:30:35,484", + "created": 1610346635.4845269, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -65318,8 +141112,8 @@ "'S'", "" ], - "asctime": "2021-01-06 22:49:11,389", - "created": 1609969751.3899734, + "asctime": "2021-01-11 07:30:35,484", + "created": 1610346635.4843385, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -65329,15 +141123,15 @@ "lineno": 22, "message": "Result (Content in message object for status): 'S' ()", "module": "test", - "msecs": 389.97340202331543, + "msecs": 484.33852195739746, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 90.31558036804199, + "relativeCreated": 133.8801383972168, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -65346,8 +141140,8 @@ "'S'", "" ], - "asctime": "2021-01-06 22:49:11,390", - "created": 1609969751.3901045, + "asctime": "2021-01-11 07:30:35,484", + "created": 1610346635.484438, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -65357,41 +141151,41 @@ "lineno": 26, "message": "Expectation (Content in message object for status): result = 'S' ()", "module": "test", - "msecs": 390.1045322418213, + "msecs": 484.4379425048828, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 90.44671058654785, + "relativeCreated": 133.97955894470215, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 390.2406692504883, + "msecs": 484.5268726348877, "msg": "Content in message object for status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 90.58284759521484, + "relativeCreated": 134.06848907470703, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001361370086669922 + "time_consumption": 8.893013000488281e-05 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.003602743148803711, - "time_finished": "2021-01-06 22:49:11,390", - "time_start": "2021-01-06 22:49:11,386" + "time_consumption": 0.0021991729736328125, + "time_finished": "2021-01-11 07:30:35,484", + "time_start": "2021-01-11 07:30:35,482" }, "_YfrfUE4LEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-06 22:49:23,615", - "created": 1609969763.6159275, + "asctime": "2021-01-11 07:30:49,833", + "created": 1610346649.833295, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -65402,1505 +141196,3708 @@ "message": "_YfrfUE4LEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 615.9274578094482, + "msecs": 833.2951068878174, "msg": "_YfrfUE4LEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12316.269636154175, + "relativeCreated": 14482.836723327637, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:23,620", - "created": 1609969763.6204805, + "asctime": "2021-01-11 07:30:49,841", + "created": 1610346649.8417573, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:23,616", - "created": 1609969763.6162028, + "asctime": "2021-01-11 07:30:49,834", + "created": 1610346649.8344195, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 616.2028312683105, + "msecs": 834.4194889068604, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12316.545009613037, + "relativeCreated": 14483.96110534668, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:23,616", - "created": 1609969763.6163313, + "asctime": "2021-01-11 07:30:49,835", + "created": 1610346649.83529, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 616.3313388824463, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 835.2899551391602, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12316.673517227173, + "relativeCreated": 14484.83157157898, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:23,616", - "created": 1609969763.616486, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 616.4860725402832, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12316.82825088501, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:23,616", - "created": 1609969763.6165917, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 616.5916919708252, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12316.933870315552, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:23,616", - "created": 1609969763.6166973, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 616.6973114013672, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12317.039489746094, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:23,616", - "created": 1609969763.6168005, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 616.8005466461182, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12317.142724990845, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:23,616", - "created": 1609969763.616912, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 616.9118881225586, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12317.254066467285, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:23,617", - "created": 1609969763.617019, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 617.0189380645752, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12317.361116409302, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:23,617", - "created": 1609969763.6171253, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 617.1252727508545, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12317.467451095581, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:23,617", - "created": 1609969763.6172287, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 617.2287464141846, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12317.570924758911, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:23,617", - "created": 1609969763.6173232, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 617.3231601715088, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12317.665338516235, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:23,617", - "created": 1609969763.6174355, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 617.4354553222656, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12317.777633666992, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:23,617", - "created": 1609969763.6175575, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 617.5575256347656, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12317.899703979492, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:23,617", - "created": 1609969763.6176546, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 617.65456199646, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12317.996740341187, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:23,617", - "created": 1609969763.6177533, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 617.753267288208, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12318.095445632935, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:23,617", - "created": 1609969763.6178763, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 617.8762912750244, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12318.218469619751, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:23,617", - "created": 1609969763.617984, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 617.9840564727783, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12318.326234817505, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:23,618", - "created": 1609969763.6180797, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 618.079662322998, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12318.421840667725, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:23,618", - "created": 1609969763.6181724, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 618.1724071502686, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12318.514585494995, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:23,618", - "created": 1609969763.6182654, + "asctime": "2021-01-11 07:30:49,835", + "created": 1610346649.8355038, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 618.2653903961182, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 835.5038166046143, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12318.607568740845, + "relativeCreated": 14485.045433044434, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:23,618", - "created": 1609969763.6184466, + "asctime": "2021-01-11 07:30:49,835", + "created": 1610346649.8358333, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 618.4465885162354, + "msecs": 835.8333110809326, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12318.788766860962, + "relativeCreated": 14485.374927520752, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:23,618", - "created": 1609969763.618559, + "asctime": "2021-01-11 07:30:49,836", + "created": 1610346649.836013, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 618.5588836669922, + "msecs": 836.0130786895752, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12318.901062011719, + "relativeCreated": 14485.554695129395, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:23,618", - "created": 1609969763.618691, + "asctime": "2021-01-11 07:30:49,836", + "created": 1610346649.836245, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 618.6909675598145, + "msecs": 836.245059967041, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12319.033145904541, + "relativeCreated": 14485.78667640686, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:23,618", - "created": 1609969763.6187985, + "asctime": "2021-01-11 07:30:49,836", + "created": 1610346649.8364027, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 618.7984943389893, + "msecs": 836.4026546478271, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12319.140672683716, + "relativeCreated": 14485.944271087646, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:23,618", - "created": 1609969763.6188946, + "asctime": "2021-01-11 07:30:49,836", + "created": 1610346649.8366485, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 618.8945770263672, + "msecs": 836.6484642028809, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12319.236755371094, + "relativeCreated": 14486.1900806427, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:23,618", - "created": 1609969763.6189876, + "asctime": "2021-01-11 07:30:49,836", + "created": 1610346649.8367984, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 618.9875602722168, + "msecs": 836.7984294891357, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12319.329738616943, + "relativeCreated": 14486.340045928955, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:23,619", - "created": 1609969763.6190886, + "asctime": "2021-01-11 07:30:49,836", + "created": 1610346649.8369758, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 619.0886497497559, + "msecs": 836.9758129119873, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12319.430828094482, + "relativeCreated": 14486.517429351807, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:23,619", - "created": 1609969763.6191924, + "asctime": "2021-01-11 07:30:49,837", + "created": 1610346649.8371422, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 619.192361831665, + "msecs": 837.1422290802002, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12319.534540176392, + "relativeCreated": 14486.68384552002, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:23,619", - "created": 1609969763.619307, + "asctime": "2021-01-11 07:30:49,837", + "created": 1610346649.8373132, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 619.3070411682129, + "msecs": 837.313175201416, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12319.64921951294, + "relativeCreated": 14486.854791641235, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:23,619", - "created": 1609969763.61941, + "asctime": "2021-01-11 07:30:49,837", + "created": 1610346649.8375125, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 619.4100379943848, + "msecs": 837.5124931335449, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12319.752216339111, + "relativeCreated": 14487.054109573364, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:23,619", - "created": 1609969763.6195006, + "asctime": "2021-01-11 07:30:49,837", + "created": 1610346649.8376718, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 619.5006370544434, + "msecs": 837.6717567443848, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12319.84281539917, + "relativeCreated": 14487.213373184204, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:23,619", - "created": 1609969763.6196089, + "asctime": "2021-01-11 07:30:49,837", + "created": 1610346649.83783, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 619.6088790893555, + "msecs": 837.8300666809082, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12319.951057434082, + "relativeCreated": 14487.371683120728, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:23,619", - "created": 1609969763.619717, + "asctime": "2021-01-11 07:30:49,837", + "created": 1610346649.837994, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 619.7168827056885, + "msecs": 837.9940986633301, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12320.059061050415, + "relativeCreated": 14487.53571510315, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:23,619", - "created": 1609969763.6198123, + "asctime": "2021-01-11 07:30:49,838", + "created": 1610346649.838138, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 619.8122501373291, + "msecs": 838.1381034851074, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12320.154428482056, + "relativeCreated": 14487.679719924927, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:23,619", - "created": 1609969763.61991, + "asctime": "2021-01-11 07:30:49,838", + "created": 1610346649.838292, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 619.9100017547607, + "msecs": 838.2918834686279, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12320.252180099487, + "relativeCreated": 14487.833499908447, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:23,620", - "created": 1609969763.620011, + "asctime": "2021-01-11 07:30:49,838", + "created": 1610346649.8384473, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 620.0110912322998, + "msecs": 838.4473323822021, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12320.353269577026, + "relativeCreated": 14487.988948822021, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:23,620", - "created": 1609969763.620111, + "asctime": "2021-01-11 07:30:49,838", + "created": 1610346649.8385966, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 620.1109886169434, + "msecs": 838.5965824127197, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12320.45316696167, + "relativeCreated": 14488.138198852539, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:23,620", - "created": 1609969763.6202044, + "asctime": "2021-01-11 07:30:49,838", + "created": 1610346649.838737, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 620.2044486999512, + "msecs": 838.7370109558105, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12320.546627044678, + "relativeCreated": 14488.27862739563, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:23,620", - "created": 1609969763.6202965, + "asctime": "2021-01-11 07:30:49,838", + "created": 1610346649.8388953, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 620.2964782714844, + "msecs": 838.895320892334, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12320.638656616211, + "relativeCreated": 14488.436937332153, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:23,620", - "created": 1609969763.620387, + "asctime": "2021-01-11 07:30:49,839", + "created": 1610346649.8390362, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 620.387077331543, + "msecs": 839.036226272583, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12320.72925567627, + "relativeCreated": 14488.577842712402, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:49,839", + "created": 1610346649.8393326, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 839.3325805664062, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14488.874197006226, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:49,839", + "created": 1610346649.839491, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 839.4908905029297, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14489.032506942749, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:49,839", + "created": 1610346649.8397002, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 839.7002220153809, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14489.2418384552, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:49,839", + "created": 1610346649.8398592, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 839.8592472076416, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14489.400863647461, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:49,840", + "created": 1610346649.8400047, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 840.0046825408936, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14489.546298980713, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:49,840", + "created": 1610346649.840144, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 840.1439189910889, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14489.685535430908, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:49,840", + "created": 1610346649.8402932, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 840.2931690216064, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14489.834785461426, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:49,840", + "created": 1610346649.8404472, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 840.447187423706, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14489.988803863525, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:49,840", + "created": 1610346649.840612, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 840.6119346618652, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14490.153551101685, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:49,840", + "created": 1610346649.8407667, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 840.7666683197021, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14490.308284759521, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:49,840", + "created": 1610346649.8409123, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 840.9123420715332, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14490.453958511353, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:49,841", + "created": 1610346649.8410757, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 841.0756587982178, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14490.617275238037, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:49,841", + "created": 1610346649.8412395, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 841.2394523620605, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14490.78106880188, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:49,841", + "created": 1610346649.841385, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 841.3848876953125, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14490.926504135132, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:49,841", + "created": 1610346649.841492, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 841.4919376373291, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14491.033554077148, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:49,841", + "created": 1610346649.8415399, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 841.5398597717285, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14491.081476211548, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:49,841", + "created": 1610346649.8415854, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 841.5853977203369, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14491.127014160156, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:49,841", + "created": 1610346649.8416283, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 841.6283130645752, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14491.169929504395, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:49,841", + "created": 1610346649.841674, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 841.6740894317627, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14491.215705871582, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:49,841", + "created": 1610346649.841717, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 841.717004776001, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14491.25862121582, + "stack_info": null, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 620.4805374145508, + "msecs": 841.7572975158691, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12320.822715759277, + "relativeCreated": 14491.298913955688, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 9.34600830078125e-05 + "time_consumption": 4.029273986816406e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:23,620", - "created": 1609969763.6207995, + "asctime": "2021-01-11 07:30:50,185", + "created": 1610346650.1855993, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:49,841", + "created": 1610346649.8418522, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 841.8521881103516, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14491.39380455017, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:49,841", + "created": 1610346649.8418999, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 841.8998718261719, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14491.441488265991, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:49,841", + "created": 1610346649.8419447, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 841.944694519043, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14491.486310958862, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:49,842", + "created": 1610346649.8420298, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 842.0298099517822, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14491.571426391602, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:49,842", + "created": 1610346649.842226, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 842.2260284423828, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14491.767644882202, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:49,842", + "created": 1610346649.8422773, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 842.2772884368896, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14491.818904876709, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:49,842", + "created": 1610346649.8423233, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 842.3233032226562, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14491.864919662476, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:49,842", + "created": 1610346649.842473, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 842.473030090332, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14492.014646530151, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:49,850", + "created": 1610346649.850661, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 850.661039352417, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14500.202655792236, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,850", + "created": 1610346649.850803, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 850.8028984069824, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14500.344514846802, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:49,850", + "created": 1610346649.850861, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 850.8610725402832, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14500.402688980103, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,850", + "created": 1610346649.8509402, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 850.9402275085449, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14500.481843948364, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,850", + "created": 1610346649.8509858, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 850.9857654571533, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14500.527381896973, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,851", + "created": 1610346649.8510525, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 851.0525226593018, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14500.594139099121, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,851", + "created": 1610346649.8510942, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 851.0942459106445, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14500.635862350464, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,851", + "created": 1610346649.8511508, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 851.1507511138916, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14500.692367553711, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,851", + "created": 1610346649.851192, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 851.1919975280762, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14500.733613967896, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,851", + "created": 1610346649.8512504, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 851.250410079956, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14500.792026519775, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,851", + "created": 1610346649.851292, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 851.2918949127197, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14500.833511352539, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:49,851", + "created": 1610346649.851375, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 851.3751029968262, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14500.916719436646, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:49,852", + "created": 1610346649.8522668, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 852.266788482666, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14501.808404922485, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,852", + "created": 1610346649.8523405, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 852.3404598236084, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14501.882076263428, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:49,852", + "created": 1610346649.8523877, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 852.3876667022705, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14501.92928314209, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" + ], + "asctime": "2021-01-11 07:30:49,852", + "created": 1610346649.8524556, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", + "module": "stp", + "msecs": 852.4556159973145, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14501.997232437134, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:49,852", + "created": 1610346649.8525927, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 852.5927066802979, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14502.134323120117, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:49,852", + "created": 1610346649.85266, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 852.6599407196045, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14502.201557159424, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:49,852", + "created": 1610346649.8527443, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 852.7443408966064, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14502.285957336426, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:49,853", + "created": 1610346649.8530033, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 853.0032634735107, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14502.54487991333, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:49,861", + "created": 1610346649.8612332, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 861.2332344055176, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14510.774850845337, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,861", + "created": 1610346649.8613896, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 861.3896369934082, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14510.931253433228, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:49,861", + "created": 1610346649.8614635, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 861.4635467529297, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14511.005163192749, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,861", + "created": 1610346649.861527, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 861.5269660949707, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14511.06858253479, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,861", + "created": 1610346649.8615708, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 861.5708351135254, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14511.112451553345, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,861", + "created": 1610346649.8616345, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 861.6344928741455, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14511.176109313965, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,861", + "created": 1610346649.8616776, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 861.6776466369629, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14511.219263076782, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,861", + "created": 1610346649.86174, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 861.7401123046875, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14511.281728744507, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,861", + "created": 1610346649.8617866, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 861.7866039276123, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14511.328220367432, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,861", + "created": 1610346649.8618488, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 861.8488311767578, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14511.390447616577, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,861", + "created": 1610346649.8618898, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 861.8898391723633, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14511.431455612183, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:49,861", + "created": 1610346649.861974, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 861.9740009307861, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14511.515617370605, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:49,862", + "created": 1610346649.8628693, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 862.8692626953125, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14512.410879135132, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,862", + "created": 1610346649.8629458, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 862.9457950592041, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14512.487411499023, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:49,862", + "created": 1610346649.862998, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 862.9980087280273, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14512.539625167847, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:49,863", + "created": 1610346649.8630824, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 863.0824089050293, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14512.624025344849, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:49,863", + "created": 1610346649.8632104, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 863.2104396820068, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14512.752056121826, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:49,863", + "created": 1610346649.8632689, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 863.2688522338867, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14512.810468673706, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + } + ], + "msecs": 185.59932708740234, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14835.140943527222, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.3223304748535156 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:50,186", + "created": 1610346650.186332, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "all_sid_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 144, + "lineno": 145, "message": "Registering a correct working Callback", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "'__callback__'", "None", "0" ], - "asctime": "2021-01-06 22:49:23,620", - "created": 1609969763.6207004, + "asctime": "2021-01-11 07:30:50,186", + "created": 1610346650.1861432, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__callback__' for SID=None and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__callback__' for SID=None and DID=0", "module": "__init__", - "msecs": 620.7003593444824, + "msecs": 186.143159866333, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12321.042537689209, + "relativeCreated": 14835.684776306152, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 620.7995414733887, + "msecs": 186.33198738098145, "msg": "Registering a correct working Callback", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12321.141719818115, + "relativeCreated": 14835.8736038208, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 9.918212890625e-05 + "time_consumption": 0.0001888275146484375 }, { "args": [], - "asctime": "2021-01-06 22:49:23,723", - "created": 1609969763.72333, + "asctime": "2021-01-11 07:30:50,388", + "created": 1610346650.388072, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "all_sid_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 147, + "lineno": 148, "message": "Transfering data", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:23,621", - "created": 1609969763.621257, + "asctime": "2021-01-11 07:30:50,186", + "created": 1610346650.1867135, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 438, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 621.2570667266846, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 186.71345710754395, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12321.599245071411, + "relativeCreated": 14836.255073547363, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,621", - "created": 1609969763.621534, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "test_helpers", - "msecs": 621.5341091156006, - "msg": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12321.876287460327, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,621", - "created": 1609969763.6217108, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "test_helpers", - "msecs": 621.7107772827148, - "msg": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12322.052955627441, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2021-01-11 07:30:50,187", + "created": 1610346650.1877112, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 187.71123886108398, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14837.252855300903, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2021-01-11 07:30:50,196", + "created": 1610346650.1962066, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 196.20656967163086, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14845.74818611145, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,196", + "created": 1610346650.1964939, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 196.49386405944824, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14846.035480499268, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:50,196", + "created": 1610346650.196661, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 196.66099548339844, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14846.202611923218, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,196", + "created": 1610346650.1968648, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 196.86484336853027, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14846.40645980835, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,197", + "created": 1610346650.197008, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 197.0078945159912, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14846.54951095581, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,197", + "created": 1610346650.1972558, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 197.25584983825684, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14846.797466278076, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,197", + "created": 1610346650.1973972, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 197.39723205566406, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14846.938848495483, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,197", + "created": 1610346650.1976311, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 197.6311206817627, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14847.172737121582, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,197", + "created": 1610346650.1977823, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 197.7822780609131, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14847.323894500732, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,197", + "created": 1610346650.1979628, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 197.96276092529297, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14847.504377365112, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,198", + "created": 1610346650.1981094, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 198.10938835144043, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14847.65100479126, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "comm-client:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:50,198", + "created": 1610346650.198348, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 198.3480453491211, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14847.88966178894, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "comm-server:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:50,199", + "created": 1610346650.1992981, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 199.29814338684082, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14848.83975982666, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,199", + "created": 1610346650.1995401, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 199.5401382446289, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14849.081754684448, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:50,199", + "created": 1610346650.199707, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 199.70703125, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14849.24864768982, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "STP:", + "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" + ], + "asctime": "2021-01-11 07:30:50,199", + "created": 1610346650.1999736, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", + "module": "stp", + "msecs": 199.97358322143555, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14849.515199661255, + "stack_info": null, + "thread": 140561151403776, + "threadName": "Thread-23" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:23,621", - "created": 1609969763.6219158, + "asctime": "2021-01-11 07:30:50,200", + "created": 1610346650.2003837, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 438, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 621.9158172607422, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 200.38366317749023, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12322.257995605469, + "relativeCreated": 14849.92527961731, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561151403776, + "threadName": "Thread-23" }, { "args": [ - "SP server:", + "prot-server:", "__callback__" ], - "asctime": "2021-01-06 22:49:23,622", - "created": 1609969763.622042, + "asctime": "2021-01-11 07:30:50,200", + "created": 1610346650.2005851, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __callback__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 622.0419406890869, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 200.58512687683105, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12322.384119033813, + "relativeCreated": 14850.12674331665, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561151403776, + "threadName": "Thread-23" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: read data response, data_id: 0", "status: okay", "33" ], - "asctime": "2021-01-06 22:49:23,622", - "created": 1609969763.6221693, + "asctime": "2021-01-11 07:30:50,200", + "created": 1610346650.2008338, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "lineno": 438, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 622.1692562103271, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 200.83379745483398, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12322.511434555054, + "relativeCreated": 14850.375413894653, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,622", - "created": 1609969763.622401, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "module": "test_helpers", - "msecs": 622.4009990692139, - "msg": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12322.74317741394, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,622", - "created": 1609969763.6225665, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "module": "test_helpers", - "msecs": 622.5664615631104, - "msg": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12322.908639907837, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561151403776, + "threadName": "Thread-23" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" + ], + "asctime": "2021-01-11 07:30:50,201", + "created": 1610346650.2019262, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", + "module": "__init__", + "msecs": 201.92623138427734, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14851.467847824097, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" + ], + "asctime": "2021-01-11 07:30:50,210", + "created": 1610346650.210394, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", + "module": "__init__", + "msecs": 210.39390563964844, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14859.935522079468, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,210", + "created": 1610346650.2107663, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 210.76631546020508, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14860.307931900024, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:50,210", + "created": 1610346650.2109435, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 210.94346046447754, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14860.485076904297, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,211", + "created": 1610346650.2111478, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 211.14778518676758, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14860.689401626587, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,211", + "created": 1610346650.2112942, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 211.29417419433594, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14860.835790634155, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,211", + "created": 1610346650.2115014, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 211.5013599395752, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14861.042976379395, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,211", + "created": 1610346650.2116346, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 211.63463592529297, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14861.176252365112, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,212", + "created": 1610346650.2122033, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 212.2032642364502, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14861.74488067627, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,212", + "created": 1610346650.2123475, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 212.34750747680664, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14861.889123916626, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,212", + "created": 1610346650.2125406, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 212.5406265258789, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14862.082242965698, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,212", + "created": 1610346650.2126775, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 212.6774787902832, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14862.219095230103, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "comm-server:", + "(5): e1 8c bb 3a 3e" + ], + "asctime": "2021-01-11 07:30:50,212", + "created": 1610346650.2129183, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (5): e1 8c bb 3a 3e", + "module": "__init__", + "msecs": 212.91828155517578, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14862.459897994995, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "comm-client:", + "(5): e1 8c bb 3a 3e" + ], + "asctime": "2021-01-11 07:30:50,213", + "created": 1610346650.2137992, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (5): e1 8c bb 3a 3e", + "module": "__init__", + "msecs": 213.79923820495605, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14863.340854644775, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,213", + "created": 1610346650.213914, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 213.9139175415039, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14863.455533981323, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:50,214", + "created": 1610346650.2140167, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 214.01667594909668, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14863.558292388916, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "STP:", + "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb" + ], + "asctime": "2021-01-11 07:30:50,214", + "created": 1610346650.214176, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", + "module": "stp", + "msecs": 214.17593955993652, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 14863.717555999756, + "stack_info": null, + "thread": 140561143011072, + "threadName": "Thread-24" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: read data response, data_id: 0", "status: okay", "33" ], - "asctime": "2021-01-06 22:49:23,622", - "created": 1609969763.622738, + "asctime": "2021-01-11 07:30:50,214", + "created": 1610346650.2144244, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "lineno": 438, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 622.7378845214844, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 214.42437171936035, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12323.080062866211, + "relativeCreated": 14863.96598815918, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561143011072, + "threadName": "Thread-24" }, { "args": [ - "SP client:" + "prot-client:" ], - "asctime": "2021-01-06 22:49:23,622", - "created": 1609969763.6228764, + "asctime": "2021-01-11 07:30:50,214", + "created": 1610346650.2145662, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 622.8764057159424, + "msecs": 214.56623077392578, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12323.218584060669, + "relativeCreated": 14864.107847213745, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561143011072, + "threadName": "Thread-24" } ], - "msecs": 723.330020904541, + "msecs": 388.07201385498047, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12423.672199249268, + "relativeCreated": 15037.6136302948, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.10045361518859863 + "time_consumption": 0.1735057830810547 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-06 22:49:23,724", - "created": 1609969763.7241445, + "asctime": "2021-01-11 07:30:50,388", + "created": 1610346650.3889225, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -66917,8 +144914,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-06 22:49:23,723", - "created": 1609969763.7237659, + "asctime": "2021-01-11 07:30:50,388", + "created": 1610346650.3885725, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -66928,15 +144925,15 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 723.7658500671387, + "msecs": 388.57245445251465, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12424.108028411865, + "relativeCreated": 15038.114070892334, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -66945,8 +144942,8 @@ "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-01-06 22:49:23,723", - "created": 1609969763.7239523, + "asctime": "2021-01-11 07:30:50,388", + "created": 1610346650.3887556, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -66956,37 +144953,37 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 723.9522933959961, + "msecs": 388.75555992126465, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12424.294471740723, + "relativeCreated": 15038.297176361084, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 724.144458770752, + "msecs": 388.92245292663574, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12424.486637115479, + "relativeCreated": 15038.464069366455, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00019216537475585938 + "time_consumption": 0.00016689300537109375 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-01-06 22:49:23,724", - "created": 1609969763.7246878, + "asctime": "2021-01-11 07:30:50,389", + "created": 1610346650.3894997, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -67003,8 +145000,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-01-06 22:49:23,724", - "created": 1609969763.7243874, + "asctime": "2021-01-11 07:30:50,389", + "created": 1610346650.3891592, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -67014,15 +145011,15 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} ()", "module": "test", - "msecs": 724.3874073028564, + "msecs": 389.1592025756836, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12424.729585647583, + "relativeCreated": 15038.700819015503, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -67031,8 +145028,8 @@ "{'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0}", "" ], - "asctime": "2021-01-06 22:49:23,724", - "created": 1609969763.7245402, + "asctime": "2021-01-11 07:30:50,389", + "created": 1610346650.3893056, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -67042,41 +145039,41 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0} ()", "module": "test", - "msecs": 724.5402336120605, + "msecs": 389.30559158325195, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12424.882411956787, + "relativeCreated": 15038.847208023071, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 724.6878147125244, + "msecs": 389.4996643066406, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12425.029993057251, + "relativeCreated": 15039.04128074646, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001475811004638672 + "time_consumption": 0.00019407272338867188 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.10876035690307617, - "time_finished": "2021-01-06 22:49:23,724", - "time_start": "2021-01-06 22:49:23,615" + "time_consumption": 0.5562045574188232, + "time_finished": "2021-01-11 07:30:50,389", + "time_start": "2021-01-11 07:30:49,833" }, "_YhmzIE4lEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-06 22:49:24,376", - "created": 1609969764.3763473, + "asctime": "2021-01-11 07:30:53,978", + "created": 1610346653.9786909, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -67087,1316 +145084,2278 @@ "message": "_YhmzIE4lEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 376.34730339050293, + "msecs": 978.6908626556396, "msg": "_YhmzIE4lEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13076.68948173523, + "relativeCreated": 18628.23247909546, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:24,378", - "created": 1609969764.378072, + "asctime": "2021-01-11 07:30:53,986", + "created": 1610346653.9862118, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:24,376", - "created": 1609969764.3764482, + "asctime": "2021-01-11 07:30:53,979", + "created": 1610346653.9796524, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 376.4481544494629, + "msecs": 979.6524047851562, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13076.79033279419, + "relativeCreated": 18629.194021224976, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:24,376", - "created": 1609969764.3764992, + "asctime": "2021-01-11 07:30:53,980", + "created": 1610346653.9807384, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 376.4991760253906, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 980.7384014129639, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13076.841354370117, + "relativeCreated": 18630.280017852783, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:24,376", - "created": 1609969764.3765543, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 376.5542507171631, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13076.89642906189, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:24,376", - "created": 1609969764.3765936, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 376.59358978271484, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13076.935768127441, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:24,376", - "created": 1609969764.3766313, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 376.6312599182129, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13076.97343826294, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:24,376", - "created": 1609969764.3766677, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 376.66773796081543, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13077.009916305542, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:24,376", - "created": 1609969764.3767068, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 376.7068386077881, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13077.049016952515, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:24,376", - "created": 1609969764.3767474, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 376.74736976623535, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13077.089548110962, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:24,376", - "created": 1609969764.376787, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 376.7869472503662, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13077.129125595093, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:24,376", - "created": 1609969764.3768265, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 376.82652473449707, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13077.168703079224, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:24,376", - "created": 1609969764.376862, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 376.8620491027832, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13077.20422744751, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:24,376", - "created": 1609969764.3769011, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 376.90114974975586, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13077.243328094482, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:24,376", - "created": 1609969764.3769436, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 376.94358825683594, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13077.285766601562, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:24,376", - "created": 1609969764.3769836, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 376.983642578125, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13077.325820922852, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.3770242, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 377.02417373657227, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13077.366352081299, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.377064, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 377.0639896392822, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13077.406167984009, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.377102, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 377.1018981933594, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13077.444076538086, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.3771377, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 377.1376609802246, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13077.479839324951, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.3771758, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 377.17580795288086, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13077.517986297607, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.3772113, + "asctime": "2021-01-11 07:30:53,980", + "created": 1610346653.9809878, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 377.211332321167, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 980.9877872467041, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13077.553510665894, + "relativeCreated": 18630.529403686523, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.3772836, + "asctime": "2021-01-11 07:30:53,981", + "created": 1610346653.981361, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 377.28357315063477, + "msecs": 981.360912322998, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13077.625751495361, + "relativeCreated": 18630.902528762817, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.3773236, + "asctime": "2021-01-11 07:30:53,981", + "created": 1610346653.9815958, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 377.3236274719238, + "msecs": 981.5957546234131, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13077.66580581665, + "relativeCreated": 18631.137371063232, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.3773792, + "asctime": "2021-01-11 07:30:53,981", + "created": 1610346653.9818418, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 377.3791790008545, + "msecs": 981.8418025970459, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13077.721357345581, + "relativeCreated": 18631.383419036865, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.3774173, + "asctime": "2021-01-11 07:30:53,982", + "created": 1610346653.9820123, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 377.41732597351074, + "msecs": 982.0122718811035, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13077.759504318237, + "relativeCreated": 18631.553888320923, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.377456, + "asctime": "2021-01-11 07:30:53,982", + "created": 1610346653.9821632, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 377.4559497833252, + "msecs": 982.1631908416748, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13077.798128128052, + "relativeCreated": 18631.704807281494, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.3774917, + "asctime": "2021-01-11 07:30:53,982", + "created": 1610346653.9823053, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 377.49171257019043, + "msecs": 982.3052883148193, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13077.833890914917, + "relativeCreated": 18631.84690475464, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.3775303, + "asctime": "2021-01-11 07:30:53,982", + "created": 1610346653.9824736, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 377.5303363800049, + "msecs": 982.473611831665, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13077.872514724731, + "relativeCreated": 18632.015228271484, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.3775704, + "asctime": "2021-01-11 07:30:53,982", + "created": 1610346653.9826372, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 377.57039070129395, + "msecs": 982.6371669769287, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13077.91256904602, + "relativeCreated": 18632.178783416748, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.3776097, + "asctime": "2021-01-11 07:30:53,982", + "created": 1610346653.9827943, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 377.6097297668457, + "msecs": 982.7942848205566, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13077.951908111572, + "relativeCreated": 18632.335901260376, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.3776484, + "asctime": "2021-01-11 07:30:53,982", + "created": 1610346653.9829483, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 377.64835357666016, + "msecs": 982.9483032226562, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13077.990531921387, + "relativeCreated": 18632.489919662476, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.3776877, + "asctime": "2021-01-11 07:30:53,983", + "created": 1610346653.983107, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 377.6876926422119, + "msecs": 983.1070899963379, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13078.029870986938, + "relativeCreated": 18632.648706436157, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.3777297, + "asctime": "2021-01-11 07:30:53,983", + "created": 1610346653.9832716, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 377.7296543121338, + "msecs": 983.271598815918, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13078.07183265686, + "relativeCreated": 18632.813215255737, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.3777719, + "asctime": "2021-01-11 07:30:53,983", + "created": 1610346653.9834523, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 377.77185440063477, + "msecs": 983.452320098877, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13078.114032745361, + "relativeCreated": 18632.993936538696, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.3778155, + "asctime": "2021-01-11 07:30:53,983", + "created": 1610346653.983599, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 377.81548500061035, + "msecs": 983.5989475250244, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13078.157663345337, + "relativeCreated": 18633.140563964844, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.3778539, + "asctime": "2021-01-11 07:30:53,983", + "created": 1610346653.9837506, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 377.8538703918457, + "msecs": 983.750581741333, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13078.196048736572, + "relativeCreated": 18633.292198181152, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.3778925, + "asctime": "2021-01-11 07:30:53,983", + "created": 1610346653.9839094, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 377.89249420166016, + "msecs": 983.9093685150146, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13078.234672546387, + "relativeCreated": 18633.450984954834, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.3779335, + "asctime": "2021-01-11 07:30:53,984", + "created": 1610346653.9840677, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 377.9335021972656, + "msecs": 984.0676784515381, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13078.275680541992, + "relativeCreated": 18633.609294891357, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:24,377", - "created": 1609969764.3779693, + "asctime": "2021-01-11 07:30:53,984", + "created": 1610346653.9842074, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 377.96926498413086, + "msecs": 984.2073917388916, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13078.311443328857, + "relativeCreated": 18633.74900817871, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:24,378", - "created": 1609969764.378004, + "asctime": "2021-01-11 07:30:53,984", + "created": 1610346653.9843442, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 378.0040740966797, + "msecs": 984.3442440032959, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13078.346252441406, + "relativeCreated": 18633.885860443115, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:24,378", - "created": 1609969764.378039, + "asctime": "2021-01-11 07:30:53,984", + "created": 1610346653.9844859, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 378.0388832092285, + "msecs": 984.4858646392822, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13078.381061553955, + "relativeCreated": 18634.0274810791, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:53,984", + "created": 1610346653.9847925, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 984.7924709320068, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18634.334087371826, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:53,984", + "created": 1610346653.98495, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 984.950065612793, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18634.491682052612, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:53,985", + "created": 1610346653.9851468, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 985.1467609405518, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18634.68837738037, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:53,985", + "created": 1610346653.9853165, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 985.3165149688721, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18634.85813140869, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:53,985", + "created": 1610346653.9854765, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 985.4764938354492, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18635.01811027527, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:53,985", + "created": 1610346653.985521, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 985.5210781097412, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18635.06269454956, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:53,985", + "created": 1610346653.9855702, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 985.5701923370361, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18635.111808776855, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:53,985", + "created": 1610346653.9856186, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 985.6185913085938, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18635.160207748413, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:53,985", + "created": 1610346653.9856706, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 985.6705665588379, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18635.212182998657, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:53,985", + "created": 1610346653.985718, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 985.7180118560791, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18635.2596282959, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:53,985", + "created": 1610346653.9857624, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 985.762357711792, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18635.30397415161, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:53,985", + "created": 1610346653.9858093, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 985.809326171875, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18635.350942611694, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:53,985", + "created": 1610346653.9858599, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 985.8598709106445, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18635.401487350464, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:53,985", + "created": 1610346653.9859042, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 985.9042167663574, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18635.445833206177, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:53,985", + "created": 1610346653.9859495, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 985.9495162963867, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18635.491132736206, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:53,985", + "created": 1610346653.9859962, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 985.9962463378906, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18635.53786277771, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:53,986", + "created": 1610346653.9860413, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 986.0413074493408, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18635.58292388916, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:53,986", + "created": 1610346653.9860845, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 986.0844612121582, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18635.626077651978, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:53,986", + "created": 1610346653.9861264, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 986.1264228820801, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18635.6680393219, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:53,986", + "created": 1610346653.9861681, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 986.1681461334229, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18635.709762573242, + "stack_info": null, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 378.07202339172363, + "msecs": 986.2117767333984, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13078.41420173645, + "relativeCreated": 18635.753393173218, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 3.314018249511719e-05 + "time_consumption": 4.363059997558594e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:24,679", - "created": 1609969764.6794207, + "asctime": "2021-01-11 07:30:54,329", + "created": 1610346654.329667, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:53,986", + "created": 1610346653.9863145, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 986.3145351409912, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18635.85615158081, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:53,986", + "created": 1610346653.9863598, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 986.3598346710205, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18635.90145111084, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:53,986", + "created": 1610346653.9864035, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 986.4034652709961, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18635.945081710815, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:53,986", + "created": 1610346653.9864886, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 986.4885807037354, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18636.030197143555, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:53,986", + "created": 1610346653.9866216, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 986.621618270874, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18636.163234710693, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:53,986", + "created": 1610346653.9866638, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 986.663818359375, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18636.205434799194, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:53,986", + "created": 1610346653.9867027, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 986.7026805877686, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18636.244297027588, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e" + ], + "asctime": "2021-01-11 07:30:53,986", + "created": 1610346653.9868293, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e", + "module": "__init__", + "msecs": 986.8292808532715, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18636.37089729309, + "stack_info": null, + "thread": 140560094447360, + "threadName": "Thread-35" + }, + { + "args": [ + "comm-server:", + "(21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e" + ], + "asctime": "2021-01-11 07:30:53,989", + "created": 1610346653.9895966, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e", + "module": "__init__", + "msecs": 989.5966053009033, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18639.138221740723, + "stack_info": null, + "thread": 140560094447360, + "threadName": "Thread-35" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,989", + "created": 1610346653.9897292, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 989.7291660308838, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18639.270782470703, + "stack_info": null, + "thread": 140560094447360, + "threadName": "Thread-35" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:53,989", + "created": 1610346653.989781, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 989.7809028625488, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18639.322519302368, + "stack_info": null, + "thread": 140560094447360, + "threadName": "Thread-35" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,989", + "created": 1610346653.989859, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 989.8591041564941, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18639.400720596313, + "stack_info": null, + "thread": 140560094447360, + "threadName": "Thread-35" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:53,989", + "created": 1610346653.9899087, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 989.9086952209473, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18639.450311660767, + "stack_info": null, + "thread": 140560094447360, + "threadName": "Thread-35" + }, + { + "args": [ + "STP:", + "(17): 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13" + ], + "asctime": "2021-01-11 07:30:53,989", + "created": 1610346653.9899645, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (17): 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13", + "module": "stp", + "msecs": 989.964485168457, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18639.506101608276, + "stack_info": null, + "thread": 140560094447360, + "threadName": "Thread-35" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:53,990", + "created": 1610346653.9901054, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 990.105390548706, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18639.647006988525, + "stack_info": null, + "thread": 140560094447360, + "threadName": "Thread-35" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:53,990", + "created": 1610346653.9901621, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 990.1621341705322, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18639.70375061035, + "stack_info": null, + "thread": 140560094447360, + "threadName": "Thread-35" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:53,990", + "created": 1610346653.9902415, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 990.241527557373, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18639.783143997192, + "stack_info": null, + "thread": 140560094447360, + "threadName": "Thread-35" + }, + { + "args": [ + "comm-server:", + "(21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e" + ], + "asctime": "2021-01-11 07:30:53,990", + "created": 1610346653.9904532, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e", + "module": "__init__", + "msecs": 990.4532432556152, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18639.994859695435, + "stack_info": null, + "thread": 140560086054656, + "threadName": "Thread-36" + }, + { + "args": [ + "comm-client:", + "(21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e" + ], + "asctime": "2021-01-11 07:30:53,993", + "created": 1610346653.9933264, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e", + "module": "__init__", + "msecs": 993.3264255523682, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18642.868041992188, + "stack_info": null, + "thread": 140560086054656, + "threadName": "Thread-36" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,993", + "created": 1610346653.9935026, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 993.5026168823242, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18643.044233322144, + "stack_info": null, + "thread": 140560086054656, + "threadName": "Thread-36" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:53,993", + "created": 1610346653.9935615, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 993.5615062713623, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18643.10312271118, + "stack_info": null, + "thread": 140560086054656, + "threadName": "Thread-36" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,993", + "created": 1610346653.9936407, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 993.640661239624, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18643.182277679443, + "stack_info": null, + "thread": 140560086054656, + "threadName": "Thread-36" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:53,993", + "created": 1610346653.993686, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 993.6859607696533, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18643.227577209473, + "stack_info": null, + "thread": 140560086054656, + "threadName": "Thread-36" + }, + { + "args": [ + "STP:", + "(17): 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12" + ], + "asctime": "2021-01-11 07:30:53,993", + "created": 1610346653.9937434, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (17): 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12", + "module": "stp", + "msecs": 993.7434196472168, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18643.285036087036, + "stack_info": null, + "thread": 140560086054656, + "threadName": "Thread-36" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:53,993", + "created": 1610346653.9939096, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 993.9095973968506, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18643.45121383667, + "stack_info": null, + "thread": 140560086054656, + "threadName": "Thread-36" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:53,993", + "created": 1610346653.9939773, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 993.9773082733154, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18643.518924713135, + "stack_info": null, + "thread": 140560086054656, + "threadName": "Thread-36" + } + ], + "msecs": 329.6670913696289, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18979.20870780945, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.3356897830963135 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:54,531", + "created": 1610346654.5314183, "exc_info": null, "exc_text": null, "filename": "test_communication.py", - "funcName": "send_message_with_invalid_checksum", + "funcName": "send_message_object", "levelname": "DEBUG", "levelno": 10, - "lineno": 70, + "lineno": 53, "message": "Transfering a message client -> server", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:24,378", - "created": 1609969764.3781555, + "asctime": "2021-01-11 07:30:54,330", + "created": 1610346654.3302498, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 438, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 378.1554698944092, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 330.2497863769531, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13078.497648239136, + "relativeCreated": 18979.791402816772, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,378", - "created": 1609969764.3782575, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (41): 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d", - "module": "test_helpers", - "msecs": 378.25751304626465, - "msg": "Send data: (41): 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13078.599691390991, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,378", - "created": 1609969764.378314, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (41): 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7e", - "module": "test_helpers", - "msecs": 378.3140182495117, - "msg": "Receive data (41): 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7e", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13078.656196594238, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:" + "comm-client:", + "(45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e" ], - "asctime": "2021-01-06 22:49:24,378", - "created": 1609969764.3784006, + "asctime": "2021-01-11 07:30:54,331", + "created": 1610346654.3310394, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 432, - "message": "SP server: RX <- Received message has a wrong checksum. Message will be ignored.", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e", "module": "__init__", - "msecs": 378.4005641937256, - "msg": "%s RX <- Received message has a wrong checksum. Message will be ignored.", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 331.0394287109375, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13078.742742538452, + "relativeCreated": 18980.581045150757, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560094447360, + "threadName": "Thread-35" }, { "args": [ - "SP server:", - "0.25", - "17", - "34" + "comm-server:", + "(45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e" ], - "asctime": "2021-01-06 22:49:24,679", - "created": 1609969764.6792505, + "asctime": "2021-01-11 07:30:54,337", + "created": 1610346654.337156, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 651, - "message": "SP server: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 34) not in buffer.", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e", "module": "__init__", - "msecs": 679.2504787445068, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", + "msecs": 337.1560573577881, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18986.697673797607, + "stack_info": null, + "thread": 140560094447360, + "threadName": "Thread-35" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:54,337", + "created": 1610346654.3374743, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 337.4743461608887, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18987.015962600708, + "stack_info": null, + "thread": 140560094447360, + "threadName": "Thread-35" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:54,337", + "created": 1610346654.3376484, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 337.6483917236328, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18987.190008163452, + "stack_info": null, + "thread": 140560094447360, + "threadName": "Thread-35" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:54,337", + "created": 1610346654.337983, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 337.9828929901123, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18987.52450942993, + "stack_info": null, + "thread": 140560094447360, + "threadName": "Thread-35" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:54,338", + "created": 1610346654.3381295, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 338.12952041625977, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18987.67113685608, + "stack_info": null, + "thread": 140560094447360, + "threadName": "Thread-35" + }, + { + "args": [ + "STP:", + "(41): 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d" + ], + "asctime": "2021-01-11 07:30:54,338", + "created": 1610346654.3383346, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (41): 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d", + "module": "stp", + "msecs": 338.3345603942871, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18987.876176834106, + "stack_info": null, + "thread": 140560094447360, + "threadName": "Thread-35" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: 17, data_id: 34", + "status: okay", + "'msg1_data_to_be_transfered'" + ], + "asctime": "2021-01-11 07:30:54,338", + "created": 1610346654.3389215, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 338.92154693603516, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13379.592657089233, + "relativeCreated": 18988.463163375854, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560094447360, + "threadName": "Thread-35" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:54,339", + "created": 1610346654.3391967, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__buffer_received_data__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 385, + "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", + "module": "__init__", + "msecs": 339.19668197631836, + "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18988.738298416138, + "stack_info": null, + "thread": 140560094447360, + "threadName": "Thread-35" } ], - "msecs": 679.4207096099854, + "msecs": 531.4183235168457, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13379.762887954712, + "relativeCreated": 19180.959939956665, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00017023086547851562 + "time_consumption": 0.19222164154052734 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:24,679", - "created": 1609969764.679795, + "asctime": "2021-01-11 07:30:54,532", + "created": 1610346654.5322268, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -68413,8 +147372,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:24,679", - "created": 1609969764.679601, + "asctime": "2021-01-11 07:30:54,531", + "created": 1610346654.5318613, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -68424,15 +147383,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 679.6009540557861, + "msecs": 531.8613052368164, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13379.943132400513, + "relativeCreated": 19181.402921676636, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -68441,8 +147400,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:24,679", - "created": 1609969764.6797066, + "asctime": "2021-01-11 07:30:54,532", + "created": 1610346654.532037, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -68452,37 +147411,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 679.7065734863281, + "msecs": 532.0370197296143, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13380.048751831055, + "relativeCreated": 19181.578636169434, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 679.7950267791748, + "msecs": 532.2268009185791, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13380.137205123901, + "relativeCreated": 19181.7684173584, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 8.845329284667969e-05 + "time_consumption": 0.00018978118896484375 }, { "args": [ - "None", - "" + "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", + "" ], - "asctime": "2021-01-06 22:49:24,680", - "created": 1609969764.6801052, + "asctime": "2021-01-11 07:30:54,532", + "created": 1610346654.5328221, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -68490,17 +147449,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 144, - "message": "Checksum Error -> No message received by server is correct (Content None and Type is ).", + "message": "Received message on server side is correct (Content {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} and Type is ).", "module": "test", "moduleLogger": [ { "args": [ - "Checksum Error -> No message received by server", - "None", - "" + "Received message on server side", + "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", + "" ], - "asctime": "2021-01-06 22:49:24,679", - "created": 1609969764.6799266, + "asctime": "2021-01-11 07:30:54,532", + "created": 1610346654.532497, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -68508,27 +147467,27 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Checksum Error -> No message received by server): None ()", + "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 679.9266338348389, + "msecs": 532.4969291687012, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13380.268812179565, + "relativeCreated": 19182.03854560852, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "Checksum Error -> No message received by server", - "None", - "" + "Received message on server side", + "{'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", + "" ], - "asctime": "2021-01-06 22:49:24,680", - "created": 1609969764.6800232, + "asctime": "2021-01-11 07:30:54,532", + "created": 1610346654.5326695, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -68536,254 +147495,343 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 26, - "message": "Expectation (Checksum Error -> No message received by server): result = None ()", + "message": "Expectation (Received message on server side): result = {'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 680.023193359375, + "msecs": 532.6695442199707, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13380.365371704102, + "relativeCreated": 19182.21116065979, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 680.1052093505859, - "msg": "Checksum Error -> No message received by server is correct (Content %s and Type is %s).", + "msecs": 532.8221321105957, + "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13380.447387695312, + "relativeCreated": 19182.363748550415, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 8.20159912109375e-05 + "time_consumption": 0.000152587890625 }, { "args": [], - "asctime": "2021-01-06 22:49:24,982", - "created": 1609969764.9824057, + "asctime": "2021-01-11 07:30:54,734", + "created": 1610346654.7342393, "exc_info": null, "exc_text": null, "filename": "test_communication.py", - "funcName": "send_message_with_invalid_checksum", + "funcName": "send_message_object", "levelname": "DEBUG", "levelno": 10, - "lineno": 76, + "lineno": 59, "message": "Transfering a message server -> client", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:24,680", - "created": 1609969764.680272, + "asctime": "2021-01-11 07:30:54,533", + "created": 1610346654.5331652, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 438, + "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 680.272102355957, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 533.1652164459229, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13380.614280700684, + "relativeCreated": 19182.706832885742, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,680", - "created": 1609969764.6805007, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (41): 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b", - "module": "test_helpers", - "msecs": 680.5007457733154, - "msg": "Send data: (41): 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13380.842924118042, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,680", - "created": 1609969764.680626, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (41): 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b", - "module": "test_helpers", - "msecs": 680.6259155273438, - "msg": "Receive data (41): 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13380.96809387207, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "comm-server:", + "(45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e" + ], + "asctime": "2021-01-11 07:30:54,533", + "created": 1610346654.53398, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e", + "module": "__init__", + "msecs": 533.9798927307129, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 19183.521509170532, + "stack_info": null, + "thread": 140560086054656, + "threadName": "Thread-36" + }, + { + "args": [ + "comm-client:", + "(45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e" + ], + "asctime": "2021-01-11 07:30:54,539", + "created": 1610346654.5399396, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e", + "module": "__init__", + "msecs": 539.9396419525146, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 19189.481258392334, + "stack_info": null, + "thread": 140560086054656, + "threadName": "Thread-36" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:54,540", + "created": 1610346654.540175, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 540.1749610900879, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 19189.716577529907, + "stack_info": null, + "thread": 140560086054656, + "threadName": "Thread-36" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:54,540", + "created": 1610346654.5403016, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 540.3015613555908, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 19189.84317779541, + "stack_info": null, + "thread": 140560086054656, + "threadName": "Thread-36" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:54,540", + "created": 1610346654.540562, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 540.5619144439697, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 19190.10353088379, + "stack_info": null, + "thread": 140560086054656, + "threadName": "Thread-36" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:54,540", + "created": 1610346654.5406716, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 540.6715869903564, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 19190.213203430176, + "stack_info": null, + "thread": 140560086054656, + "threadName": "Thread-36" + }, + { + "args": [ + "STP:", + "(41): 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b" + ], + "asctime": "2021-01-11 07:30:54,540", + "created": 1610346654.5408535, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (41): 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b", + "module": "stp", + "msecs": 540.8535003662109, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 19190.39511680603, + "stack_info": null, + "thread": 140560086054656, + "threadName": "Thread-36" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:24,680", - "created": 1609969764.6808596, + "asctime": "2021-01-11 07:30:54,541", + "created": 1610346654.54122, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 438, + "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 680.8595657348633, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 541.21994972229, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13381.20174407959, + "relativeCreated": 19190.76156616211, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560086054656, + "threadName": "Thread-36" }, { "args": [ - "SP client:", - "status: service or data unknown" + "prot-client:" ], - "asctime": "2021-01-06 22:49:24,680", - "created": 1609969764.6809547, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: service or data unknown", - "module": "__init__", - "msecs": 680.9546947479248, - "msg": "%s RX <- Message has a peculiar status: %s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13381.296873092651, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:" - ], - "asctime": "2021-01-06 22:49:24,681", - "created": 1609969764.6810732, + "asctime": "2021-01-11 07:30:54,541", + "created": 1610346654.5413835, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 681.0731887817383, + "msecs": 541.3835048675537, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13381.415367126465, + "relativeCreated": 19190.925121307373, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "0.25", - "17", - "35" - ], - "asctime": "2021-01-06 22:49:24,982", - "created": 1609969764.9821322, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 651, - "message": "SP server: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 35) not in buffer.", - "module": "__init__", - "msecs": 982.1321964263916, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13682.474374771118, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560086054656, + "threadName": "Thread-36" } ], - "msecs": 982.4056625366211, + "msecs": 734.2393398284912, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13682.747840881348, + "relativeCreated": 19383.78095626831, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0002734661102294922 + "time_consumption": 0.1928558349609375 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:24,983", - "created": 1609969764.9830275, + "asctime": "2021-01-11 07:30:54,735", + "created": 1610346654.7354455, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -68800,8 +147848,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:24,982", - "created": 1609969764.9827106, + "asctime": "2021-01-11 07:30:54,734", + "created": 1610346654.7349644, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -68811,15 +147859,15 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 982.710599899292, + "msecs": 734.9643707275391, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13683.052778244019, + "relativeCreated": 19384.50598716736, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -68828,8 +147876,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:24,982", - "created": 1609969764.9828756, + "asctime": "2021-01-11 07:30:54,735", + "created": 1610346654.7352452, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -68839,37 +147887,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 982.8755855560303, + "msecs": 735.2452278137207, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13683.217763900757, + "relativeCreated": 19384.78684425354, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 983.027458190918, + "msecs": 735.445499420166, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13683.369636535645, + "relativeCreated": 19384.987115859985, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001518726348876953 + "time_consumption": 0.0002002716064453125 }, { "args": [ - "None", - "" + "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", + "" ], - "asctime": "2021-01-06 22:49:24,983", - "created": 1609969764.9835613, + "asctime": "2021-01-11 07:30:54,736", + "created": 1610346654.7361982, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -68877,17 +147925,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 144, - "message": "Checksum Error -> No message received by client is correct (Content None and Type is ).", + "message": "Received message on client side is correct (Content {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} and Type is ).", "module": "test", "moduleLogger": [ { "args": [ - "Checksum Error -> No message received by client", - "None", - "" + "Received message on client side", + "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", + "" ], - "asctime": "2021-01-06 22:49:24,983", - "created": 1609969764.9832559, + "asctime": "2021-01-11 07:30:54,735", + "created": 1610346654.7357628, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -68895,27 +147943,27 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Checksum Error -> No message received by client): None ()", + "message": "Result (Received message on client side): {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", "module": "test", - "msecs": 983.2558631896973, + "msecs": 735.7628345489502, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13683.598041534424, + "relativeCreated": 19385.30445098877, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "Checksum Error -> No message received by client", - "None", - "" + "Received message on client side", + "{'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", + "" ], - "asctime": "2021-01-06 22:49:24,983", - "created": 1609969764.9833984, + "asctime": "2021-01-11 07:30:54,735", + "created": 1610346654.7359898, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -68923,43 +147971,43 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 26, - "message": "Expectation (Checksum Error -> No message received by client): result = None ()", + "message": "Expectation (Received message on client side): result = {'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", "module": "test", - "msecs": 983.3984375, + "msecs": 735.9898090362549, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13683.740615844727, + "relativeCreated": 19385.531425476074, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 983.5612773895264, - "msg": "Checksum Error -> No message received by client is correct (Content %s and Type is %s).", + "msecs": 736.1981868743896, + "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13683.903455734253, + "relativeCreated": 19385.73980331421, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001628398895263672 + "time_consumption": 0.00020837783813476562 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.6072139739990234, - "time_finished": "2021-01-06 22:49:24,983", - "time_start": "2021-01-06 22:49:24,376" + "time_consumption": 0.75750732421875, + "time_finished": "2021-01-11 07:30:54,736", + "time_start": "2021-01-11 07:30:53,978" }, "_ZJMD8EzaEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:49:11,607", - "created": 1609969751.607237, + "asctime": "2021-01-11 07:30:36,258", + "created": 1610346636.2587824, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -68970,1154 +148018,2519 @@ "message": "_ZJMD8EzaEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 607.2371006011963, + "msecs": 258.78238677978516, "msg": "_ZJMD8EzaEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 307.57927894592285, + "relativeCreated": 908.3240032196045, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:11,612", - "created": 1609969751.6120093, + "asctime": "2021-01-11 07:30:36,267", + "created": 1610346636.2675223, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:11,607", - "created": 1609969751.6075144, + "asctime": "2021-01-11 07:30:36,259", + "created": 1610346636.259949, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 607.5143814086914, + "msecs": 259.9489688873291, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 307.85655975341797, + "relativeCreated": 909.4905853271484, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:11,607", - "created": 1609969751.6076436, + "asctime": "2021-01-11 07:30:36,261", + "created": 1610346636.26116, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 607.6436042785645, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 261.15989685058594, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 307.985782623291, + "relativeCreated": 910.7015132904053, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:11,607", - "created": 1609969751.6077929, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 607.792854309082, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 308.1350326538086, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:11,607", - "created": 1609969751.6079009, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 607.900857925415, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 308.2430362701416, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:11,608", - "created": 1609969751.6080027, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 608.0026626586914, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 308.34484100341797, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:11,608", - "created": 1609969751.608102, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 608.1020832061768, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 308.4442615509033, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:11,608", - "created": 1609969751.6082237, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 608.2236766815186, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 308.5658550262451, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:11,608", - "created": 1609969751.608333, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 608.3331108093262, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 308.67528915405273, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:11,608", - "created": 1609969751.608439, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 608.4389686584473, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 308.7811470031738, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:11,608", - "created": 1609969751.608544, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 608.544111251831, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 308.8862895965576, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:11,608", - "created": 1609969751.6086388, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 608.6387634277344, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 308.98094177246094, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:11,608", - "created": 1609969751.6087437, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 608.7436676025391, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 309.0858459472656, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:11,608", - "created": 1609969751.608866, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 608.8659763336182, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 309.2081546783447, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:11,608", - "created": 1609969751.6089652, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 608.9651584625244, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 309.307336807251, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:11,609", - "created": 1609969751.6090717, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 609.0717315673828, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 309.4139099121094, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:11,609", - "created": 1609969751.609176, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 609.1759204864502, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 309.51809883117676, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:11,609", - "created": 1609969751.6092849, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 609.2848777770996, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 309.6270561218262, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:11,609", - "created": 1609969751.6094432, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 609.443187713623, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 309.7853660583496, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:11,609", - "created": 1609969751.6095796, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 609.5795631408691, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 309.9217414855957, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:11,609", - "created": 1609969751.6096773, + "asctime": "2021-01-11 07:30:36,261", + "created": 1610346636.261399, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 609.6773147583008, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 261.3990306854248, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 310.01949310302734, + "relativeCreated": 910.9406471252441, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:11,609", - "created": 1609969751.6098905, + "asctime": "2021-01-11 07:30:36,261", + "created": 1610346636.261795, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 609.8904609680176, + "msecs": 261.7950439453125, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 310.23263931274414, + "relativeCreated": 911.3366603851318, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:11,610", - "created": 1609969751.6100101, + "asctime": "2021-01-11 07:30:36,261", + "created": 1610346636.2619662, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 610.0101470947266, + "msecs": 261.9662284851074, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 310.3523254394531, + "relativeCreated": 911.5078449249268, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:11,610", - "created": 1609969751.6101508, + "asctime": "2021-01-11 07:30:36,262", + "created": 1610346636.2622082, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 610.1508140563965, + "msecs": 262.2082233428955, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 310.49299240112305, + "relativeCreated": 911.7498397827148, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:11,610", - "created": 1609969751.610253, + "asctime": "2021-01-11 07:30:36,262", + "created": 1610346636.2623892, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 610.253095626831, + "msecs": 262.3891830444336, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 310.5952739715576, + "relativeCreated": 911.9307994842529, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:11,610", - "created": 1609969751.6103504, + "asctime": "2021-01-11 07:30:36,262", + "created": 1610346636.2625518, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 610.3503704071045, + "msecs": 262.55178451538086, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 310.69254875183105, + "relativeCreated": 912.0934009552002, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:11,610", - "created": 1609969751.6104474, + "asctime": "2021-01-11 07:30:36,262", + "created": 1610346636.2626815, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 610.4474067687988, + "msecs": 262.6814842224121, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 310.7895851135254, + "relativeCreated": 912.2231006622314, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:11,610", - "created": 1609969751.610559, + "asctime": "2021-01-11 07:30:36,262", + "created": 1610346636.2628238, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 610.5589866638184, + "msecs": 262.82382011413574, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 310.9011650085449, + "relativeCreated": 912.3654365539551, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:11,610", - "created": 1609969751.6106741, + "asctime": "2021-01-11 07:30:36,262", + "created": 1610346636.26296, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 610.6741428375244, + "msecs": 262.95995712280273, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 311.016321182251, + "relativeCreated": 912.5015735626221, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:11,610", - "created": 1609969751.610786, + "asctime": "2021-01-11 07:30:36,263", + "created": 1610346636.2631252, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 610.785961151123, + "msecs": 263.1251811981201, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 311.1281394958496, + "relativeCreated": 912.6667976379395, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:11,610", - "created": 1609969751.6108897, + "asctime": "2021-01-11 07:30:36,263", + "created": 1610346636.2632773, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 610.8896732330322, + "msecs": 263.2772922515869, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 311.2318515777588, + "relativeCreated": 912.8189086914062, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:11,610", - "created": 1609969751.6109827, + "asctime": "2021-01-11 07:30:36,263", + "created": 1610346636.263406, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 610.9826564788818, + "msecs": 263.40603828430176, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 311.3248348236084, + "relativeCreated": 912.9476547241211, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:11,611", - "created": 1609969751.611087, + "asctime": "2021-01-11 07:30:36,263", + "created": 1610346636.263547, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 611.0870838165283, + "msecs": 263.5469436645508, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 311.4292621612549, + "relativeCreated": 913.0885601043701, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:11,611", - "created": 1609969751.6111991, + "asctime": "2021-01-11 07:30:36,263", + "created": 1610346636.263675, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 611.199140548706, + "msecs": 263.6749744415283, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 311.5413188934326, + "relativeCreated": 913.2165908813477, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:11,611", - "created": 1609969751.6112976, + "asctime": "2021-01-11 07:30:36,263", + "created": 1610346636.263801, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 611.297607421875, + "msecs": 263.80109786987305, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 311.63978576660156, + "relativeCreated": 913.3427143096924, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:11,611", - "created": 1609969751.6113992, + "asctime": "2021-01-11 07:30:36,263", + "created": 1610346636.2639515, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 611.3991737365723, + "msecs": 263.95153999328613, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 311.7413520812988, + "relativeCreated": 913.4931564331055, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:11,611", - "created": 1609969751.6115103, + "asctime": "2021-01-11 07:30:36,264", + "created": 1610346636.264089, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 611.5102767944336, + "msecs": 264.08910751342773, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 311.85245513916016, + "relativeCreated": 913.6307239532471, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:11,611", - "created": 1609969751.6116185, + "asctime": "2021-01-11 07:30:36,264", + "created": 1610346636.2642388, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 611.6185188293457, + "msecs": 264.2388343811035, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 311.96069717407227, + "relativeCreated": 913.7804508209229, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:11,611", - "created": 1609969751.6117158, + "asctime": "2021-01-11 07:30:36,264", + "created": 1610346636.2643802, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 611.7157936096191, + "msecs": 264.38021659851074, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 312.0579719543457, + "relativeCreated": 913.9218330383301, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:11,611", - "created": 1609969751.6118248, + "asctime": "2021-01-11 07:30:36,264", + "created": 1610346636.264515, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 611.8247509002686, + "msecs": 264.5149230957031, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 312.1669292449951, + "relativeCreated": 914.0565395355225, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:11,611", - "created": 1609969751.6119199, + "asctime": "2021-01-11 07:30:36,264", + "created": 1610346636.2646742, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 611.9198799133301, + "msecs": 264.67418670654297, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 312.26205825805664, + "relativeCreated": 914.2158031463623, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:36,265", + "created": 1610346636.265, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 265.0001049041748, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 914.5417213439941, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:36,265", + "created": 1610346636.2652767, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 265.2766704559326, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 914.818286895752, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:36,265", + "created": 1610346636.2655342, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 265.5341625213623, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 915.0757789611816, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:36,265", + "created": 1610346636.2656503, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 265.65027236938477, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 915.1918888092041, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:36,265", + "created": 1610346636.265759, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 265.7589912414551, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 915.3006076812744, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:36,265", + "created": 1610346636.2658827, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 265.8827304840088, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 915.4243469238281, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:36,266", + "created": 1610346636.2660222, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 266.0222053527832, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 915.5638217926025, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:36,266", + "created": 1610346636.2661405, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 266.1404609680176, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 915.6820774078369, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:36,266", + "created": 1610346636.2662423, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 266.24226570129395, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 915.7838821411133, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:36,266", + "created": 1610346636.2663624, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 266.36242866516113, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 915.9040451049805, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:36,266", + "created": 1610346636.2664602, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 266.4601802825928, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 916.0017967224121, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:36,266", + "created": 1610346636.266575, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 266.5750980377197, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 916.1167144775391, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:36,266", + "created": 1610346636.2666898, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 266.6897773742676, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 916.2313938140869, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:36,266", + "created": 1610346636.2668047, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 266.80469512939453, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 916.3463115692139, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:36,266", + "created": 1610346636.2669117, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 266.91174507141113, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 916.4533615112305, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:36,267", + "created": 1610346636.2670188, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 267.01879501342773, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 916.5604114532471, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:36,267", + "created": 1610346636.2671173, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 267.1172618865967, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 916.658878326416, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:36,267", + "created": 1610346636.2672262, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 267.2262191772461, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 916.7678356170654, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:36,267", + "created": 1610346636.2673275, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 267.32754707336426, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 916.8691635131836, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:36,267", + "created": 1610346636.2674294, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 267.4293518066406, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 916.97096824646, + "stack_info": null, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 612.0092868804932, + "msecs": 267.52233505249023, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 312.3514652252197, + "relativeCreated": 917.0639514923096, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 8.940696716308594e-05 + "time_consumption": 9.298324584960938e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:11,914", - "created": 1609969751.9142528, + "asctime": "2021-01-11 07:30:36,612", + "created": 1610346636.6122246, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:36,267", + "created": 1610346636.267757, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 267.7569389343262, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 917.2985553741455, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:36,267", + "created": 1610346636.2678566, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 267.8565979003906, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 917.39821434021, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:36,267", + "created": 1610346636.2679543, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 267.95434951782227, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 917.4959659576416, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:36,268", + "created": 1610346636.268168, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 268.16797256469727, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 917.7095890045166, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:36,268", + "created": 1610346636.2686682, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 268.66817474365234, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 918.2097911834717, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:36,268", + "created": 1610346636.2687926, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 268.79262924194336, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 918.3342456817627, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:36,268", + "created": 1610346636.268899, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 268.89896392822266, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 918.440580368042, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:36,269", + "created": 1610346636.2692301, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 269.2301273345947, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 918.7717437744141, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:36,277", + "created": 1610346636.2776148, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 277.6148319244385, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 927.1564483642578, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,277", + "created": 1610346636.277873, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 277.87303924560547, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 927.4146556854248, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:36,278", + "created": 1610346636.2780437, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 278.0437469482422, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 927.5853633880615, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,278", + "created": 1610346636.278217, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 278.217077255249, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 927.7586936950684, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:36,278", + "created": 1610346636.2783575, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 278.35750579833984, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 927.8991222381592, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,278", + "created": 1610346636.2785463, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 278.5463333129883, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 928.0879497528076, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:36,278", + "created": 1610346636.2786942, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 278.69415283203125, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 928.2357692718506, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,278", + "created": 1610346636.2788615, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 278.86152267456055, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 928.4031391143799, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:36,279", + "created": 1610346636.2790203, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 279.0203094482422, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 928.5619258880615, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,279", + "created": 1610346636.2792084, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 279.2084217071533, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 928.7500381469727, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:36,279", + "created": 1610346636.2793362, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 279.33621406555176, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 928.8778305053711, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:36,279", + "created": 1610346636.2795532, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 279.5531749725342, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 929.0947914123535, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:36,280", + "created": 1610346636.28066, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 280.65991401672363, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 930.201530456543, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,280", + "created": 1610346636.2808661, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 280.8661460876465, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 930.4077625274658, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:36,281", + "created": 1610346636.2810163, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 281.01634979248047, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 930.5579662322998, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" + ], + "asctime": "2021-01-11 07:30:36,281", + "created": 1610346636.2812088, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", + "module": "stp", + "msecs": 281.20875358581543, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 930.7503700256348, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:36,281", + "created": 1610346636.2815979, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 281.5978527069092, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 931.1394691467285, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:36,281", + "created": 1610346636.2817564, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 281.7564010620117, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 931.298017501831, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:36,281", + "created": 1610346636.2819693, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 281.9693088531494, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 931.5109252929688, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:36,282", + "created": 1610346636.2827218, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 282.72175788879395, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 932.2633743286133, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:36,291", + "created": 1610346636.2911406, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 291.1405563354492, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 940.6821727752686, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,291", + "created": 1610346636.2914028, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 291.40281677246094, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 940.9444332122803, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:36,291", + "created": 1610346636.2915738, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 291.57376289367676, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 941.1153793334961, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,291", + "created": 1610346636.2917547, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 291.75472259521484, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 941.2963390350342, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:36,291", + "created": 1610346636.2918994, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 291.8994426727295, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 941.4410591125488, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,292", + "created": 1610346636.2920444, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 292.04440116882324, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 941.5860176086426, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:36,292", + "created": 1610346636.29212, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 292.11997985839844, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 941.6615962982178, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,292", + "created": 1610346636.2922199, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 292.219877243042, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 941.7614936828613, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:36,292", + "created": 1610346636.292296, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 292.2959327697754, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 941.8375492095947, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,292", + "created": 1610346636.2923973, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 292.39726066589355, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 941.9388771057129, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:36,292", + "created": 1610346636.2924683, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 292.4683094024658, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 942.0099258422852, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:36,292", + "created": 1610346636.2925951, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 292.59514808654785, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 942.1367645263672, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:36,293", + "created": 1610346636.2935064, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 293.506383895874, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 943.0480003356934, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,293", + "created": 1610346636.2936013, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 293.60127449035645, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 943.1428909301758, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:36,293", + "created": 1610346636.2936764, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 293.67637634277344, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 943.2179927825928, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:36,293", + "created": 1610346636.293801, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 293.80106925964355, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 943.3426856994629, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:36,294", + "created": 1610346636.2940054, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 294.0053939819336, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 943.5470104217529, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:36,294", + "created": 1610346636.2941115, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 294.1114902496338, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 943.6531066894531, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + } + ], + "msecs": 612.2245788574219, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1261.7661952972412, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.3181130886077881 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:36,914", + "created": 1610346636.914637, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -70130,156 +150543,574 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:11,612", - "created": 1609969751.6122367, + "asctime": "2021-01-11 07:30:36,612", + "created": 1610346636.6128144, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 438, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 612.236738204956, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 612.8144264221191, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 312.5789165496826, + "relativeCreated": 1262.3560428619385, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:11,612", - "created": 1609969751.612536, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "test_helpers", - "msecs": 612.5359535217285, - "msg": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 312.8781318664551, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:11,612", - "created": 1609969751.6127408, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1c", - "module": "test_helpers", - "msecs": 612.7407550811768, - "msg": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1c", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 313.0829334259033, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:" + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-01-06 22:49:11,612", - "created": 1609969751.6129029, + "asctime": "2021-01-11 07:30:36,613", + "created": 1610346636.6137276, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 613.7275695800781, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1263.2691860198975, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:36,622", + "created": 1610346636.6221714, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 622.1714019775391, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1271.7130184173584, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,622", + "created": 1610346636.62247, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 622.4699020385742, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1272.0115184783936, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:36,622", + "created": 1610346636.6226416, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 622.6415634155273, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1272.1831798553467, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,622", + "created": 1610346636.6228495, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 622.8494644165039, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1272.3910808563232, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:36,622", + "created": 1610346636.622995, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 622.9948997497559, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1272.5365161895752, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,623", + "created": 1610346636.623205, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 623.2049465179443, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1272.7465629577637, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:36,623", + "created": 1610346636.623342, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 623.3420372009277, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1272.883653640747, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,623", + "created": 1610346636.6235752, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 623.5752105712891, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1273.1168270111084, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:36,623", + "created": 1610346636.62371, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 623.7099170684814, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1273.2515335083008, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,623", + "created": 1610346636.6238844, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 623.8844394683838, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1273.4260559082031, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:36,624", + "created": 1610346636.624033, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 624.0329742431641, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1273.5745906829834, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "comm-client:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1c 3a 3e" + ], + "asctime": "2021-01-11 07:30:36,624", + "created": 1610346636.6243227, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1c 3a 3e", + "module": "__init__", + "msecs": 624.3226528167725, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1273.8642692565918, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "comm-server:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1c 3a 3e" + ], + "asctime": "2021-01-11 07:30:36,628", + "created": 1610346636.6287081, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1c 3a 3e", + "module": "__init__", + "msecs": 628.7081241607666, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1278.249740600586, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,629", + "created": 1610346636.6290972, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 629.0972232818604, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1278.6388397216797, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:36,629", + "created": 1610346636.6292264, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 629.2264461517334, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1278.7680625915527, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "STP:", + "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1c" + ], + "asctime": "2021-01-11 07:30:36,629", + "created": 1610346636.6294658, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1c", + "module": "stp", + "msecs": 629.4658184051514, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1279.0074348449707, + "stack_info": null, + "thread": 140562481579776, + "threadName": "Thread-3" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:36,629", + "created": 1610346636.6297042, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 432, - "message": "SP server: RX <- Received message has a wrong checksum. Message will be ignored.", + "levelname": "ERROR", + "levelno": 40, + "lineno": 453, + "message": "prot-server: Received message has an invalid checksum. Message will be ignored.", "module": "__init__", - "msecs": 612.9028797149658, - "msg": "%s RX <- Received message has a wrong checksum. Message will be ignored.", + "msecs": 629.7042369842529, + "msg": "%s Received message has an invalid checksum. Message will be ignored.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 313.2450580596924, + "relativeCreated": 1279.2458534240723, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562481579776, + "threadName": "Thread-3" }, { "args": [ - "SP server:", - "0.25", + "prot-server:", + "0.28705533596837945", "17", "34" ], - "asctime": "2021-01-06 22:49:11,913", - "created": 1609969751.9139729, + "asctime": "2021-01-11 07:30:36,914", + "created": 1610346636.9143264, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP server: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 34) not in buffer.", + "lineno": 668, + "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 913.9728546142578, + "msecs": 914.3264293670654, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 614.3150329589844, + "relativeCreated": 1563.8680458068848, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 914.252758026123, + "msecs": 914.6370887756348, "msg": "Transfering a message client -> server", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 614.5949363708496, + "relativeCreated": 1564.178705215454, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0002799034118652344 + "time_consumption": 0.00031065940856933594 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:11,914", - "created": 1609969751.9148986, + "asctime": "2021-01-11 07:30:36,915", + "created": 1610346636.9153483, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -70296,8 +151127,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:11,914", - "created": 1609969751.9145534, + "asctime": "2021-01-11 07:30:36,915", + "created": 1610346636.9150262, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -70307,15 +151138,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 914.5534038543701, + "msecs": 915.0261878967285, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 614.8955821990967, + "relativeCreated": 1564.5678043365479, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -70324,8 +151155,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:11,914", - "created": 1609969751.914742, + "asctime": "2021-01-11 07:30:36,915", + "created": 1610346636.9151952, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -70335,37 +151166,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 914.7419929504395, + "msecs": 915.1952266693115, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 615.084171295166, + "relativeCreated": 1564.7368431091309, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 914.8986339569092, + "msecs": 915.3482913970947, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 615.2408123016357, + "relativeCreated": 1564.889907836914, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00015664100646972656 + "time_consumption": 0.00015306472778320312 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:11,915", - "created": 1609969751.9154265, + "asctime": "2021-01-11 07:30:36,915", + "created": 1610346636.9158885, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -70382,8 +151213,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:11,915", - "created": 1609969751.915129, + "asctime": "2021-01-11 07:30:36,915", + "created": 1610346636.9155736, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -70393,15 +151224,15 @@ "lineno": 22, "message": "Result (Checksum Error -> No message received by server): None ()", "module": "test", - "msecs": 915.1289463043213, + "msecs": 915.5735969543457, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 615.4711246490479, + "relativeCreated": 1565.115213394165, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -70410,8 +151241,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:11,915", - "created": 1609969751.9152856, + "asctime": "2021-01-11 07:30:36,915", + "created": 1610346636.9157443, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -70421,34 +151252,34 @@ "lineno": 26, "message": "Expectation (Checksum Error -> No message received by server): result = None ()", "module": "test", - "msecs": 915.285587310791, + "msecs": 915.7443046569824, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 615.6277656555176, + "relativeCreated": 1565.2859210968018, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 915.42649269104, + "msecs": 915.8885478973389, "msg": "Checksum Error -> No message received by server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 615.7686710357666, + "relativeCreated": 1565.4301643371582, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00014090538024902344 + "time_consumption": 0.0001442432403564453 }, { "args": [], - "asctime": "2021-01-06 22:49:12,218", - "created": 1609969752.2185135, + "asctime": "2021-01-11 07:30:37,217", + "created": 1610346637.2179925, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -70461,212 +151292,604 @@ "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:11,915", - "created": 1609969751.9156992, + "asctime": "2021-01-11 07:30:36,916", + "created": 1610346636.91624, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 438, + "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 915.6992435455322, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 916.2399768829346, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 616.0414218902588, + "relativeCreated": 1565.781593322754, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:11,916", - "created": 1609969751.9161437, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "module": "test_helpers", - "msecs": 916.1436557769775, - "msg": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 616.4858341217041, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:11,916", - "created": 1609969751.9164407, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "module": "test_helpers", - "msecs": 916.4407253265381, - "msg": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 616.7829036712646, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:36,917", + "created": 1610346636.91713, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 917.1299934387207, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1566.67160987854, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:36,925", + "created": 1610346636.9256516, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 925.6515502929688, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1575.193166732788, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,925", + "created": 1610346636.9259467, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 925.9467124938965, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1575.4883289337158, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:36,926", + "created": 1610346636.9261181, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 926.1181354522705, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1575.6597518920898, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,926", + "created": 1610346636.9263215, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 926.3215065002441, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1575.8631229400635, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:36,926", + "created": 1610346636.9264987, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 926.4986515045166, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1576.040267944336, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,926", + "created": 1610346636.926722, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 926.7220497131348, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1576.263666152954, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:36,926", + "created": 1610346636.9268718, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 926.8717765808105, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1576.4133930206299, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,927", + "created": 1610346636.927068, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 927.0679950714111, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1576.6096115112305, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:36,927", + "created": 1610346636.9272144, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 927.2143840789795, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1576.7560005187988, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,927", + "created": 1610346636.9273922, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 927.3922443389893, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1576.9338607788086, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:36,927", + "created": 1610346636.9275272, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 927.5271892547607, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1577.06880569458, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "comm-server:", + "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" + ], + "asctime": "2021-01-11 07:30:36,927", + "created": 1610346636.9278066, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", + "module": "__init__", + "msecs": 927.8066158294678, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1577.348232269287, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "comm-client:", + "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" + ], + "asctime": "2021-01-11 07:30:36,932", + "created": 1610346636.9322104, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", + "module": "__init__", + "msecs": 932.2104454040527, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1581.752061843872, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:36,932", + "created": 1610346636.9325569, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 932.5568675994873, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1582.0984840393066, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:36,932", + "created": 1610346636.932685, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 932.6848983764648, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1582.2265148162842, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "STP:", + "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f" + ], + "asctime": "2021-01-11 07:30:36,932", + "created": 1610346636.9329, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", + "module": "stp", + "msecs": 932.8999519348145, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1582.4415683746338, + "stack_info": null, + "thread": 140562267109120, + "threadName": "Thread-4" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: 17, data_id: 35", "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:11,916", - "created": 1609969751.9167247, + "asctime": "2021-01-11 07:30:36,933", + "created": 1610346636.9331937, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 438, + "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 916.724681854248, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 933.1936836242676, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 617.0668601989746, + "relativeCreated": 1582.735300064087, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562267109120, + "threadName": "Thread-4" }, { "args": [ - "SP client:", - "status: service or data unknown" + "prot-client:" ], - "asctime": "2021-01-06 22:49:11,916", - "created": 1609969751.9168937, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: service or data unknown", - "module": "__init__", - "msecs": 916.893720626831, - "msg": "%s RX <- Message has a peculiar status: %s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 617.2358989715576, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:" - ], - "asctime": "2021-01-06 22:49:11,917", - "created": 1609969751.917096, + "asctime": "2021-01-11 07:30:36,933", + "created": 1610346636.9333565, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 917.0958995819092, + "msecs": 933.356523513794, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 617.4380779266357, + "relativeCreated": 1582.8981399536133, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140562267109120, + "threadName": "Thread-4" }, { "args": [ - "SP server:", - "0.25", + "prot-server:", + "0.28705533596837945", "17", "35" ], - "asctime": "2021-01-06 22:49:12,218", - "created": 1609969752.2182424, + "asctime": "2021-01-11 07:30:37,217", + "created": 1610346637.2177029, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP server: TIMEOUT (0.25s): Requested data (service_id: 17; data_id: 35) not in buffer.", + "lineno": 668, + "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 218.24240684509277, + "msecs": 217.70286560058594, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 918.5845851898193, + "relativeCreated": 1867.2444820404053, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 218.51348876953125, + "msecs": 217.99254417419434, "msg": "Transfering a message server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 918.8556671142578, + "relativeCreated": 1867.5341606140137, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00027108192443847656 + "time_consumption": 0.00028967857360839844 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:12,219", - "created": 1609969752.2191584, + "asctime": "2021-01-11 07:30:37,218", + "created": 1610346637.2186444, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -70683,8 +151906,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:12,218", - "created": 1609969752.2188394, + "asctime": "2021-01-11 07:30:37,218", + "created": 1610346637.2183309, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -70694,15 +151917,15 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 218.8394069671631, + "msecs": 218.33086013793945, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 919.1815853118896, + "relativeCreated": 1867.8724765777588, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -70711,8 +151934,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:12,219", - "created": 1609969752.2190065, + "asctime": "2021-01-11 07:30:37,218", + "created": 1610346637.2184954, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -70722,37 +151945,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 219.00653839111328, + "msecs": 218.49536895751953, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 919.3487167358398, + "relativeCreated": 1868.0369853973389, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 219.15841102600098, + "msecs": 218.644380569458, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 919.5005893707275, + "relativeCreated": 1868.1859970092773, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001518726348876953 + "time_consumption": 0.00014901161193847656 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:12,219", - "created": 1609969752.2196836, + "asctime": "2021-01-11 07:30:37,219", + "created": 1610346637.2191448, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -70769,8 +151992,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:12,219", - "created": 1609969752.2194002, + "asctime": "2021-01-11 07:30:37,218", + "created": 1610346637.2188675, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -70780,15 +152003,15 @@ "lineno": 22, "message": "Result (Checksum Error -> No message received by client): None ()", "module": "test", - "msecs": 219.40016746520996, + "msecs": 218.86754035949707, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 919.7423458099365, + "relativeCreated": 1868.4091567993164, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -70797,8 +152020,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:12,219", - "created": 1609969752.2195444, + "asctime": "2021-01-11 07:30:37,219", + "created": 1610346637.2190087, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -70808,41 +152031,41 @@ "lineno": 26, "message": "Expectation (Checksum Error -> No message received by client): result = None ()", "module": "test", - "msecs": 219.5444107055664, + "msecs": 219.0086841583252, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 919.886589050293, + "relativeCreated": 1868.5503005981445, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 219.68364715576172, + "msecs": 219.1448211669922, "msg": "Checksum Error -> No message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 920.0258255004883, + "relativeCreated": 1868.6864376068115, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001392364501953125 + "time_consumption": 0.0001361370086669922 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.6124465465545654, - "time_finished": "2021-01-06 22:49:12,219", - "time_start": "2021-01-06 22:49:11,607" + "time_consumption": 0.960362434387207, + "time_finished": "2021-01-11 07:30:37,219", + "time_start": "2021-01-11 07:30:36,258" }, "_ZOW3ME0vEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:49:23,183", - "created": 1609969763.183357, + "asctime": "2021-01-11 07:30:47,956", + "created": 1610346647.9567723, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -70853,1323 +152076,2688 @@ "message": "_ZOW3ME0vEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 183.35700035095215, + "msecs": 956.7723274230957, "msg": "_ZOW3ME0vEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11883.699178695679, + "relativeCreated": 12606.313943862915, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:23,190", - "created": 1609969763.190738, + "asctime": "2021-01-11 07:30:47,965", + "created": 1610346647.9655805, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:23,183", - "created": 1609969763.1837723, + "asctime": "2021-01-11 07:30:47,957", + "created": 1610346647.9578264, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 183.77232551574707, + "msecs": 957.8263759613037, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11884.114503860474, + "relativeCreated": 12607.367992401123, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:23,183", - "created": 1609969763.1839733, + "asctime": "2021-01-11 07:30:47,958", + "created": 1610346647.9587057, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 183.9733123779297, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 958.7056636810303, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11884.315490722656, + "relativeCreated": 12608.24728012085, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:23,184", - "created": 1609969763.1841955, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 184.19551849365234, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11884.537696838379, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:23,184", - "created": 1609969763.1843543, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 184.35430526733398, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11884.69648361206, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:23,184", - "created": 1609969763.1845036, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 184.50355529785156, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11884.845733642578, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:23,184", - "created": 1609969763.1846504, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 184.65042114257812, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11884.992599487305, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:23,184", - "created": 1609969763.184824, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 184.82398986816406, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11885.16616821289, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:23,184", - "created": 1609969763.1849964, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 184.9963665008545, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11885.338544845581, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:23,185", - "created": 1609969763.1851683, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 185.16826629638672, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11885.510444641113, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:23,185", - "created": 1609969763.1853287, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 185.32872200012207, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11885.670900344849, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:23,185", - "created": 1609969763.1854696, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 185.4696273803711, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11885.811805725098, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:23,185", - "created": 1609969763.1856265, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 185.62650680541992, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11885.968685150146, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:23,185", - "created": 1609969763.1858227, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 185.8227252960205, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11886.164903640747, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:23,186", - "created": 1609969763.1864018, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 186.4018440246582, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11886.744022369385, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:23,186", - "created": 1609969763.1865702, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 186.5701675415039, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11886.91234588623, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:23,186", - "created": 1609969763.1867373, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 186.7372989654541, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11887.07947731018, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:23,186", - "created": 1609969763.186896, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 186.89608573913574, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11887.238264083862, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:23,187", - "created": 1609969763.1870441, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 187.0441436767578, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11887.386322021484, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:23,187", - "created": 1609969763.1871867, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 187.18671798706055, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11887.528896331787, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:23,187", - "created": 1609969763.1873286, + "asctime": "2021-01-11 07:30:47,958", + "created": 1610346647.9589336, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 187.32857704162598, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 958.9335918426514, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11887.670755386353, + "relativeCreated": 12608.47520828247, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:23,187", - "created": 1609969763.1876032, + "asctime": "2021-01-11 07:30:47,959", + "created": 1610346647.9592829, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 187.60323524475098, + "msecs": 959.2828750610352, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11887.945413589478, + "relativeCreated": 12608.824491500854, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:23,187", - "created": 1609969763.1877654, + "asctime": "2021-01-11 07:30:47,959", + "created": 1610346647.9595563, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 187.76535987854004, + "msecs": 959.5563411712646, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11888.107538223267, + "relativeCreated": 12609.097957611084, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:23,187", - "created": 1609969763.1879683, + "asctime": "2021-01-11 07:30:47,959", + "created": 1610346647.9597971, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 187.96825408935547, + "msecs": 959.7971439361572, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11888.310432434082, + "relativeCreated": 12609.338760375977, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:23,188", - "created": 1609969763.1881187, + "asctime": "2021-01-11 07:30:47,959", + "created": 1610346647.9599583, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 188.11869621276855, + "msecs": 959.9583148956299, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11888.460874557495, + "relativeCreated": 12609.49993133545, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:23,188", - "created": 1609969763.1882849, + "asctime": "2021-01-11 07:30:47,960", + "created": 1610346647.9601045, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 188.28487396240234, + "msecs": 960.1044654846191, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11888.627052307129, + "relativeCreated": 12609.646081924438, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:23,188", - "created": 1609969763.1884377, + "asctime": "2021-01-11 07:30:47,960", + "created": 1610346647.9602458, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 188.43770027160645, + "msecs": 960.2458477020264, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11888.779878616333, + "relativeCreated": 12609.787464141846, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:23,188", - "created": 1609969763.1885908, + "asctime": "2021-01-11 07:30:47,960", + "created": 1610346647.960415, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 188.59076499938965, + "msecs": 960.4148864746094, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11888.932943344116, + "relativeCreated": 12609.956502914429, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:23,188", - "created": 1609969763.1887605, + "asctime": "2021-01-11 07:30:47,960", + "created": 1610346647.9605942, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 188.76051902770996, + "msecs": 960.5941772460938, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11889.102697372437, + "relativeCreated": 12610.135793685913, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:23,188", - "created": 1609969763.188918, + "asctime": "2021-01-11 07:30:47,960", + "created": 1610346647.960751, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 188.9181137084961, + "msecs": 960.7510566711426, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11889.260292053223, + "relativeCreated": 12610.292673110962, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:23,189", - "created": 1609969763.1890717, + "asctime": "2021-01-11 07:30:47,960", + "created": 1610346647.9609041, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 189.0716552734375, + "msecs": 960.9041213989258, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11889.413833618164, + "relativeCreated": 12610.445737838745, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:23,189", - "created": 1609969763.1892095, + "asctime": "2021-01-11 07:30:47,961", + "created": 1610346647.9610415, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 189.2094612121582, + "msecs": 961.0414505004883, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11889.551639556885, + "relativeCreated": 12610.583066940308, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:23,189", - "created": 1609969763.1893642, + "asctime": "2021-01-11 07:30:47,961", + "created": 1610346647.9611974, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 189.36419486999512, + "msecs": 961.1973762512207, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11889.706373214722, + "relativeCreated": 12610.73899269104, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:23,189", - "created": 1609969763.1895278, + "asctime": "2021-01-11 07:30:47,961", + "created": 1610346647.9613712, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 189.5277500152588, + "msecs": 961.3711833953857, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11889.869928359985, + "relativeCreated": 12610.912799835205, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:23,189", - "created": 1609969763.1896737, + "asctime": "2021-01-11 07:30:47,961", + "created": 1610346647.9615412, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 189.67366218566895, + "msecs": 961.5411758422852, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11890.015840530396, + "relativeCreated": 12611.082792282104, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:23,189", - "created": 1609969763.1898518, + "asctime": "2021-01-11 07:30:47,961", + "created": 1610346647.9617057, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 189.8517608642578, + "msecs": 961.7056846618652, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11890.193939208984, + "relativeCreated": 12611.247301101685, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:23,190", - "created": 1609969763.19001, + "asctime": "2021-01-11 07:30:47,961", + "created": 1610346647.9618714, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 190.01007080078125, + "msecs": 961.8713855743408, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11890.352249145508, + "relativeCreated": 12611.41300201416, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:23,190", - "created": 1609969763.1901796, + "asctime": "2021-01-11 07:30:47,962", + "created": 1610346647.9620302, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 190.17958641052246, + "msecs": 962.0301723480225, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11890.521764755249, + "relativeCreated": 12611.571788787842, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:23,190", - "created": 1609969763.1903253, + "asctime": "2021-01-11 07:30:47,962", + "created": 1610346647.9621704, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 190.32526016235352, + "msecs": 962.1703624725342, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11890.66743850708, + "relativeCreated": 12611.711978912354, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:23,190", - "created": 1609969763.190467, + "asctime": "2021-01-11 07:30:47,962", + "created": 1610346647.9623072, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 190.46688079833984, + "msecs": 962.3072147369385, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11890.809059143066, + "relativeCreated": 12611.848831176758, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:23,190", - "created": 1609969763.1906052, + "asctime": "2021-01-11 07:30:47,962", + "created": 1610346647.962448, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 190.60516357421875, + "msecs": 962.4478816986084, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11890.947341918945, + "relativeCreated": 12611.989498138428, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:47,962", + "created": 1610346647.9627306, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 962.7306461334229, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12612.272262573242, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:47,962", + "created": 1610346647.962888, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 962.8880023956299, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12612.42961883545, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:47,963", + "created": 1610346647.9631014, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 963.1013870239258, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12612.643003463745, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:47,963", + "created": 1610346647.9632607, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 963.2606506347656, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12612.802267074585, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:47,963", + "created": 1610346647.963405, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 963.4048938751221, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12612.946510314941, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:47,963", + "created": 1610346647.963555, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 963.555097579956, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12613.096714019775, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:47,963", + "created": 1610346647.9637182, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 963.7181758880615, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12613.25979232788, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:47,963", + "created": 1610346647.9638824, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 963.8824462890625, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12613.424062728882, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:47,964", + "created": 1610346647.9640365, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 964.0364646911621, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12613.578081130981, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:47,964", + "created": 1610346647.9641864, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 964.186429977417, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12613.728046417236, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:47,964", + "created": 1610346647.9643216, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 964.3216133117676, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12613.863229751587, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:47,964", + "created": 1610346647.964471, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 964.4711017608643, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12614.012718200684, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:47,964", + "created": 1610346647.9646325, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 964.632511138916, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12614.174127578735, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:47,964", + "created": 1610346647.9647753, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 964.7753238677979, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12614.316940307617, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:47,964", + "created": 1610346647.9649205, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 964.9205207824707, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12614.46213722229, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:47,965", + "created": 1610346647.9650807, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 965.080738067627, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12614.622354507446, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:47,965", + "created": 1610346647.965229, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 965.2290344238281, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12614.770650863647, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:47,965", + "created": 1610346647.965367, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 965.3670787811279, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12614.908695220947, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:47,965", + "created": 1610346647.9654894, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 965.489387512207, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12615.031003952026, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:47,965", + "created": 1610346647.965536, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 965.5361175537109, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12615.07773399353, + "stack_info": null, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 190.73796272277832, + "msecs": 965.5804634094238, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11891.080141067505, + "relativeCreated": 12615.122079849243, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001327991485595703 + "time_consumption": 4.4345855712890625e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:23,191", - "created": 1609969763.1911926, + "asctime": "2021-01-11 07:30:48,309", + "created": 1610346648.3094022, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:47,965", + "created": 1610346647.9656725, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 965.672492980957, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12615.214109420776, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:47,965", + "created": 1610346647.9657164, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 965.7163619995117, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12615.257978439331, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:47,965", + "created": 1610346647.9657595, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 965.7595157623291, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12615.301132202148, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:47,965", + "created": 1610346647.9658434, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 965.8434391021729, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12615.385055541992, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:47,966", + "created": 1610346647.9660242, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 966.0241603851318, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12615.565776824951, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:47,966", + "created": 1610346647.9660807, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 966.0806655883789, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12615.622282028198, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:47,966", + "created": 1610346647.9661307, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 966.1307334899902, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12615.67234992981, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:47,966", + "created": 1610346647.9662917, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 966.2916660308838, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12615.833282470703, + "stack_info": null, + "thread": 140561679881984, + "threadName": "Thread-17" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:47,974", + "created": 1610346647.9745314, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 974.5314121246338, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12624.073028564453, + "stack_info": null, + "thread": 140561679881984, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,974", + "created": 1610346647.974679, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 974.6789932250977, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12624.220609664917, + "stack_info": null, + "thread": 140561679881984, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:47,974", + "created": 1610346647.974731, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 974.7309684753418, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12624.272584915161, + "stack_info": null, + "thread": 140561679881984, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,974", + "created": 1610346647.974793, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 974.7929573059082, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12624.334573745728, + "stack_info": null, + "thread": 140561679881984, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,974", + "created": 1610346647.974837, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 974.837064743042, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12624.378681182861, + "stack_info": null, + "thread": 140561679881984, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,974", + "created": 1610346647.9749002, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 974.9002456665039, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12624.441862106323, + "stack_info": null, + "thread": 140561679881984, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,974", + "created": 1610346647.9749417, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 974.9417304992676, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12624.483346939087, + "stack_info": null, + "thread": 140561679881984, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,974", + "created": 1610346647.9749982, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 974.9982357025146, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12624.539852142334, + "stack_info": null, + "thread": 140561679881984, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,975", + "created": 1610346647.9750388, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 975.0387668609619, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12624.580383300781, + "stack_info": null, + "thread": 140561679881984, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,975", + "created": 1610346647.9750934, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 975.0933647155762, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12624.634981155396, + "stack_info": null, + "thread": 140561679881984, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,975", + "created": 1610346647.9751344, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 975.1343727111816, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12624.675989151001, + "stack_info": null, + "thread": 140561679881984, + "threadName": "Thread-17" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:47,975", + "created": 1610346647.9752166, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 975.2166271209717, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12624.758243560791, + "stack_info": null, + "thread": 140561679881984, + "threadName": "Thread-17" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:47,976", + "created": 1610346647.9761658, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 976.165771484375, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12625.707387924194, + "stack_info": null, + "thread": 140561679881984, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,976", + "created": 1610346647.976306, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 976.3059616088867, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12625.847578048706, + "stack_info": null, + "thread": 140561679881984, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:47,976", + "created": 1610346647.9763618, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 976.3617515563965, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12625.903367996216, + "stack_info": null, + "thread": 140561679881984, + "threadName": "Thread-17" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" + ], + "asctime": "2021-01-11 07:30:47,976", + "created": 1610346647.9764433, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", + "module": "stp", + "msecs": 976.4432907104492, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12625.984907150269, + "stack_info": null, + "thread": 140561679881984, + "threadName": "Thread-17" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:47,976", + "created": 1610346647.9765775, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 976.5775203704834, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12626.119136810303, + "stack_info": null, + "thread": 140561679881984, + "threadName": "Thread-17" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:47,976", + "created": 1610346647.9766376, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 976.637601852417, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12626.179218292236, + "stack_info": null, + "thread": 140561679881984, + "threadName": "Thread-17" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:47,976", + "created": 1610346647.976723, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 976.7229557037354, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12626.264572143555, + "stack_info": null, + "thread": 140561679881984, + "threadName": "Thread-17" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:47,977", + "created": 1610346647.9770024, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 977.0023822784424, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12626.543998718262, + "stack_info": null, + "thread": 140561193367296, + "threadName": "Thread-18" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:47,985", + "created": 1610346647.9852712, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 985.2712154388428, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12634.812831878662, + "stack_info": null, + "thread": 140561193367296, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,985", + "created": 1610346647.9854674, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 985.4674339294434, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12635.009050369263, + "stack_info": null, + "thread": 140561193367296, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:47,985", + "created": 1610346647.9855616, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 985.5616092681885, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12635.103225708008, + "stack_info": null, + "thread": 140561193367296, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,985", + "created": 1610346647.9856687, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 985.6686592102051, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12635.210275650024, + "stack_info": null, + "thread": 140561193367296, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,985", + "created": 1610346647.9857447, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 985.7447147369385, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12635.286331176758, + "stack_info": null, + "thread": 140561193367296, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,985", + "created": 1610346647.9858534, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 985.8534336090088, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12635.395050048828, + "stack_info": null, + "thread": 140561193367296, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,985", + "created": 1610346647.9859428, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 985.9428405761719, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12635.484457015991, + "stack_info": null, + "thread": 140561193367296, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,986", + "created": 1610346647.9860404, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 986.0403537750244, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12635.581970214844, + "stack_info": null, + "thread": 140561193367296, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,986", + "created": 1610346647.9861157, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 986.1156940460205, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12635.65731048584, + "stack_info": null, + "thread": 140561193367296, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,986", + "created": 1610346647.986208, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 986.2079620361328, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12635.749578475952, + "stack_info": null, + "thread": 140561193367296, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,986", + "created": 1610346647.9862862, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 986.2861633300781, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12635.827779769897, + "stack_info": null, + "thread": 140561193367296, + "threadName": "Thread-18" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:47,986", + "created": 1610346647.9864225, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 986.4225387573242, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12635.964155197144, + "stack_info": null, + "thread": 140561193367296, + "threadName": "Thread-18" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:47,987", + "created": 1610346647.9874573, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 987.457275390625, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12636.998891830444, + "stack_info": null, + "thread": 140561193367296, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,987", + "created": 1610346647.9876926, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 987.6925945281982, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12637.234210968018, + "stack_info": null, + "thread": 140561193367296, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:47,987", + "created": 1610346647.9877875, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 987.7874851226807, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12637.3291015625, + "stack_info": null, + "thread": 140561193367296, + "threadName": "Thread-18" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:47,987", + "created": 1610346647.9879258, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 987.9257678985596, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12637.467384338379, + "stack_info": null, + "thread": 140561193367296, + "threadName": "Thread-18" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:47,988", + "created": 1610346647.988144, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 988.1439208984375, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12637.685537338257, + "stack_info": null, + "thread": 140561193367296, + "threadName": "Thread-18" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:47,988", + "created": 1610346647.9882445, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 988.2445335388184, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12637.786149978638, + "stack_info": null, + "thread": 140561193367296, + "threadName": "Thread-18" + } + ], + "msecs": 309.4022274017334, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12958.943843841553, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.32115769386291504 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:48,310", + "created": 1610346648.3101563, "exc_info": null, "exc_text": null, "filename": "test_communication.py", "funcName": "add_service_existing_sid", "levelname": "DEBUG", "levelno": 10, - "lineno": 338, + "lineno": 334, "message": "Adding a service with an already registered request SID", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", 10, 18 ], - "asctime": "2021-01-06 22:49:23,191", - "created": 1609969763.191046, + "asctime": "2021-01-11 07:30:48,309", + "created": 1610346648.3099697, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "ERROR", "levelno": 40, - "lineno": 551, - "message": "SP server: Service with Request-SID=10 and Response-SID=18 not added, because request SID is already registered", + "lineno": 568, + "message": "prot-server: Service with Request-SID=10 and Response-SID=18 not added, because request SID is already registered", "module": "__init__", - "msecs": 191.04599952697754, + "msecs": 309.9696636199951, "msg": "%s Service with Request-SID=%d and Response-SID=%d not added, because request SID is already registered", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11891.388177871704, + "relativeCreated": 12959.511280059814, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 191.192626953125, + "msecs": 310.15634536743164, "msg": "Adding a service with an already registered request SID", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11891.534805297852, + "relativeCreated": 12959.697961807251, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00014662742614746094 + "time_consumption": 0.00018668174743652344 }, { "args": [], - "asctime": "2021-01-06 22:49:23,191", - "created": 1609969763.1914117, + "asctime": "2021-01-11 07:30:48,310", + "created": 1610346648.3104105, "exc_info": null, "exc_text": null, "filename": "test_communication.py", "funcName": "add_service_existing_sid", "levelname": "INFO", "levelno": 20, - "lineno": 339, + "lineno": 335, "message": "Expected Exception RequestSidExistsError was triggered", "module": "test_communication", "moduleLogger": [], - "msecs": 191.41173362731934, + "msecs": 310.4104995727539, "msg": "Expected Exception RequestSidExistsError was triggered", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11891.753911972046, + "relativeCreated": 12959.952116012573, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-06 22:49:23,191", - "created": 1609969763.1917787, + "asctime": "2021-01-11 07:30:48,310", + "created": 1610346648.3108952, "exc_info": null, "exc_text": null, "filename": "test_communication.py", "funcName": "add_service_existing_sid", "levelname": "DEBUG", "levelno": 10, - "lineno": 347, + "lineno": 343, "message": "Adding a service with an already registered response SID", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", 17, 11 ], - "asctime": "2021-01-06 22:49:23,191", - "created": 1609969763.191626, + "asctime": "2021-01-11 07:30:48,310", + "created": 1610346648.3107028, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "ERROR", "levelno": 40, - "lineno": 554, - "message": "SP server: Service with Request-SID=17 and Response-SID=11 not added, because response SID is already registered", + "lineno": 571, + "message": "prot-server: Service with Request-SID=17 and Response-SID=11 not added, because response SID is already registered", "module": "__init__", - "msecs": 191.62607192993164, + "msecs": 310.7028007507324, "msg": "%s Service with Request-SID=%d and Response-SID=%d not added, because response SID is already registered", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11891.968250274658, + "relativeCreated": 12960.244417190552, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 191.77865982055664, + "msecs": 310.8952045440674, "msg": "Adding a service with an already registered response SID", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11892.120838165283, + "relativeCreated": 12960.436820983887, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.000152587890625 + "time_consumption": 0.00019240379333496094 }, { "args": [], - "asctime": "2021-01-06 22:49:23,191", - "created": 1609969763.1919713, + "asctime": "2021-01-11 07:30:48,311", + "created": 1610346648.311097, "exc_info": null, "exc_text": null, "filename": "test_communication.py", "funcName": "add_service_existing_sid", "levelname": "INFO", "levelno": 20, - "lineno": 348, + "lineno": 344, "message": "Expected Exception ResponseSidExistsError was triggered", "module": "test_communication", "moduleLogger": [], - "msecs": 191.9713020324707, + "msecs": 311.0969066619873, "msg": "Expected Exception ResponseSidExistsError was triggered", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11892.313480377197, + "relativeCreated": 12960.638523101807, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", "time_consumption": 0.0 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.008614301681518555, - "time_finished": "2021-01-06 22:49:23,191", - "time_start": "2021-01-06 22:49:23,183" + "time_consumption": 0.3543245792388916, + "time_finished": "2021-01-11 07:30:48,311", + "time_start": "2021-01-11 07:30:47,956" }, "_aA508E4gEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-06 22:49:24,252", - "created": 1609969764.2523735, + "asctime": "2021-01-11 07:30:52,113", + "created": 1610346652.1135402, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -72180,1873 +154768,2522 @@ "message": "_aA508E4gEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 252.37345695495605, + "msecs": 113.5401725769043, "msg": "_aA508E4gEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12952.715635299683, + "relativeCreated": 16763.081789016724, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:24,258", - "created": 1609969764.2582674, + "asctime": "2021-01-11 07:30:52,122", + "created": 1610346652.1222117, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:24,252", - "created": 1609969764.252782, + "asctime": "2021-01-11 07:30:52,115", + "created": 1610346652.1154773, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 252.78210639953613, + "msecs": 115.47732353210449, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12953.124284744263, + "relativeCreated": 16765.018939971924, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:24,252", - "created": 1609969764.2529802, + "asctime": "2021-01-11 07:30:52,116", + "created": 1610346652.1163585, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 252.98023223876953, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 116.35851860046387, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12953.322410583496, + "relativeCreated": 16765.900135040283, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:24,253", - "created": 1609969764.2531993, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 253.19933891296387, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12953.54151725769, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:24,253", - "created": 1609969764.2533555, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 253.3555030822754, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12953.697681427002, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:24,253", - "created": 1609969764.2535017, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 253.50165367126465, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12953.843832015991, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:24,253", - "created": 1609969764.253648, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 253.648042678833, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12953.99022102356, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:24,253", - "created": 1609969764.2538333, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 253.83329391479492, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12954.175472259521, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:24,253", - "created": 1609969764.2539983, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 253.9982795715332, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12954.34045791626, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:24,254", - "created": 1609969764.2541542, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 254.15420532226562, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12954.496383666992, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:24,254", - "created": 1609969764.2543097, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 254.30965423583984, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12954.651832580566, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:24,254", - "created": 1609969764.2544491, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 254.44912910461426, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12954.79130744934, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:24,254", - "created": 1609969764.254604, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 254.60410118103027, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12954.946279525757, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:24,254", - "created": 1609969764.2547843, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 254.78434562683105, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12955.126523971558, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:24,254", - "created": 1609969764.254934, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 254.93407249450684, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12955.276250839233, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:24,255", - "created": 1609969764.2550838, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 255.08379936218262, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12955.42597770691, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:24,255", - "created": 1609969764.2552369, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 255.23686408996582, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12955.579042434692, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:24,255", - "created": 1609969764.2553856, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 255.3856372833252, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12955.727815628052, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:24,255", - "created": 1609969764.255529, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 255.52892684936523, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12955.871105194092, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:24,255", - "created": 1609969764.2556686, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 255.66864013671875, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12956.010818481445, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:24,255", - "created": 1609969764.2558067, + "asctime": "2021-01-11 07:30:52,116", + "created": 1610346652.1165814, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 255.80668449401855, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 116.58143997192383, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12956.148862838745, + "relativeCreated": 16766.123056411743, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:24,256", - "created": 1609969764.2561042, + "asctime": "2021-01-11 07:30:52,116", + "created": 1610346652.1169298, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 256.1042308807373, + "msecs": 116.92976951599121, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12956.446409225464, + "relativeCreated": 16766.47138595581, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:24,256", - "created": 1609969764.2562652, + "asctime": "2021-01-11 07:30:52,117", + "created": 1610346652.117108, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 256.26516342163086, + "msecs": 117.10810661315918, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12956.607341766357, + "relativeCreated": 16766.64972305298, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:24,256", - "created": 1609969764.2564905, + "asctime": "2021-01-11 07:30:52,117", + "created": 1610346652.1173522, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 256.49046897888184, + "msecs": 117.35224723815918, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12956.832647323608, + "relativeCreated": 16766.89386367798, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:24,256", - "created": 1609969764.2566512, + "asctime": "2021-01-11 07:30:52,117", + "created": 1610346652.1175513, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 256.6511631011963, + "msecs": 117.55132675170898, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12956.993341445923, + "relativeCreated": 16767.09294319153, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:24,256", - "created": 1609969764.2567956, + "asctime": "2021-01-11 07:30:52,117", + "created": 1610346652.117704, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 256.79564476013184, + "msecs": 117.70391464233398, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12957.137823104858, + "relativeCreated": 16767.245531082153, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:24,256", - "created": 1609969764.2569377, + "asctime": "2021-01-11 07:30:52,117", + "created": 1610346652.1178455, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 256.93774223327637, + "msecs": 117.84553527832031, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12957.279920578003, + "relativeCreated": 16767.38715171814, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:24,257", - "created": 1609969764.2570984, + "asctime": "2021-01-11 07:30:52,118", + "created": 1610346652.1180055, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 257.0984363555908, + "msecs": 118.00551414489746, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12957.440614700317, + "relativeCreated": 16767.547130584717, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:24,257", - "created": 1609969764.2572544, + "asctime": "2021-01-11 07:30:52,118", + "created": 1610346652.118167, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 257.25436210632324, + "msecs": 118.16692352294922, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12957.59654045105, + "relativeCreated": 16767.70853996277, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:24,257", - "created": 1609969764.25741, + "asctime": "2021-01-11 07:30:52,118", + "created": 1610346652.118761, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 257.41004943847656, + "msecs": 118.76106262207031, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12957.752227783203, + "relativeCreated": 16768.30267906189, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:24,257", - "created": 1609969764.257574, + "asctime": "2021-01-11 07:30:52,118", + "created": 1610346652.1189313, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 257.57408142089844, + "msecs": 118.93129348754883, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12957.916259765625, + "relativeCreated": 16768.472909927368, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:24,257", - "created": 1609969764.2577116, + "asctime": "2021-01-11 07:30:52,119", + "created": 1610346652.1190739, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 257.71164894104004, + "msecs": 119.07386779785156, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12958.053827285767, + "relativeCreated": 16768.61548423767, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:24,257", - "created": 1609969764.2578418, + "asctime": "2021-01-11 07:30:52,119", + "created": 1610346652.1192427, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 257.8418254852295, + "msecs": 119.24266815185547, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12958.184003829956, + "relativeCreated": 16768.784284591675, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:24,257", - "created": 1609969764.257895, + "asctime": "2021-01-11 07:30:52,119", + "created": 1610346652.1194222, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 257.89499282836914, + "msecs": 119.42219734191895, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12958.237171173096, + "relativeCreated": 16768.96381378174, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:24,257", - "created": 1609969764.2579443, + "asctime": "2021-01-11 07:30:52,119", + "created": 1610346652.1195734, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 257.94434547424316, + "msecs": 119.57335472106934, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12958.28652381897, + "relativeCreated": 16769.11497116089, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:24,257", - "created": 1609969764.2579918, + "asctime": "2021-01-11 07:30:52,119", + "created": 1610346652.1197267, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 257.9917907714844, + "msecs": 119.72665786743164, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12958.333969116211, + "relativeCreated": 16769.26827430725, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:24,258", - "created": 1609969764.2580404, + "asctime": "2021-01-11 07:30:52,119", + "created": 1610346652.1199026, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 258.0404281616211, + "msecs": 119.9026107788086, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12958.382606506348, + "relativeCreated": 16769.444227218628, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:24,258", - "created": 1609969764.2580895, + "asctime": "2021-01-11 07:30:52,120", + "created": 1610346652.1200554, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 258.089542388916, + "msecs": 120.0554370880127, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12958.431720733643, + "relativeCreated": 16769.597053527832, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:24,258", - "created": 1609969764.2581344, + "asctime": "2021-01-11 07:30:52,120", + "created": 1610346652.1201956, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 258.1343650817871, + "msecs": 120.19562721252441, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12958.476543426514, + "relativeCreated": 16769.737243652344, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:24,258", - "created": 1609969764.2581818, + "asctime": "2021-01-11 07:30:52,120", + "created": 1610346652.1203332, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 258.1818103790283, + "msecs": 120.33319473266602, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12958.523988723755, + "relativeCreated": 16769.874811172485, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:24,258", - "created": 1609969764.2582257, + "asctime": "2021-01-11 07:30:52,120", + "created": 1610346652.120485, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 258.225679397583, + "msecs": 120.48506736755371, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12958.56785774231, + "relativeCreated": 16770.026683807373, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:52,120", + "created": 1610346652.1207693, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 120.76926231384277, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16770.310878753662, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:52,120", + "created": 1610346652.1209264, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 120.9263801574707, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16770.46799659729, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:52,121", + "created": 1610346652.121124, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 121.1240291595459, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16770.665645599365, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:52,121", + "created": 1610346652.1212945, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 121.29449844360352, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16770.836114883423, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:52,121", + "created": 1610346652.1214728, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 121.47283554077148, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16771.01445198059, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:52,121", + "created": 1610346652.121518, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 121.51789665222168, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16771.05951309204, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:52,121", + "created": 1610346652.1215641, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 121.56414985656738, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16771.105766296387, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:52,121", + "created": 1610346652.1216154, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 121.61540985107422, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16771.157026290894, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:52,121", + "created": 1610346652.1216626, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 121.66261672973633, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16771.204233169556, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:52,121", + "created": 1610346652.1217124, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 121.71244621276855, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16771.254062652588, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:52,121", + "created": 1610346652.121754, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 121.75393104553223, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16771.29554748535, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:52,121", + "created": 1610346652.121803, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 121.80304527282715, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16771.344661712646, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:52,121", + "created": 1610346652.1218536, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 121.85359001159668, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16771.395206451416, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:52,121", + "created": 1610346652.121898, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 121.89793586730957, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16771.43955230713, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:52,121", + "created": 1610346652.1219435, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 121.94347381591797, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16771.485090255737, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:52,121", + "created": 1610346652.121991, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 121.99091911315918, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16771.53253555298, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:52,122", + "created": 1610346652.122039, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 122.0390796661377, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16771.580696105957, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:52,122", + "created": 1610346652.1220818, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 122.08175659179688, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16771.623373031616, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:52,122", + "created": 1610346652.122124, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 122.12395668029785, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16771.665573120117, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:52,122", + "created": 1610346652.1221688, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 122.16877937316895, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16771.71039581299, + "stack_info": null, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 258.2674026489258, + "msecs": 122.21169471740723, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12958.609580993652, + "relativeCreated": 16771.753311157227, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 4.172325134277344e-05 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,258", - "created": 1609969764.2584639, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,258", - "created": 1609969764.2583675, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client connection status): False ()", - "module": "test", - "msecs": 258.36753845214844, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12958.709716796875, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "Client connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,258", - "created": 1609969764.258414, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client connection status): result = False ()", - "module": "test", - "msecs": 258.41403007507324, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12958.7562084198, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - } - ], - "msecs": 258.46385955810547, - "msg": "Client connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12958.806037902832, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread", - "time_consumption": 4.982948303222656e-05 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,258", - "created": 1609969764.258624, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,258", - "created": 1609969764.258537, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server connection status): False ()", - "module": "test", - "msecs": 258.53705406188965, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12958.879232406616, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "Server connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,258", - "created": 1609969764.2585807, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server connection status): result = False ()", - "module": "test", - "msecs": 258.58068466186523, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12958.922863006592, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - } - ], - "msecs": 258.6240768432617, - "msg": "Server connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12958.966255187988, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread", - "time_consumption": 4.3392181396484375e-05 + "time_consumption": 4.291534423828125e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:24,259", - "created": 1609969764.2595828, + "asctime": "2021-01-11 07:30:52,465", + "created": 1610346652.4656534, "exc_info": null, "exc_text": null, - "filename": "test_add_methods.py", - "funcName": "connection_established", + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 11, - "message": "Connecting Client", - "module": "test_add_methods", + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP client:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:24,258", - "created": 1609969764.2586918, + "asctime": "2021-01-11 07:30:52,122", + "created": 1610346652.1223133, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 122.31326103210449, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16771.854877471924, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:52,122", + "created": 1610346652.122358, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 122.35808372497559, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16771.899700164795, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:52,122", + "created": 1610346652.1224089, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 258.69178771972656, + "msecs": 122.40886688232422, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12959.033966064453, + "relativeCreated": 16771.950483322144, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: channel name request, data_id: name", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:24,258", - "created": 1609969764.2587562, + "asctime": "2021-01-11 07:30:52,122", + "created": 1610346652.1224864, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 258.756160736084, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 122.48635292053223, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12959.09833908081, + "relativeCreated": 16772.02796936035, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,258", - "created": 1609969764.2588859, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", - "module": "test_helpers", - "msecs": 258.88586044311523, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12959.228038787842, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,258", - "created": 1609969764.2589734, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", - "module": "test_helpers", - "msecs": 258.9733600616455, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12959.315538406372, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-server:" + ], + "asctime": "2021-01-11 07:30:52,122", + "created": 1610346652.1226673, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 122.66731262207031, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16772.20892906189, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:52,122", + "created": 1610346652.1227133, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 122.71332740783691, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16772.254943847656, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:52,122", + "created": 1610346652.122753, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 122.75290489196777, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16772.294521331787, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:52,122", + "created": 1610346652.1229606, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 122.96056747436523, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16772.502183914185, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:52,131", + "created": 1610346652.131126, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 131.12592697143555, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16780.667543411255, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,131", + "created": 1610346652.1312475, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 131.24752044677734, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16780.789136886597, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:52,131", + "created": 1610346652.1313143, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 131.31427764892578, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16780.855894088745, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,131", + "created": 1610346652.1313777, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 131.3776969909668, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16780.919313430786, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,131", + "created": 1610346652.1314247, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 131.4246654510498, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16780.96628189087, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,131", + "created": 1610346652.1314917, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 131.49166107177734, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16781.033277511597, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,131", + "created": 1610346652.1315334, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 131.53338432312012, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16781.07500076294, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,131", + "created": 1610346652.1315894, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 131.58941268920898, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16781.13102912903, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,131", + "created": 1610346652.1316304, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 131.63042068481445, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16781.172037124634, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,131", + "created": 1610346652.131684, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 131.6840648651123, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16781.22568130493, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,131", + "created": 1610346652.131725, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 131.72507286071777, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16781.266689300537, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:52,131", + "created": 1610346652.1318045, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 131.8044662475586, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16781.346082687378, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:52,132", + "created": 1610346652.1327941, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 132.79414176940918, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16782.33575820923, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,132", + "created": 1610346652.1329918, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 132.99179077148438, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16782.533407211304, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:52,133", + "created": 1610346652.1330938, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 133.09383392333984, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16782.63545036316, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" + ], + "asctime": "2021-01-11 07:30:52,133", + "created": 1610346652.1332166, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", + "module": "stp", + "msecs": 133.21661949157715, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16782.758235931396, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: channel name request, data_id: name", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:24,259", - "created": 1609969764.2590663, + "asctime": "2021-01-11 07:30:52,133", + "created": 1610346652.1334226, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 259.0663433074951, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 133.4226131439209, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12959.408521652222, + "relativeCreated": 16782.96422958374, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560622925568, + "threadName": "Thread-29" }, { "args": [ - "SP server:", + "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-06 22:49:24,259", - "created": 1609969764.2591236, + "asctime": "2021-01-11 07:30:52,133", + "created": 1610346652.1335442, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __channel_name_request__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 259.1235637664795, - "msg": "%s RX <- Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12959.465742111206, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:24,259", - "created": 1609969764.25919, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 259.1900825500488, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12959.532260894775, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,259", - "created": 1609969764.259307, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "module": "test_helpers", - "msecs": 259.3069076538086, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12959.649085998535, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,259", - "created": 1609969764.259386, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "module": "test_helpers", - "msecs": 259.3860626220703, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12959.728240966797, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:24,259", - "created": 1609969764.2594693, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 259.46927070617676, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12959.811449050903, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "__channel_name_response__" - ], - "asctime": "2021-01-06 22:49:24,259", - "created": 1609969764.259528, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 259.52792167663574, + "msecs": 133.5442066192627, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12959.870100021362, + "relativeCreated": 16783.085823059082, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - } - ], - "msecs": 259.5827579498291, - "msg": "Connecting Client", - "name": "__tLogger__", - "pathname": "src/tests/test_add_methods.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12959.924936294556, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread", - "time_consumption": 5.4836273193359375e-05 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-01-06 22:49:24,259", - "created": 1609969764.2597568, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client connection status", - "True", - "" - ], - "asctime": "2021-01-06 22:49:24,259", - "created": 1609969764.259666, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client connection status): True ()", - "module": "test", - "msecs": 259.66596603393555, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12960.008144378662, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560622925568, + "threadName": "Thread-29" }, { "args": [ - "Client connection status", - "True", - "" + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" ], - "asctime": "2021-01-06 22:49:24,259", - "created": 1609969764.2597122, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client connection status): result = True ()", - "module": "test", - "msecs": 259.71221923828125, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12960.054397583008, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - } - ], - "msecs": 259.75680351257324, - "msg": "Client connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12960.0989818573, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread", - "time_consumption": 4.458427429199219e-05 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,259", - "created": 1609969764.2599204, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,259", - "created": 1609969764.259829, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server connection status): False ()", - "module": "test", - "msecs": 259.829044342041, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12960.171222686768, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "Server connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,259", - "created": 1609969764.2598765, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server connection status): result = False ()", - "module": "test", - "msecs": 259.8764896392822, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12960.218667984009, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - } - ], - "msecs": 259.9203586578369, - "msg": "Server connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12960.262537002563, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread", - "time_consumption": 4.38690185546875e-05 - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,260", - "created": 1609969764.2600343, - "exc_info": null, - "exc_text": null, - "filename": "test_add_methods.py", - "funcName": "connection_established", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 15, - "message": "Connecting Server", - "module": "test_add_methods", - "moduleLogger": [ - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:24,259", - "created": 1609969764.2599869, + "asctime": "2021-01-11 07:30:52,133", + "created": 1610346652.1336675, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 259.98687744140625, - "msg": "%s Cleaning up receive-buffer", + "msecs": 133.6674690246582, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12960.329055786133, + "relativeCreated": 16783.209085464478, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:52,134", + "created": 1610346652.134092, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 134.0920925140381, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16783.633708953857, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:52,142", + "created": 1610346652.1422808, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 142.28081703186035, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16791.82243347168, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,142", + "created": 1610346652.1424556, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 142.4555778503418, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16791.99719429016, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:52,142", + "created": 1610346652.1425369, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 142.53687858581543, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16792.078495025635, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,142", + "created": 1610346652.1426337, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 142.63367652893066, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16792.17529296875, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,142", + "created": 1610346652.1427, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 142.6999568939209, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16792.24157333374, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,142", + "created": 1610346652.142799, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 142.79890060424805, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16792.340517044067, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,142", + "created": 1610346652.142871, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 142.87090301513672, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16792.412519454956, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,142", + "created": 1610346652.1429572, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 142.95721054077148, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16792.49882698059, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,143", + "created": 1610346652.143023, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 143.02301406860352, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16792.564630508423, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,143", + "created": 1610346652.143105, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 143.10503005981445, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16792.646646499634, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,143", + "created": 1610346652.143167, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 143.16701889038086, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16792.7086353302, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:52,143", + "created": 1610346652.1432981, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 143.29814910888672, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16792.839765548706, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:52,144", + "created": 1610346652.144303, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 144.3030834197998, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16793.84469985962, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,144", + "created": 1610346652.1444983, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 144.49834823608398, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16794.039964675903, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:52,144", + "created": 1610346652.1445782, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 144.578218460083, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16794.119834899902, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:52,144", + "created": 1610346652.144697, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 144.6969509124756, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16794.238567352295, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:52,144", + "created": 1610346652.1448994, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 144.8993682861328, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16794.440984725952, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:52,144", + "created": 1610346652.1449926, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 144.99258995056152, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16794.53420639038, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" } ], - "msecs": 260.03432273864746, - "msg": "Connecting Server", + "msecs": 465.6534194946289, + "msg": "Connecting Server and Client", "name": "__tLogger__", - "pathname": "src/tests/test_add_methods.py", - "process": 125842, + "pathname": "src/tests/test_helpers.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12960.376501083374, + "relativeCreated": 17115.19503593445, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 4.744529724121094e-05 + "time_consumption": 0.3206608295440674 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:24,260", - "created": 1609969764.2601876, + "asctime": "2021-01-11 07:30:52,466", + "created": 1610346652.4665883, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -74063,8 +157300,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:24,260", - "created": 1609969764.2601016, + "asctime": "2021-01-11 07:30:52,466", + "created": 1610346652.4662182, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -74074,15 +157311,15 @@ "lineno": 22, "message": "Result (Client connection status): True ()", "module": "test", - "msecs": 260.1015567779541, + "msecs": 466.2182331085205, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12960.44373512268, + "relativeCreated": 17115.75984954834, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -74091,8 +157328,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:24,260", - "created": 1609969764.2601452, + "asctime": "2021-01-11 07:30:52,466", + "created": 1610346652.466403, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -74102,37 +157339,37 @@ "lineno": 26, "message": "Expectation (Client connection status): result = True ()", "module": "test", - "msecs": 260.1451873779297, + "msecs": 466.4030075073242, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12960.487365722656, + "relativeCreated": 17115.944623947144, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 260.18762588500977, + "msecs": 466.58825874328613, "msg": "Client connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12960.529804229736, + "relativeCreated": 17116.129875183105, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 4.2438507080078125e-05 + "time_consumption": 0.00018525123596191406 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:24,260", - "created": 1609969764.260508, + "asctime": "2021-01-11 07:30:52,467", + "created": 1610346652.4671273, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -74149,8 +157386,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:24,260", - "created": 1609969764.260412, + "asctime": "2021-01-11 07:30:52,466", + "created": 1610346652.4668453, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -74160,15 +157397,15 @@ "lineno": 22, "message": "Result (Server connection status): True ()", "module": "test", - "msecs": 260.41197776794434, + "msecs": 466.8452739715576, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12960.75415611267, + "relativeCreated": 17116.386890411377, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -74177,8 +157414,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:24,260", - "created": 1609969764.2604618, + "asctime": "2021-01-11 07:30:52,466", + "created": 1610346652.46699, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -74188,53 +157425,1788 @@ "lineno": 26, "message": "Expectation (Server connection status): result = True ()", "module": "test", - "msecs": 260.46180725097656, + "msecs": 466.98999404907227, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12960.803985595703, + "relativeCreated": 17116.53161048889, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 260.50806045532227, + "msecs": 467.12732315063477, "msg": "Server connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12960.850238800049, + "relativeCreated": 17116.668939590454, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 4.6253204345703125e-05 + "time_consumption": 0.0001373291015625 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2021-01-11 07:30:52,468", + "created": 1610346652.4682071, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 144, + "message": "Client connection status is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:52,467", + "created": 1610346652.467335, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 467.3349857330322, + "msg": "%s Connection Lost...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17116.87660217285, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:52,467", + "created": 1610346652.467493, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 467.49305725097656, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17117.034673690796, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:52,467", + "created": 1610346652.4676323, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 467.6322937011719, + "msg": "%s Connection Lost...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17117.17391014099, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:52,467", + "created": 1610346652.467766, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 467.76604652404785, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17117.307662963867, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "Client connection status", + "False", + "" + ], + "asctime": "2021-01-11 07:30:52,467", + "created": 1610346652.46792, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Client connection status): False ()", + "module": "test", + "msecs": 467.92006492614746, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17117.461681365967, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "Client connection status", + "False", + "" + ], + "asctime": "2021-01-11 07:30:52,468", + "created": 1610346652.4680731, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Client connection status): result = False ()", + "module": "test", + "msecs": 468.07312965393066, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17117.61474609375, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + } + ], + "msecs": 468.20712089538574, + "msg": "Client connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17117.748737335205, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.00013399124145507812 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2021-01-11 07:30:52,468", + "created": 1610346652.4687107, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 144, + "message": "Server connection status is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Server connection status", + "False", + "" + ], + "asctime": "2021-01-11 07:30:52,468", + "created": 1610346652.468441, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Server connection status): False ()", + "module": "test", + "msecs": 468.4410095214844, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17117.982625961304, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "Server connection status", + "False", + "" + ], + "asctime": "2021-01-11 07:30:52,468", + "created": 1610346652.468579, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Server connection status): result = False ()", + "module": "test", + "msecs": 468.5790538787842, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17118.120670318604, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + } + ], + "msecs": 468.71066093444824, + "msg": "Server connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17118.252277374268, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.0001316070556640625 }, { "args": [], - "asctime": "2021-01-06 22:49:24,260", - "created": 1609969764.2605762, + "asctime": "2021-01-11 07:30:52,813", + "created": 1610346652.813485, "exc_info": null, "exc_text": null, "filename": "test_add_methods.py", "funcName": "connection_established", "levelname": "DEBUG", "levelno": 10, - "lineno": 21, + "lineno": 19, + "message": "Connecting Server and Client", + "module": "test_add_methods", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:52,468", + "created": 1610346652.4689136, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 468.9135551452637, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17118.455171585083, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:52,469", + "created": 1610346652.4690552, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 469.05517578125, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17118.59679222107, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:52,469", + "created": 1610346652.4691966, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 469.1965579986572, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17118.738174438477, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:52,469", + "created": 1610346652.4694967, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 469.4967269897461, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17119.038343429565, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:52,469", + "created": 1610346652.4699326, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 469.93255615234375, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17119.474172592163, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:52,470", + "created": 1610346652.4700413, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 470.04127502441406, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17119.582891464233, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:52,470", + "created": 1610346652.4701385, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 470.1385498046875, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17119.680166244507, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:52,470", + "created": 1610346652.4704332, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 470.43323516845703, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17119.974851608276, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:52,478", + "created": 1610346652.4787657, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 478.76572608947754, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17128.307342529297, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,478", + "created": 1610346652.478979, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 478.97911071777344, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17128.520727157593, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:52,479", + "created": 1610346652.47909, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 479.08997535705566, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17128.631591796875, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,479", + "created": 1610346652.479226, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 479.22611236572266, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17128.767728805542, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,479", + "created": 1610346652.4793208, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 479.320764541626, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17128.862380981445, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,479", + "created": 1610346652.4794571, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 479.45713996887207, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17128.99875640869, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,479", + "created": 1610346652.4795482, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 479.54821586608887, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17129.08983230591, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,479", + "created": 1610346652.4796705, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 479.67052459716797, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17129.212141036987, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,479", + "created": 1610346652.4797592, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 479.75921630859375, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17129.300832748413, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,479", + "created": 1610346652.4798753, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 479.8753261566162, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17129.416942596436, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,479", + "created": 1610346652.479964, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 479.964017868042, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17129.50563430786, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:52,480", + "created": 1610346652.4801502, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 480.1502227783203, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17129.69183921814, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:52,481", + "created": 1610346652.481195, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 481.19497299194336, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17130.736589431763, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,481", + "created": 1610346652.481447, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 481.4469814300537, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17130.988597869873, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:52,481", + "created": 1610346652.4815776, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 481.57763481140137, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17131.11925125122, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" + ], + "asctime": "2021-01-11 07:30:52,481", + "created": 1610346652.481765, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", + "module": "stp", + "msecs": 481.7650318145752, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17131.306648254395, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:52,482", + "created": 1610346652.4820266, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 482.0265769958496, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17131.56819343567, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:52,482", + "created": 1610346652.4821517, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 482.15174674987793, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17131.693363189697, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:52,482", + "created": 1610346652.4823263, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 482.3262691497803, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17131.8678855896, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:52,482", + "created": 1610346652.4828959, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 482.8958511352539, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17132.437467575073, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:52,491", + "created": 1610346652.4913058, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 491.3058280944824, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17140.8474445343, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,491", + "created": 1610346652.4915965, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 491.5964603424072, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17141.138076782227, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:52,491", + "created": 1610346652.4917417, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 491.7416572570801, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17141.2832736969, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,491", + "created": 1610346652.491943, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 491.9428825378418, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17141.48449897766, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,492", + "created": 1610346652.4920845, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 492.0845031738281, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17141.626119613647, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,492", + "created": 1610346652.4922695, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 492.26951599121094, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17141.81113243103, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,492", + "created": 1610346652.4923887, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 492.3887252807617, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17141.93034172058, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,492", + "created": 1610346652.492569, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 492.5689697265625, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17142.110586166382, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,492", + "created": 1610346652.4926918, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 492.6917552947998, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17142.23337173462, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,492", + "created": 1610346652.4928453, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 492.8452968597412, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17142.38691329956, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,492", + "created": 1610346652.4929621, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 492.962121963501, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17142.50373840332, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:52,493", + "created": 1610346652.4932036, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 493.20363998413086, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17142.74525642395, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:52,494", + "created": 1610346652.4942398, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 494.23980712890625, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17143.781423568726, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,494", + "created": 1610346652.494418, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 494.4179058074951, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17143.959522247314, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:52,494", + "created": 1610346652.4945562, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 494.556188583374, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17144.097805023193, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:52,494", + "created": 1610346652.494799, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 494.7988986968994, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17144.34051513672, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:52,495", + "created": 1610346652.4951627, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 495.1627254486084, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17144.704341888428, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:52,495", + "created": 1610346652.4953446, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 495.3446388244629, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17144.886255264282, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + } + ], + "msecs": 813.4849071502686, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_add_methods.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17463.026523590088, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.31814026832580566 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2021-01-11 07:30:52,814", + "created": 1610346652.814386, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 144, + "message": "Client connection status is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Client connection status", + "True", + "" + ], + "asctime": "2021-01-11 07:30:52,814", + "created": 1610346652.8140502, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Client connection status): True ()", + "module": "test", + "msecs": 814.0501976013184, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17463.591814041138, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "Client connection status", + "True", + "" + ], + "asctime": "2021-01-11 07:30:52,814", + "created": 1610346652.814229, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Client connection status): result = True ()", + "module": "test", + "msecs": 814.2290115356445, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17463.770627975464, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + } + ], + "msecs": 814.3858909606934, + "msg": "Client connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17463.927507400513, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.00015687942504882812 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2021-01-11 07:30:52,814", + "created": 1610346652.8149047, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 144, + "message": "Server connection status is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Server connection status", + "True", + "" + ], + "asctime": "2021-01-11 07:30:52,814", + "created": 1610346652.814626, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Server connection status): True ()", + "module": "test", + "msecs": 814.6259784698486, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17464.167594909668, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "Server connection status", + "True", + "" + ], + "asctime": "2021-01-11 07:30:52,814", + "created": 1610346652.8147697, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Server connection status): result = True ()", + "module": "test", + "msecs": 814.7697448730469, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17464.311361312866, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + } + ], + "msecs": 814.9046897888184, + "msg": "Server connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17464.446306228638, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.00013494491577148438 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:52,815", + "created": 1610346652.8151107, + "exc_info": null, + "exc_text": null, + "filename": "test_add_methods.py", + "funcName": "connection_established", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, "message": "Adding secrets to socket_protocol", "module": "test_add_methods", "moduleLogger": [], - "msecs": 260.5762481689453, + "msecs": 815.1106834411621, "msg": "Adding secrets to socket_protocol", "name": "__tLogger__", "pathname": "src/tests/test_add_methods.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12960.918426513672, + "relativeCreated": 17464.65229988098, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -74243,8 +159215,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:24,260", - "created": 1609969764.2607424, + "asctime": "2021-01-11 07:30:52,815", + "created": 1610346652.815632, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -74261,8 +159233,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:24,260", - "created": 1609969764.2606528, + "asctime": "2021-01-11 07:30:52,815", + "created": 1610346652.8153293, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -74272,15 +159244,15 @@ "lineno": 22, "message": "Result (Client connection status): False ()", "module": "test", - "msecs": 260.6527805328369, + "msecs": 815.3293132781982, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12960.994958877563, + "relativeCreated": 17464.870929718018, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -74289,8 +159261,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:24,260", - "created": 1609969764.2606983, + "asctime": "2021-01-11 07:30:52,815", + "created": 1610346652.8154895, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -74300,37 +159272,37 @@ "lineno": 26, "message": "Expectation (Client connection status): result = False ()", "module": "test", - "msecs": 260.6983184814453, + "msecs": 815.4895305633545, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12961.040496826172, + "relativeCreated": 17465.031147003174, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 260.7424259185791, + "msecs": 815.6321048736572, "msg": "Client connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12961.084604263306, + "relativeCreated": 17465.173721313477, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 4.410743713378906e-05 + "time_consumption": 0.00014257431030273438 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:24,260", - "created": 1609969764.2608995, + "asctime": "2021-01-11 07:30:52,816", + "created": 1610346652.8161447, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -74347,8 +159319,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:24,260", - "created": 1609969764.260812, + "asctime": "2021-01-11 07:30:52,815", + "created": 1610346652.8158503, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -74358,15 +159330,15 @@ "lineno": 22, "message": "Result (Server connection status): False ()", "module": "test", - "msecs": 260.81204414367676, + "msecs": 815.8502578735352, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12961.154222488403, + "relativeCreated": 17465.391874313354, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -74375,8 +159347,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:24,260", - "created": 1609969764.2608564, + "asctime": "2021-01-11 07:30:52,815", + "created": 1610346652.8159838, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -74386,622 +159358,2460 @@ "lineno": 26, "message": "Expectation (Server connection status): result = False ()", "module": "test", - "msecs": 260.85638999938965, + "msecs": 815.983772277832, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12961.198568344116, + "relativeCreated": 17465.52538871765, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 260.89954376220703, + "msecs": 816.1447048187256, "msg": "Server connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12961.241722106934, + "relativeCreated": 17465.686321258545, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 4.315376281738281e-05 + "time_consumption": 0.0001609325408935547 }, { "args": [], - "asctime": "2021-01-06 22:49:24,363", - "created": 1609969764.3631327, + "asctime": "2021-01-11 07:30:52,917", + "created": 1610346652.917461, "exc_info": null, "exc_text": null, "filename": "test_add_methods.py", "funcName": "connection_established", "levelname": "DEBUG", "levelno": 10, - "lineno": 26, + "lineno": 31, "message": "Doing authentification", "module": "test_add_methods", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:24,260", - "created": 1609969764.2609785, + "asctime": "2021-01-11 07:30:52,816", + "created": 1610346652.8165226, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 438, + "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 260.97846031188965, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 816.5225982666016, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12961.320638656616, + "relativeCreated": 17466.06421470642, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,261", - "created": 1609969764.2610972, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "module": "test_helpers", - "msecs": 261.0971927642822, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12961.439371109009, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,261", - "created": 1609969764.2611763, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "module": "test_helpers", - "msecs": 261.17634773254395, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12961.51852607727, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:52,818", + "created": 1610346652.8181314, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 818.1314468383789, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17467.6730632782, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:52,826", + "created": 1610346652.8266118, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 826.6117572784424, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17476.15337371826, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,826", + "created": 1610346652.8268156, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 826.8156051635742, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17476.357221603394, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:52,826", + "created": 1610346652.8269527, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 826.9526958465576, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17476.494312286377, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,827", + "created": 1610346652.8270874, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 827.08740234375, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17476.62901878357, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,827", + "created": 1610346652.827165, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 827.164888381958, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17476.706504821777, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,827", + "created": 1610346652.8272972, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 827.2972106933594, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17476.83882713318, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,827", + "created": 1610346652.8273811, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 827.3811340332031, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17476.922750473022, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,827", + "created": 1610346652.827483, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 827.4829387664795, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17477.0245552063, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,827", + "created": 1610346652.8275561, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 827.5561332702637, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17477.097749710083, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,827", + "created": 1610346652.8276498, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 827.6498317718506, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17477.19144821167, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,827", + "created": 1610346652.8277209, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 827.7208805084229, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17477.262496948242, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-client:", + "(6): fd 82 a2 a9 3a 3e" + ], + "asctime": "2021-01-11 07:30:52,827", + "created": 1610346652.8278556, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): fd 82 a2 a9 3a 3e", + "module": "__init__", + "msecs": 827.8555870056152, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17477.397203445435, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(6): fd 82 a2 a9 3a 3e" + ], + "asctime": "2021-01-11 07:30:52,828", + "created": 1610346652.8288677, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): fd 82 a2 a9 3a 3e", + "module": "__init__", + "msecs": 828.8676738739014, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17478.40929031372, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,829", + "created": 1610346652.8290565, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 829.0565013885498, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17478.59811782837, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:52,829", + "created": 1610346652.8291857, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 829.1857242584229, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17478.727340698242, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9" + ], + "asctime": "2021-01-11 07:30:52,829", + "created": 1610346652.829337, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", + "module": "stp", + "msecs": 829.3368816375732, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17478.878498077393, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:24,261", - "created": 1609969764.2612631, + "asctime": "2021-01-11 07:30:52,829", + "created": 1610346652.829628, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 438, + "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 261.2631320953369, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 829.6279907226562, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12961.605310440063, + "relativeCreated": 17479.169607162476, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560622925568, + "threadName": "Thread-29" }, { "args": [ - "SP server:", + "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-06 22:49:24,261", - "created": 1609969764.2613177, + "asctime": "2021-01-11 07:30:52,829", + "created": 1610346652.8297465, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __authentificate_create_seed__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 261.3177299499512, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 829.7464847564697, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12961.659908294678, + "relativeCreated": 17479.28810119629, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560622925568, + "threadName": "Thread-29" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: authentification response, data_id: seed", "status: okay", - "'23168fe5dbc8cf6ff8f24e7fb999a3fbe667da5a6a158eb3ada8c83f11d967ad'" + "'e6de8d437190c09c421b6863237fdcfa96de97e9a160c64aad71987ca7dc8554'" ], - "asctime": "2021-01-06 22:49:24,261", - "created": 1609969764.2613862, + "asctime": "2021-01-11 07:30:52,829", + "created": 1610346652.8298998, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: authentification response, data_id: seed, status: okay, data: \"'23168fe5dbc8cf6ff8f24e7fb999a3fbe667da5a6a158eb3ada8c83f11d967ad'\"", + "lineno": 438, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'e6de8d437190c09c421b6863237fdcfa96de97e9a160c64aad71987ca7dc8554'\"", "module": "__init__", - "msecs": 261.3861560821533, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 829.899787902832, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12961.72833442688, + "relativeCreated": 17479.44140434265, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,261", - "created": 1609969764.2615318, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 32 33 31 36 38 66 65 35 64 62 63 38 63 66 36 66 66 38 66 32 34 65 37 66 62 39 39 39 61 33 66 62 65 36 36 37 64 61 35 61 36 61 31 35 38 65 62 33 61 64 61 38 63 38 33 66 31 31 64 39 36 37 61 64 22 7d af 35 34 74", - "module": "test_helpers", - "msecs": 261.5318298339844, - "msg": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 32 33 31 36 38 66 65 35 64 62 63 38 63 66 36 66 66 38 66 32 34 65 37 66 62 39 39 39 61 33 66 62 65 36 36 37 64 61 35 61 36 61 31 35 38 65 62 33 61 64 61 38 63 38 33 66 31 31 64 39 36 37 61 64 22 7d af 35 34 74", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12961.874008178711, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,261", - "created": 1609969764.261641, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 32 33 31 36 38 66 65 35 64 62 63 38 63 66 36 66 66 38 66 32 34 65 37 66 62 39 39 39 61 33 66 62 65 36 36 37 64 61 35 61 36 61 31 35 38 65 62 33 61 64 61 38 63 38 33 66 31 31 64 39 36 37 61 64 22 7d af 35 34 74", - "module": "test_helpers", - "msecs": 261.6410255432129, - "msg": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 32 33 31 36 38 66 65 35 64 62 63 38 63 66 36 66 66 38 66 32 34 65 37 66 62 39 39 39 61 33 66 62 65 36 36 37 64 61 35 61 36 61 31 35 38 65 62 33 61 64 61 38 63 38 33 66 31 31 64 39 36 37 61 64 22 7d af 35 34 74", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12961.98320388794, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560622925568, + "threadName": "Thread-29" }, { "args": [ - "SP client:", - "service: authentification response, data_id: seed", - "status: okay", - "'23168fe5dbc8cf6ff8f24e7fb999a3fbe667da5a6a158eb3ada8c83f11d967ad'" + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 65 36 64 65" ], - "asctime": "2021-01-06 22:49:24,261", - "created": 1609969764.261728, + "asctime": "2021-01-11 07:30:52,830", + "created": 1610346652.8304713, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__tx__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'23168fe5dbc8cf6ff8f24e7fb999a3fbe667da5a6a158eb3ada8c83f11d967ad'\"", + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 65 36 64 65", "module": "__init__", - "msecs": 261.72804832458496, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 830.4712772369385, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12962.070226669312, + "relativeCreated": 17480.012893676758, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560614532864, + "threadName": "Thread-30" }, { "args": [ - "SP client:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 65 36 64 65" + ], + "asctime": "2021-01-11 07:30:52,838", + "created": 1610346652.8387754, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 65 36 64 65", + "module": "__init__", + "msecs": 838.7753963470459, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17488.317012786865, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,839", + "created": 1610346652.8390203, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 839.0202522277832, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17488.561868667603, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:52,839", + "created": 1610346652.8391366, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 839.1366004943848, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17488.678216934204, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,839", + "created": 1610346652.8392754, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 839.2753601074219, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17488.81697654724, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,839", + "created": 1610346652.8393757, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 839.3757343292236, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17488.917350769043, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,839", + "created": 1610346652.8395138, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 839.5137786865234, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17489.055395126343, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,839", + "created": 1610346652.839604, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 839.6039009094238, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17489.145517349243, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,839", + "created": 1610346652.8397267, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 839.7266864776611, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17489.26830291748, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,839", + "created": 1610346652.839815, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 839.8149013519287, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17489.356517791748, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,839", + "created": 1610346652.8399532, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 839.9531841278076, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17489.494800567627, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,840", + "created": 1610346652.8400414, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 840.0413990020752, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17489.583015441895, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-server:", + "(64): 38 64 34 33 37 31 39 30 63 30 39 63 34 32 31 62 36 38 36 33 32 33 37 66 64 63 66 61 39 36 64 65 39 37 65 39 61 31 36 30 63 36 34 61 61 64 37 31 39 38 37 63 61 37 64 63 38 35 35 34 22 7d ca dd" + ], + "asctime": "2021-01-11 07:30:52,840", + "created": 1610346652.8402638, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 38 64 34 33 37 31 39 30 63 30 39 63 34 32 31 62 36 38 36 33 32 33 37 66 64 63 66 61 39 36 64 65 39 37 65 39 61 31 36 30 63 36 34 61 61 64 37 31 39 38 37 63 61 37 64 63 38 35 35 34 22 7d ca dd", + "module": "__init__", + "msecs": 840.263843536377, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17489.805459976196, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-client:", + "(64): 38 64 34 33 37 31 39 30 63 30 39 63 34 32 31 62 36 38 36 33 32 33 37 66 64 63 66 61 39 36 64 65 39 37 65 39 61 31 36 30 63 36 34 61 61 64 37 31 39 38 37 63 61 37 64 63 38 35 35 34 22 7d ca dd" + ], + "asctime": "2021-01-11 07:30:52,848", + "created": 1610346652.8485794, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 38 64 34 33 37 31 39 30 63 30 39 63 34 32 31 62 36 38 36 33 32 33 37 66 64 63 66 61 39 36 64 65 39 37 65 39 61 31 36 30 63 36 34 61 61 64 37 31 39 38 37 63 61 37 64 63 38 35 35 34 22 7d ca dd", + "module": "__init__", + "msecs": 848.5794067382812, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17498.1210231781, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-server:", + "(4): fb f0 3a 3e" + ], + "asctime": "2021-01-11 07:30:52,849", + "created": 1610346652.8490312, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (4): fb f0 3a 3e", + "module": "__init__", + "msecs": 849.0312099456787, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17498.572826385498, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-client:", + "(4): fb f0 3a 3e" + ], + "asctime": "2021-01-11 07:30:52,849", + "created": 1610346652.849758, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (4): fb f0 3a 3e", + "module": "__init__", + "msecs": 849.7579097747803, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17499.2995262146, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,849", + "created": 1610346652.8498824, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 849.8823642730713, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17499.42398071289, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:52,849", + "created": 1610346652.8499837, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 849.9836921691895, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17499.52530860901, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + "(124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 65 36 64 65 38 64 34 33 37 31 39 30 63 30 39 63 34 32 31 62 36 38 36 33 32 33 37 66 64 63 66 61 39 36 64 65 39 37 65 39 61 31 36 30 63 36 34 61 61 64 37 31 39 38 37 63 61 37 64 63 38 35 35 34 22 7d ca dd fb f0" + ], + "asctime": "2021-01-11 07:30:52,850", + "created": 1610346652.85023, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 65 36 64 65 38 64 34 33 37 31 39 30 63 30 39 63 34 32 31 62 36 38 36 33 32 33 37 66 64 63 66 61 39 36 64 65 39 37 65 39 61 31 36 30 63 36 34 61 61 64 37 31 39 38 37 63 61 37 64 63 38 35 35 34 22 7d ca dd fb f0", + "module": "stp", + "msecs": 850.2299785614014, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17499.77159500122, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: seed", + "status: okay", + "'e6de8d437190c09c421b6863237fdcfa96de97e9a160c64aad71987ca7dc8554'" + ], + "asctime": "2021-01-11 07:30:52,850", + "created": 1610346652.8504946, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'e6de8d437190c09c421b6863237fdcfa96de97e9a160c64aad71987ca7dc8554'\"", + "module": "__init__", + "msecs": 850.4946231842041, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17500.036239624023, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-01-06 22:49:24,261", - "created": 1609969764.261796, + "asctime": "2021-01-11 07:30:52,850", + "created": 1610346652.8506181, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __authentificate_create_key__ to process received data", + "lineno": 492, + "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 261.7959976196289, + "msecs": 850.6181240081787, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12962.138175964355, + "relativeCreated": 17500.159740447998, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560614532864, + "threadName": "Thread-30" }, { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: authentification request, data_id: key", "status: okay", - "'52cffa52636d4dc117438088e2df14d7d65557a263b0b636f84eec85d1ee2b0e23459582b543eca30bf63f939d1fc10777e9ef2cf943be99d7a33f292e9bbf71'" + "'b323aee5840ef3159047f6f5c81478f67d77c9274666eda2b29a936917f1a5e8439fc6b36bedac0bbd4a807955e79137e7c8b0397526b3a3a858825fbad0c105'" ], - "asctime": "2021-01-06 22:49:24,261", - "created": 1609969764.2618737, + "asctime": "2021-01-11 07:30:52,850", + "created": 1610346652.8508022, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: authentification request, data_id: key, status: okay, data: \"'52cffa52636d4dc117438088e2df14d7d65557a263b0b636f84eec85d1ee2b0e23459582b543eca30bf63f939d1fc10777e9ef2cf943be99d7a33f292e9bbf71'\"", + "lineno": 438, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'b323aee5840ef3159047f6f5c81478f67d77c9274666eda2b29a936917f1a5e8439fc6b36bedac0bbd4a807955e79137e7c8b0397526b3a3a858825fbad0c105'\"", "module": "__init__", - "msecs": 261.873722076416, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 850.8021831512451, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12962.215900421143, + "relativeCreated": 17500.343799591064, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,262", - "created": 1609969764.2620459, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 35 32 63 66 66 61 35 32 36 33 36 64 34 64 63 31 31 37 34 33 38 30 38 38 65 32 64 66 31 34 64 37 64 36 35 35 35 37 61 32 36 33 62 30 62 36 33 36 66 38 34 65 65 63 38 35 64 31 65 65 32 62 30 65 32 33 34 35 39 35 38 32 62 35 34 33 65 63 61 33 30 62 66 36 33 66 39 33 39 64 31 66 63 31 30 37 37 37 65 39 65 66 32 63 66 39 34 33 62 65 39 39 64 37 61 33 33 66 32 39 32 65 39 62 62 66 37 31 22 7d 93 4c bc 2d", - "module": "test_helpers", - "msecs": 262.04586029052734, - "msg": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 35 32 63 66 66 61 35 32 36 33 36 64 34 64 63 31 31 37 34 33 38 30 38 38 65 32 64 66 31 34 64 37 64 36 35 35 35 37 61 32 36 33 62 30 62 36 33 36 66 38 34 65 65 63 38 35 64 31 65 65 32 62 30 65 32 33 34 35 39 35 38 32 62 35 34 33 65 63 61 33 30 62 66 36 33 66 39 33 39 64 31 66 63 31 30 37 37 37 65 39 65 66 32 63 66 39 34 33 62 65 39 39 64 37 61 33 33 66 32 39 32 65 39 62 62 66 37 31 22 7d 93 4c bc 2d", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12962.388038635254, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,262", - "created": 1609969764.2621882, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 35 32 63 66 66 61 35 32 36 33 36 64 34 64 63 31 31 37 34 33 38 30 38 38 65 32 64 66 31 34 64 37 64 36 35 35 35 37 61 32 36 33 62 30 62 36 33 36 66 38 34 65 65 63 38 35 64 31 65 65 32 62 30 65 32 33 34 35 39 35 38 32 62 35 34 33 65 63 61 33 30 62 66 36 33 66 39 33 39 64 31 66 63 31 30 37 37 37 65 39 65 66 32 63 66 39 34 33 62 65 39 39 64 37 61 33 33 66 32 39 32 65 39 62 62 66 37 31 22 7d 93 4c bc 2d", - "module": "test_helpers", - "msecs": 262.188196182251, - "msg": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 35 32 63 66 66 61 35 32 36 33 36 64 34 64 63 31 31 37 34 33 38 30 38 38 65 32 64 66 31 34 64 37 64 36 35 35 35 37 61 32 36 33 62 30 62 36 33 36 66 38 34 65 65 63 38 35 64 31 65 65 32 62 30 65 32 33 34 35 39 35 38 32 62 35 34 33 65 63 61 33 30 62 66 36 33 66 39 33 39 64 31 66 63 31 30 37 37 37 65 39 65 66 32 63 66 39 34 33 62 65 39 39 64 37 61 33 33 66 32 39 32 65 39 62 62 66 37 31 22 7d 93 4c bc 2d", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12962.530374526978, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560614532864, + "threadName": "Thread-30" }, { "args": [ - "SP server:", - "service: authentification request, data_id: key", - "status: okay", - "'52cffa52636d4dc117438088e2df14d7d65557a263b0b636f84eec85d1ee2b0e23459582b543eca30bf63f939d1fc10777e9ef2cf943be99d7a33f292e9bbf71'" + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 33 32 33" ], - "asctime": "2021-01-06 22:49:24,262", - "created": 1609969764.2622786, + "asctime": "2021-01-11 07:30:52,851", + "created": 1610346652.8515892, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__tx__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: authentification request, data_id: key, status: okay, data: \"'52cffa52636d4dc117438088e2df14d7d65557a263b0b636f84eec85d1ee2b0e23459582b543eca30bf63f939d1fc10777e9ef2cf943be99d7a33f292e9bbf71'\"", + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 33 32 33", "module": "__init__", - "msecs": 262.27855682373047, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 851.5892028808594, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12962.620735168457, + "relativeCreated": 17501.13081932068, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560622925568, + "threadName": "Thread-29" }, { "args": [ - "SP server:", + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 33 32 33" + ], + "asctime": "2021-01-11 07:30:52,859", + "created": 1610346652.8599048, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 33 32 33", + "module": "__init__", + "msecs": 859.9047660827637, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17509.446382522583, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,860", + "created": 1610346652.8603818, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 860.3818416595459, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17509.923458099365, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:52,860", + "created": 1610346652.8606815, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 860.6815338134766, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17510.223150253296, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,860", + "created": 1610346652.8609645, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 860.9645366668701, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17510.50615310669, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,861", + "created": 1610346652.8611207, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 861.1207008361816, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17510.662317276, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,861", + "created": 1610346652.8613133, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 861.3133430480957, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17510.854959487915, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,861", + "created": 1610346652.8615067, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 861.5067005157471, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17511.048316955566, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,861", + "created": 1610346652.8617482, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 861.748218536377, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17511.289834976196, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,861", + "created": 1610346652.8619123, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 861.9122505187988, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17511.453866958618, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,862", + "created": 1610346652.8621128, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 862.1127605438232, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17511.654376983643, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,862", + "created": 1610346652.8622653, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 862.2653484344482, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17511.806964874268, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-client:", + "(64): 61 65 65 35 38 34 30 65 66 33 31 35 39 30 34 37 66 36 66 35 63 38 31 34 37 38 66 36 37 64 37 37 63 39 32 37 34 36 36 36 65 64 61 32 62 32 39 61 39 33 36 39 31 37 66 31 61 35 65 38 34 33 39 66" + ], + "asctime": "2021-01-11 07:30:52,862", + "created": 1610346652.862703, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 61 65 65 35 38 34 30 65 66 33 31 35 39 30 34 37 66 36 66 35 63 38 31 34 37 38 66 36 37 64 37 37 63 39 32 37 34 36 36 36 65 64 61 32 62 32 39 61 39 33 36 39 31 37 66 31 61 35 65 38 34 33 39 66", + "module": "__init__", + "msecs": 862.7030849456787, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17512.244701385498, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(64): 61 65 65 35 38 34 30 65 66 33 31 35 39 30 34 37 66 36 66 35 63 38 31 34 37 38 66 36 37 64 37 37 63 39 32 37 34 36 36 36 65 64 61 32 62 32 39 61 39 33 36 39 31 37 66 31 61 35 65 38 34 33 39 66" + ], + "asctime": "2021-01-11 07:30:52,871", + "created": 1610346652.8710027, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 61 65 65 35 38 34 30 65 66 33 31 35 39 30 34 37 66 36 66 35 63 38 31 34 37 38 66 36 37 64 37 37 63 39 32 37 34 36 36 36 65 64 61 32 62 32 39 61 39 33 36 39 31 37 66 31 61 35 65 38 34 33 39 66", + "module": "__init__", + "msecs": 871.0026741027832, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17520.544290542603, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-client:", + "(64): 63 36 62 33 36 62 65 64 61 63 30 62 62 64 34 61 38 30 37 39 35 35 65 37 39 31 33 37 65 37 63 38 62 30 33 39 37 35 32 36 62 33 61 33 61 38 35 38 38 32 35 66 62 61 64 30 63 31 30 35 22 7d e4 1f" + ], + "asctime": "2021-01-11 07:30:52,871", + "created": 1610346652.8713722, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 63 36 62 33 36 62 65 64 61 63 30 62 62 64 34 61 38 30 37 39 35 35 65 37 39 31 33 37 65 37 63 38 62 30 33 39 37 35 32 36 62 33 61 33 61 38 35 38 38 32 35 66 62 61 64 30 63 31 30 35 22 7d e4 1f", + "module": "__init__", + "msecs": 871.3722229003906, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17520.91383934021, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(64): 63 36 62 33 36 62 65 64 61 63 30 62 62 64 34 61 38 30 37 39 35 35 65 37 39 31 33 37 65 37 63 38 62 30 33 39 37 35 32 36 62 33 61 33 61 38 35 38 38 32 35 66 62 61 64 30 63 31 30 35 22 7d e4 1f" + ], + "asctime": "2021-01-11 07:30:52,879", + "created": 1610346652.879695, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 63 36 62 33 36 62 65 64 61 63 30 62 62 64 34 61 38 30 37 39 35 35 65 37 39 31 33 37 65 37 63 38 62 30 33 39 37 35 32 36 62 33 61 33 61 38 35 38 38 32 35 66 62 61 64 30 63 31 30 35 22 7d e4 1f", + "module": "__init__", + "msecs": 879.694938659668, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17529.236555099487, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-client:", + "(4): 2d e6 3a 3e" + ], + "asctime": "2021-01-11 07:30:52,880", + "created": 1610346652.8802161, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (4): 2d e6 3a 3e", + "module": "__init__", + "msecs": 880.216121673584, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17529.757738113403, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(4): 2d e6 3a 3e" + ], + "asctime": "2021-01-11 07:30:52,880", + "created": 1610346652.8809698, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (4): 2d e6 3a 3e", + "module": "__init__", + "msecs": 880.969762802124, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17530.511379241943, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,881", + "created": 1610346652.8811138, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 881.1137676239014, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17530.65538406372, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:52,881", + "created": 1610346652.8812332, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 881.2332153320312, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17530.77483177185, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "STP:", + "(188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 62 33 32 33 61 65 65 35 38 34 30 65 66 33 31 35 39 30 34 37 66 36 66 35 63 38 31 34 37 38 66 36 37 64 37 37 63 39 32 37 34 36 36 36 65 64 61 32 62 32 39 61 39 33 36 39 31 37 66 31 61 35 65 38 34 33 39 66 63 36 62 33 36 62 65 64 61 63 30 62 62 64 34 61 38 30 37 39 35 35 65 37 39 31 33 37 65 37 63 38 62 30 33 39 37 35 32 36 62 33 61 33 61 38 35 38 38 32 35 66 62 61 64 30 63 31 30 35 22 7d e4 1f 2d e6" + ], + "asctime": "2021-01-11 07:30:52,881", + "created": 1610346652.8816264, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 62 33 32 33 61 65 65 35 38 34 30 65 66 33 31 35 39 30 34 37 66 36 66 35 63 38 31 34 37 38 66 36 37 64 37 37 63 39 32 37 34 36 36 36 65 64 61 32 62 32 39 61 39 33 36 39 31 37 66 31 61 35 65 38 34 33 39 66 63 36 62 33 36 62 65 64 61 63 30 62 62 64 34 61 38 30 37 39 35 35 65 37 39 31 33 37 65 37 63 38 62 30 33 39 37 35 32 36 62 33 61 33 61 38 35 38 38 32 35 66 62 61 64 30 63 31 30 35 22 7d e4 1f 2d e6", + "module": "stp", + "msecs": 881.6263675689697, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17531.16798400879, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: authentification request, data_id: key", + "status: okay", + "'b323aee5840ef3159047f6f5c81478f67d77c9274666eda2b29a936917f1a5e8439fc6b36bedac0bbd4a807955e79137e7c8b0397526b3a3a858825fbad0c105'" + ], + "asctime": "2021-01-11 07:30:52,881", + "created": 1610346652.8819463, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'b323aee5840ef3159047f6f5c81478f67d77c9274666eda2b29a936917f1a5e8439fc6b36bedac0bbd4a807955e79137e7c8b0397526b3a3a858825fbad0c105'\"", + "module": "__init__", + "msecs": 881.946325302124, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17531.487941741943, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-01-06 22:49:24,262", - "created": 1609969764.2623353, + "asctime": "2021-01-11 07:30:52,882", + "created": 1610346652.8820956, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __authentificate_check_key__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 262.33530044555664, - "msg": "%s RX <- Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12962.677478790283, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-01-06 22:49:24,262", - "created": 1609969764.2624018, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 262.401819229126, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12962.743997573853, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,262", - "created": 1609969764.2625089, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", - "module": "test_helpers", - "msecs": 262.5088691711426, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12962.85104751587, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,262", - "created": 1609969764.2625885, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", - "module": "test_helpers", - "msecs": 262.5885009765625, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12962.930679321289, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-01-06 22:49:24,262", - "created": 1609969764.2626958, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 262.6957893371582, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12963.037967681885, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "__authentificate_process_feedback__" - ], - "asctime": "2021-01-06 22:49:24,262", - "created": 1609969764.2627504, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __authentificate_process_feedback__ to process received data", - "module": "__init__", - "msecs": 262.75038719177246, + "msecs": 882.0955753326416, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12963.092565536499, + "relativeCreated": 17531.63719177246, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560622925568, + "threadName": "Thread-29" }, { "args": [ - "SP client:" + "prot-server:", + "TX ->", + "service: authentification response, data_id: key", + "status: okay", + "True" ], - "asctime": "2021-01-06 22:49:24,262", - "created": 1609969764.2627974, + "asctime": "2021-01-11 07:30:52,882", + "created": 1610346652.882337, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 882.3370933532715, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17531.87870979309, + "stack_info": null, + "thread": 140560622925568, + "threadName": "Thread-29" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" + ], + "asctime": "2021-01-11 07:30:52,883", + "created": 1610346652.8830035, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", + "module": "__init__", + "msecs": 883.0034732818604, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17532.54508972168, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" + ], + "asctime": "2021-01-11 07:30:52,891", + "created": 1610346652.8914013, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", + "module": "__init__", + "msecs": 891.4012908935547, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17540.942907333374, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,891", + "created": 1610346652.891644, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 891.6440010070801, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17541.1856174469, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:52,891", + "created": 1610346652.8917773, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 891.7772769927979, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17541.318893432617, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,891", + "created": 1610346652.8919349, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 891.934871673584, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17541.476488113403, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,892", + "created": 1610346652.8920689, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 892.0688629150391, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17541.61047935486, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,892", + "created": 1610346652.8922355, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 892.235517501831, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17541.77713394165, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,892", + "created": 1610346652.892343, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 892.3430442810059, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17541.884660720825, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,892", + "created": 1610346652.8924885, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 892.4884796142578, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17542.030096054077, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,892", + "created": 1610346652.8925946, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 892.594575881958, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17542.136192321777, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,892", + "created": 1610346652.892783, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 892.7829265594482, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17542.324542999268, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,892", + "created": 1610346652.8928905, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 892.890453338623, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17542.432069778442, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-server:", + "(6): 94 fe 74 32 3a 3e" + ], + "asctime": "2021-01-11 07:30:52,893", + "created": 1610346652.8930993, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 94 fe 74 32 3a 3e", + "module": "__init__", + "msecs": 893.099308013916, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17542.640924453735, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "comm-client:", + "(6): 94 fe 74 32 3a 3e" + ], + "asctime": "2021-01-11 07:30:52,894", + "created": 1610346652.8940833, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 94 fe 74 32 3a 3e", + "module": "__init__", + "msecs": 894.0832614898682, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17543.624877929688, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,894", + "created": 1610346652.8942275, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 894.2275047302246, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17543.769121170044, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:52,894", + "created": 1610346652.894339, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 894.3390846252441, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17543.880701065063, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32" + ], + "asctime": "2021-01-11 07:30:52,894", + "created": 1610346652.894521, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", + "module": "stp", + "msecs": 894.5209980010986, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17544.062614440918, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: key", + "status: okay", + "True" + ], + "asctime": "2021-01-11 07:30:52,894", + "created": 1610346652.8948238, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 894.8237895965576, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17544.365406036377, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "prot-client:", + "__authentificate_process_feedback__" + ], + "asctime": "2021-01-11 07:30:52,894", + "created": 1610346652.8949792, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", + "module": "__init__", + "msecs": 894.9792385101318, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17544.52085494995, + "stack_info": null, + "thread": 140560614532864, + "threadName": "Thread-30" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:52,895", + "created": 1610346652.8951025, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "INFO", "levelno": 20, - "lineno": 350, - "message": "SP client: Got positive authentification feedback", + "lineno": 360, + "message": "prot-client: Got positive authentification feedback", "module": "__init__", - "msecs": 262.79735565185547, + "msecs": 895.1025009155273, "msg": "%s Got positive authentification feedback", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12963.139533996582, + "relativeCreated": 17544.644117355347, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560614532864, + "threadName": "Thread-30" } ], - "msecs": 363.1327152252197, + "msecs": 917.4609184265137, "msg": "Doing authentification", "name": "__tLogger__", "pathname": "src/tests/test_add_methods.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13063.474893569946, + "relativeCreated": 17567.002534866333, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.10033535957336426 + "time_consumption": 0.022358417510986328 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:24,363", - "created": 1609969764.363646, + "asctime": "2021-01-11 07:30:52,918", + "created": 1610346652.918487, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -75018,8 +161828,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:24,363", - "created": 1609969764.3634386, + "asctime": "2021-01-11 07:30:52,918", + "created": 1610346652.9181302, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -75029,15 +161839,15 @@ "lineno": 22, "message": "Result (Client connection status): True ()", "module": "test", - "msecs": 363.43860626220703, + "msecs": 918.1301593780518, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13063.780784606934, + "relativeCreated": 17567.67177581787, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -75046,8 +161856,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:24,363", - "created": 1609969764.3635488, + "asctime": "2021-01-11 07:30:52,918", + "created": 1610346652.9183252, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -75057,37 +161867,37 @@ "lineno": 26, "message": "Expectation (Client connection status): result = True ()", "module": "test", - "msecs": 363.54875564575195, + "msecs": 918.3251857757568, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13063.890933990479, + "relativeCreated": 17567.866802215576, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 363.6460304260254, + "msecs": 918.4870719909668, "msg": "Client connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13063.988208770752, + "relativeCreated": 17568.028688430786, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 9.72747802734375e-05 + "time_consumption": 0.00016188621520996094 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:24,363", - "created": 1609969764.3639734, + "asctime": "2021-01-11 07:30:52,919", + "created": 1610346652.9190497, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -75104,8 +161914,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:24,363", - "created": 1609969764.3637965, + "asctime": "2021-01-11 07:30:52,918", + "created": 1610346652.9187522, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -75115,15 +161925,15 @@ "lineno": 22, "message": "Result (Server connection status): True ()", "module": "test", - "msecs": 363.7964725494385, + "msecs": 918.7521934509277, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13064.138650894165, + "relativeCreated": 17568.293809890747, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -75132,8 +161942,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:24,363", - "created": 1609969764.3638859, + "asctime": "2021-01-11 07:30:52,918", + "created": 1610346652.9188993, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -75143,41 +161953,41 @@ "lineno": 26, "message": "Expectation (Server connection status): result = True ()", "module": "test", - "msecs": 363.88587951660156, + "msecs": 918.8992977142334, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13064.228057861328, + "relativeCreated": 17568.440914154053, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 363.97337913513184, + "msecs": 919.0497398376465, "msg": "Server connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13064.315557479858, + "relativeCreated": 17568.591356277466, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 8.749961853027344e-05 + "time_consumption": 0.00015044212341308594 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.11159992218017578, - "time_finished": "2021-01-06 22:49:24,363", - "time_start": "2021-01-06 22:49:24,252" + "time_consumption": 0.8055095672607422, + "time_finished": "2021-01-11 07:30:52,919", + "time_start": "2021-01-11 07:30:52,113" }, "_elO7wE4gEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-06 22:49:24,364", - "created": 1609969764.3643115, + "asctime": "2021-01-11 07:30:52,919", + "created": 1610346652.9196005, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -75188,1873 +161998,2522 @@ "message": "_elO7wE4gEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 364.31145668029785, + "msecs": 919.6004867553711, "msg": "_elO7wE4gEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13064.653635025024, + "relativeCreated": 17569.14210319519, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:24,368", - "created": 1609969764.3684907, + "asctime": "2021-01-11 07:30:52,929", + "created": 1610346652.9296165, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:24,364", - "created": 1609969764.3645716, + "asctime": "2021-01-11 07:30:52,921", + "created": 1610346652.921368, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 364.57157135009766, + "msecs": 921.367883682251, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13064.913749694824, + "relativeCreated": 17570.90950012207, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:24,364", - "created": 1609969764.3646908, + "asctime": "2021-01-11 07:30:52,922", + "created": 1610346652.922832, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 364.69078063964844, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 922.8320121765137, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13065.032958984375, + "relativeCreated": 17572.373628616333, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:24,364", - "created": 1609969764.364825, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 364.8250102996826, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13065.16718864441, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:24,364", - "created": 1609969764.3649206, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 364.92061614990234, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13065.262794494629, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:24,365", - "created": 1609969764.365011, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 365.01097679138184, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13065.353155136108, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:24,365", - "created": 1609969764.3651066, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 365.10658264160156, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13065.448760986328, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:24,365", - "created": 1609969764.365205, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 365.2050495147705, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13065.547227859497, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:24,365", - "created": 1609969764.3653033, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 365.30327796936035, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13065.645456314087, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:24,365", - "created": 1609969764.3653991, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 365.3991222381592, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13065.741300582886, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:24,365", - "created": 1609969764.3654938, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 365.4937744140625, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13065.835952758789, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:24,365", - "created": 1609969764.3655796, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 365.57960510253906, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13065.921783447266, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:24,365", - "created": 1609969764.3656752, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 365.6752109527588, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13066.017389297485, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:24,365", - "created": 1609969764.3657775, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 365.77749252319336, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13066.11967086792, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:24,365", - "created": 1609969764.3658907, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 365.8907413482666, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13066.232919692993, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:24,365", - "created": 1609969764.365984, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 365.9839630126953, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13066.326141357422, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:24,366", - "created": 1609969764.3660793, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 366.07933044433594, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13066.421508789062, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:24,366", - "created": 1609969764.3661792, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 366.1792278289795, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13066.521406173706, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:24,366", - "created": 1609969764.3662746, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 366.2745952606201, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13066.616773605347, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:24,366", - "created": 1609969764.3663669, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 366.3668632507324, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13066.709041595459, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:24,366", - "created": 1609969764.3664536, + "asctime": "2021-01-11 07:30:52,923", + "created": 1610346652.9230886, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 366.4536476135254, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 923.088550567627, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13066.795825958252, + "relativeCreated": 17572.630167007446, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:24,366", - "created": 1609969764.36662, + "asctime": "2021-01-11 07:30:52,923", + "created": 1610346652.9234216, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 366.6200637817383, + "msecs": 923.4216213226318, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13066.962242126465, + "relativeCreated": 17572.96323776245, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:24,366", - "created": 1609969764.3667173, + "asctime": "2021-01-11 07:30:52,923", + "created": 1610346652.9236007, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 366.7173385620117, + "msecs": 923.6006736755371, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13067.059516906738, + "relativeCreated": 17573.142290115356, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:24,366", - "created": 1609969764.366847, + "asctime": "2021-01-11 07:30:52,923", + "created": 1610346652.9238248, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 366.84703826904297, + "msecs": 923.8247871398926, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13067.18921661377, + "relativeCreated": 17573.366403579712, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:24,366", - "created": 1609969764.3669386, + "asctime": "2021-01-11 07:30:52,923", + "created": 1610346652.923982, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 366.93859100341797, + "msecs": 923.9819049835205, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13067.280769348145, + "relativeCreated": 17573.52352142334, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:24,367", - "created": 1609969764.367027, + "asctime": "2021-01-11 07:30:52,924", + "created": 1610346652.9241261, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 367.02704429626465, + "msecs": 924.126148223877, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13067.369222640991, + "relativeCreated": 17573.667764663696, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:24,367", - "created": 1609969764.3671136, + "asctime": "2021-01-11 07:30:52,924", + "created": 1610346652.9242666, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 367.1135902404785, + "msecs": 924.2665767669678, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13067.455768585205, + "relativeCreated": 17573.808193206787, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:24,367", - "created": 1609969764.3672056, + "asctime": "2021-01-11 07:30:52,924", + "created": 1610346652.9244332, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 367.2056198120117, + "msecs": 924.4332313537598, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13067.547798156738, + "relativeCreated": 17573.97484779358, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:24,367", - "created": 1609969764.367307, + "asctime": "2021-01-11 07:30:52,924", + "created": 1610346652.9246147, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 367.3069477081299, + "msecs": 924.614667892456, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13067.649126052856, + "relativeCreated": 17574.156284332275, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:24,367", - "created": 1609969764.367407, + "asctime": "2021-01-11 07:30:52,924", + "created": 1610346652.924772, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 367.40708351135254, + "msecs": 924.7720241546631, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13067.74926185608, + "relativeCreated": 17574.313640594482, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:24,367", - "created": 1609969764.3675077, + "asctime": "2021-01-11 07:30:52,924", + "created": 1610346652.924934, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 367.5076961517334, + "msecs": 924.933910369873, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13067.84987449646, + "relativeCreated": 17574.475526809692, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:24,367", - "created": 1609969764.367593, + "asctime": "2021-01-11 07:30:52,925", + "created": 1610346652.9251008, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 367.59305000305176, + "msecs": 925.1008033752441, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13067.935228347778, + "relativeCreated": 17574.642419815063, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:24,367", - "created": 1609969764.3676858, + "asctime": "2021-01-11 07:30:52,925", + "created": 1610346652.9252732, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 367.68579483032227, + "msecs": 925.2731800079346, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13068.027973175049, + "relativeCreated": 17574.814796447754, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:24,367", - "created": 1609969764.3677866, + "asctime": "2021-01-11 07:30:52,925", + "created": 1610346652.9254801, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 367.7866458892822, + "msecs": 925.4801273345947, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13068.128824234009, + "relativeCreated": 17575.021743774414, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:24,367", - "created": 1609969764.3678749, + "asctime": "2021-01-11 07:30:52,925", + "created": 1610346652.9256368, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 367.8748607635498, + "msecs": 925.6367683410645, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13068.217039108276, + "relativeCreated": 17575.178384780884, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:24,367", - "created": 1609969764.3679655, + "asctime": "2021-01-11 07:30:52,925", + "created": 1610346652.9257913, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 367.9654598236084, + "msecs": 925.7912635803223, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13068.307638168335, + "relativeCreated": 17575.33288002014, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:24,368", - "created": 1609969764.368059, + "asctime": "2021-01-11 07:30:52,925", + "created": 1610346652.9259584, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 368.0589199066162, + "msecs": 925.9583950042725, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13068.401098251343, + "relativeCreated": 17575.50001144409, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:24,368", - "created": 1609969764.3681512, + "asctime": "2021-01-11 07:30:52,926", + "created": 1610346652.9261084, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 368.1511878967285, + "msecs": 926.1083602905273, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13068.493366241455, + "relativeCreated": 17575.649976730347, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:24,368", - "created": 1609969764.3682373, + "asctime": "2021-01-11 07:30:52,926", + "created": 1610346652.9262578, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 368.2372570037842, + "msecs": 926.257848739624, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13068.57943534851, + "relativeCreated": 17575.799465179443, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:24,368", - "created": 1609969764.368321, + "asctime": "2021-01-11 07:30:52,926", + "created": 1610346652.926404, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 368.3209419250488, + "msecs": 926.4039993286133, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13068.663120269775, + "relativeCreated": 17575.945615768433, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:24,368", - "created": 1609969764.3684056, + "asctime": "2021-01-11 07:30:52,926", + "created": 1610346652.926542, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 368.4055805206299, + "msecs": 926.5420436859131, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13068.747758865356, + "relativeCreated": 17576.083660125732, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:52,926", + "created": 1610346652.9268413, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 926.8412590026855, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17576.382875442505, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:52,926", + "created": 1610346652.9269972, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 926.997184753418, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17576.538801193237, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:52,927", + "created": 1610346652.9271946, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 927.1945953369141, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17576.736211776733, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:52,927", + "created": 1610346652.9273427, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 927.3426532745361, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17576.884269714355, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:52,927", + "created": 1610346652.9274845, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 927.4845123291016, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17577.02612876892, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:52,927", + "created": 1610346652.9276266, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 927.6266098022461, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17577.168226242065, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:52,927", + "created": 1610346652.9277754, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 927.7753829956055, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17577.316999435425, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:52,927", + "created": 1610346652.927941, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 927.941083908081, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17577.4827003479, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:52,928", + "created": 1610346652.9280968, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 928.0967712402344, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17577.638387680054, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:52,928", + "created": 1610346652.9282815, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 928.2815456390381, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17577.823162078857, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:52,928", + "created": 1610346652.9284327, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 928.4327030181885, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17577.974319458008, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:52,928", + "created": 1610346652.9285963, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 928.5962581634521, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17578.13787460327, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:52,928", + "created": 1610346652.928761, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 928.7610054016113, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17578.30262184143, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:52,928", + "created": 1610346652.9289148, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 928.9147853851318, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17578.45640182495, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:52,929", + "created": 1610346652.929064, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 929.0640354156494, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17578.60565185547, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:52,929", + "created": 1610346652.929217, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 929.2171001434326, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17578.758716583252, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:52,929", + "created": 1610346652.9293613, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 929.3613433837891, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17578.90295982361, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:52,929", + "created": 1610346652.929492, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 929.4919967651367, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17579.033613204956, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:52,929", + "created": 1610346652.9295344, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 929.5344352722168, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17579.076051712036, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:52,929", + "created": 1610346652.9295764, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 929.5763969421387, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17579.118013381958, + "stack_info": null, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 368.49069595336914, + "msecs": 929.6164512634277, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13068.832874298096, + "relativeCreated": 17579.158067703247, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 8.511543273925781e-05 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,368", - "created": 1609969764.3688645, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client Communication instance connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client Communication instance connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,368", - "created": 1609969764.3686712, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client Communication instance connection status): False ()", - "module": "test", - "msecs": 368.671178817749, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13069.013357162476, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "Client Communication instance connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,368", - "created": 1609969764.3687687, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client Communication instance connection status): result = False ()", - "module": "test", - "msecs": 368.76869201660156, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13069.110870361328, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - } - ], - "msecs": 368.8645362854004, - "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13069.206714630127, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread", - "time_consumption": 9.584426879882812e-05 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,369", - "created": 1609969764.3691704, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server Communication instance connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server Communication instance connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,369", - "created": 1609969764.3690033, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server Communication instance connection status): False ()", - "module": "test", - "msecs": 369.0032958984375, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13069.345474243164, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "Server Communication instance connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,369", - "created": 1609969764.3690882, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server Communication instance connection status): result = False ()", - "module": "test", - "msecs": 369.08817291259766, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13069.430351257324, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - } - ], - "msecs": 369.1704273223877, - "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13069.512605667114, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread", - "time_consumption": 8.225440979003906e-05 + "time_consumption": 4.00543212890625e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:24,370", - "created": 1609969764.3709853, + "asctime": "2021-01-11 07:30:53,273", + "created": 1610346653.273684, "exc_info": null, "exc_text": null, - "filename": "test_add_methods.py", - "funcName": "is_connected", + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 37, - "message": "Connecting Client", - "module": "test_add_methods", + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP client:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:24,369", - "created": 1609969764.3692997, + "asctime": "2021-01-11 07:30:52,929", + "created": 1610346652.929714, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 929.7139644622803, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17579.2555809021, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:52,929", + "created": 1610346652.9297612, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 929.7611713409424, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17579.30278778076, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:52,929", + "created": 1610346652.929805, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 369.29965019226074, + "msecs": 929.8050403594971, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13069.641828536987, + "relativeCreated": 17579.346656799316, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: channel name request, data_id: name", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:24,369", - "created": 1609969764.3694203, + "asctime": "2021-01-11 07:30:52,929", + "created": 1610346652.9298937, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 369.42028999328613, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 929.8937320709229, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13069.762468338013, + "relativeCreated": 17579.435348510742, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,369", - "created": 1609969764.3696568, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", - "module": "test_helpers", - "msecs": 369.6568012237549, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13069.998979568481, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,369", - "created": 1609969764.36983, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", - "module": "test_helpers", - "msecs": 369.8298931121826, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13070.17207145691, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-server:" + ], + "asctime": "2021-01-11 07:30:52,930", + "created": 1610346652.9300811, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 930.0811290740967, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17579.622745513916, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:52,930", + "created": 1610346652.9302979, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 930.2978515625, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17579.83946800232, + "stack_info": null, + "thread": 140560606140160, + "threadName": "Thread-31" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:52,930", + "created": 1610346652.9301317, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 930.1316738128662, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17579.673290252686, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:52,930", + "created": 1610346652.9305522, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 930.5522441864014, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17580.09386062622, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:52,938", + "created": 1610346652.9384935, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 938.4934902191162, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17588.035106658936, + "stack_info": null, + "thread": 140560606140160, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,938", + "created": 1610346652.938615, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 938.615083694458, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17588.156700134277, + "stack_info": null, + "thread": 140560606140160, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:52,938", + "created": 1610346652.9386668, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 938.666820526123, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17588.208436965942, + "stack_info": null, + "thread": 140560606140160, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,938", + "created": 1610346652.9387367, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 938.7366771697998, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17588.27829360962, + "stack_info": null, + "thread": 140560606140160, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,938", + "created": 1610346652.9387844, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 938.7843608856201, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17588.32597732544, + "stack_info": null, + "thread": 140560606140160, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,938", + "created": 1610346652.9388525, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 938.8525485992432, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17588.394165039062, + "stack_info": null, + "thread": 140560606140160, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,938", + "created": 1610346652.938896, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 938.8959407806396, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17588.43755722046, + "stack_info": null, + "thread": 140560606140160, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,938", + "created": 1610346652.9389517, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 938.9517307281494, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17588.49334716797, + "stack_info": null, + "thread": 140560606140160, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,938", + "created": 1610346652.938992, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 938.9920234680176, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17588.533639907837, + "stack_info": null, + "thread": 140560606140160, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,939", + "created": 1610346652.939046, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 939.0459060668945, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17588.587522506714, + "stack_info": null, + "thread": 140560606140160, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,939", + "created": 1610346652.939087, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 939.0869140625, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17588.62853050232, + "stack_info": null, + "thread": 140560606140160, + "threadName": "Thread-31" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:52,939", + "created": 1610346652.9391751, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 939.1751289367676, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17588.716745376587, + "stack_info": null, + "thread": 140560606140160, + "threadName": "Thread-31" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:52,940", + "created": 1610346652.9401262, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 940.1261806488037, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17589.667797088623, + "stack_info": null, + "thread": 140560606140160, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,940", + "created": 1610346652.940251, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 940.2511119842529, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17589.792728424072, + "stack_info": null, + "thread": 140560606140160, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:52,940", + "created": 1610346652.940302, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 940.3018951416016, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17589.84351158142, + "stack_info": null, + "thread": 140560606140160, + "threadName": "Thread-31" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" + ], + "asctime": "2021-01-11 07:30:52,940", + "created": 1610346652.9403758, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", + "module": "stp", + "msecs": 940.375804901123, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17589.917421340942, + "stack_info": null, + "thread": 140560606140160, + "threadName": "Thread-31" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: channel name request, data_id: name", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:24,370", - "created": 1609969764.370006, + "asctime": "2021-01-11 07:30:52,940", + "created": 1610346652.9405289, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 370.0060844421387, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 940.5288696289062, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13070.348262786865, + "relativeCreated": 17590.070486068726, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560606140160, + "threadName": "Thread-31" }, { "args": [ - "SP server:", + "prot-server:", "__channel_name_request__" ], - "asctime": "2021-01-06 22:49:24,370", - "created": 1609969764.370124, + "asctime": "2021-01-11 07:30:52,940", + "created": 1610346652.940592, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __channel_name_request__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 370.12410163879395, - "msg": "%s RX <- Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13070.46627998352, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:24,370", - "created": 1609969764.3702457, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 370.24569511413574, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13070.587873458862, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,370", - "created": 1609969764.3704617, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "module": "test_helpers", - "msecs": 370.46170234680176, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13070.803880691528, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,370", - "created": 1609969764.3706136, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "module": "test_helpers", - "msecs": 370.61357498168945, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13070.955753326416, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-01-06 22:49:24,370", - "created": 1609969764.3707738, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 370.7737922668457, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13071.115970611572, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "__channel_name_response__" - ], - "asctime": "2021-01-06 22:49:24,370", - "created": 1609969764.3708808, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 370.8808422088623, + "msecs": 940.5920505523682, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13071.223020553589, + "relativeCreated": 17590.133666992188, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - } - ], - "msecs": 370.9852695465088, - "msg": "Connecting Client", - "name": "__tLogger__", - "pathname": "src/tests/test_add_methods.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13071.327447891235, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread", - "time_consumption": 0.00010442733764648438 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-01-06 22:49:24,371", - "created": 1609969764.3713186, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client Communication instance connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client Communication instance connection status", - "True", - "" - ], - "asctime": "2021-01-06 22:49:24,371", - "created": 1609969764.3711417, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client Communication instance connection status): True ()", - "module": "test", - "msecs": 371.1416721343994, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13071.483850479126, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560606140160, + "threadName": "Thread-31" }, { "args": [ - "Client Communication instance connection status", - "True", - "" + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" ], - "asctime": "2021-01-06 22:49:24,371", - "created": 1609969764.3712306, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client Communication instance connection status): result = True ()", - "module": "test", - "msecs": 371.2306022644043, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13071.57278060913, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - } - ], - "msecs": 371.3185787200928, - "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13071.66075706482, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread", - "time_consumption": 8.797645568847656e-05 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,371", - "created": 1609969764.371642, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server Communication instance connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server Communication instance connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,371", - "created": 1609969764.3714657, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server Communication instance connection status): False ()", - "module": "test", - "msecs": 371.46568298339844, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13071.807861328125, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "Server Communication instance connection status", - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,371", - "created": 1609969764.3715515, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server Communication instance connection status): result = False ()", - "module": "test", - "msecs": 371.551513671875, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13071.893692016602, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - } - ], - "msecs": 371.6421127319336, - "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13071.98429107666, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread", - "time_consumption": 9.059906005859375e-05 - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,371", - "created": 1609969764.371871, - "exc_info": null, - "exc_text": null, - "filename": "test_add_methods.py", - "funcName": "is_connected", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 41, - "message": "Connecting Server", - "module": "test_add_methods", - "moduleLogger": [ - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:24,371", - "created": 1609969764.3717735, + "asctime": "2021-01-11 07:30:52,940", + "created": 1610346652.9406753, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 371.77348136901855, - "msg": "%s Cleaning up receive-buffer", + "msecs": 940.6752586364746, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13072.115659713745, + "relativeCreated": 17590.216875076294, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560606140160, + "threadName": "Thread-31" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:52,940", + "created": 1610346652.9409802, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 940.9801959991455, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17590.521812438965, + "stack_info": null, + "thread": 140560119625472, + "threadName": "Thread-32" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:52,949", + "created": 1610346652.9493864, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 949.3863582611084, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17598.927974700928, + "stack_info": null, + "thread": 140560119625472, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,950", + "created": 1610346652.9501483, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 950.148344039917, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17599.689960479736, + "stack_info": null, + "thread": 140560119625472, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:52,950", + "created": 1610346652.9503274, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 950.3273963928223, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17599.86901283264, + "stack_info": null, + "thread": 140560119625472, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,950", + "created": 1610346652.9504707, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 950.4706859588623, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17600.01230239868, + "stack_info": null, + "thread": 140560119625472, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,950", + "created": 1610346652.9505837, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 950.5836963653564, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17600.125312805176, + "stack_info": null, + "thread": 140560119625472, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,950", + "created": 1610346652.9507627, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 950.7627487182617, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17600.30436515808, + "stack_info": null, + "thread": 140560119625472, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,950", + "created": 1610346652.950963, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 950.963020324707, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17600.504636764526, + "stack_info": null, + "thread": 140560119625472, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,951", + "created": 1610346652.951171, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 951.1709213256836, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17600.712537765503, + "stack_info": null, + "thread": 140560119625472, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,951", + "created": 1610346652.9512973, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 951.2972831726074, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17600.838899612427, + "stack_info": null, + "thread": 140560119625472, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,951", + "created": 1610346652.9514494, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 951.4493942260742, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17600.991010665894, + "stack_info": null, + "thread": 140560119625472, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:52,951", + "created": 1610346652.9515219, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 951.5218734741211, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17601.06348991394, + "stack_info": null, + "thread": 140560119625472, + "threadName": "Thread-32" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:52,951", + "created": 1610346652.9516659, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 951.6658782958984, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17601.207494735718, + "stack_info": null, + "thread": 140560119625472, + "threadName": "Thread-32" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:52,952", + "created": 1610346652.9526968, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 952.6968002319336, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17602.238416671753, + "stack_info": null, + "thread": 140560119625472, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:52,952", + "created": 1610346652.9529946, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 952.9945850372314, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17602.53620147705, + "stack_info": null, + "thread": 140560119625472, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:52,953", + "created": 1610346652.953142, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 953.1419277191162, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17602.683544158936, + "stack_info": null, + "thread": 140560119625472, + "threadName": "Thread-32" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:52,953", + "created": 1610346652.9533155, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 953.3154964447021, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17602.85711288452, + "stack_info": null, + "thread": 140560119625472, + "threadName": "Thread-32" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:52,953", + "created": 1610346652.953666, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 953.6659717559814, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17603.2075881958, + "stack_info": null, + "thread": 140560119625472, + "threadName": "Thread-32" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:52,953", + "created": 1610346652.9538083, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 953.8083076477051, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17603.349924087524, + "stack_info": null, + "thread": 140560119625472, + "threadName": "Thread-32" } ], - "msecs": 371.8709945678711, - "msg": "Connecting Server", + "msecs": 273.684024810791, + "msg": "Connecting Server and Client", "name": "__tLogger__", - "pathname": "src/tests/test_add_methods.py", - "process": 125842, + "pathname": "src/tests/test_helpers.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13072.213172912598, + "relativeCreated": 17923.22564125061, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 9.751319885253906e-05 + "time_consumption": 0.31987571716308594 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:24,372", - "created": 1609969764.3721678, + "asctime": "2021-01-11 07:30:53,274", + "created": 1610346653.2745962, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -77071,8 +164530,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:24,372", - "created": 1609969764.3720005, + "asctime": "2021-01-11 07:30:53,274", + "created": 1610346653.2742357, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -77082,15 +164541,15 @@ "lineno": 22, "message": "Result (Client Communication instance connection status): True ()", "module": "test", - "msecs": 372.00045585632324, + "msecs": 274.23572540283203, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13072.34263420105, + "relativeCreated": 17923.77734184265, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -77099,8 +164558,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:24,372", - "created": 1609969764.3720844, + "asctime": "2021-01-11 07:30:53,274", + "created": 1610346653.2744248, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -77110,37 +164569,37 @@ "lineno": 26, "message": "Expectation (Client Communication instance connection status): result = True ()", "module": "test", - "msecs": 372.084379196167, + "msecs": 274.42479133605957, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13072.426557540894, + "relativeCreated": 17923.96640777588, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 372.16782569885254, + "msecs": 274.5962142944336, "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13072.51000404358, + "relativeCreated": 17924.137830734253, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 8.344650268554688e-05 + "time_consumption": 0.00017142295837402344 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:24,372", - "created": 1609969764.3724697, + "asctime": "2021-01-11 07:30:53,275", + "created": 1610346653.275121, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -77157,8 +164616,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:24,372", - "created": 1609969764.3723042, + "asctime": "2021-01-11 07:30:53,274", + "created": 1610346653.2748368, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -77168,15 +164627,15 @@ "lineno": 22, "message": "Result (Server Communication instance connection status): True ()", "module": "test", - "msecs": 372.30420112609863, + "msecs": 274.83677864074707, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13072.646379470825, + "relativeCreated": 17924.378395080566, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -77185,8 +164644,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:24,372", - "created": 1609969764.3723874, + "asctime": "2021-01-11 07:30:53,274", + "created": 1610346653.2749803, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -77196,41 +164655,344 @@ "lineno": 26, "message": "Expectation (Server Communication instance connection status): result = True ()", "module": "test", - "msecs": 372.3874092102051, + "msecs": 274.9803066253662, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13072.729587554932, + "relativeCreated": 17924.521923065186, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 372.4696636199951, + "msecs": 275.12097358703613, "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13072.811841964722, + "relativeCreated": 17924.662590026855, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 8.225440979003906e-05 + "time_consumption": 0.00014066696166992188 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:53,275", + "created": 1610346653.2759247, + "exc_info": null, + "exc_text": null, + "filename": "test_add_methods.py", + "funcName": "is_connected", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 43, + "message": "Disconnecting Server and Client", + "module": "test_add_methods", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:53,275", + "created": 1610346653.2753336, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 275.3336429595947, + "msg": "%s Connection Lost...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17924.875259399414, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:53,275", + "created": 1610346653.275495, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 275.4950523376465, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17925.036668777466, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:53,275", + "created": 1610346653.2756379, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 275.6378650665283, + "msg": "%s Connection Lost...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17925.179481506348, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:53,275", + "created": 1610346653.2757854, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 275.7854461669922, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17925.32706260681, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + } + ], + "msecs": 275.9246826171875, + "msg": "Disconnecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_add_methods.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17925.466299057007, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.0001392364501953125 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2021-01-11 07:30:53,276", + "created": 1610346653.2764354, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 144, + "message": "Client Communication instance connection status is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Client Communication instance connection status", + "False", + "" + ], + "asctime": "2021-01-11 07:30:53,276", + "created": 1610346653.2761633, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Client Communication instance connection status): False ()", + "module": "test", + "msecs": 276.16333961486816, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17925.704956054688, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "Client Communication instance connection status", + "False", + "" + ], + "asctime": "2021-01-11 07:30:53,276", + "created": 1610346653.2763019, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Client Communication instance connection status): result = False ()", + "module": "test", + "msecs": 276.3018608093262, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17925.843477249146, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + } + ], + "msecs": 276.43537521362305, + "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17925.976991653442, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.000133514404296875 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2021-01-11 07:30:53,276", + "created": 1610346653.2769265, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 144, + "message": "Server Communication instance connection status is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Server Communication instance connection status", + "False", + "" + ], + "asctime": "2021-01-11 07:30:53,276", + "created": 1610346653.2766602, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Server Communication instance connection status): False ()", + "module": "test", + "msecs": 276.6602039337158, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17926.201820373535, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "Server Communication instance connection status", + "False", + "" + ], + "asctime": "2021-01-11 07:30:53,276", + "created": 1610346653.2767947, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Server Communication instance connection status): result = False ()", + "module": "test", + "msecs": 276.7946720123291, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17926.33628845215, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + } + ], + "msecs": 276.92651748657227, + "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17926.46813392639, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.00013184547424316406 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.008158206939697266, - "time_finished": "2021-01-06 22:49:24,372", - "time_start": "2021-01-06 22:49:24,364" + "time_consumption": 0.35732603073120117, + "time_finished": "2021-01-11 07:30:53,276", + "time_start": "2021-01-11 07:30:52,919" }, "_gvJ1oE4gEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-06 22:49:24,372", - "created": 1609969764.3728244, + "asctime": "2021-01-11 07:30:53,277", + "created": 1610346653.277386, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -77241,1441 +165003,2825 @@ "message": "_gvJ1oE4gEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 372.82443046569824, + "msecs": 277.385950088501, "msg": "_gvJ1oE4gEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13073.166608810425, + "relativeCreated": 17926.92756652832, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.3753476, + "asctime": "2021-01-11 07:30:53,285", + "created": 1610346653.2857683, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:24,373", - "created": 1609969764.3730927, + "asctime": "2021-01-11 07:30:53,278", + "created": 1610346653.2785378, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 373.0926513671875, + "msecs": 278.5377502441406, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13073.434829711914, + "relativeCreated": 17928.07936668396, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:24,373", - "created": 1609969764.3732326, + "asctime": "2021-01-11 07:30:53,279", + "created": 1610346653.279388, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 373.2326030731201, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 279.3879508972168, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13073.574781417847, + "relativeCreated": 17928.929567337036, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:24,373", - "created": 1609969764.3733768, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 373.37684631347656, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13073.719024658203, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:24,373", - "created": 1609969764.3734732, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 373.4731674194336, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13073.81534576416, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:24,373", - "created": 1609969764.3735633, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 373.563289642334, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13073.90546798706, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:24,373", - "created": 1609969764.3736517, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 373.65174293518066, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13073.993921279907, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:24,373", - "created": 1609969764.3737469, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 373.7468719482422, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13074.089050292969, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:24,373", - "created": 1609969764.3738446, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 373.8446235656738, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13074.1868019104, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:24,373", - "created": 1609969764.373894, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 373.89397621154785, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13074.236154556274, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:24,373", - "created": 1609969764.373942, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 373.94189834594727, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13074.284076690674, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:24,373", - "created": 1609969764.3739843, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 373.98433685302734, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13074.326515197754, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:24,374", - "created": 1609969764.3740351, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 374.035120010376, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13074.377298355103, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:24,374", - "created": 1609969764.3740864, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 374.0863800048828, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13074.42855834961, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:24,374", - "created": 1609969764.3741343, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 374.1343021392822, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13074.476480484009, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:24,374", - "created": 1609969764.3741803, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 374.1803169250488, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13074.522495269775, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:24,374", - "created": 1609969764.3742278, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 374.22776222229004, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13074.569940567017, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:24,374", - "created": 1609969764.374274, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 374.27401542663574, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13074.616193771362, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:24,374", - "created": 1609969764.3743181, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 374.31812286376953, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13074.660301208496, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:24,374", - "created": 1609969764.374367, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 374.36699867248535, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13074.709177017212, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:24,374", - "created": 1609969764.374413, + "asctime": "2021-01-11 07:30:53,279", + "created": 1610346653.2796097, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 374.41301345825195, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 279.60968017578125, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13074.755191802979, + "relativeCreated": 17929.1512966156, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:24,374", - "created": 1609969764.3744962, + "asctime": "2021-01-11 07:30:53,279", + "created": 1610346653.279949, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 374.4962215423584, + "msecs": 279.9489498138428, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13074.838399887085, + "relativeCreated": 17929.490566253662, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:24,374", - "created": 1609969764.3745444, + "asctime": "2021-01-11 07:30:53,280", + "created": 1610346653.2801287, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 374.5443820953369, + "msecs": 280.12871742248535, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13074.886560440063, + "relativeCreated": 17929.670333862305, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:24,374", - "created": 1609969764.3746061, + "asctime": "2021-01-11 07:30:53,280", + "created": 1610346653.2803524, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 374.6061325073242, + "msecs": 280.3523540496826, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13074.94831085205, + "relativeCreated": 17929.893970489502, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:24,374", - "created": 1609969764.374655, + "asctime": "2021-01-11 07:30:53,280", + "created": 1610346653.280508, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 374.65500831604004, + "msecs": 280.50804138183594, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13074.997186660767, + "relativeCreated": 17930.049657821655, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:24,374", - "created": 1609969764.3746998, + "asctime": "2021-01-11 07:30:53,280", + "created": 1610346653.2806537, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 374.69983100891113, + "msecs": 280.653715133667, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13075.042009353638, + "relativeCreated": 17930.195331573486, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:24,374", - "created": 1609969764.3747432, + "asctime": "2021-01-11 07:30:53,280", + "created": 1610346653.280807, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 374.7432231903076, + "msecs": 280.8070182800293, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13075.085401535034, + "relativeCreated": 17930.34863471985, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:24,374", - "created": 1609969764.3747928, + "asctime": "2021-01-11 07:30:53,280", + "created": 1610346653.2809691, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 374.79281425476074, + "msecs": 280.96914291381836, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13075.134992599487, + "relativeCreated": 17930.510759353638, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:24,374", - "created": 1609969764.3748434, + "asctime": "2021-01-11 07:30:53,281", + "created": 1610346653.281142, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 374.8433589935303, + "msecs": 281.141996383667, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13075.185537338257, + "relativeCreated": 17930.683612823486, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:24,374", - "created": 1609969764.374896, + "asctime": "2021-01-11 07:30:53,281", + "created": 1610346653.281298, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 374.8960494995117, + "msecs": 281.2979221343994, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13075.238227844238, + "relativeCreated": 17930.83953857422, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:24,374", - "created": 1609969764.3749375, + "asctime": "2021-01-11 07:30:53,281", + "created": 1610346653.2814875, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 374.9375343322754, + "msecs": 281.48746490478516, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13075.279712677002, + "relativeCreated": 17931.029081344604, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:24,374", - "created": 1609969764.3749723, + "asctime": "2021-01-11 07:30:53,281", + "created": 1610346653.281706, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 374.9723434448242, + "msecs": 281.7060947418213, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13075.31452178955, + "relativeCreated": 17931.24771118164, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.3750117, + "asctime": "2021-01-11 07:30:53,281", + "created": 1610346653.2818635, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 375.011682510376, + "msecs": 281.8634510040283, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13075.353860855103, + "relativeCreated": 17931.405067443848, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.3750525, + "asctime": "2021-01-11 07:30:53,282", + "created": 1610346653.282038, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 375.05245208740234, + "msecs": 282.03797340393066, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13075.394630432129, + "relativeCreated": 17931.57958984375, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.375089, + "asctime": "2021-01-11 07:30:53,282", + "created": 1610346653.2821822, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 375.0889301300049, + "msecs": 282.1822166442871, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13075.431108474731, + "relativeCreated": 17931.723833084106, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.3751287, + "asctime": "2021-01-11 07:30:53,282", + "created": 1610346653.282337, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 375.12874603271484, + "msecs": 282.336950302124, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13075.470924377441, + "relativeCreated": 17931.878566741943, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.37517, + "asctime": "2021-01-11 07:30:53,282", + "created": 1610346653.282491, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 375.1699924468994, + "msecs": 282.49096870422363, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13075.512170791626, + "relativeCreated": 17932.032585144043, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.3752084, + "asctime": "2021-01-11 07:30:53,282", + "created": 1610346653.282649, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 375.20837783813477, + "msecs": 282.64904022216797, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13075.550556182861, + "relativeCreated": 17932.190656661987, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.3752449, + "asctime": "2021-01-11 07:30:53,282", + "created": 1610346653.2827883, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 375.2448558807373, + "msecs": 282.7882766723633, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13075.587034225464, + "relativeCreated": 17932.329893112183, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.3752797, + "asctime": "2021-01-11 07:30:53,282", + "created": 1610346653.2829268, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 375.27966499328613, + "msecs": 282.9267978668213, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13075.621843338013, + "relativeCreated": 17932.46841430664, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.3753147, + "asctime": "2021-01-11 07:30:53,283", + "created": 1610346653.2830763, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 375.31471252441406, + "msecs": 283.07628631591797, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13075.65689086914, + "relativeCreated": 17932.617902755737, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:53,283", + "created": 1610346653.2833579, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 283.3578586578369, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17932.899475097656, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:53,283", + "created": 1610346653.2835133, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 283.51330757141113, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17933.05492401123, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:53,283", + "created": 1610346653.2837114, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 283.71143341064453, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17933.253049850464, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:53,283", + "created": 1610346653.28386, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 283.8599681854248, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17933.401584625244, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:53,284", + "created": 1610346653.2840106, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 284.010648727417, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17933.552265167236, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:53,284", + "created": 1610346653.2841516, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 284.151554107666, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17933.693170547485, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:53,284", + "created": 1610346653.2843013, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 284.3012809753418, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17933.84289741516, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:53,284", + "created": 1610346653.2844715, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 284.4715118408203, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17934.01312828064, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:53,284", + "created": 1610346653.2846272, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 284.62719917297363, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17934.168815612793, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:53,284", + "created": 1610346653.2847779, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 284.7778797149658, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17934.319496154785, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:53,284", + "created": 1610346653.2849126, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 284.9125862121582, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17934.454202651978, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:53,285", + "created": 1610346653.285081, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 285.0809097290039, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17934.622526168823, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:53,285", + "created": 1610346653.2852554, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 285.25543212890625, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17934.797048568726, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:53,285", + "created": 1610346653.285402, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 285.4020595550537, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17934.943675994873, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:53,285", + "created": 1610346653.2855043, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 285.5043411254883, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17935.045957565308, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:53,285", + "created": 1610346653.2855515, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 285.5515480041504, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17935.09316444397, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:53,285", + "created": 1610346653.285602, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 285.6020927429199, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17935.14370918274, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:53,285", + "created": 1610346653.285645, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 285.6450080871582, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17935.186624526978, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:53,285", + "created": 1610346653.2856867, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 285.686731338501, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17935.22834777832, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:53,285", + "created": 1610346653.2857282, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 285.72821617126465, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17935.269832611084, + "stack_info": null, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 375.3476142883301, + "msecs": 285.7682704925537, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13075.689792633057, + "relativeCreated": 17935.309886932373, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 3.2901763916015625e-05 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.3754942, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Reconnect executed marker is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Reconnect executed marker", - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.3754225, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Reconnect executed marker): False ()", - "module": "test", - "msecs": 375.42247772216797, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13075.764656066895, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "Reconnect executed marker", - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.3754587, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Reconnect executed marker): result = False ()", - "module": "test", - "msecs": 375.4587173461914, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13075.800895690918, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - } - ], - "msecs": 375.49424171447754, - "msg": "Reconnect executed marker is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13075.836420059204, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread", - "time_consumption": 3.552436828613281e-05 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.375618, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Reconnect executed marker is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Reconnect executed marker", - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.3755486, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Reconnect executed marker): False ()", - "module": "test", - "msecs": 375.5486011505127, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13075.89077949524, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "Reconnect executed marker", - "False", - "" - ], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.375584, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Reconnect executed marker): result = False ()", - "module": "test", - "msecs": 375.5838871002197, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13075.926065444946, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - } - ], - "msecs": 375.61798095703125, - "msg": "Reconnect executed marker is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13075.960159301758, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread", - "time_consumption": 3.409385681152344e-05 + "time_consumption": 4.00543212890625e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.3756738, + "asctime": "2021-01-11 07:30:53,629", + "created": 1610346653.6295822, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:53,285", + "created": 1610346653.2858598, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 285.8598232269287, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17935.401439666748, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:53,285", + "created": 1610346653.2859042, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 285.9041690826416, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17935.44578552246, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:53,285", + "created": 1610346653.2859533, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 285.9532833099365, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17935.494899749756, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:53,286", + "created": 1610346653.2860386, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 286.0386371612549, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17935.580253601074, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:53,286", + "created": 1610346653.286232, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 286.23199462890625, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17935.773611068726, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:53,286", + "created": 1610346653.286283, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 286.283016204834, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17935.824632644653, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:53,286", + "created": 1610346653.2863286, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 286.3285541534424, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17935.87017059326, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:53,286", + "created": 1610346653.2865658, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 286.56578063964844, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17936.107397079468, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:53,294", + "created": 1610346653.2947319, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 294.73185539245605, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17944.273471832275, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,294", + "created": 1610346653.294851, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 294.85106468200684, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17944.392681121826, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:53,294", + "created": 1610346653.2949038, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 294.9037551879883, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17944.445371627808, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,294", + "created": 1610346653.2949836, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 294.9836254119873, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17944.525241851807, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:53,295", + "created": 1610346653.2950292, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 295.0291633605957, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17944.570779800415, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,295", + "created": 1610346653.2950933, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 295.093297958374, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17944.634914398193, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:53,295", + "created": 1610346653.2951355, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 295.135498046875, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17944.677114486694, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,295", + "created": 1610346653.2951922, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 295.1922416687012, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17944.73385810852, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:53,295", + "created": 1610346653.2952342, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 295.23420333862305, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17944.775819778442, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,295", + "created": 1610346653.295289, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 295.2890396118164, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17944.830656051636, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:53,295", + "created": 1610346653.2953298, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 295.3298091888428, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17944.871425628662, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:53,295", + "created": 1610346653.2954173, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 295.41730880737305, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17944.958925247192, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:53,296", + "created": 1610346653.2963123, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 296.3123321533203, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17945.85394859314, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,296", + "created": 1610346653.296389, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 296.389102935791, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17945.93071937561, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:53,296", + "created": 1610346653.2964413, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 296.44131660461426, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17945.982933044434, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" + ], + "asctime": "2021-01-11 07:30:53,296", + "created": 1610346653.296517, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", + "module": "stp", + "msecs": 296.51689529418945, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17946.05851173401, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:53,296", + "created": 1610346653.296659, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 296.658992767334, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17946.200609207153, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:53,296", + "created": 1610346653.2967203, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 296.7202663421631, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17946.261882781982, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:53,296", + "created": 1610346653.296801, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 296.8010902404785, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17946.342706680298, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:53,297", + "created": 1610346653.2970567, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 297.0566749572754, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17946.598291397095, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:53,305", + "created": 1610346653.305273, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 305.27305603027344, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17954.814672470093, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,305", + "created": 1610346653.3054128, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 305.41276931762695, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17954.954385757446, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:53,305", + "created": 1610346653.305486, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 305.48596382141113, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17955.02758026123, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,305", + "created": 1610346653.305574, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 305.5739402770996, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17955.11555671692, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:53,305", + "created": 1610346653.3056219, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 305.621862411499, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17955.16347885132, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,305", + "created": 1610346653.305687, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 305.68695068359375, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17955.228567123413, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:53,305", + "created": 1610346653.30573, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 305.73010444641113, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17955.27172088623, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,305", + "created": 1610346653.3057945, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 305.79447746276855, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17955.336093902588, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:53,305", + "created": 1610346653.305839, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 305.83906173706055, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17955.38067817688, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,306", + "created": 1610346653.3060334, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 306.0333728790283, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17955.574989318848, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:53,306", + "created": 1610346653.3060803, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 306.0803413391113, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17955.62195777893, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:53,306", + "created": 1610346653.3061664, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 306.166410446167, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17955.708026885986, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:53,307", + "created": 1610346653.3071156, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 307.1155548095703, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17956.65717124939, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,307", + "created": 1610346653.3072448, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 307.24477767944336, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17956.786394119263, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:53,307", + "created": 1610346653.3072984, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 307.2984218597412, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17956.84003829956, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:53,307", + "created": 1610346653.3073888, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 307.3887825012207, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17956.93039894104, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:53,307", + "created": 1610346653.3075233, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 307.523250579834, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17957.064867019653, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:53,307", + "created": 1610346653.3075898, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 307.5897693634033, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 17957.131385803223, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + } + ], + "msecs": 629.5821666717529, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18279.123783111572, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.3219923973083496 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2021-01-11 07:30:53,630", + "created": 1610346653.6302266, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 144, + "message": "Client Communication instance connection status is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Client Communication instance connection status", + "True", + "" + ], + "asctime": "2021-01-11 07:30:53,629", + "created": 1610346653.6299806, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Client Communication instance connection status): True ()", + "module": "test", + "msecs": 629.9805641174316, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18279.52218055725, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "Client Communication instance connection status", + "True", + "" + ], + "asctime": "2021-01-11 07:30:53,630", + "created": 1610346653.630113, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Client Communication instance connection status): result = True ()", + "module": "test", + "msecs": 630.112886428833, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18279.654502868652, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + } + ], + "msecs": 630.2266120910645, + "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18279.768228530884, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.00011372566223144531 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2021-01-11 07:30:53,630", + "created": 1610346653.630599, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 144, + "message": "Server Communication instance connection status is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Server Communication instance connection status", + "True", + "" + ], + "asctime": "2021-01-11 07:30:53,630", + "created": 1610346653.630399, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Server Communication instance connection status): True ()", + "module": "test", + "msecs": 630.3989887237549, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18279.940605163574, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "Server Communication instance connection status", + "True", + "" + ], + "asctime": "2021-01-11 07:30:53,630", + "created": 1610346653.6305008, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Server Communication instance connection status): result = True ()", + "module": "test", + "msecs": 630.5007934570312, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18280.04240989685, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + } + ], + "msecs": 630.5990219116211, + "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18280.14063835144, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 9.822845458984375e-05 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:53,631", + "created": 1610346653.6311996, "exc_info": null, "exc_text": null, "filename": "test_add_methods.py", "funcName": "reconnect", "levelname": "DEBUG", "levelno": 10, - "lineno": 53, - "message": "Executing reconnect for Server", + "lineno": 55, + "message": "Disconnecting Server and Client", "module": "test_add_methods", - "moduleLogger": [], - "msecs": 375.673770904541, - "msg": "Executing reconnect for Server", - "name": "__tLogger__", - "pathname": "src/tests/test_add_methods.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 13076.015949249268, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.3757942, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Reconnect executed marker is correct (Content True and Type is ).", - "module": "test", "moduleLogger": [ { "args": [ - "Reconnect executed marker", - "True", - "" + "comm-client:" ], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.3757253, + "asctime": "2021-01-11 07:30:53,630", + "created": 1610346653.6307528, "exc_info": null, "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Reconnect executed marker): True ()", - "module": "test", - "msecs": 375.72526931762695, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 630.7528018951416, + "msg": "%s Connection Lost...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13076.067447662354, + "relativeCreated": 18280.29441833496, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "Reconnect executed marker", - "True", - "" + "prot-client:" ], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.37576, + "asctime": "2021-01-11 07:30:53,630", + "created": 1610346653.630895, "exc_info": null, "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Reconnect executed marker): result = True ()", - "module": "test", - "msecs": 375.7600784301758, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 125842, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 630.8948993682861, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13076.102256774902, + "relativeCreated": 18280.436515808105, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:53,631", + "created": 1610346653.6310065, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 631.0064792633057, + "msg": "%s Connection Lost...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18280.548095703125, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:53,631", + "created": 1610346653.6311038, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 631.1037540435791, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18280.6453704834, + "stack_info": null, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 375.7941722869873, - "msg": "Reconnect executed marker is correct (Content %s and Type is %s).", + "msecs": 631.1995983123779, + "msg": "Disconnecting Server and Client", "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 125842, + "pathname": "src/tests/test_add_methods.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13076.136350631714, + "relativeCreated": 18280.741214752197, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 3.409385681152344e-05 + "time_consumption": 9.584426879882812e-05 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.375919, + "asctime": "2021-01-11 07:30:53,631", + "created": 1610346653.631577, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -78683,17 +167829,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 144, - "message": "Reconnect executed marker is correct (Content False and Type is ).", + "message": "Client Communication instance connection status is correct (Content False and Type is ).", "module": "test", "moduleLogger": [ { "args": [ - "Reconnect executed marker", + "Client Communication instance connection status", "False", "" ], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.3758457, + "asctime": "2021-01-11 07:30:53,631", + "created": 1610346653.6313643, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -78701,27 +167847,27 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Reconnect executed marker): False ()", + "message": "Result (Client Communication instance connection status): False ()", "module": "test", - "msecs": 375.84567070007324, + "msecs": 631.3643455505371, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13076.1878490448, + "relativeCreated": 18280.905961990356, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "Reconnect executed marker", + "Client Communication instance connection status", "False", "" ], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.375881, + "asctime": "2021-01-11 07:30:53,631", + "created": 1610346653.631479, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -78729,65 +167875,1412 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 26, - "message": "Expectation (Reconnect executed marker): result = False ()", + "message": "Expectation (Client Communication instance connection status): result = False ()", "module": "test", - "msecs": 375.8809566497803, + "msecs": 631.479024887085, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13076.223134994507, + "relativeCreated": 18281.020641326904, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 375.9191036224365, - "msg": "Reconnect executed marker is correct (Content %s and Type is %s).", + "msecs": 631.5770149230957, + "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13076.261281967163, + "relativeCreated": 18281.118631362915, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 3.814697265625e-05 + "time_consumption": 9.799003601074219e-05 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2021-01-11 07:30:53,631", + "created": 1610346653.6319208, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 144, + "message": "Server Communication instance connection status is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Server Communication instance connection status", + "False", + "" + ], + "asctime": "2021-01-11 07:30:53,631", + "created": 1610346653.6317303, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Server Communication instance connection status): False ()", + "module": "test", + "msecs": 631.730318069458, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18281.271934509277, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "Server Communication instance connection status", + "False", + "" + ], + "asctime": "2021-01-11 07:30:53,631", + "created": 1610346653.6318269, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Server Communication instance connection status): result = False ()", + "module": "test", + "msecs": 631.8268775939941, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18281.368494033813, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + } + ], + "msecs": 631.9208145141602, + "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18281.46243095398, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 9.393692016601562e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:24,375", - "created": 1609969764.37597, + "asctime": "2021-01-11 07:30:53,976", + "created": 1610346653.9765818, "exc_info": null, "exc_text": null, "filename": "test_add_methods.py", "funcName": "reconnect", "levelname": "DEBUG", "levelno": 10, - "lineno": 58, - "message": "Executing reconnect for Client", + "lineno": 61, + "message": "Connecting Server and Client", "module": "test_add_methods", - "moduleLogger": [], - "msecs": 375.96988677978516, - "msg": "Executing reconnect for Client", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:53,632", + "created": 1610346653.6320922, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 632.0922374725342, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18281.633853912354, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:53,632", + "created": 1610346653.6321995, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 632.1995258331299, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18281.74114227295, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:53,632", + "created": 1610346653.6323073, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 632.3072910308838, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18281.848907470703, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:53,632", + "created": 1610346653.632525, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 632.5249671936035, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18282.066583633423, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:53,633", + "created": 1610346653.6330147, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 633.0146789550781, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18282.556295394897, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:53,633", + "created": 1610346653.6331391, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 633.1391334533691, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18282.68074989319, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:53,633", + "created": 1610346653.6332488, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 633.2488059997559, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18282.790422439575, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:53,633", + "created": 1610346653.6338768, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 633.8768005371094, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18283.41841697693, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:53,642", + "created": 1610346653.6422188, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 642.218828201294, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18291.760444641113, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,642", + "created": 1610346653.6424706, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 642.4705982208252, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18292.012214660645, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:53,642", + "created": 1610346653.6426325, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 642.6324844360352, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18292.174100875854, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,642", + "created": 1610346653.642762, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 642.7619457244873, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18292.303562164307, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:53,642", + "created": 1610346653.6428533, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 642.8532600402832, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18292.394876480103, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,642", + "created": 1610346653.642984, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 642.9839134216309, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18292.52552986145, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:53,643", + "created": 1610346653.643068, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 643.0680751800537, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18292.609691619873, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,643", + "created": 1610346653.6431887, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 643.1887149810791, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18292.7303314209, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:53,643", + "created": 1610346653.6432772, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 643.2771682739258, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18292.818784713745, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,643", + "created": 1610346653.6433876, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 643.3875560760498, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18292.92917251587, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:53,643", + "created": 1610346653.6434693, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 643.4693336486816, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18293.0109500885, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:53,643", + "created": 1610346653.6436334, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 643.6333656311035, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18293.174982070923, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:53,644", + "created": 1610346653.6446767, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 644.676685333252, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18294.21830177307, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,644", + "created": 1610346653.6449077, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 644.9077129364014, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18294.44932937622, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:53,645", + "created": 1610346653.645014, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 645.0140476226807, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18294.5556640625, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" + ], + "asctime": "2021-01-11 07:30:53,645", + "created": 1610346653.6451657, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", + "module": "stp", + "msecs": 645.1656818389893, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18294.70729827881, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:53,645", + "created": 1610346653.6454048, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 645.4048156738281, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18294.946432113647, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:53,645", + "created": 1610346653.6455593, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 645.5593109130859, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18295.100927352905, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:53,645", + "created": 1610346653.6457171, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 645.7171440124512, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18295.25876045227, + "stack_info": null, + "thread": 140560111232768, + "threadName": "Thread-33" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:53,646", + "created": 1610346653.6462448, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 646.2447643280029, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18295.786380767822, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:53,654", + "created": 1610346653.654582, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 654.5820236206055, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18304.123640060425, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,654", + "created": 1610346653.6548207, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 654.8206806182861, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18304.362297058105, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:53,654", + "created": 1610346653.6549566, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 654.956579208374, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18304.498195648193, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,655", + "created": 1610346653.6551154, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 655.1153659820557, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18304.656982421875, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:53,655", + "created": 1610346653.6552284, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 655.2283763885498, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18304.76999282837, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,655", + "created": 1610346653.6553924, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 655.3924083709717, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18304.93402481079, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:53,655", + "created": 1610346653.6555002, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 655.5001735687256, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18305.041790008545, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,655", + "created": 1610346653.6556797, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 655.6797027587891, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18305.22131919861, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:53,655", + "created": 1610346653.6558423, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 655.8423042297363, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18305.383920669556, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,655", + "created": 1610346653.6559854, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 655.9853553771973, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18305.526971817017, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:53,656", + "created": 1610346653.656092, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 656.0919284820557, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18305.633544921875, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:53,656", + "created": 1610346653.6562915, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 656.2914848327637, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18305.833101272583, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:53,657", + "created": 1610346653.6573932, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 657.393217086792, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18306.93483352661, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:53,657", + "created": 1610346653.657737, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 657.7370166778564, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18307.278633117676, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:53,657", + "created": 1610346653.6579022, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 657.9022407531738, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18307.443857192993, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:53,658", + "created": 1610346653.658102, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 658.1020355224609, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18307.64365196228, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:53,658", + "created": 1610346653.6584055, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 658.4055423736572, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18307.947158813477, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:53,658", + "created": 1610346653.6585581, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 658.5581302642822, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 18308.0997467041, + "stack_info": null, + "thread": 140560102840064, + "threadName": "Thread-34" + } + ], + "msecs": 976.5818119049072, + "msg": "Connecting Server and Client", "name": "__tLogger__", "pathname": "src/tests/test_add_methods.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13076.312065124512, + "relativeCreated": 18626.123428344727, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0 + "time_consumption": 0.318023681640625 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:24,376", - "created": 1609969764.3760922, + "asctime": "2021-01-11 07:30:53,977", + "created": 1610346653.9775877, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -78795,17 +169288,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 144, - "message": "Reconnect executed marker is correct (Content True and Type is ).", + "message": "Client Communication instance connection status is correct (Content True and Type is ).", "module": "test", "moduleLogger": [ { "args": [ - "Reconnect executed marker", + "Client Communication instance connection status", "True", "" ], - "asctime": "2021-01-06 22:49:24,376", - "created": 1609969764.3760202, + "asctime": "2021-01-11 07:30:53,977", + "created": 1610346653.9771788, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -78813,27 +169306,27 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Reconnect executed marker): True ()", + "message": "Result (Client Communication instance connection status): True ()", "module": "test", - "msecs": 376.0201930999756, + "msecs": 977.1788120269775, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13076.362371444702, + "relativeCreated": 18626.720428466797, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "Reconnect executed marker", + "Client Communication instance connection status", "True", "" ], - "asctime": "2021-01-06 22:49:24,376", - "created": 1609969764.3760579, + "asctime": "2021-01-11 07:30:53,977", + "created": 1610346653.9773731, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -78841,39 +169334,39 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 26, - "message": "Expectation (Reconnect executed marker): result = True ()", + "message": "Expectation (Client Communication instance connection status): result = True ()", "module": "test", - "msecs": 376.05786323547363, + "msecs": 977.3731231689453, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13076.4000415802, + "relativeCreated": 18626.914739608765, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 376.09219551086426, - "msg": "Reconnect executed marker is correct (Content %s and Type is %s).", + "msecs": 977.5876998901367, + "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13076.43437385559, + "relativeCreated": 18627.129316329956, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 3.4332275390625e-05 + "time_consumption": 0.00021457672119140625 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:24,376", - "created": 1609969764.3762283, + "asctime": "2021-01-11 07:30:53,978", + "created": 1610346653.9782095, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -78881,17 +169374,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 144, - "message": "Reconnect executed marker is correct (Content True and Type is ).", + "message": "Server Communication instance connection status is correct (Content True and Type is ).", "module": "test", "moduleLogger": [ { "args": [ - "Reconnect executed marker", + "Server Communication instance connection status", "True", "" ], - "asctime": "2021-01-06 22:49:24,376", - "created": 1609969764.3761432, + "asctime": "2021-01-11 07:30:53,977", + "created": 1610346653.9778826, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -78899,27 +169392,27 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Reconnect executed marker): True ()", + "message": "Result (Server Communication instance connection status): True ()", "module": "test", - "msecs": 376.143217086792, + "msecs": 977.8826236724854, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13076.485395431519, + "relativeCreated": 18627.424240112305, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "Reconnect executed marker", + "Server Communication instance connection status", "True", "" ], - "asctime": "2021-01-06 22:49:24,376", - "created": 1609969764.3761904, + "asctime": "2021-01-11 07:30:53,978", + "created": 1610346653.9780521, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -78927,43 +169420,43 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 26, - "message": "Expectation (Reconnect executed marker): result = True ()", + "message": "Expectation (Server Communication instance connection status): result = True ()", "module": "test", - "msecs": 376.1904239654541, + "msecs": 978.0521392822266, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13076.53260231018, + "relativeCreated": 18627.593755722046, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 376.22833251953125, - "msg": "Reconnect executed marker is correct (Content %s and Type is %s).", + "msecs": 978.2094955444336, + "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 13076.570510864258, + "relativeCreated": 18627.751111984253, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 3.790855407714844e-05 + "time_consumption": 0.00015735626220703125 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.003403902053833008, - "time_finished": "2021-01-06 22:49:24,376", - "time_start": "2021-01-06 22:49:24,372" + "time_consumption": 0.7008235454559326, + "time_finished": "2021-01-11 07:30:53,978", + "time_start": "2021-01-11 07:30:53,277" }, "_j-npsE0MEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:49:12,220", - "created": 1609969752.2201154, + "asctime": "2021-01-11 07:30:37,219", + "created": 1610346637.2196364, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -78974,1154 +169467,2519 @@ "message": "_j-npsE0MEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 220.11542320251465, + "msecs": 219.6364402770996, "msg": "_j-npsE0MEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 920.4576015472412, + "relativeCreated": 1869.178056716919, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:12,227", - "created": 1609969752.2275722, + "asctime": "2021-01-11 07:30:37,226", + "created": 1610346637.2265892, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:12,220", - "created": 1609969752.2205276, + "asctime": "2021-01-11 07:30:37,220", + "created": 1610346637.220636, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 220.52764892578125, + "msecs": 220.63589096069336, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 920.8698272705078, + "relativeCreated": 1870.1775074005127, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:12,220", - "created": 1609969752.2207341, + "asctime": "2021-01-11 07:30:37,221", + "created": 1610346637.221644, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 220.7341194152832, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 221.64392471313477, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 921.0762977600098, + "relativeCreated": 1871.185541152954, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:12,220", - "created": 1609969752.2209551, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 220.95513343811035, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 921.2973117828369, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:12,221", - "created": 1609969752.2211134, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 221.1134433746338, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 921.4556217193604, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:12,221", - "created": 1609969752.2212636, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 221.26364707946777, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 921.6058254241943, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:12,221", - "created": 1609969752.2214193, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 221.4193344116211, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 921.7615127563477, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:12,221", - "created": 1609969752.2215903, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 221.5902805328369, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 921.9324588775635, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:12,221", - "created": 1609969752.2217674, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 221.76742553710938, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 922.1096038818359, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:12,221", - "created": 1609969752.221963, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 221.96292877197266, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 922.3051071166992, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:12,222", - "created": 1609969752.2221365, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 222.1364974975586, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 922.4786758422852, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:12,222", - "created": 1609969752.222285, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 222.28503227233887, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 922.6272106170654, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:12,222", - "created": 1609969752.2224414, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 222.4414348602295, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 922.783613204956, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:12,222", - "created": 1609969752.2226098, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 222.6097583770752, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 922.9519367218018, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:12,222", - "created": 1609969752.222758, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 222.75805473327637, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 923.1002330780029, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:12,222", - "created": 1609969752.22291, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 222.90992736816406, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 923.2521057128906, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:12,223", - "created": 1609969752.223064, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 223.06394577026367, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 923.4061241149902, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:12,223", - "created": 1609969752.2232227, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 223.2227325439453, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 923.5649108886719, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:12,223", - "created": 1609969752.223375, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 223.3750820159912, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 923.7172603607178, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:12,223", - "created": 1609969752.2235157, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 223.51574897766113, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 923.8579273223877, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:12,223", - "created": 1609969752.2236557, + "asctime": "2021-01-11 07:30:37,221", + "created": 1610346637.2218754, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 223.65570068359375, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 221.87542915344238, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 923.9978790283203, + "relativeCreated": 1871.4170455932617, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:12,223", - "created": 1609969752.2239254, + "asctime": "2021-01-11 07:30:37,222", + "created": 1610346637.2222142, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 223.92535209655762, + "msecs": 222.2142219543457, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 924.2675304412842, + "relativeCreated": 1871.755838394165, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:12,224", - "created": 1609969752.2240946, + "asctime": "2021-01-11 07:30:37,222", + "created": 1610346637.2224212, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 224.09462928771973, + "msecs": 222.42116928100586, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 924.4368076324463, + "relativeCreated": 1871.9627857208252, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:12,224", - "created": 1609969752.224306, + "asctime": "2021-01-11 07:30:37,222", + "created": 1610346637.2226458, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 224.3061065673828, + "msecs": 222.64575958251953, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 924.6482849121094, + "relativeCreated": 1872.1873760223389, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:12,224", - "created": 1609969752.2244568, + "asctime": "2021-01-11 07:30:37,222", + "created": 1610346637.2228029, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 224.456787109375, + "msecs": 222.80287742614746, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 924.7989654541016, + "relativeCreated": 1872.3444938659668, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:12,224", - "created": 1609969752.224601, + "asctime": "2021-01-11 07:30:37,222", + "created": 1610346637.222954, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 224.60103034973145, + "msecs": 222.95403480529785, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 924.943208694458, + "relativeCreated": 1872.4956512451172, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:12,224", - "created": 1609969752.2247431, + "asctime": "2021-01-11 07:30:37,223", + "created": 1610346637.223096, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 224.74312782287598, + "msecs": 223.09589385986328, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 925.0853061676025, + "relativeCreated": 1872.6375102996826, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:12,224", - "created": 1609969752.2249055, + "asctime": "2021-01-11 07:30:37,223", + "created": 1610346637.2232685, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 224.90549087524414, + "msecs": 223.2685089111328, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 925.2476692199707, + "relativeCreated": 1872.8101253509521, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:12,225", - "created": 1609969752.2250752, + "asctime": "2021-01-11 07:30:37,223", + "created": 1610346637.223433, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 225.07524490356445, + "msecs": 223.4330177307129, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 925.417423248291, + "relativeCreated": 1872.9746341705322, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:12,225", - "created": 1609969752.2252345, + "asctime": "2021-01-11 07:30:37,223", + "created": 1610346637.2235923, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 225.2345085144043, + "msecs": 223.59228134155273, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 925.5766868591309, + "relativeCreated": 1873.133897781372, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:12,225", - "created": 1609969752.2253876, + "asctime": "2021-01-11 07:30:37,223", + "created": 1610346637.2237446, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 225.3875732421875, + "msecs": 223.74463081359863, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 925.7297515869141, + "relativeCreated": 1873.286247253418, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:12,225", - "created": 1609969752.2255242, + "asctime": "2021-01-11 07:30:37,223", + "created": 1610346637.223881, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 225.5241870880127, + "msecs": 223.88100624084473, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 925.8663654327393, + "relativeCreated": 1873.422622680664, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:12,225", - "created": 1609969752.2256775, + "asctime": "2021-01-11 07:30:37,224", + "created": 1610346637.224035, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 225.677490234375, + "msecs": 224.03502464294434, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 926.0196685791016, + "relativeCreated": 1873.5766410827637, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:12,225", - "created": 1609969752.225879, + "asctime": "2021-01-11 07:30:37,224", + "created": 1610346637.224216, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 225.87895393371582, + "msecs": 224.21598434448242, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 926.2211322784424, + "relativeCreated": 1873.7576007843018, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:12,226", - "created": 1609969752.2260587, + "asctime": "2021-01-11 07:30:37,224", + "created": 1610346637.2243595, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 226.0587215423584, + "msecs": 224.35951232910156, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 926.400899887085, + "relativeCreated": 1873.901128768921, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:12,226", - "created": 1609969752.2262108, + "asctime": "2021-01-11 07:30:37,224", + "created": 1610346637.2245138, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 226.2108325958252, + "msecs": 224.51376914978027, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 926.5530109405518, + "relativeCreated": 1874.0553855895996, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:12,226", - "created": 1609969752.2268007, + "asctime": "2021-01-11 07:30:37,224", + "created": 1610346637.2246692, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 226.80068016052246, + "msecs": 224.6692180633545, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 927.142858505249, + "relativeCreated": 1874.2108345031738, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:12,226", - "created": 1609969752.2269845, + "asctime": "2021-01-11 07:30:37,224", + "created": 1610346637.2248168, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 226.98450088500977, + "msecs": 224.81679916381836, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 927.3266792297363, + "relativeCreated": 1874.3584156036377, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:12,227", - "created": 1609969752.2271416, + "asctime": "2021-01-11 07:30:37,225", + "created": 1610346637.2252924, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 227.1416187286377, + "msecs": 225.29244422912598, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 927.4837970733643, + "relativeCreated": 1874.8340606689453, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:12,227", - "created": 1609969752.2272878, + "asctime": "2021-01-11 07:30:37,225", + "created": 1610346637.2254746, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 227.28776931762695, + "msecs": 225.47459602355957, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 927.6299476623535, + "relativeCreated": 1875.016212463379, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:12,227", - "created": 1609969752.227432, + "asctime": "2021-01-11 07:30:37,225", + "created": 1610346637.2255235, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 227.4320125579834, + "msecs": 225.5234718322754, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 927.77419090271, + "relativeCreated": 1875.0650882720947, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:37,225", + "created": 1610346637.2256222, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 225.62217712402344, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1875.1637935638428, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:37,225", + "created": 1610346637.225674, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 225.67391395568848, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1875.2155303955078, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:37,225", + "created": 1610346637.2257383, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 225.7382869720459, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1875.2799034118652, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:37,225", + "created": 1610346637.2257872, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 225.78716278076172, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1875.328779220581, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:37,225", + "created": 1610346637.2258332, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 225.83317756652832, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1875.3747940063477, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:37,225", + "created": 1610346637.2258778, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 225.8777618408203, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1875.4193782806396, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:37,225", + "created": 1610346637.225926, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 225.92592239379883, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1875.4675388336182, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:37,225", + "created": 1610346637.2259786, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 225.97861289978027, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1875.5202293395996, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:37,226", + "created": 1610346637.2260284, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 226.0284423828125, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1875.5700588226318, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:37,226", + "created": 1610346637.2260811, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 226.08113288879395, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1875.6227493286133, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:37,226", + "created": 1610346637.2261276, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 226.12762451171875, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1875.669240951538, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:37,226", + "created": 1610346637.2261767, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 226.17673873901367, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1875.718355178833, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:37,226", + "created": 1610346637.2262287, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 226.2287139892578, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1875.7703304290771, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:37,226", + "created": 1610346637.226275, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 226.27496719360352, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1875.8165836334229, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:37,226", + "created": 1610346637.2263222, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 226.32217407226562, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1875.863790512085, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:37,226", + "created": 1610346637.2263703, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 226.37033462524414, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1875.9119510650635, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:37,226", + "created": 1610346637.2264168, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 226.41682624816895, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1875.9584426879883, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:37,226", + "created": 1610346637.226461, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 226.46093368530273, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1876.002550125122, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:37,226", + "created": 1610346637.2265053, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 226.50527954101562, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1876.046895980835, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:37,226", + "created": 1610346637.226548, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 226.5479564666748, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1876.0895729064941, + "stack_info": null, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 227.57220268249512, + "msecs": 226.58920288085938, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 927.9143810272217, + "relativeCreated": 1876.1308193206787, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00014019012451171875 + "time_consumption": 4.124641418457031e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:12,227", - "created": 1609969752.2278564, + "asctime": "2021-01-11 07:30:37,570", + "created": 1610346637.5703468, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:37,226", + "created": 1610346637.2266903, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 226.69029235839844, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1876.2319087982178, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:37,226", + "created": 1610346637.2267408, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 226.74083709716797, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1876.2824535369873, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:37,226", + "created": 1610346637.2267864, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 226.78637504577637, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1876.3279914855957, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:37,226", + "created": 1610346637.2268755, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 226.87554359436035, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1876.4171600341797, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:37,227", + "created": 1610346637.2270677, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 227.0677089691162, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1876.6093254089355, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:37,227", + "created": 1610346637.2271206, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 227.12063789367676, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1876.662254333496, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:37,227", + "created": 1610346637.2271676, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 227.16760635375977, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1876.709222793579, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:37,227", + "created": 1610346637.2272928, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 227.2927761077881, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1876.8343925476074, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:37,235", + "created": 1610346637.2354846, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 235.48460006713867, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1885.026216506958, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,235", + "created": 1610346637.2356093, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 235.6092929840088, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1885.1509094238281, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:37,235", + "created": 1610346637.2356653, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 235.66532135009766, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1885.206937789917, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,235", + "created": 1610346637.2357292, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 235.72921752929688, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1885.2708339691162, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,235", + "created": 1610346637.2357748, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 235.77475547790527, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1885.3163719177246, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,235", + "created": 1610346637.2358508, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 235.85081100463867, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1885.392427444458, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,235", + "created": 1610346637.2358952, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 235.89515686035156, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1885.436773300171, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,235", + "created": 1610346637.2359548, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 235.95476150512695, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1885.4963779449463, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,235", + "created": 1610346637.2359974, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 235.99743843078613, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1885.5390548706055, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,236", + "created": 1610346637.2360542, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 236.0541820526123, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1885.5957984924316, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,236", + "created": 1610346637.2360973, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 236.0973358154297, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1885.638952255249, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,236", + "created": 1610346637.2361813, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 236.18125915527344, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1885.7228755950928, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,237", + "created": 1610346637.237067, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 237.06698417663574, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1886.608600616455, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,237", + "created": 1610346637.2371225, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 237.1225357055664, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1886.6641521453857, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:37,237", + "created": 1610346637.2371705, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 237.17045783996582, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1886.7120742797852, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" + ], + "asctime": "2021-01-11 07:30:37,237", + "created": 1610346637.2372494, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", + "module": "stp", + "msecs": 237.24937438964844, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1886.7909908294678, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:37,237", + "created": 1610346637.237409, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 237.40911483764648, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1886.9507312774658, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:37,237", + "created": 1610346637.2375007, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 237.50066757202148, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1887.0422840118408, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:37,237", + "created": 1610346637.2375934, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 237.593412399292, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1887.1350288391113, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:37,237", + "created": 1610346637.2378657, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 237.86568641662598, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1887.4073028564453, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:37,246", + "created": 1610346637.2460258, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 246.02580070495605, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1895.5674171447754, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,246", + "created": 1610346637.2461483, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 246.14834785461426, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1895.6899642944336, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:37,246", + "created": 1610346637.2462041, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 246.20413780212402, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1895.7457542419434, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,246", + "created": 1610346637.24628, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 246.27995491027832, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1895.8215713500977, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,246", + "created": 1610346637.2463279, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 246.32787704467773, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1895.869493484497, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,246", + "created": 1610346637.2463944, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 246.39439582824707, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1895.9360122680664, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,246", + "created": 1610346637.2464387, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 246.43874168395996, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1895.9803581237793, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,246", + "created": 1610346637.246498, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 246.49810791015625, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1896.0397243499756, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,246", + "created": 1610346637.2465436, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 246.54364585876465, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1896.085262298584, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,246", + "created": 1610346637.246604, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 246.60396575927734, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1896.1455821990967, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,246", + "created": 1610346637.2466478, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 246.64783477783203, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1896.1894512176514, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,246", + "created": 1610346637.246737, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 246.73700332641602, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1896.2786197662354, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,247", + "created": 1610346637.2476382, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 247.63822555541992, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1897.1798419952393, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,247", + "created": 1610346637.247719, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 247.71904945373535, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1897.2606658935547, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:37,247", + "created": 1610346637.2477732, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 247.7731704711914, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1897.3147869110107, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:37,247", + "created": 1610346637.2478514, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 247.85137176513672, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1897.392988204956, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:37,248", + "created": 1610346637.2480044, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 248.00443649291992, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1897.5460529327393, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:37,248", + "created": 1610346637.2480667, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 248.06666374206543, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 1897.6082801818848, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + } + ], + "msecs": 570.3468322753906, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2219.88844871521, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.3222801685333252 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:37,570", + "created": 1610346637.5707517, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -80132,22 +171990,22 @@ "message": "No secret set", "module": "test_communication", "moduleLogger": [], - "msecs": 227.85639762878418, + "msecs": 570.7516670227051, "msg": "No secret set", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 928.1985759735107, + "relativeCreated": 2220.2932834625244, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-06 22:49:12,228", - "created": 1609969752.228069, + "asctime": "2021-01-11 07:30:37,570", + "created": 1610346637.5709083, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -80158,15 +172016,15 @@ "message": "Performing Authentification", "module": "test_communication", "moduleLogger": [], - "msecs": 228.06906700134277, + "msecs": 570.9083080291748, "msg": "Performing Authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 928.4112453460693, + "relativeCreated": 2220.449924468994, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -80175,8 +172033,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:12,228", - "created": 1609969752.228616, + "asctime": "2021-01-11 07:30:37,571", + "created": 1610346637.5712495, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -80193,8 +172051,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:12,228", - "created": 1609969752.228298, + "asctime": "2021-01-11 07:30:37,571", + "created": 1610346637.5710618, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -80204,15 +172062,15 @@ "lineno": 22, "message": "Result (Return Value of authentification method): False ()", "module": "test", - "msecs": 228.29794883728027, + "msecs": 571.0618495941162, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 928.6401271820068, + "relativeCreated": 2220.6034660339355, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -80221,8 +172079,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:12,228", - "created": 1609969752.2284622, + "asctime": "2021-01-11 07:30:37,571", + "created": 1610346637.5711591, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -80232,37 +172090,37 @@ "lineno": 26, "message": "Expectation (Return Value of authentification method): result = False ()", "module": "test", - "msecs": 228.46221923828125, + "msecs": 571.1591243743896, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 928.8043975830078, + "relativeCreated": 2220.700740814209, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 228.61599922180176, + "msecs": 571.2494850158691, "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 928.9581775665283, + "relativeCreated": 2220.7911014556885, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001537799835205078 + "time_consumption": 9.036064147949219e-05 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:12,229", - "created": 1609969752.2291174, + "asctime": "2021-01-11 07:30:37,571", + "created": 1610346637.571557, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -80279,8 +172137,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:12,228", - "created": 1609969752.2288356, + "asctime": "2021-01-11 07:30:37,571", + "created": 1610346637.5713882, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -80290,15 +172148,15 @@ "lineno": 22, "message": "Result (Authentification state of server): True ()", "module": "test", - "msecs": 228.8355827331543, + "msecs": 571.3882446289062, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 929.1777610778809, + "relativeCreated": 2220.9298610687256, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -80307,8 +172165,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:12,228", - "created": 1609969752.2289777, + "asctime": "2021-01-11 07:30:37,571", + "created": 1610346637.5714743, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -80318,37 +172176,37 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = True ()", "module": "test", - "msecs": 228.97768020629883, + "msecs": 571.4743137359619, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 929.3198585510254, + "relativeCreated": 2221.0159301757812, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 229.11739349365234, + "msecs": 571.5570449829102, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 929.4595718383789, + "relativeCreated": 2221.0986614227295, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00013971328735351562 + "time_consumption": 8.273124694824219e-05 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:12,229", - "created": 1609969752.2296078, + "asctime": "2021-01-11 07:30:37,571", + "created": 1610346637.571858, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -80365,8 +172223,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:12,229", - "created": 1609969752.2293308, + "asctime": "2021-01-11 07:30:37,571", + "created": 1610346637.5716944, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -80376,15 +172234,15 @@ "lineno": 22, "message": "Result (Authentification state of client): True ()", "module": "test", - "msecs": 229.33077812194824, + "msecs": 571.6943740844727, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 929.6729564666748, + "relativeCreated": 2221.235990524292, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -80393,8 +172251,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:12,229", - "created": 1609969752.2294712, + "asctime": "2021-01-11 07:30:37,571", + "created": 1610346637.5717776, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -80404,34 +172262,34 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = True ()", "module": "test", - "msecs": 229.47120666503906, + "msecs": 571.7775821685791, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 929.8133850097656, + "relativeCreated": 2221.3191986083984, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 229.60782051086426, + "msecs": 571.8579292297363, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 929.9499988555908, + "relativeCreated": 2221.3995456695557, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001366138458251953 + "time_consumption": 8.034706115722656e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:12,229", - "created": 1609969752.2298243, + "asctime": "2021-01-11 07:30:37,571", + "created": 1610346637.571977, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -80442,15 +172300,15 @@ "message": "Different secrets set", "module": "test_communication", "moduleLogger": [], - "msecs": 229.82430458068848, + "msecs": 571.976900100708, "msg": "Different secrets set", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 930.166482925415, + "relativeCreated": 2221.5185165405273, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -80459,8 +172317,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:12,229", - "created": 1609969752.2299736, + "asctime": "2021-01-11 07:30:37,572", + "created": 1610346637.5722725, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -80477,8 +172335,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:12,229", - "created": 1609969752.229889, + "asctime": "2021-01-11 07:30:37,572", + "created": 1610346637.5721025, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -80488,15 +172346,15 @@ "lineno": 22, "message": "Result (Authentification state of server): False ()", "module": "test", - "msecs": 229.888916015625, + "msecs": 572.1025466918945, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 930.2310943603516, + "relativeCreated": 2221.644163131714, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -80505,8 +172363,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:12,229", - "created": 1609969752.2299314, + "asctime": "2021-01-11 07:30:37,572", + "created": 1610346637.5721855, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -80516,37 +172374,37 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = False ()", "module": "test", - "msecs": 229.93135452270508, + "msecs": 572.1855163574219, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 930.2735328674316, + "relativeCreated": 2221.727132797241, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 229.97355461120605, + "msecs": 572.272539138794, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 930.3157329559326, + "relativeCreated": 2221.8141555786133, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 4.220008850097656e-05 + "time_consumption": 8.702278137207031e-05 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:12,230", - "created": 1609969752.2301285, + "asctime": "2021-01-11 07:30:37,572", + "created": 1610346637.572599, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -80563,8 +172421,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:12,230", - "created": 1609969752.230038, + "asctime": "2021-01-11 07:30:37,572", + "created": 1610346637.5724213, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -80574,15 +172432,15 @@ "lineno": 22, "message": "Result (Authentification state of client): False ()", "module": "test", - "msecs": 230.03792762756348, + "msecs": 572.4213123321533, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 930.38010597229, + "relativeCreated": 2221.9629287719727, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -80591,8 +172449,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:12,230", - "created": 1609969752.230086, + "asctime": "2021-01-11 07:30:37,572", + "created": 1610346637.5725057, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -80602,34 +172460,34 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = False ()", "module": "test", - "msecs": 230.086088180542, + "msecs": 572.5057125091553, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 930.4282665252686, + "relativeCreated": 2222.0473289489746, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 230.12852668762207, + "msecs": 572.598934173584, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 930.4707050323486, + "relativeCreated": 2222.1405506134033, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 4.2438507080078125e-05 + "time_consumption": 9.322166442871094e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:12,932", - "created": 1609969752.932562, + "asctime": "2021-01-11 07:30:37,673", + "created": 1610346637.673524, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -80642,582 +172500,2420 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:12,230", - "created": 1609969752.2302158, + "asctime": "2021-01-11 07:30:37,572", + "created": 1610346637.5728016, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 438, + "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 230.21578788757324, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 572.8015899658203, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 930.5579662322998, + "relativeCreated": 2222.3432064056396, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, - { - "args": [], - "asctime": "2021-01-06 22:49:12,230", - "created": 1609969752.2303476, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "module": "test_helpers", - "msecs": 230.3476333618164, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 930.689811706543, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:12,380", - "created": 1609969752.380997, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "module": "test_helpers", - "msecs": 380.9969425201416, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 1081.3391208648682, - "stack_info": null, - "thread": 140247511983872, - "threadName": "Thread-1" - }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:37,573", + "created": 1610346637.5733206, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 573.3206272125244, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2222.8622436523438, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:37,581", + "created": 1610346637.581724, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 581.7239284515381, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2231.2655448913574, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,581", + "created": 1610346637.5819364, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 581.9363594055176, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2231.477975845337, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:37,582", + "created": 1610346637.5820432, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 582.0431709289551, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2231.5847873687744, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,582", + "created": 1610346637.5821698, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 582.169771194458, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2231.7113876342773, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,582", + "created": 1610346637.5822587, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 582.2587013244629, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2231.800317764282, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,582", + "created": 1610346637.5823846, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 582.3845863342285, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2231.926202774048, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,582", + "created": 1610346637.582485, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 582.4849605560303, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2232.0265769958496, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,582", + "created": 1610346637.5826004, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 582.6003551483154, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2232.1419715881348, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,582", + "created": 1610346637.5826833, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 582.6833248138428, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2232.224941253662, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,582", + "created": 1610346637.582791, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 582.7910900115967, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2232.332706451416, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,582", + "created": 1610346637.5828729, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 582.8728675842285, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2232.414484024048, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-client:", + "(6): fd 82 a2 a9 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,583", + "created": 1610346637.5830245, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): fd 82 a2 a9 3a 3e", + "module": "__init__", + "msecs": 583.0245018005371, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2232.5661182403564, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(6): fd 82 a2 a9 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,583", + "created": 1610346637.5839694, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): fd 82 a2 a9 3a 3e", + "module": "__init__", + "msecs": 583.9693546295166, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2233.510971069336, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,584", + "created": 1610346637.5840764, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 584.0764045715332, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2233.6180210113525, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:37,584", + "created": 1610346637.5841603, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 584.160327911377, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2233.7019443511963, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9" + ], + "asctime": "2021-01-11 07:30:37,584", + "created": 1610346637.584312, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", + "module": "stp", + "msecs": 584.3119621276855, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2233.853578567505, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:12,381", - "created": 1609969752.3813703, + "asctime": "2021-01-11 07:30:37,584", + "created": 1610346637.584551, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 438, + "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 381.37030601501465, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 584.5510959625244, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1081.7124843597412, + "relativeCreated": 2234.0927124023438, "stack_info": null, - "thread": 140247511983872, - "threadName": "Thread-1" + "thread": 140562258716416, + "threadName": "Thread-5" }, { "args": [ - "SP server:", + "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-06 22:49:12,381", - "created": 1609969752.3815253, + "asctime": "2021-01-11 07:30:37,584", + "created": 1610346637.5846653, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __authentificate_create_seed__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 381.52527809143066, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 584.6652984619141, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1081.8674564361572, + "relativeCreated": 2234.2069149017334, "stack_info": null, - "thread": 140247511983872, - "threadName": "Thread-1" + "thread": 140562258716416, + "threadName": "Thread-5" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: authentification response, data_id: seed", "status: okay", - "'84abf044252020404e0def53e859f099dff329af1ef95e7557b8a2c514d6b776'" + "'0ffae71f1e60910d585308487650ce8c0e34b2ad138d0eccb1505aeddb0323da'" ], - "asctime": "2021-01-06 22:49:12,381", - "created": 1609969752.3816924, + "asctime": "2021-01-11 07:30:37,584", + "created": 1610346637.5848389, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: authentification response, data_id: seed, status: okay, data: \"'84abf044252020404e0def53e859f099dff329af1ef95e7557b8a2c514d6b776'\"", + "lineno": 438, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'0ffae71f1e60910d585308487650ce8c0e34b2ad138d0eccb1505aeddb0323da'\"", "module": "__init__", - "msecs": 381.69240951538086, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 584.8388671875, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1082.0345878601074, + "relativeCreated": 2234.3804836273193, "stack_info": null, - "thread": 140247511983872, - "threadName": "Thread-1" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:12,382", - "created": 1609969752.382065, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 34 61 62 66 30 34 34 32 35 32 30 32 30 34 30 34 65 30 64 65 66 35 33 65 38 35 39 66 30 39 39 64 66 66 33 32 39 61 66 31 65 66 39 35 65 37 35 35 37 62 38 61 32 63 35 31 34 64 36 62 37 37 36 22 7d de f9 e9 e1", - "module": "test_helpers", - "msecs": 382.0650577545166, - "msg": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 34 61 62 66 30 34 34 32 35 32 30 32 30 34 30 34 65 30 64 65 66 35 33 65 38 35 39 66 30 39 39 64 66 66 33 32 39 61 66 31 65 66 39 35 65 37 35 35 37 62 38 61 32 63 35 31 34 64 36 62 37 37 36 22 7d de f9 e9 e1", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 1082.4072360992432, - "stack_info": null, - "thread": 140247511983872, - "threadName": "Thread-1" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:12,533", - "created": 1609969752.5330884, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 34 61 62 66 30 34 34 32 35 32 30 32 30 34 30 34 65 30 64 65 66 35 33 65 38 35 39 66 30 39 39 64 66 66 33 32 39 61 66 31 65 66 39 35 65 37 35 35 37 62 38 61 32 63 35 31 34 64 36 62 37 37 36 22 7d de f9 e9 e1", - "module": "test_helpers", - "msecs": 533.0884456634521, - "msg": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 34 61 62 66 30 34 34 32 35 32 30 32 30 34 30 34 65 30 64 65 66 35 33 65 38 35 39 66 30 39 39 64 66 66 33 32 39 61 66 31 65 66 39 35 65 37 35 35 37 62 38 61 32 63 35 31 34 64 36 62 37 37 36 22 7d de f9 e9 e1", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 1233.4306240081787, - "stack_info": null, - "thread": 140247503591168, - "threadName": "Thread-2" + "thread": 140562258716416, + "threadName": "Thread-5" }, { "args": [ - "SP client:", - "service: authentification response, data_id: seed", - "status: okay", - "'84abf044252020404e0def53e859f099dff329af1ef95e7557b8a2c514d6b776'" + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 66 66 61" ], - "asctime": "2021-01-06 22:49:12,533", - "created": 1609969752.5335574, + "asctime": "2021-01-11 07:30:37,585", + "created": 1610346637.585445, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__tx__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'84abf044252020404e0def53e859f099dff329af1ef95e7557b8a2c514d6b776'\"", + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 66 66 61", "module": "__init__", - "msecs": 533.5574150085449, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 585.4449272155762, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1233.8995933532715, + "relativeCreated": 2234.9865436553955, "stack_info": null, - "thread": 140247503591168, - "threadName": "Thread-2" + "thread": 140562250323712, + "threadName": "Thread-6" }, { "args": [ - "SP client:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 66 66 61" + ], + "asctime": "2021-01-11 07:30:37,593", + "created": 1610346637.5937228, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 66 66 61", + "module": "__init__", + "msecs": 593.7228202819824, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2243.2644367218018, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,593", + "created": 1610346637.593967, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 593.9669609069824, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2243.5085773468018, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:37,594", + "created": 1610346637.5940914, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 594.0914154052734, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2243.633031845093, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,594", + "created": 1610346637.594237, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 594.2370891571045, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2243.778705596924, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,594", + "created": 1610346637.5943468, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 594.3467617034912, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2243.8883781433105, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,594", + "created": 1610346637.5945, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 594.5000648498535, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2244.041681289673, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,594", + "created": 1610346637.5946012, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 594.6011543273926, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2244.142770767212, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,594", + "created": 1610346637.594737, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 594.7370529174805, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2244.2786693573, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,594", + "created": 1610346637.5948455, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 594.8455333709717, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2244.387149810791, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,594", + "created": 1610346637.5949755, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 594.975471496582, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2244.5170879364014, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,595", + "created": 1610346637.5950828, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 595.0827598571777, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2244.624376296997, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-server:", + "(64): 65 37 31 66 31 65 36 30 39 31 30 64 35 38 35 33 30 38 34 38 37 36 35 30 63 65 38 63 30 65 33 34 62 32 61 64 31 33 38 64 30 65 63 63 62 31 35 30 35 61 65 64 64 62 30 33 32 33 64 61 22 7d a6 92" + ], + "asctime": "2021-01-11 07:30:37,595", + "created": 1610346637.5953372, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 65 37 31 66 31 65 36 30 39 31 30 64 35 38 35 33 30 38 34 38 37 36 35 30 63 65 38 63 30 65 33 34 62 32 61 64 31 33 38 64 30 65 63 63 62 31 35 30 35 61 65 64 64 62 30 33 32 33 64 61 22 7d a6 92", + "module": "__init__", + "msecs": 595.3371524810791, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2244.8787689208984, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-client:", + "(64): 65 37 31 66 31 65 36 30 39 31 30 64 35 38 35 33 30 38 34 38 37 36 35 30 63 65 38 63 30 65 33 34 62 32 61 64 31 33 38 64 30 65 63 63 62 31 35 30 35 61 65 64 64 62 30 33 32 33 64 61 22 7d a6 92" + ], + "asctime": "2021-01-11 07:30:37,603", + "created": 1610346637.603697, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 65 37 31 66 31 65 36 30 39 31 30 64 35 38 35 33 30 38 34 38 37 36 35 30 63 65 38 63 30 65 33 34 62 32 61 64 31 33 38 64 30 65 63 63 62 31 35 30 35 61 65 64 64 62 30 33 32 33 64 61 22 7d a6 92", + "module": "__init__", + "msecs": 603.6970615386963, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2253.2386779785156, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-server:", + "(4): e3 9d 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,604", + "created": 1610346637.6042314, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (4): e3 9d 3a 3e", + "module": "__init__", + "msecs": 604.2313575744629, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2253.772974014282, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-client:", + "(4): e3 9d 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,604", + "created": 1610346637.6049776, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (4): e3 9d 3a 3e", + "module": "__init__", + "msecs": 604.9776077270508, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2254.51922416687, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,605", + "created": 1610346637.6051106, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 605.1106452941895, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2254.652261734009, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:37,605", + "created": 1610346637.6052186, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 605.2186489105225, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2254.760265350342, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + "(124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 30 66 66 61 65 37 31 66 31 65 36 30 39 31 30 64 35 38 35 33 30 38 34 38 37 36 35 30 63 65 38 63 30 65 33 34 62 32 61 64 31 33 38 64 30 65 63 63 62 31 35 30 35 61 65 64 64 62 30 33 32 33 64 61 22 7d a6 92 e3 9d" + ], + "asctime": "2021-01-11 07:30:37,605", + "created": 1610346637.605487, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 30 66 66 61 65 37 31 66 31 65 36 30 39 31 30 64 35 38 35 33 30 38 34 38 37 36 35 30 63 65 38 63 30 65 33 34 62 32 61 64 31 33 38 64 30 65 63 63 62 31 35 30 35 61 65 64 64 62 30 33 32 33 64 61 22 7d a6 92 e3 9d", + "module": "stp", + "msecs": 605.4871082305908, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2255.02872467041, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: seed", + "status: okay", + "'0ffae71f1e60910d585308487650ce8c0e34b2ad138d0eccb1505aeddb0323da'" + ], + "asctime": "2021-01-11 07:30:37,605", + "created": 1610346637.6057956, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'0ffae71f1e60910d585308487650ce8c0e34b2ad138d0eccb1505aeddb0323da'\"", + "module": "__init__", + "msecs": 605.7956218719482, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2255.3372383117676, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-01-06 22:49:12,533", - "created": 1609969752.5337808, + "asctime": "2021-01-11 07:30:37,605", + "created": 1610346637.605935, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __authentificate_create_key__ to process received data", + "lineno": 492, + "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 533.7808132171631, + "msecs": 605.9350967407227, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1234.1229915618896, + "relativeCreated": 2255.476713180542, "stack_info": null, - "thread": 140247503591168, - "threadName": "Thread-2" + "thread": 140562250323712, + "threadName": "Thread-6" }, { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: authentification request, data_id: key", "status: okay", - "'233acc33232b34a93d7e85c2dcd3846997d4ad446326385a2949a5ee46df3155c296e0a424895a13c38376010e46bee1f183b94245344c740b9f3770ef9d3edb'" + "'395011b5431fcabd336c852e6cf9f843c2e350599daa91ee93e21d19e23fe1a512adf2ba27842c39b683d313fd0e1e8a0902da978686eefce7750c11eb953aa8'" ], - "asctime": "2021-01-06 22:49:12,534", - "created": 1609969752.534084, + "asctime": "2021-01-11 07:30:37,606", + "created": 1610346637.6061437, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: authentification request, data_id: key, status: okay, data: \"'233acc33232b34a93d7e85c2dcd3846997d4ad446326385a2949a5ee46df3155c296e0a424895a13c38376010e46bee1f183b94245344c740b9f3770ef9d3edb'\"", + "lineno": 438, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'395011b5431fcabd336c852e6cf9f843c2e350599daa91ee93e21d19e23fe1a512adf2ba27842c39b683d313fd0e1e8a0902da978686eefce7750c11eb953aa8'\"", "module": "__init__", - "msecs": 534.0840816497803, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 606.1437129974365, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1234.4262599945068, + "relativeCreated": 2255.685329437256, "stack_info": null, - "thread": 140247503591168, - "threadName": "Thread-2" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:12,534", - "created": 1609969752.5346727, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 32 33 33 61 63 63 33 33 32 33 32 62 33 34 61 39 33 64 37 65 38 35 63 32 64 63 64 33 38 34 36 39 39 37 64 34 61 64 34 34 36 33 32 36 33 38 35 61 32 39 34 39 61 35 65 65 34 36 64 66 33 31 35 35 63 32 39 36 65 30 61 34 32 34 38 39 35 61 31 33 63 33 38 33 37 36 30 31 30 65 34 36 62 65 65 31 66 31 38 33 62 39 34 32 34 35 33 34 34 63 37 34 30 62 39 66 33 37 37 30 65 66 39 64 33 65 64 62 22 7d f3 0a 81 cb", - "module": "test_helpers", - "msecs": 534.672737121582, - "msg": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 32 33 33 61 63 63 33 33 32 33 32 62 33 34 61 39 33 64 37 65 38 35 63 32 64 63 64 33 38 34 36 39 39 37 64 34 61 64 34 34 36 33 32 36 33 38 35 61 32 39 34 39 61 35 65 65 34 36 64 66 33 31 35 35 63 32 39 36 65 30 61 34 32 34 38 39 35 61 31 33 63 33 38 33 37 36 30 31 30 65 34 36 62 65 65 31 66 31 38 33 62 39 34 32 34 35 33 34 34 63 37 34 30 62 39 66 33 37 37 30 65 66 39 64 33 65 64 62 22 7d f3 0a 81 cb", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 1235.0149154663086, - "stack_info": null, - "thread": 140247503591168, - "threadName": "Thread-2" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:12,685", - "created": 1609969752.685895, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 32 33 33 61 63 63 33 33 32 33 32 62 33 34 61 39 33 64 37 65 38 35 63 32 64 63 64 33 38 34 36 39 39 37 64 34 61 64 34 34 36 33 32 36 33 38 35 61 32 39 34 39 61 35 65 65 34 36 64 66 33 31 35 35 63 32 39 36 65 30 61 34 32 34 38 39 35 61 31 33 63 33 38 33 37 36 30 31 30 65 34 36 62 65 65 31 66 31 38 33 62 39 34 32 34 35 33 34 34 63 37 34 30 62 39 66 33 37 37 30 65 66 39 64 33 65 64 62 22 7d f3 0a 81 cb", - "module": "test_helpers", - "msecs": 685.8949661254883, - "msg": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 32 33 33 61 63 63 33 33 32 33 32 62 33 34 61 39 33 64 37 65 38 35 63 32 64 63 64 33 38 34 36 39 39 37 64 34 61 64 34 34 36 33 32 36 33 38 35 61 32 39 34 39 61 35 65 65 34 36 64 66 33 31 35 35 63 32 39 36 65 30 61 34 32 34 38 39 35 61 31 33 63 33 38 33 37 36 30 31 30 65 34 36 62 65 65 31 66 31 38 33 62 39 34 32 34 35 33 34 34 63 37 34 30 62 39 66 33 37 37 30 65 66 39 64 33 65 64 62 22 7d f3 0a 81 cb", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 1386.2371444702148, - "stack_info": null, - "thread": 140247511983872, - "threadName": "Thread-3" + "thread": 140562250323712, + "threadName": "Thread-6" }, { "args": [ - "SP server:", - "service: authentification request, data_id: key", - "status: okay", - "'233acc33232b34a93d7e85c2dcd3846997d4ad446326385a2949a5ee46df3155c296e0a424895a13c38376010e46bee1f183b94245344c740b9f3770ef9d3edb'" + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 33 39 35 30" ], - "asctime": "2021-01-06 22:49:12,686", - "created": 1609969752.6863883, + "asctime": "2021-01-11 07:30:37,606", + "created": 1610346637.60699, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__tx__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: authentification request, data_id: key, status: okay, data: \"'233acc33232b34a93d7e85c2dcd3846997d4ad446326385a2949a5ee46df3155c296e0a424895a13c38376010e46bee1f183b94245344c740b9f3770ef9d3edb'\"", + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 33 39 35 30", "module": "__init__", - "msecs": 686.3882541656494, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 606.9900989532471, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1386.730432510376, + "relativeCreated": 2256.5317153930664, "stack_info": null, - "thread": 140247511983872, - "threadName": "Thread-3" + "thread": 140562258716416, + "threadName": "Thread-5" }, { "args": [ - "SP server:", + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 33 39 35 30" + ], + "asctime": "2021-01-11 07:30:37,615", + "created": 1610346637.6153665, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 33 39 35 30", + "module": "__init__", + "msecs": 615.3664588928223, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2264.9080753326416, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,615", + "created": 1610346637.6155956, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 615.5955791473389, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2265.137195587158, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:37,615", + "created": 1610346637.6157446, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 615.7445907592773, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2265.2862071990967, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,615", + "created": 1610346637.6158972, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 615.8971786499023, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2265.4387950897217, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,616", + "created": 1610346637.6160016, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 616.0016059875488, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2265.543222427368, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,616", + "created": 1610346637.6161494, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 616.1494255065918, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2265.691041946411, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,616", + "created": 1610346637.616249, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 616.2490844726562, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2265.7907009124756, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,616", + "created": 1610346637.616382, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 616.3818836212158, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2265.923500061035, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,616", + "created": 1610346637.616479, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 616.4789199829102, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2266.0205364227295, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,616", + "created": 1610346637.6166053, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 616.605281829834, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2266.1468982696533, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,616", + "created": 1610346637.6167011, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 616.7011260986328, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2266.242742538452, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-client:", + "(64): 31 31 62 35 34 33 31 66 63 61 62 64 33 33 36 63 38 35 32 65 36 63 66 39 66 38 34 33 63 32 65 33 35 30 35 39 39 64 61 61 39 31 65 65 39 33 65 32 31 64 31 39 65 32 33 66 65 31 61 35 31 32 61 64" + ], + "asctime": "2021-01-11 07:30:37,616", + "created": 1610346637.6169543, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 31 31 62 35 34 33 31 66 63 61 62 64 33 33 36 63 38 35 32 65 36 63 66 39 66 38 34 33 63 32 65 33 35 30 35 39 39 64 61 61 39 31 65 65 39 33 65 32 31 64 31 39 65 32 33 66 65 31 61 35 31 32 61 64", + "module": "__init__", + "msecs": 616.9543266296387, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2266.495943069458, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(64): 31 31 62 35 34 33 31 66 63 61 62 64 33 33 36 63 38 35 32 65 36 63 66 39 66 38 34 33 63 32 65 33 35 30 35 39 39 64 61 61 39 31 65 65 39 33 65 32 31 64 31 39 65 32 33 66 65 31 61 35 31 32 61 64" + ], + "asctime": "2021-01-11 07:30:37,625", + "created": 1610346637.6252887, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 31 31 62 35 34 33 31 66 63 61 62 64 33 33 36 63 38 35 32 65 36 63 66 39 66 38 34 33 63 32 65 33 35 30 35 39 39 64 61 61 39 31 65 65 39 33 65 32 31 64 31 39 65 32 33 66 65 31 61 35 31 32 61 64", + "module": "__init__", + "msecs": 625.288724899292, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2274.8303413391113, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-client:", + "(64): 66 32 62 61 32 37 38 34 32 63 33 39 62 36 38 33 64 33 31 33 66 64 30 65 31 65 38 61 30 39 30 32 64 61 39 37 38 36 38 36 65 65 66 63 65 37 37 35 30 63 31 31 65 62 39 35 33 61 61 38 22 7d 94 5f" + ], + "asctime": "2021-01-11 07:30:37,625", + "created": 1610346637.6258662, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 66 32 62 61 32 37 38 34 32 63 33 39 62 36 38 33 64 33 31 33 66 64 30 65 31 65 38 61 30 39 30 32 64 61 39 37 38 36 38 36 65 65 66 63 65 37 37 35 30 63 31 31 65 62 39 35 33 61 61 38 22 7d 94 5f", + "module": "__init__", + "msecs": 625.866174697876, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2275.4077911376953, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(64): 66 32 62 61 32 37 38 34 32 63 33 39 62 36 38 33 64 33 31 33 66 64 30 65 31 65 38 61 30 39 30 32 64 61 39 37 38 36 38 36 65 65 66 63 65 37 37 35 30 63 31 31 65 62 39 35 33 61 61 38 22 7d 94 5f" + ], + "asctime": "2021-01-11 07:30:37,634", + "created": 1610346637.6341417, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 66 32 62 61 32 37 38 34 32 63 33 39 62 36 38 33 64 33 31 33 66 64 30 65 31 65 38 61 30 39 30 32 64 61 39 37 38 36 38 36 65 65 66 63 65 37 37 35 30 63 31 31 65 62 39 35 33 61 61 38 22 7d 94 5f", + "module": "__init__", + "msecs": 634.1416835784912, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2283.6833000183105, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-client:", + "(4): 06 6b 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,634", + "created": 1610346637.6346548, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (4): 06 6b 3a 3e", + "module": "__init__", + "msecs": 634.6547603607178, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2284.196376800537, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(4): 06 6b 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,635", + "created": 1610346637.6354043, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (4): 06 6b 3a 3e", + "module": "__init__", + "msecs": 635.4043483734131, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2284.9459648132324, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,635", + "created": 1610346637.6355977, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 635.5977058410645, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2285.139322280884, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:37,635", + "created": 1610346637.635753, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 635.7529163360596, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2285.294532775879, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + "(188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 33 39 35 30 31 31 62 35 34 33 31 66 63 61 62 64 33 33 36 63 38 35 32 65 36 63 66 39 66 38 34 33 63 32 65 33 35 30 35 39 39 64 61 61 39 31 65 65 39 33 65 32 31 64 31 39 65 32 33 66 65 31 61 35 31 32 61 64 66 32 62 61 32 37 38 34 32 63 33 39 62 36 38 33 64 33 31 33 66 64 30 65 31 65 38 61 30 39 30 32 64 61 39 37 38 36 38 36 65 65 66 63 65 37 37 35 30 63 31 31 65 62 39 35 33 61 61 38 22 7d 94 5f 06 6b" + ], + "asctime": "2021-01-11 07:30:37,636", + "created": 1610346637.6362038, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 33 39 35 30 31 31 62 35 34 33 31 66 63 61 62 64 33 33 36 63 38 35 32 65 36 63 66 39 66 38 34 33 63 32 65 33 35 30 35 39 39 64 61 61 39 31 65 65 39 33 65 32 31 64 31 39 65 32 33 66 65 31 61 35 31 32 61 64 66 32 62 61 32 37 38 34 32 63 33 39 62 36 38 33 64 33 31 33 66 64 30 65 31 65 38 61 30 39 30 32 64 61 39 37 38 36 38 36 65 65 66 63 65 37 37 35 30 63 31 31 65 62 39 35 33 61 61 38 22 7d 94 5f 06 6b", + "module": "stp", + "msecs": 636.2037658691406, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2285.74538230896, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: authentification request, data_id: key", + "status: okay", + "'395011b5431fcabd336c852e6cf9f843c2e350599daa91ee93e21d19e23fe1a512adf2ba27842c39b683d313fd0e1e8a0902da978686eefce7750c11eb953aa8'" + ], + "asctime": "2021-01-11 07:30:37,636", + "created": 1610346637.636596, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'395011b5431fcabd336c852e6cf9f843c2e350599daa91ee93e21d19e23fe1a512adf2ba27842c39b683d313fd0e1e8a0902da978686eefce7750c11eb953aa8'\"", + "module": "__init__", + "msecs": 636.5959644317627, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2286.137580871582, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-01-06 22:49:12,686", - "created": 1609969752.6866045, + "asctime": "2021-01-11 07:30:37,636", + "created": 1610346637.6367922, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __authentificate_check_key__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 686.6044998168945, - "msg": "%s RX <- Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 1386.946678161621, - "stack_info": null, - "thread": 140247511983872, - "threadName": "Thread-3" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key", - "status: okay", - "False" - ], - "asctime": "2021-01-06 22:49:12,686", - "created": 1609969752.68686, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: authentification response, data_id: key, status: okay, data: \"False\"", - "module": "__init__", - "msecs": 686.8600845336914, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 1387.202262878418, - "stack_info": null, - "thread": 140247511983872, - "threadName": "Thread-3" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:12,687", - "created": 1609969752.6872647, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 7d ea 0a 5c b4", - "module": "test_helpers", - "msecs": 687.2646808624268, - "msg": "Send data: (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 7d ea 0a 5c b4", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 1387.6068592071533, - "stack_info": null, - "thread": 140247511983872, - "threadName": "Thread-3" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:12,838", - "created": 1609969752.838307, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 7d ea 0a 5c b4", - "module": "test_helpers", - "msecs": 838.3069038391113, - "msg": "Receive data (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 7d ea 0a 5c b4", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 1538.649082183838, - "stack_info": null, - "thread": 140247503591168, - "threadName": "Thread-4" - }, - { - "args": [ - "SP client:", - "service: authentification response, data_id: key", - "status: okay", - "False" - ], - "asctime": "2021-01-06 22:49:12,838", - "created": 1609969752.8387759, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: authentification response, data_id: key, status: okay, data: \"False\"", - "module": "__init__", - "msecs": 838.7758731842041, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 1539.1180515289307, - "stack_info": null, - "thread": 140247503591168, - "threadName": "Thread-4" - }, - { - "args": [ - "SP client:", - "__authentificate_process_feedback__" - ], - "asctime": "2021-01-06 22:49:12,838", - "created": 1609969752.838992, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __authentificate_process_feedback__ to process received data", - "module": "__init__", - "msecs": 838.9921188354492, + "msecs": 636.7921829223633, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1539.3342971801758, + "relativeCreated": 2286.3337993621826, "stack_info": null, - "thread": 140247503591168, - "threadName": "Thread-4" + "thread": 140562258716416, + "threadName": "Thread-5" }, { "args": [ - "SP client:" + "prot-server:", + "TX ->", + "service: authentification response, data_id: key", + "status: okay", + "False" ], - "asctime": "2021-01-06 22:49:12,839", - "created": 1609969752.8391595, + "asctime": "2021-01-11 07:30:37,637", + "created": 1610346637.6371076, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"False\"", + "module": "__init__", + "msecs": 637.1076107025146, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2286.649227142334, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65" + ], + "asctime": "2021-01-11 07:30:37,637", + "created": 1610346637.637954, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65", + "module": "__init__", + "msecs": 637.9539966583252, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2287.4956130981445, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65" + ], + "asctime": "2021-01-11 07:30:37,646", + "created": 1610346637.6463883, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65", + "module": "__init__", + "msecs": 646.3882923126221, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2295.9299087524414, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,646", + "created": 1610346637.646694, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 646.6939449310303, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2296.2355613708496, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:37,646", + "created": 1610346637.6468637, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 646.8636989593506, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2296.40531539917, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,647", + "created": 1610346637.6470704, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 647.0704078674316, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2296.612024307251, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,647", + "created": 1610346637.6472163, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 647.2163200378418, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2296.757936477661, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,647", + "created": 1610346637.6474538, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 647.453784942627, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2296.9954013824463, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,647", + "created": 1610346637.6476057, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 647.6056575775146, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2297.147274017334, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,647", + "created": 1610346637.6477954, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 647.7954387664795, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2297.337055206299, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,647", + "created": 1610346637.64793, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 647.9299068450928, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2297.471523284912, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,648", + "created": 1610346637.648104, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 648.1039524078369, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2297.6455688476562, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,648", + "created": 1610346637.648249, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 648.2489109039307, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2297.79052734375, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-server:", + "(7): 7d ea 0a 5c b4 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,648", + "created": 1610346637.6485407, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (7): 7d ea 0a 5c b4 3a 3e", + "module": "__init__", + "msecs": 648.540735244751, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2298.0823516845703, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-client:", + "(7): 7d ea 0a 5c b4 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,649", + "created": 1610346637.6498117, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (7): 7d ea 0a 5c b4 3a 3e", + "module": "__init__", + "msecs": 649.8117446899414, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2299.3533611297607, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,650", + "created": 1610346637.6501653, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 650.165319442749, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2299.7069358825684, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:37,650", + "created": 1610346637.6503406, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 650.3405570983887, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2299.882173538208, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + "(63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 7d ea 0a 5c b4" + ], + "asctime": "2021-01-11 07:30:37,650", + "created": 1610346637.6506078, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 7d ea 0a 5c b4", + "module": "stp", + "msecs": 650.6078243255615, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2300.149440765381, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: key", + "status: okay", + "False" + ], + "asctime": "2021-01-11 07:30:37,651", + "created": 1610346637.6510077, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"False\"", + "module": "__init__", + "msecs": 651.0076522827148, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2300.549268722534, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:", + "__authentificate_process_feedback__" + ], + "asctime": "2021-01-11 07:30:37,651", + "created": 1610346637.6511984, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", + "module": "__init__", + "msecs": 651.1983871459961, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2300.7400035858154, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:37,651", + "created": 1610346637.651378, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "WARNING", "levelno": 30, - "lineno": 353, - "message": "SP client: Got negative authentification feedback", + "lineno": 363, + "message": "prot-client: Got negative authentification feedback", "module": "__init__", - "msecs": 839.1594886779785, + "msecs": 651.3779163360596, "msg": "%s Got negative authentification feedback", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1539.501667022705, + "relativeCreated": 2300.919532775879, "stack_info": null, - "thread": 140247503591168, - "threadName": "Thread-4" + "thread": 140562250323712, + "threadName": "Thread-6" } ], - "msecs": 932.5621128082275, + "msecs": 673.5239028930664, "msg": "Performing Authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1632.904291152954, + "relativeCreated": 2323.0655193328857, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.09340262413024902 + "time_consumption": 0.022145986557006836 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:12,933", - "created": 1609969752.9333785, + "asctime": "2021-01-11 07:30:37,674", + "created": 1610346637.6742914, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -81234,8 +174930,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:12,933", - "created": 1609969752.9330347, + "asctime": "2021-01-11 07:30:37,674", + "created": 1610346637.6740127, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -81245,15 +174941,15 @@ "lineno": 22, "message": "Result (Return Value of authentification method): False ()", "module": "test", - "msecs": 933.0346584320068, + "msecs": 674.0126609802246, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1633.3768367767334, + "relativeCreated": 2323.554277420044, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -81262,8 +174958,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:12,933", - "created": 1609969752.9332173, + "asctime": "2021-01-11 07:30:37,674", + "created": 1610346637.6741695, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -81273,37 +174969,37 @@ "lineno": 26, "message": "Expectation (Return Value of authentification method): result = False ()", "module": "test", - "msecs": 933.2172870635986, + "msecs": 674.1695404052734, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1633.5594654083252, + "relativeCreated": 2323.711156845093, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 933.3784580230713, + "msecs": 674.2913722991943, "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1633.7206363677979, + "relativeCreated": 2323.8329887390137, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00016117095947265625 + "time_consumption": 0.00012183189392089844 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:12,933", - "created": 1609969752.9339535, + "asctime": "2021-01-11 07:30:37,674", + "created": 1610346637.6746712, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -81320,8 +175016,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:12,933", - "created": 1609969752.9336243, + "asctime": "2021-01-11 07:30:37,674", + "created": 1610346637.6744661, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -81331,15 +175027,15 @@ "lineno": 22, "message": "Result (Authentification state of server): False ()", "module": "test", - "msecs": 933.624267578125, + "msecs": 674.4661331176758, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1633.9664459228516, + "relativeCreated": 2324.007749557495, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -81348,8 +175044,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:12,933", - "created": 1609969752.933772, + "asctime": "2021-01-11 07:30:37,674", + "created": 1610346637.6745703, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -81359,37 +175055,37 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = False ()", "module": "test", - "msecs": 933.772087097168, + "msecs": 674.5703220367432, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1634.1142654418945, + "relativeCreated": 2324.1119384765625, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 933.9535236358643, + "msecs": 674.6711730957031, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1634.2957019805908, + "relativeCreated": 2324.2127895355225, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00018143653869628906 + "time_consumption": 0.00010085105895996094 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:12,934", - "created": 1609969752.9344556, + "asctime": "2021-01-11 07:30:37,675", + "created": 1610346637.6750233, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -81406,8 +175102,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:12,934", - "created": 1609969752.9341779, + "asctime": "2021-01-11 07:30:37,674", + "created": 1610346637.6748273, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -81417,15 +175113,15 @@ "lineno": 22, "message": "Result (Authentification state of client): False ()", "module": "test", - "msecs": 934.1778755187988, + "msecs": 674.8273372650146, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1634.5200538635254, + "relativeCreated": 2324.368953704834, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -81434,8 +175130,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:12,934", - "created": 1609969752.9343185, + "asctime": "2021-01-11 07:30:37,674", + "created": 1610346637.6749275, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -81445,34 +175141,34 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = False ()", "module": "test", - "msecs": 934.3185424804688, + "msecs": 674.9274730682373, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1634.6607208251953, + "relativeCreated": 2324.4690895080566, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 934.4556331634521, + "msecs": 675.0233173370361, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1634.7978115081787, + "relativeCreated": 2324.5649337768555, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00013709068298339844 + "time_consumption": 9.584426879882812e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:12,934", - "created": 1609969752.9346693, + "asctime": "2021-01-11 07:30:37,675", + "created": 1610346637.6751654, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -81483,22 +175179,22 @@ "message": "Identical secrets set", "module": "test_communication", "moduleLogger": [], - "msecs": 934.6692562103271, + "msecs": 675.1654148101807, "msg": "Identical secrets set", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1635.0114345550537, + "relativeCreated": 2324.70703125, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-01-06 22:49:13,637", - "created": 1609969753.6379254, + "asctime": "2021-01-11 07:30:37,776", + "created": 1610346637.77613, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -81511,582 +175207,2420 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:12,934", - "created": 1609969752.9349241, + "asctime": "2021-01-11 07:30:37,675", + "created": 1610346637.6754048, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 438, + "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 934.9241256713867, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 675.4047870635986, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1635.2663040161133, + "relativeCreated": 2324.946403503418, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { - "args": [], - "asctime": "2021-01-06 22:49:12,935", - "created": 1609969752.9353256, + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:37,676", + "created": 1610346637.676201, "exc_info": null, "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "module": "test_helpers", - "msecs": 935.3256225585938, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 676.2011051177979, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1635.6678009033203, + "relativeCreated": 2325.742721557617, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:13,086", - "created": 1609969753.086327, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "module": "test_helpers", - "msecs": 86.32707595825195, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 1786.6692543029785, - "stack_info": null, - "thread": 140247503591168, + "thread": 140562258716416, "threadName": "Thread-5" }, { "args": [ - "SP server:", + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:37,684", + "created": 1610346637.6848528, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 684.8528385162354, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2334.3944549560547, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,685", + "created": 1610346637.6852987, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 685.2986812591553, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2334.8402976989746, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:37,685", + "created": 1610346637.6855772, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 685.5771541595459, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2335.1187705993652, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,685", + "created": 1610346637.685761, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 685.7609748840332, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2335.3025913238525, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,685", + "created": 1610346637.6858644, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 685.8644485473633, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2335.4060649871826, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,686", + "created": 1610346637.686007, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 686.007022857666, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2335.5486392974854, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,686", + "created": 1610346637.6861017, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 686.1016750335693, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2335.6432914733887, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,686", + "created": 1610346637.6862397, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 686.2397193908691, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2335.7813358306885, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,686", + "created": 1610346637.6863325, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 686.3324642181396, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2335.874080657959, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,686", + "created": 1610346637.6864512, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 686.4511966705322, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2335.9928131103516, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,686", + "created": 1610346637.686541, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 686.5410804748535, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2336.082696914673, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-client:", + "(6): fd 82 a2 a9 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,686", + "created": 1610346637.6867225, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): fd 82 a2 a9 3a 3e", + "module": "__init__", + "msecs": 686.7225170135498, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2336.264133453369, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(6): fd 82 a2 a9 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,687", + "created": 1610346637.6877701, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): fd 82 a2 a9 3a 3e", + "module": "__init__", + "msecs": 687.7701282501221, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2337.3117446899414, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,688", + "created": 1610346637.6880033, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 688.0033016204834, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2337.5449180603027, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:37,688", + "created": 1610346637.688135, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 688.1349086761475, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2337.676525115967, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9" + ], + "asctime": "2021-01-11 07:30:37,688", + "created": 1610346637.6883025, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", + "module": "stp", + "msecs": 688.3025169372559, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2337.844133377075, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:13,086", - "created": 1609969753.0867975, + "asctime": "2021-01-11 07:30:37,688", + "created": 1610346637.6885767, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 438, + "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 86.79747581481934, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 688.5766983032227, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1787.139654159546, + "relativeCreated": 2338.118314743042, "stack_info": null, - "thread": 140247503591168, + "thread": 140562258716416, "threadName": "Thread-5" }, { "args": [ - "SP server:", + "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-06 22:49:13,087", - "created": 1609969753.0870256, + "asctime": "2021-01-11 07:30:37,688", + "created": 1610346637.6887035, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __authentificate_create_seed__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 87.02564239501953, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 688.7035369873047, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1787.367820739746, + "relativeCreated": 2338.245153427124, "stack_info": null, - "thread": 140247503591168, + "thread": 140562258716416, "threadName": "Thread-5" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: authentification response, data_id: seed", "status: okay", - "'b57aec62234fe96f003daf58d45caa885979c4fb9c328a975bc068efbc455ce2'" + "'433acdfc36ab96f10ee9996e619441407aec748442a8a52e984edcce0ef5a6a4'" ], - "asctime": "2021-01-06 22:49:13,087", - "created": 1609969753.0872633, + "asctime": "2021-01-11 07:30:37,688", + "created": 1610346637.688881, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: authentification response, data_id: seed, status: okay, data: \"'b57aec62234fe96f003daf58d45caa885979c4fb9c328a975bc068efbc455ce2'\"", + "lineno": 438, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'433acdfc36ab96f10ee9996e619441407aec748442a8a52e984edcce0ef5a6a4'\"", "module": "__init__", - "msecs": 87.26334571838379, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 688.8809204101562, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1787.6055240631104, + "relativeCreated": 2338.4225368499756, "stack_info": null, - "thread": 140247503591168, + "thread": 140562258716416, "threadName": "Thread-5" }, { - "args": [], - "asctime": "2021-01-06 22:49:13,087", - "created": 1609969753.0877614, + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 33 33 61" + ], + "asctime": "2021-01-11 07:30:37,689", + "created": 1610346637.6895647, "exc_info": null, "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 62 35 37 61 65 63 36 32 32 33 34 66 65 39 36 66 30 30 33 64 61 66 35 38 64 34 35 63 61 61 38 38 35 39 37 39 63 34 66 62 39 63 33 32 38 61 39 37 35 62 63 30 36 38 65 66 62 63 34 35 35 63 65 32 22 7d 37 a9 b8 63", - "module": "test_helpers", - "msecs": 87.76140213012695, - "msg": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 62 35 37 61 65 63 36 32 32 33 34 66 65 39 36 66 30 30 33 64 61 66 35 38 64 34 35 63 61 61 38 38 35 39 37 39 63 34 66 62 39 63 33 32 38 61 39 37 35 62 63 30 36 38 65 66 62 63 34 35 35 63 65 32 22 7d 37 a9 b8 63", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 33 33 61", + "module": "__init__", + "msecs": 689.5647048950195, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1788.1035804748535, + "relativeCreated": 2339.106321334839, "stack_info": null, - "thread": 140247503591168, - "threadName": "Thread-5" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:13,238", - "created": 1609969753.2388594, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 62 35 37 61 65 63 36 32 32 33 34 66 65 39 36 66 30 30 33 64 61 66 35 38 64 34 35 63 61 61 38 38 35 39 37 39 63 34 66 62 39 63 33 32 38 61 39 37 35 62 63 30 36 38 65 66 62 63 34 35 35 63 65 32 22 7d 37 a9 b8 63", - "module": "test_helpers", - "msecs": 238.8594150543213, - "msg": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 62 35 37 61 65 63 36 32 32 33 34 66 65 39 36 66 30 30 33 64 61 66 35 38 64 34 35 63 61 61 38 38 35 39 37 39 63 34 66 62 39 63 33 32 38 61 39 37 35 62 63 30 36 38 65 66 62 63 34 35 35 63 65 32 22 7d 37 a9 b8 63", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 1939.2015933990479, - "stack_info": null, - "thread": 140247511983872, + "thread": 140562250323712, "threadName": "Thread-6" }, { "args": [ - "SP client:", - "service: authentification response, data_id: seed", - "status: okay", - "'b57aec62234fe96f003daf58d45caa885979c4fb9c328a975bc068efbc455ce2'" + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 33 33 61" ], - "asctime": "2021-01-06 22:49:13,239", - "created": 1609969753.2393477, + "asctime": "2021-01-11 07:30:37,697", + "created": 1610346637.697902, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'b57aec62234fe96f003daf58d45caa885979c4fb9c328a975bc068efbc455ce2'\"", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 34 33 33 61", "module": "__init__", - "msecs": 239.3476963043213, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 697.9019641876221, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1939.6898746490479, + "relativeCreated": 2347.4435806274414, "stack_info": null, - "thread": 140247511983872, + "thread": 140562250323712, "threadName": "Thread-6" }, { "args": [ - "SP client:", + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,698", + "created": 1610346637.6981983, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 698.1983184814453, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2347.7399349212646, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:37,698", + "created": 1610346637.698356, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 698.3559131622314, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2347.897529602051, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,698", + "created": 1610346637.698565, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 698.5650062561035, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2348.106622695923, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,698", + "created": 1610346637.698699, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 698.6989974975586, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2348.240613937378, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,698", + "created": 1610346637.6988833, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 698.8832950592041, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2348.4249114990234, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,699", + "created": 1610346637.699016, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 699.0160942077637, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2348.557710647583, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,699", + "created": 1610346637.6991813, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 699.181318283081, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2348.7229347229004, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,699", + "created": 1610346637.6993108, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 699.3107795715332, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2348.8523960113525, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,699", + "created": 1610346637.6994696, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 699.4695663452148, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2349.011182785034, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,699", + "created": 1610346637.6995888, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 699.5887756347656, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2349.130392074585, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-server:", + "(64): 63 64 66 63 33 36 61 62 39 36 66 31 30 65 65 39 39 39 36 65 36 31 39 34 34 31 34 30 37 61 65 63 37 34 38 34 34 32 61 38 61 35 32 65 39 38 34 65 64 63 63 65 30 65 66 35 61 36 61 34 22 7d 3b 17" + ], + "asctime": "2021-01-11 07:30:37,699", + "created": 1610346637.699899, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 63 64 66 63 33 36 61 62 39 36 66 31 30 65 65 39 39 39 36 65 36 31 39 34 34 31 34 30 37 61 65 63 37 34 38 34 34 32 61 38 61 35 32 65 39 38 34 65 64 63 63 65 30 65 66 35 61 36 61 34 22 7d 3b 17", + "module": "__init__", + "msecs": 699.8989582061768, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2349.440574645996, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-client:", + "(64): 63 64 66 63 33 36 61 62 39 36 66 31 30 65 65 39 39 39 36 65 36 31 39 34 34 31 34 30 37 61 65 63 37 34 38 34 34 32 61 38 61 35 32 65 39 38 34 65 64 63 63 65 30 65 66 35 61 36 61 34 22 7d 3b 17" + ], + "asctime": "2021-01-11 07:30:37,708", + "created": 1610346637.7083116, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 63 64 66 63 33 36 61 62 39 36 66 31 30 65 65 39 39 39 36 65 36 31 39 34 34 31 34 30 37 61 65 63 37 34 38 34 34 32 61 38 61 35 32 65 39 38 34 65 64 63 63 65 30 65 66 35 61 36 61 34 22 7d 3b 17", + "module": "__init__", + "msecs": 708.3115577697754, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2357.8531742095947, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-server:", + "(4): f8 cd 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,708", + "created": 1610346637.7088954, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (4): f8 cd 3a 3e", + "module": "__init__", + "msecs": 708.8954448699951, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2358.4370613098145, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-client:", + "(4): f8 cd 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,709", + "created": 1610346637.709651, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (4): f8 cd 3a 3e", + "module": "__init__", + "msecs": 709.650993347168, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2359.1926097869873, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,709", + "created": 1610346637.7098262, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 709.8262310028076, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2359.367847442627, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:37,709", + "created": 1610346637.7099612, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 709.9611759185791, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2359.5027923583984, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + "(124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 33 33 61 63 64 66 63 33 36 61 62 39 36 66 31 30 65 65 39 39 39 36 65 36 31 39 34 34 31 34 30 37 61 65 63 37 34 38 34 34 32 61 38 61 35 32 65 39 38 34 65 64 63 63 65 30 65 66 35 61 36 61 34 22 7d 3b 17 f8 cd" + ], + "asctime": "2021-01-11 07:30:37,710", + "created": 1610346637.7102873, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 34 33 33 61 63 64 66 63 33 36 61 62 39 36 66 31 30 65 65 39 39 39 36 65 36 31 39 34 34 31 34 30 37 61 65 63 37 34 38 34 34 32 61 38 61 35 32 65 39 38 34 65 64 63 63 65 30 65 66 35 61 36 61 34 22 7d 3b 17 f8 cd", + "module": "stp", + "msecs": 710.28733253479, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2359.8289489746094, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: seed", + "status: okay", + "'433acdfc36ab96f10ee9996e619441407aec748442a8a52e984edcce0ef5a6a4'" + ], + "asctime": "2021-01-11 07:30:37,710", + "created": 1610346637.7106397, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'433acdfc36ab96f10ee9996e619441407aec748442a8a52e984edcce0ef5a6a4'\"", + "module": "__init__", + "msecs": 710.6397151947021, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2360.1813316345215, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-01-06 22:49:13,239", - "created": 1609969753.23958, + "asctime": "2021-01-11 07:30:37,710", + "created": 1610346637.7108078, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __authentificate_create_key__ to process received data", + "lineno": 492, + "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 239.5799160003662, + "msecs": 710.8078002929688, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1939.9220943450928, + "relativeCreated": 2360.349416732788, "stack_info": null, - "thread": 140247511983872, + "thread": 140562250323712, "threadName": "Thread-6" }, { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: authentification request, data_id: key", "status: okay", - "'89cccf6a7300e968bc7eb90ffe7cb05897a65700e13bf8594657757783328a5f1efd7be32c8a0b5b461b6c8fe6af704fb3fa5faeedf3ea9473b3aa6c1007e648'" + "'9f3b842e8ecca25c8a3b69ea56c8cc15abc1180a9295a96b529912d97fa30d04a57c0eef2dc75ecd74fbe7bdde5f5c9154426d9ed780dbfd7962087b18c2a9c4'" ], - "asctime": "2021-01-06 22:49:13,239", - "created": 1609969753.2398224, + "asctime": "2021-01-11 07:30:37,711", + "created": 1610346637.7110503, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: authentification request, data_id: key, status: okay, data: \"'89cccf6a7300e968bc7eb90ffe7cb05897a65700e13bf8594657757783328a5f1efd7be32c8a0b5b461b6c8fe6af704fb3fa5faeedf3ea9473b3aa6c1007e648'\"", + "lineno": 438, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'9f3b842e8ecca25c8a3b69ea56c8cc15abc1180a9295a96b529912d97fa30d04a57c0eef2dc75ecd74fbe7bdde5f5c9154426d9ed780dbfd7962087b18c2a9c4'\"", "module": "__init__", - "msecs": 239.8223876953125, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 711.050271987915, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 1940.164566040039, + "relativeCreated": 2360.5918884277344, "stack_info": null, - "thread": 140247511983872, + "thread": 140562250323712, "threadName": "Thread-6" }, - { - "args": [], - "asctime": "2021-01-06 22:49:13,240", - "created": 1609969753.240402, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 39 63 63 63 66 36 61 37 33 30 30 65 39 36 38 62 63 37 65 62 39 30 66 66 65 37 63 62 30 35 38 39 37 61 36 35 37 30 30 65 31 33 62 66 38 35 39 34 36 35 37 37 35 37 37 38 33 33 32 38 61 35 66 31 65 66 64 37 62 65 33 32 63 38 61 30 62 35 62 34 36 31 62 36 63 38 66 65 36 61 66 37 30 34 66 62 33 66 61 35 66 61 65 65 64 66 33 65 61 39 34 37 33 62 33 61 61 36 63 31 30 30 37 65 36 34 38 22 7d 13 b4 0f 76", - "module": "test_helpers", - "msecs": 240.4019832611084, - "msg": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 39 63 63 63 66 36 61 37 33 30 30 65 39 36 38 62 63 37 65 62 39 30 66 66 65 37 63 62 30 35 38 39 37 61 36 35 37 30 30 65 31 33 62 66 38 35 39 34 36 35 37 37 35 37 37 38 33 33 32 38 61 35 66 31 65 66 64 37 62 65 33 32 63 38 61 30 62 35 62 34 36 31 62 36 63 38 66 65 36 61 66 37 30 34 66 62 33 66 61 35 66 61 65 65 64 66 33 65 61 39 34 37 33 62 33 61 61 36 63 31 30 30 37 65 36 34 38 22 7d 13 b4 0f 76", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 1940.744161605835, - "stack_info": null, - "thread": 140247511983872, - "threadName": "Thread-6" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:13,391", - "created": 1609969753.3915448, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 39 63 63 63 66 36 61 37 33 30 30 65 39 36 38 62 63 37 65 62 39 30 66 66 65 37 63 62 30 35 38 39 37 61 36 35 37 30 30 65 31 33 62 66 38 35 39 34 36 35 37 37 35 37 37 38 33 33 32 38 61 35 66 31 65 66 64 37 62 65 33 32 63 38 61 30 62 35 62 34 36 31 62 36 63 38 66 65 36 61 66 37 30 34 66 62 33 66 61 35 66 61 65 65 64 66 33 65 61 39 34 37 33 62 33 61 61 36 63 31 30 30 37 65 36 34 38 22 7d 13 b4 0f 76", - "module": "test_helpers", - "msecs": 391.5448188781738, - "msg": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 39 63 63 63 66 36 61 37 33 30 30 65 39 36 38 62 63 37 65 62 39 30 66 66 65 37 63 62 30 35 38 39 37 61 36 35 37 30 30 65 31 33 62 66 38 35 39 34 36 35 37 37 35 37 37 38 33 33 32 38 61 35 66 31 65 66 64 37 62 65 33 32 63 38 61 30 62 35 62 34 36 31 62 36 63 38 66 65 36 61 66 37 30 34 66 62 33 66 61 35 66 61 65 65 64 66 33 65 61 39 34 37 33 62 33 61 61 36 63 31 30 30 37 65 36 34 38 22 7d 13 b4 0f 76", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 2091.8869972229004, - "stack_info": null, - "thread": 140247503591168, - "threadName": "Thread-7" - }, { "args": [ - "SP server:", - "service: authentification request, data_id: key", - "status: okay", - "'89cccf6a7300e968bc7eb90ffe7cb05897a65700e13bf8594657757783328a5f1efd7be32c8a0b5b461b6c8fe6af704fb3fa5faeedf3ea9473b3aa6c1007e648'" + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 39 66 33 62" ], - "asctime": "2021-01-06 22:49:13,391", - "created": 1609969753.3919847, + "asctime": "2021-01-11 07:30:37,712", + "created": 1610346637.7120173, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__tx__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: authentification request, data_id: key, status: okay, data: \"'89cccf6a7300e968bc7eb90ffe7cb05897a65700e13bf8594657757783328a5f1efd7be32c8a0b5b461b6c8fe6af704fb3fa5faeedf3ea9473b3aa6c1007e648'\"", + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 39 66 33 62", "module": "__init__", - "msecs": 391.9847011566162, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 712.017297744751, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 2092.326879501343, + "relativeCreated": 2361.5589141845703, "stack_info": null, - "thread": 140247503591168, - "threadName": "Thread-7" + "thread": 140562258716416, + "threadName": "Thread-5" }, { "args": [ - "SP server:", + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 39 66 33 62" + ], + "asctime": "2021-01-11 07:30:37,720", + "created": 1610346637.7204938, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 39 66 33 62", + "module": "__init__", + "msecs": 720.4937934875488, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2370.035409927368, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,720", + "created": 1610346637.7208047, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 720.8046913146973, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2370.3463077545166, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:37,720", + "created": 1610346637.7209566, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 720.956563949585, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2370.4981803894043, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,721", + "created": 1610346637.7211418, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 721.1418151855469, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2370.683431625366, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,721", + "created": 1610346637.7212713, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 721.271276473999, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2370.8128929138184, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,721", + "created": 1610346637.7215407, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 721.5406894683838, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2371.082305908203, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,721", + "created": 1610346637.7216592, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 721.6591835021973, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2371.2007999420166, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,721", + "created": 1610346637.7218187, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 721.8186855316162, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2371.3603019714355, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,721", + "created": 1610346637.721929, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 721.9290733337402, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2371.4706897735596, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,722", + "created": 1610346637.722071, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 722.0709323883057, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2371.612548828125, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,722", + "created": 1610346637.7221797, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 722.179651260376, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2371.7212677001953, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-client:", + "(64): 38 34 32 65 38 65 63 63 61 32 35 63 38 61 33 62 36 39 65 61 35 36 63 38 63 63 31 35 61 62 63 31 31 38 30 61 39 32 39 35 61 39 36 62 35 32 39 39 31 32 64 39 37 66 61 33 30 64 30 34 61 35 37 63" + ], + "asctime": "2021-01-11 07:30:37,722", + "created": 1610346637.7224512, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 38 34 32 65 38 65 63 63 61 32 35 63 38 61 33 62 36 39 65 61 35 36 63 38 63 63 31 35 61 62 63 31 31 38 30 61 39 32 39 35 61 39 36 62 35 32 39 39 31 32 64 39 37 66 61 33 30 64 30 34 61 35 37 63", + "module": "__init__", + "msecs": 722.4512100219727, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2371.992826461792, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(64): 38 34 32 65 38 65 63 63 61 32 35 63 38 61 33 62 36 39 65 61 35 36 63 38 63 63 31 35 61 62 63 31 31 38 30 61 39 32 39 35 61 39 36 62 35 32 39 39 31 32 64 39 37 66 61 33 30 64 30 34 61 35 37 63" + ], + "asctime": "2021-01-11 07:30:37,730", + "created": 1610346637.730816, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 38 34 32 65 38 65 63 63 61 32 35 63 38 61 33 62 36 39 65 61 35 36 63 38 63 63 31 35 61 62 63 31 31 38 30 61 39 32 39 35 61 39 36 62 35 32 39 39 31 32 64 39 37 66 61 33 30 64 30 34 61 35 37 63", + "module": "__init__", + "msecs": 730.8158874511719, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2380.357503890991, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-client:", + "(64): 30 65 65 66 32 64 63 37 35 65 63 64 37 34 66 62 65 37 62 64 64 65 35 66 35 63 39 31 35 34 34 32 36 64 39 65 64 37 38 30 64 62 66 64 37 39 36 32 30 38 37 62 31 38 63 32 61 39 63 34 22 7d 47 b5" + ], + "asctime": "2021-01-11 07:30:37,731", + "created": 1610346637.7314546, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 30 65 65 66 32 64 63 37 35 65 63 64 37 34 66 62 65 37 62 64 64 65 35 66 35 63 39 31 35 34 34 32 36 64 39 65 64 37 38 30 64 62 66 64 37 39 36 32 30 38 37 62 31 38 63 32 61 39 63 34 22 7d 47 b5", + "module": "__init__", + "msecs": 731.454610824585, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2380.9962272644043, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(64): 30 65 65 66 32 64 63 37 35 65 63 64 37 34 66 62 65 37 62 64 64 65 35 66 35 63 39 31 35 34 34 32 36 64 39 65 64 37 38 30 64 62 66 64 37 39 36 32 30 38 37 62 31 38 63 32 61 39 63 34 22 7d 47 b5" + ], + "asctime": "2021-01-11 07:30:37,739", + "created": 1610346637.7398791, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 30 65 65 66 32 64 63 37 35 65 63 64 37 34 66 62 65 37 62 64 64 65 35 66 35 63 39 31 35 34 34 32 36 64 39 65 64 37 38 30 64 62 66 64 37 39 36 32 30 38 37 62 31 38 63 32 61 39 63 34 22 7d 47 b5", + "module": "__init__", + "msecs": 739.8791313171387, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2389.420747756958, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-client:", + "(4): 17 06 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,740", + "created": 1610346637.740722, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (4): 17 06 3a 3e", + "module": "__init__", + "msecs": 740.7219409942627, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2390.263557434082, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(4): 17 06 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,741", + "created": 1610346637.7415576, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (4): 17 06 3a 3e", + "module": "__init__", + "msecs": 741.5575981140137, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2391.099214553833, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,741", + "created": 1610346637.7417498, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 741.7497634887695, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2391.291379928589, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:37,741", + "created": 1610346637.7419024, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 741.9023513793945, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2391.443967819214, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + "(188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 39 66 33 62 38 34 32 65 38 65 63 63 61 32 35 63 38 61 33 62 36 39 65 61 35 36 63 38 63 63 31 35 61 62 63 31 31 38 30 61 39 32 39 35 61 39 36 62 35 32 39 39 31 32 64 39 37 66 61 33 30 64 30 34 61 35 37 63 30 65 65 66 32 64 63 37 35 65 63 64 37 34 66 62 65 37 62 64 64 65 35 66 35 63 39 31 35 34 34 32 36 64 39 65 64 37 38 30 64 62 66 64 37 39 36 32 30 38 37 62 31 38 63 32 61 39 63 34 22 7d 47 b5 17 06" + ], + "asctime": "2021-01-11 07:30:37,742", + "created": 1610346637.742359, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 39 66 33 62 38 34 32 65 38 65 63 63 61 32 35 63 38 61 33 62 36 39 65 61 35 36 63 38 63 63 31 35 61 62 63 31 31 38 30 61 39 32 39 35 61 39 36 62 35 32 39 39 31 32 64 39 37 66 61 33 30 64 30 34 61 35 37 63 30 65 65 66 32 64 63 37 35 65 63 64 37 34 66 62 65 37 62 64 64 65 35 66 35 63 39 31 35 34 34 32 36 64 39 65 64 37 38 30 64 62 66 64 37 39 36 32 30 38 37 62 31 38 63 32 61 39 63 34 22 7d 47 b5 17 06", + "module": "stp", + "msecs": 742.358922958374, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2391.9005393981934, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: authentification request, data_id: key", + "status: okay", + "'9f3b842e8ecca25c8a3b69ea56c8cc15abc1180a9295a96b529912d97fa30d04a57c0eef2dc75ecd74fbe7bdde5f5c9154426d9ed780dbfd7962087b18c2a9c4'" + ], + "asctime": "2021-01-11 07:30:37,742", + "created": 1610346637.742745, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'9f3b842e8ecca25c8a3b69ea56c8cc15abc1180a9295a96b529912d97fa30d04a57c0eef2dc75ecd74fbe7bdde5f5c9154426d9ed780dbfd7962087b18c2a9c4'\"", + "module": "__init__", + "msecs": 742.7449226379395, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2392.286539077759, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-01-06 22:49:13,392", - "created": 1609969753.3921893, + "asctime": "2021-01-11 07:30:37,742", + "created": 1610346637.7429433, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __authentificate_check_key__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 392.18926429748535, - "msg": "%s RX <- Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 2092.531442642212, - "stack_info": null, - "thread": 140247503591168, - "threadName": "Thread-7" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-01-06 22:49:13,392", - "created": 1609969753.3924103, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 392.4102783203125, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 2092.752456665039, - "stack_info": null, - "thread": 140247503591168, - "threadName": "Thread-7" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:13,392", - "created": 1609969753.3927643, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", - "module": "test_helpers", - "msecs": 392.7643299102783, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 2093.106508255005, - "stack_info": null, - "thread": 140247503591168, - "threadName": "Thread-7" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:13,543", - "created": 1609969753.543744, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", - "module": "test_helpers", - "msecs": 543.7440872192383, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 2244.086265563965, - "stack_info": null, - "thread": 140247511983872, - "threadName": "Thread-8" - }, - { - "args": [ - "SP client:", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-01-06 22:49:13,544", - "created": 1609969753.5443661, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 544.3661212921143, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 2244.708299636841, - "stack_info": null, - "thread": 140247511983872, - "threadName": "Thread-8" - }, - { - "args": [ - "SP client:", - "__authentificate_process_feedback__" - ], - "asctime": "2021-01-06 22:49:13,544", - "created": 1609969753.5447624, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 478, - "message": "SP client: Executing callback __authentificate_process_feedback__ to process received data", - "module": "__init__", - "msecs": 544.762372970581, + "msecs": 742.943286895752, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 2245.1045513153076, + "relativeCreated": 2392.4849033355713, "stack_info": null, - "thread": 140247511983872, - "threadName": "Thread-8" + "thread": 140562258716416, + "threadName": "Thread-5" }, { "args": [ - "SP client:" + "prot-server:", + "TX ->", + "service: authentification response, data_id: key", + "status: okay", + "True" ], - "asctime": "2021-01-06 22:49:13,545", - "created": 1609969753.5450249, + "asctime": "2021-01-11 07:30:37,743", + "created": 1610346637.7432475, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 743.2475090026855, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2392.789125442505, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" + ], + "asctime": "2021-01-11 07:30:37,743", + "created": 1610346637.7439682, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", + "module": "__init__", + "msecs": 743.9682483673096, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2393.509864807129, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" + ], + "asctime": "2021-01-11 07:30:37,752", + "created": 1610346637.752264, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", + "module": "__init__", + "msecs": 752.2640228271484, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2401.805639266968, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,752", + "created": 1610346637.75244, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 752.4399757385254, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2401.9815921783447, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:37,752", + "created": 1610346637.7525346, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 752.5346279144287, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2402.076244354248, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,752", + "created": 1610346637.7526634, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 752.6633739471436, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2402.204990386963, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,752", + "created": 1610346637.752747, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 752.7470588684082, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2402.2886753082275, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,752", + "created": 1610346637.7528667, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 752.8667449951172, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2402.4083614349365, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,752", + "created": 1610346637.7529464, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 752.9463768005371, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2402.4879932403564, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,753", + "created": 1610346637.7530568, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 753.0567646026611, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2402.5983810424805, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,753", + "created": 1610346637.7531338, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 753.1337738037109, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2402.6753902435303, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,753", + "created": 1610346637.7532408, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 753.2408237457275, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2402.782440185547, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,753", + "created": 1610346637.7533178, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 753.3178329467773, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2402.8594493865967, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-server:", + "(6): 94 fe 74 32 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,753", + "created": 1610346637.753579, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 94 fe 74 32 3a 3e", + "module": "__init__", + "msecs": 753.5789012908936, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2403.120517730713, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "comm-client:", + "(6): 94 fe 74 32 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,754", + "created": 1610346637.7546053, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 94 fe 74 32 3a 3e", + "module": "__init__", + "msecs": 754.6052932739258, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2404.146909713745, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,754", + "created": 1610346637.7548676, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 754.8675537109375, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2404.409170150757, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:37,754", + "created": 1610346637.754988, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 754.9879550933838, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2404.529571533203, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32" + ], + "asctime": "2021-01-11 07:30:37,755", + "created": 1610346637.7551336, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d 94 fe 74 32", + "module": "stp", + "msecs": 755.1336288452148, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2404.675245285034, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: key", + "status: okay", + "True" + ], + "asctime": "2021-01-11 07:30:37,755", + "created": 1610346637.7553697, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 755.3696632385254, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2404.9112796783447, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:", + "__authentificate_process_feedback__" + ], + "asctime": "2021-01-11 07:30:37,755", + "created": 1610346637.755479, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", + "module": "__init__", + "msecs": 755.479097366333, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2405.0207138061523, + "stack_info": null, + "thread": 140562250323712, + "threadName": "Thread-6" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:37,755", + "created": 1610346637.7555776, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "INFO", "levelno": 20, - "lineno": 350, - "message": "SP client: Got positive authentification feedback", + "lineno": 360, + "message": "prot-client: Got positive authentification feedback", "module": "__init__", - "msecs": 545.0248718261719, + "msecs": 755.577564239502, "msg": "%s Got positive authentification feedback", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 2245.3670501708984, + "relativeCreated": 2405.1191806793213, "stack_info": null, - "thread": 140247511983872, - "threadName": "Thread-8" + "thread": 140562250323712, + "threadName": "Thread-6" } ], - "msecs": 637.925386428833, + "msecs": 776.129961013794, "msg": "Performing Authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 2338.2675647735596, + "relativeCreated": 2425.6715774536133, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.09290051460266113 + "time_consumption": 0.020552396774291992 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:13,638", - "created": 1609969753.6387444, + "asctime": "2021-01-11 07:30:37,776", + "created": 1610346637.7767584, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82103,8 +177637,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:13,638", - "created": 1609969753.638399, + "asctime": "2021-01-11 07:30:37,776", + "created": 1610346637.7765572, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82114,15 +177648,15 @@ "lineno": 22, "message": "Result (Return Value of authentification method): True ()", "module": "test", - "msecs": 638.3988857269287, + "msecs": 776.557207107544, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 2338.7410640716553, + "relativeCreated": 2426.0988235473633, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -82131,8 +177665,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:13,638", - "created": 1609969753.6385813, + "asctime": "2021-01-11 07:30:37,776", + "created": 1610346637.7766647, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82142,37 +177676,37 @@ "lineno": 26, "message": "Expectation (Return Value of authentification method): result = True ()", "module": "test", - "msecs": 638.5812759399414, + "msecs": 776.6647338867188, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 2338.923454284668, + "relativeCreated": 2426.206350326538, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 638.7443542480469, + "msecs": 776.7584323883057, "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 2339.0865325927734, + "relativeCreated": 2426.300048828125, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00016307830810546875 + "time_consumption": 9.369850158691406e-05 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:13,639", - "created": 1609969753.6392949, + "asctime": "2021-01-11 07:30:37,777", + "created": 1610346637.77706, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82189,8 +177723,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:13,638", - "created": 1609969753.6389909, + "asctime": "2021-01-11 07:30:37,776", + "created": 1610346637.7768989, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82200,15 +177734,15 @@ "lineno": 22, "message": "Result (Authentification state of server): True ()", "module": "test", - "msecs": 638.9908790588379, + "msecs": 776.8988609313965, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 2339.3330574035645, + "relativeCreated": 2426.440477371216, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -82217,8 +177751,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:13,639", - "created": 1609969753.6391513, + "asctime": "2021-01-11 07:30:37,776", + "created": 1610346637.7769818, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82228,37 +177762,37 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = True ()", "module": "test", - "msecs": 639.1513347625732, + "msecs": 776.9818305969238, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 2339.4935131073, + "relativeCreated": 2426.523447036743, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 639.2948627471924, + "msecs": 777.0600318908691, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 2339.637041091919, + "relativeCreated": 2426.6016483306885, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00014352798461914062 + "time_consumption": 7.82012939453125e-05 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:13,639", - "created": 1609969753.6398022, + "asctime": "2021-01-11 07:30:37,777", + "created": 1610346637.7773416, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82275,8 +177809,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:13,639", - "created": 1609969753.63952, + "asctime": "2021-01-11 07:30:37,777", + "created": 1610346637.777184, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82286,15 +177820,15 @@ "lineno": 22, "message": "Result (Authentification state of client): True ()", "module": "test", - "msecs": 639.5199298858643, + "msecs": 777.184009552002, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 2339.862108230591, + "relativeCreated": 2426.7256259918213, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -82303,8 +177837,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:13,639", - "created": 1609969753.6396623, + "asctime": "2021-01-11 07:30:37,777", + "created": 1610346637.7772655, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82314,34 +177848,34 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = True ()", "module": "test", - "msecs": 639.6622657775879, + "msecs": 777.2655487060547, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 2340.0044441223145, + "relativeCreated": 2426.807165145874, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 639.8022174835205, + "msecs": 777.3416042327881, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 2340.144395828247, + "relativeCreated": 2426.8832206726074, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001399517059326172 + "time_consumption": 7.605552673339844e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:13,640", - "created": 1609969753.640331, + "asctime": "2021-01-11 07:30:37,777", + "created": 1610346637.7776682, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -82354,73 +177888,73 @@ "moduleLogger": [ { "args": [ - "SP server:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:13,640", - "created": 1609969753.6400154, + "asctime": "2021-01-11 07:30:37,777", + "created": 1610346637.777485, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 640.0153636932373, + "msecs": 777.4848937988281, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 2340.357542037964, + "relativeCreated": 2427.0265102386475, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-client:" ], - "asctime": "2021-01-06 22:49:13,640", - "created": 1609969753.6401758, + "asctime": "2021-01-11 07:30:37,777", + "created": 1610346637.777589, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 640.1758193969727, + "msecs": 777.5890827178955, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 2340.517997741699, + "relativeCreated": 2427.130699157715, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 640.3310298919678, + "msecs": 777.6682376861572, "msg": "Corrupting the authentification mechanism", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 2340.6732082366943, + "relativeCreated": 2427.2098541259766, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001552104949951172 + "time_consumption": 7.915496826171875e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:15,646", - "created": 1609969755.6469076, + "asctime": "2021-01-11 07:30:38,179", + "created": 1610346638.1793776, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -82433,157 +177967,576 @@ "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:13,640", - "created": 1609969753.640591, + "asctime": "2021-01-11 07:30:37,777", + "created": 1610346637.7778816, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 438, + "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 640.5909061431885, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 777.8816223144531, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 2340.933084487915, + "relativeCreated": 2427.4232387542725, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, - { - "args": [], - "asctime": "2021-01-06 22:49:13,640", - "created": 1609969753.640992, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "module": "test_helpers", - "msecs": 640.9919261932373, - "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 2341.334104537964, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:13,792", - "created": 1609969753.7920032, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "module": "test_helpers", - "msecs": 792.0031547546387, - "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 2492.3453330993652, - "stack_info": null, - "thread": 140247511983872, - "threadName": "Thread-9" - }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:37,778", + "created": 1610346637.7783742, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 778.374195098877, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2427.9158115386963, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:37,786", + "created": 1610346637.7867823, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 786.7822647094727, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2436.323881149292, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,787", + "created": 1610346637.7870946, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 787.0945930480957, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2436.636209487915, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:37,787", + "created": 1610346637.7872522, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 787.2521877288818, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2436.793804168701, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,787", + "created": 1610346637.787433, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 787.4329090118408, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2436.97452545166, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,787", + "created": 1610346637.7875652, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 787.5652313232422, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2437.1068477630615, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,787", + "created": 1610346637.7877483, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 787.7483367919922, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2437.2899532318115, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,787", + "created": 1610346637.787894, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 787.8940105438232, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2437.4356269836426, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,788", + "created": 1610346637.7880661, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 788.0661487579346, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2437.607765197754, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,788", + "created": 1610346637.7882044, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 788.2044315338135, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2437.746047973633, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,788", + "created": 1610346637.7883615, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 788.3615493774414, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2437.9031658172607, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:37,788", + "created": 1610346637.788489, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 788.4891033172607, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2438.03071975708, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-client:", + "(6): fd 82 a2 a9 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,788", + "created": 1610346637.788705, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): fd 82 a2 a9 3a 3e", + "module": "__init__", + "msecs": 788.7051105499268, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2438.246726989746, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "comm-server:", + "(6): fd 82 a2 a9 3a 3e" + ], + "asctime": "2021-01-11 07:30:37,789", + "created": 1610346637.7896967, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): fd 82 a2 a9 3a 3e", + "module": "__init__", + "msecs": 789.6966934204102, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2439.2383098602295, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:37,789", + "created": 1610346637.789919, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 789.9188995361328, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2439.460515975952, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:37,790", + "created": 1610346637.7900684, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 790.0683879852295, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2439.610004425049, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9" + ], + "asctime": "2021-01-11 07:30:37,790", + "created": 1610346637.7902894, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d fd 82 a2 a9", + "module": "stp", + "msecs": 790.2894020080566, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 2439.831018447876, + "stack_info": null, + "thread": 140562258716416, + "threadName": "Thread-5" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: authentification request, data_id: seed", "status: okay", "None" ], - "asctime": "2021-01-06 22:49:13,792", - "created": 1609969753.7924554, + "asctime": "2021-01-11 07:30:37,790", + "created": 1610346637.7906601, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "lineno": 438, + "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 792.4554347991943, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 790.6601428985596, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 2492.797613143921, + "relativeCreated": 2440.201759338379, "stack_info": null, - "thread": 140247511983872, - "threadName": "Thread-9" + "thread": 140562258716416, + "threadName": "Thread-5" }, { "args": [ - "SP server:", + "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-01-06 22:49:13,792", - "created": 1609969753.7926986, + "asctime": "2021-01-11 07:30:37,790", + "created": 1610346637.7908273, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 478, - "message": "SP server: Executing callback __authentificate_create_seed__ to process received data", + "lineno": 492, + "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 792.6986217498779, + "msecs": 790.8272743225098, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 2493.0408000946045, + "relativeCreated": 2440.368890762329, "stack_info": null, - "thread": 140247511983872, - "threadName": "Thread-9" + "thread": 140562258716416, + "threadName": "Thread-5" } ], - "msecs": 646.9075679779053, + "msecs": 179.37755584716797, "msg": "Performing Authentification", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4347.249746322632, + "relativeCreated": 2828.9191722869873, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 1.8542089462280273 + "time_consumption": 0.3885502815246582 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:15,647", - "created": 1609969755.6476648, + "asctime": "2021-01-11 07:30:38,180", + "created": 1610346638.1802142, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82600,8 +178553,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:15,647", - "created": 1609969755.647323, + "asctime": "2021-01-11 07:30:38,179", + "created": 1610346638.1798549, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82611,15 +178564,15 @@ "lineno": 22, "message": "Result (Return Value of authentification method): False ()", "module": "test", - "msecs": 647.3228931427002, + "msecs": 179.8548698425293, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4347.665071487427, + "relativeCreated": 2829.3964862823486, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -82628,8 +178581,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:15,647", - "created": 1609969755.6475058, + "asctime": "2021-01-11 07:30:38,180", + "created": 1610346638.180054, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82639,37 +178592,37 @@ "lineno": 26, "message": "Expectation (Return Value of authentification method): result = False ()", "module": "test", - "msecs": 647.5057601928711, + "msecs": 180.0539493560791, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4347.847938537598, + "relativeCreated": 2829.5955657958984, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 647.6647853851318, + "msecs": 180.21416664123535, "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4348.006963729858, + "relativeCreated": 2829.7557830810547, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001590251922607422 + "time_consumption": 0.00016021728515625 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:15,648", - "created": 1609969755.6482418, + "asctime": "2021-01-11 07:30:38,180", + "created": 1610346638.1807497, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82686,8 +178639,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:15,647", - "created": 1609969755.6479092, + "asctime": "2021-01-11 07:30:38,180", + "created": 1610346638.180457, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82697,15 +178650,15 @@ "lineno": 22, "message": "Result (Authentification state of server): False ()", "module": "test", - "msecs": 647.9091644287109, + "msecs": 180.45711517333984, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4348.2513427734375, + "relativeCreated": 2829.998731613159, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -82714,8 +178667,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:15,648", - "created": 1609969755.6480587, + "asctime": "2021-01-11 07:30:38,180", + "created": 1610346638.1806118, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82725,37 +178678,37 @@ "lineno": 26, "message": "Expectation (Authentification state of server): result = False ()", "module": "test", - "msecs": 648.0586528778076, + "msecs": 180.61184883117676, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4348.400831222534, + "relativeCreated": 2830.153465270996, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 648.2417583465576, + "msecs": 180.74965476989746, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4348.583936691284, + "relativeCreated": 2830.291271209717, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00018310546875 + "time_consumption": 0.00013780593872070312 }, { "args": [ "False", "" ], - "asctime": "2021-01-06 22:49:15,648", - "created": 1609969755.6487546, + "asctime": "2021-01-11 07:30:38,181", + "created": 1610346638.1812394, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82772,8 +178725,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:15,648", - "created": 1609969755.648477, + "asctime": "2021-01-11 07:30:38,180", + "created": 1610346638.1809669, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82783,15 +178736,15 @@ "lineno": 22, "message": "Result (Authentification state of client): False ()", "module": "test", - "msecs": 648.4770774841309, + "msecs": 180.96685409545898, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4348.819255828857, + "relativeCreated": 2830.5084705352783, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -82800,8 +178753,8 @@ "False", "" ], - "asctime": "2021-01-06 22:49:15,648", - "created": 1609969755.648618, + "asctime": "2021-01-11 07:30:38,181", + "created": 1610346638.1811044, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -82811,41 +178764,41 @@ "lineno": 26, "message": "Expectation (Authentification state of client): result = False ()", "module": "test", - "msecs": 648.6179828643799, + "msecs": 181.1044216156006, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4348.960161209106, + "relativeCreated": 2830.64603805542, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 648.7545967102051, + "msecs": 181.23936653137207, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 4349.096775054932, + "relativeCreated": 2830.7809829711914, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001366138458251953 + "time_consumption": 0.00013494491577148438 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 3.4286391735076904, - "time_finished": "2021-01-06 22:49:15,648", - "time_start": "2021-01-06 22:49:12,220" + "time_consumption": 0.9616029262542725, + "time_finished": "2021-01-11 07:30:38,181", + "time_start": "2021-01-11 07:30:37,219" }, "_k-Q4EE0oEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:49:22,567", - "created": 1609969762.5674975, + "asctime": "2021-01-11 07:30:47,094", + "created": 1610346647.0945776, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -82856,1345 +178809,3129 @@ "message": "_k-Q4EE0oEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 567.4974918365479, + "msecs": 94.57755088806152, "msg": "_k-Q4EE0oEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11267.839670181274, + "relativeCreated": 11744.11916732788, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:22,574", - "created": 1609969762.574066, + "asctime": "2021-01-11 07:30:47,103", + "created": 1610346647.1036925, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:22,567", - "created": 1609969762.5679061, + "asctime": "2021-01-11 07:30:47,095", + "created": 1610346647.0957568, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 567.9061412811279, + "msecs": 95.75676918029785, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11268.248319625854, + "relativeCreated": 11745.298385620117, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:22,568", - "created": 1609969762.568097, + "asctime": "2021-01-11 07:30:47,096", + "created": 1610346647.0966392, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 568.0971145629883, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 96.63915634155273, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11268.439292907715, + "relativeCreated": 11746.180772781372, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:22,568", - "created": 1609969762.5683155, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 568.3155059814453, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11268.657684326172, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:22,568", - "created": 1609969762.568473, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 568.4731006622314, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11268.815279006958, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:22,568", - "created": 1609969762.5686247, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 568.62473487854, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11268.966913223267, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:22,568", - "created": 1609969762.5687714, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 568.7713623046875, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11269.113540649414, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:22,568", - "created": 1609969762.5689325, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 568.9325332641602, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11269.274711608887, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:22,569", - "created": 1609969762.5690947, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 569.0946578979492, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11269.436836242676, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:22,569", - "created": 1609969762.5692525, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 569.2524909973145, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11269.594669342041, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:22,569", - "created": 1609969762.5694098, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 569.4098472595215, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11269.752025604248, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:22,569", - "created": 1609969762.5695493, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 569.5493221282959, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11269.891500473022, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:22,569", - "created": 1609969762.569724, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 569.7240829467773, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11270.066261291504, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:22,569", - "created": 1609969762.5699136, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 569.9136257171631, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11270.25580406189, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:22,570", - "created": 1609969762.5700731, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 570.073127746582, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11270.415306091309, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:22,570", - "created": 1609969762.5702276, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 570.2276229858398, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11270.569801330566, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:22,570", - "created": 1609969762.5703835, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 570.3835487365723, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11270.725727081299, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:22,570", - "created": 1609969762.570536, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 570.5358982086182, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11270.878076553345, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:22,570", - "created": 1609969762.5706816, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 570.6815719604492, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11271.023750305176, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:22,570", - "created": 1609969762.5708249, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 570.8248615264893, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11271.167039871216, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:22,570", - "created": 1609969762.5709658, + "asctime": "2021-01-11 07:30:47,096", + "created": 1610346647.0968523, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 570.9657669067383, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 96.85230255126953, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11271.307945251465, + "relativeCreated": 11746.393918991089, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:22,571", - "created": 1609969762.5712452, + "asctime": "2021-01-11 07:30:47,097", + "created": 1610346647.0971818, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 571.2451934814453, + "msecs": 97.18179702758789, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11271.587371826172, + "relativeCreated": 11746.723413467407, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:22,571", - "created": 1609969762.5715144, + "asctime": "2021-01-11 07:30:47,097", + "created": 1610346647.0973604, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 571.514368057251, + "msecs": 97.36037254333496, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11271.856546401978, + "relativeCreated": 11746.901988983154, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:22,571", - "created": 1609969762.571764, + "asctime": "2021-01-11 07:30:47,097", + "created": 1610346647.0976453, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 571.7639923095703, + "msecs": 97.64528274536133, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11272.106170654297, + "relativeCreated": 11747.18689918518, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:22,571", - "created": 1609969762.571934, + "asctime": "2021-01-11 07:30:47,097", + "created": 1610346647.0978043, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 571.9339847564697, + "msecs": 97.80430793762207, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11272.276163101196, + "relativeCreated": 11747.345924377441, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:22,572", - "created": 1609969762.5720913, + "asctime": "2021-01-11 07:30:47,097", + "created": 1610346647.0979495, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 572.0913410186768, + "msecs": 97.94950485229492, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11272.433519363403, + "relativeCreated": 11747.491121292114, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:22,572", - "created": 1609969762.5722399, + "asctime": "2021-01-11 07:30:47,098", + "created": 1610346647.0980914, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 572.239875793457, + "msecs": 98.09136390686035, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11272.582054138184, + "relativeCreated": 11747.63298034668, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:22,572", - "created": 1609969762.5724003, + "asctime": "2021-01-11 07:30:47,098", + "created": 1610346647.0982518, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 572.4003314971924, + "msecs": 98.2518196105957, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11272.742509841919, + "relativeCreated": 11747.793436050415, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:22,572", - "created": 1609969762.5725636, + "asctime": "2021-01-11 07:30:47,098", + "created": 1610346647.0984225, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 572.563648223877, + "msecs": 98.42252731323242, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11272.905826568604, + "relativeCreated": 11747.964143753052, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:22,572", - "created": 1609969762.5727224, + "asctime": "2021-01-11 07:30:47,098", + "created": 1610346647.0985835, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 572.7224349975586, + "msecs": 98.58345985412598, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11273.064613342285, + "relativeCreated": 11748.125076293945, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:22,572", - "created": 1609969762.5728784, + "asctime": "2021-01-11 07:30:47,098", + "created": 1610346647.0987492, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 572.878360748291, + "msecs": 98.74916076660156, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11273.220539093018, + "relativeCreated": 11748.29077720642, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:22,573", - "created": 1609969762.5730195, + "asctime": "2021-01-11 07:30:47,098", + "created": 1610346647.0988889, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 573.0195045471191, + "msecs": 98.88887405395508, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11273.361682891846, + "relativeCreated": 11748.430490493774, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:22,573", - "created": 1609969762.5731957, + "asctime": "2021-01-11 07:30:47,099", + "created": 1610346647.0990434, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 573.1956958770752, + "msecs": 99.04336929321289, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11273.537874221802, + "relativeCreated": 11748.584985733032, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:22,573", - "created": 1609969762.5733654, + "asctime": "2021-01-11 07:30:47,099", + "created": 1610346647.0992086, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 573.3654499053955, + "msecs": 99.20859336853027, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11273.707628250122, + "relativeCreated": 11748.75020980835, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:22,573", - "created": 1609969762.573514, + "asctime": "2021-01-11 07:30:47,099", + "created": 1610346647.0993528, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 573.5139846801758, + "msecs": 99.35283660888672, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11273.856163024902, + "relativeCreated": 11748.894453048706, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:22,573", - "created": 1609969762.5736673, + "asctime": "2021-01-11 07:30:47,099", + "created": 1610346647.0995045, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 573.6672878265381, + "msecs": 99.50447082519531, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11274.009466171265, + "relativeCreated": 11749.046087265015, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:22,573", - "created": 1609969762.5738392, + "asctime": "2021-01-11 07:30:47,099", + "created": 1610346647.0996742, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 573.8391876220703, + "msecs": 99.67422485351562, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11274.181365966797, + "relativeCreated": 11749.215841293335, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:22,573", - "created": 1609969762.5738883, + "asctime": "2021-01-11 07:30:47,099", + "created": 1610346647.0998344, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 573.8883018493652, + "msecs": 99.83444213867188, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11274.230480194092, + "relativeCreated": 11749.376058578491, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:22,573", - "created": 1609969762.5739331, + "asctime": "2021-01-11 07:30:47,099", + "created": 1610346647.0999742, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 573.9331245422363, + "msecs": 99.97415542602539, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11274.275302886963, + "relativeCreated": 11749.515771865845, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:22,573", - "created": 1609969762.5739799, + "asctime": "2021-01-11 07:30:47,100", + "created": 1610346647.1001108, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 573.9798545837402, + "msecs": 100.11076927185059, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11274.322032928467, + "relativeCreated": 11749.65238571167, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:22,574", - "created": 1609969762.574024, + "asctime": "2021-01-11 07:30:47,100", + "created": 1610346647.1002584, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 574.023962020874, + "msecs": 100.25835037231445, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11274.3661403656, + "relativeCreated": 11749.799966812134, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:47,100", + "created": 1610346647.1005375, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 100.53753852844238, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11750.079154968262, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:47,100", + "created": 1610346647.100692, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 100.6920337677002, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11750.23365020752, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:47,100", + "created": 1610346647.1008859, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 100.88586807250977, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11750.42748451233, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:47,101", + "created": 1610346647.1010342, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 101.03416442871094, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11750.57578086853, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:47,101", + "created": 1610346647.1011813, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 101.1812686920166, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11750.722885131836, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:47,101", + "created": 1610346647.1013205, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 101.32050514221191, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11750.862121582031, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:47,101", + "created": 1610346647.1014974, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 101.49741172790527, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11751.039028167725, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:47,101", + "created": 1610346647.101672, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 101.67193412780762, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11751.213550567627, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:47,101", + "created": 1610346647.1018364, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 101.8364429473877, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11751.378059387207, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:47,101", + "created": 1610346647.1019888, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 101.9887924194336, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11751.530408859253, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:47,102", + "created": 1610346647.102124, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 102.12397575378418, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11751.665592193604, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:47,102", + "created": 1610346647.1022844, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 102.28443145751953, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11751.826047897339, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:47,102", + "created": 1610346647.102447, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 102.4470329284668, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11751.988649368286, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:47,102", + "created": 1610346647.1025941, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 102.59413719177246, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11752.135753631592, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:47,102", + "created": 1610346647.102741, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 102.74100303649902, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11752.282619476318, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:47,102", + "created": 1610346647.1028934, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 102.89335250854492, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11752.434968948364, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:47,103", + "created": 1610346647.1030486, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 103.04856300354004, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11752.59017944336, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:47,103", + "created": 1610346647.1031954, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 103.1954288482666, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11752.737045288086, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:47,103", + "created": 1610346647.1033323, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 103.3322811126709, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11752.87389755249, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:47,103", + "created": 1610346647.1035316, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 103.5315990447998, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11753.07321548462, + "stack_info": null, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 574.0659236907959, + "msecs": 103.69253158569336, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11274.408102035522, + "relativeCreated": 11753.234148025513, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 4.1961669921875e-05 + "time_consumption": 0.0001609325408935547 }, { "args": [], - "asctime": "2021-01-06 22:49:23,076", - "created": 1609969763.0764394, + "asctime": "2021-01-11 07:30:47,448", + "created": 1610346647.4487212, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:47,103", + "created": 1610346647.1039999, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 103.99985313415527, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11753.541469573975, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:47,104", + "created": 1610346647.1041434, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 104.14338111877441, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11753.684997558594, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:47,104", + "created": 1610346647.104283, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 104.28309440612793, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11753.824710845947, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:47,104", + "created": 1610346647.104539, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 104.5389175415039, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11754.080533981323, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:47,105", + "created": 1610346647.1051188, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 105.1187515258789, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11754.660367965698, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:47,105", + "created": 1610346647.1052852, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 105.2851676940918, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11754.826784133911, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:47,105", + "created": 1610346647.1054587, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 105.45873641967773, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11755.000352859497, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:47,105", + "created": 1610346647.105618, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 105.61800003051758, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11755.159616470337, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:47,113", + "created": 1610346647.113744, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 113.74402046203613, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11763.285636901855, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,113", + "created": 1610346647.113866, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 113.86609077453613, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11763.407707214355, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:47,113", + "created": 1610346647.11392, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 113.91997337341309, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11763.461589813232, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,113", + "created": 1610346647.1139836, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 113.9836311340332, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11763.525247573853, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,114", + "created": 1610346647.1140285, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 114.0284538269043, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11763.570070266724, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,114", + "created": 1610346647.114092, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 114.09211158752441, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11763.633728027344, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,114", + "created": 1610346647.1141455, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 114.14551734924316, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11763.687133789062, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,114", + "created": 1610346647.1142018, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 114.20178413391113, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11763.74340057373, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,114", + "created": 1610346647.114243, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 114.2430305480957, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11763.784646987915, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,114", + "created": 1610346647.1142974, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 114.29738998413086, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11763.83900642395, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,114", + "created": 1610346647.1143446, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 114.34459686279297, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11763.886213302612, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:47,114", + "created": 1610346647.1144288, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 114.42875862121582, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11763.970375061035, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:47,115", + "created": 1610346647.1153772, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 115.37718772888184, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11764.918804168701, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,115", + "created": 1610346647.1154988, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 115.49878120422363, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11765.040397644043, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:47,115", + "created": 1610346647.1155605, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 115.56053161621094, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11765.10214805603, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" + ], + "asctime": "2021-01-11 07:30:47,115", + "created": 1610346647.1156404, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", + "module": "stp", + "msecs": 115.64040184020996, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11765.18201828003, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:47,115", + "created": 1610346647.1157877, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 115.78774452209473, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11765.329360961914, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:47,115", + "created": 1610346647.1158533, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 115.85330963134766, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11765.394926071167, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:47,115", + "created": 1610346647.1159406, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 115.94057083129883, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11765.482187271118, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:47,116", + "created": 1610346647.1162162, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 116.21618270874023, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11765.75779914856, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:47,124", + "created": 1610346647.1244726, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 124.47261810302734, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11774.014234542847, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,124", + "created": 1610346647.1246355, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 124.63545799255371, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11774.177074432373, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:47,124", + "created": 1610346647.1247246, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 124.7246265411377, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11774.266242980957, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,124", + "created": 1610346647.1248283, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 124.82833862304688, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11774.369955062866, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,124", + "created": 1610346647.1249, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 124.90010261535645, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11774.441719055176, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,125", + "created": 1610346647.125004, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 125.00405311584473, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11774.545669555664, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,125", + "created": 1610346647.1250718, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 125.07176399230957, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11774.613380432129, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,125", + "created": 1610346647.125166, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 125.16593933105469, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11774.707555770874, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,125", + "created": 1610346647.1252372, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 125.23722648620605, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11774.778842926025, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,125", + "created": 1610346647.1253257, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 125.32567977905273, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11774.867296218872, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,125", + "created": 1610346647.125411, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 125.4110336303711, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11774.95265007019, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:47,125", + "created": 1610346647.1255727, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 125.57268142700195, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11775.114297866821, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:47,126", + "created": 1610346647.1265693, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 126.56927108764648, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11776.110887527466, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,126", + "created": 1610346647.1267478, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 126.74784660339355, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11776.289463043213, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:47,126", + "created": 1610346647.1268475, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 126.84750556945801, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11776.389122009277, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:47,126", + "created": 1610346647.1269777, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 126.97768211364746, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11776.519298553467, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:47,127", + "created": 1610346647.1271772, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 127.17723846435547, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11776.718854904175, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:47,127", + "created": 1610346647.1272705, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 127.27046012878418, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 11776.812076568604, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + } + ], + "msecs": 448.72117042541504, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12098.262786865234, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.32145071029663086 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:47,751", + "created": 1610346647.75135, "exc_info": null, "exc_text": null, "filename": "test_communication.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 319, + "lineno": 315, "message": "Transfering a message client -> server -> client", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:22,574", - "created": 1609969762.5741844, + "asctime": "2021-01-11 07:30:47,449", + "created": 1610346647.4493685, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 438, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 574.1844177246094, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 449.3684768676758, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11274.526596069336, + "relativeCreated": 12098.910093307495, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:22,574", - "created": 1609969762.5743353, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "test_helpers", - "msecs": 574.3353366851807, - "msg": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11274.677515029907, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:22,574", - "created": 1609969762.574431, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "test_helpers", - "msecs": 574.4309425354004, - "msg": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11274.773120880127, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:47,450", + "created": 1610346647.4503312, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 450.3312110900879, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12099.872827529907, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:47,458", + "created": 1610346647.4588094, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 458.80937576293945, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12108.350992202759, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,459", + "created": 1610346647.4591005, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 459.10048484802246, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12108.642101287842, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:47,459", + "created": 1610346647.459273, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 459.273099899292, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12108.814716339111, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,459", + "created": 1610346647.4595172, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 459.517240524292, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12109.058856964111, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,459", + "created": 1610346647.4596634, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 459.66339111328125, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12109.2050075531, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,459", + "created": 1610346647.4598742, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 459.87415313720703, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12109.415769577026, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,460", + "created": 1610346647.460032, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 460.03198623657227, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12109.573602676392, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,460", + "created": 1610346647.460235, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 460.2351188659668, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12109.776735305786, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,460", + "created": 1610346647.460373, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 460.3729248046875, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12109.914541244507, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,460", + "created": 1610346647.4605482, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 460.54816246032715, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12110.089778900146, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,460", + "created": 1610346647.4606814, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 460.6814384460449, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12110.223054885864, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "comm-client:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2021-01-11 07:30:47,460", + "created": 1610346647.4609618, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 460.96181869506836, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12110.503435134888, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "comm-server:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2021-01-11 07:30:47,465", + "created": 1610346647.4652958, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 465.29579162597656, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12114.837408065796, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,465", + "created": 1610346647.4657474, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 465.7473564147949, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12115.288972854614, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:47,465", + "created": 1610346647.4659228, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 465.9228324890137, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12115.464448928833, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b" + ], + "asctime": "2021-01-11 07:30:47,466", + "created": 1610346647.4662356, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", + "module": "stp", + "msecs": 466.2356376647949, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12115.777254104614, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:22,574", - "created": 1609969762.574521, + "asctime": "2021-01-11 07:30:47,466", + "created": 1610346647.4666235, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 438, + "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 574.5210647583008, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 466.62354469299316, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11274.863243103027, + "relativeCreated": 12116.165161132812, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561696667392, + "threadName": "Thread-15" }, { "args": [ - "SP server:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:22,574", - "created": 1609969762.5745904, + "asctime": "2021-01-11 07:30:47,466", + "created": 1610346647.4668548, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP server: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 574.5904445648193, + "msecs": 466.8548107147217, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11274.932622909546, + "relativeCreated": 12116.396427154541, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561696667392, + "threadName": "Thread-15" }, { "args": [ - "SP client:", - "0.5", + "prot-client:", + "0.28705533596837945", "18", "34" ], - "asctime": "2021-01-06 22:49:23,076", - "created": 1609969763.0761619, + "asctime": "2021-01-11 07:30:47,751", + "created": 1610346647.751032, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 651, - "message": "SP client: TIMEOUT (0.5s): Requested data (service_id: 18; data_id: 34) not in buffer.", + "lineno": 668, + "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 18; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 76.16186141967773, + "msecs": 751.0321140289307, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11776.504039764404, + "relativeCreated": 12400.57373046875, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 76.43938064575195, + "msecs": 751.349925994873, "msg": "Transfering a message client -> server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11776.781558990479, + "relativeCreated": 12400.891542434692, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00027751922607421875 + "time_consumption": 0.0003178119659423828 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:23,077", - "created": 1609969763.077069, + "asctime": "2021-01-11 07:30:47,752", + "created": 1610346647.752027, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -84211,8 +181948,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:23,076", - "created": 1609969763.0767448, + "asctime": "2021-01-11 07:30:47,751", + "created": 1610346647.7516925, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -84222,15 +181959,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 76.74479484558105, + "msecs": 751.692533493042, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11777.086973190308, + "relativeCreated": 12401.234149932861, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -84239,8 +181976,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:23,076", - "created": 1609969763.0769138, + "asctime": "2021-01-11 07:30:47,751", + "created": 1610346647.7518797, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -84250,37 +181987,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 76.91383361816406, + "msecs": 751.8796920776367, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11777.25601196289, + "relativeCreated": 12401.421308517456, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 77.06904411315918, + "msecs": 752.0270347595215, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11777.411222457886, + "relativeCreated": 12401.56865119934, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001552104949951172 + "time_consumption": 0.00014734268188476562 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:23,077", - "created": 1609969763.0776105, + "asctime": "2021-01-11 07:30:47,752", + "created": 1610346647.7525494, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -84297,8 +182034,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:23,077", - "created": 1609969763.0773227, + "asctime": "2021-01-11 07:30:47,752", + "created": 1610346647.7522538, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -84308,15 +182045,15 @@ "lineno": 22, "message": "Result (Received message on server side): None ()", "module": "test", - "msecs": 77.32272148132324, + "msecs": 752.2537708282471, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11777.66489982605, + "relativeCreated": 12401.795387268066, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -84325,8 +182062,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:23,077", - "created": 1609969763.0774686, + "asctime": "2021-01-11 07:30:47,752", + "created": 1610346647.752392, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -84336,34 +182073,89 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = None ()", "module": "test", - "msecs": 77.4686336517334, + "msecs": 752.392053604126, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11777.81081199646, + "relativeCreated": 12401.933670043945, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 77.61049270629883, + "msecs": 752.549409866333, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11777.952671051025, + "relativeCreated": 12402.091026306152, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001418590545654297 + "time_consumption": 0.00015735626220703125 }, { "args": [], - "asctime": "2021-01-06 22:49:23,078", - "created": 1609969763.07804, + "asctime": "2021-01-11 07:30:47,752", + "created": 1610346647.7529352, + "exc_info": null, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 320, + "message": "Adding service to server instance for the transmit message", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-server:", + "17", + "18" + ], + "asctime": "2021-01-11 07:30:47,752", + "created": 1610346647.7528002, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-server: Adding Service with Request=17 and Response=18", + "module": "__init__", + "msecs": 752.8002262115479, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12402.341842651367, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + } + ], + "msecs": 752.9351711273193, + "msg": "Adding service to server instance for the transmit message", + "name": "__tLogger__", + "pathname": "src/tests/test_communication.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12402.476787567139, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.00013494491577148438 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:47,954", + "created": 1610346647.95492, "exc_info": null, "exc_text": null, "filename": "test_communication.py", @@ -84371,375 +182163,1131 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 324, - "message": "Adding service to server instance for the transmit message", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "SP server:", - "17", - "18" - ], - "asctime": "2021-01-06 22:49:23,077", - "created": 1609969763.0778978, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=17 and Response=18", - "module": "__init__", - "msecs": 77.89778709411621, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11778.239965438843, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - } - ], - "msecs": 78.03988456726074, - "msg": "Adding service to server instance for the transmit message", - "name": "__tLogger__", - "pathname": "src/tests/test_communication.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11778.382062911987, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread", - "time_consumption": 0.00014209747314453125 - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,181", - "created": 1609969763.1815429, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 328, "message": "Transfering a message client -> server -> client", "module": "test_communication", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:23,078", - "created": 1609969763.078357, + "asctime": "2021-01-11 07:30:47,753", + "created": 1610346647.7532547, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 438, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 78.35698127746582, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 753.2546520233154, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11778.699159622192, + "relativeCreated": 12402.796268463135, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,078", - "created": 1609969763.0788126, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "test_helpers", - "msecs": 78.8125991821289, - "msg": "Send data: (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11779.154777526855, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,079", - "created": 1609969763.0791106, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "test_helpers", - "msecs": 79.11062240600586, - "msg": "Receive data (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11779.452800750732, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:47,754", + "created": 1610346647.7544901, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 754.4901371002197, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12404.031753540039, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2021-01-11 07:30:47,762", + "created": 1610346647.7628772, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 762.8772258758545, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12412.418842315674, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,763", + "created": 1610346647.763137, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 763.1371021270752, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12412.678718566895, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:47,763", + "created": 1610346647.7632859, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 763.2858753204346, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12412.827491760254, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,763", + "created": 1610346647.7634912, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 763.491153717041, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12413.03277015686, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,763", + "created": 1610346647.763621, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 763.6210918426514, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12413.16270828247, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,763", + "created": 1610346647.7638083, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 763.8082504272461, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12413.349866867065, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,763", + "created": 1610346647.7639294, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 763.9293670654297, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12413.470983505249, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,764", + "created": 1610346647.7641125, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 764.1124725341797, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12413.654088973999, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,764", + "created": 1610346647.7642422, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 764.2421722412109, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12413.78378868103, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,764", + "created": 1610346647.7643995, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 764.399528503418, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12413.941144943237, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,764", + "created": 1610346647.7645164, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 764.5163536071777, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12414.057970046997, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "comm-client:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2021-01-11 07:30:47,764", + "created": 1610346647.7647655, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 764.7655010223389, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12414.307117462158, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "comm-server:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2021-01-11 07:30:47,769", + "created": 1610346647.7691379, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 769.1378593444824, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12418.679475784302, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,769", + "created": 1610346647.7695181, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 769.5181369781494, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12419.059753417969, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:47,769", + "created": 1610346647.7696586, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 769.6585655212402, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12419.20018196106, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "STP:", + "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b" + ], + "asctime": "2021-01-11 07:30:47,769", + "created": 1610346647.769918, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", + "module": "stp", + "msecs": 769.9179649353027, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12419.459581375122, + "stack_info": null, + "thread": 140561696667392, + "threadName": "Thread-15" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: 17, data_id: 34", "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-01-06 22:49:23,079", - "created": 1609969763.079401, + "asctime": "2021-01-11 07:30:47,770", + "created": 1610346647.7702646, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "lineno": 438, + "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 79.40101623535156, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 770.2646255493164, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11779.743194580078, + "relativeCreated": 12419.806241989136, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561696667392, + "threadName": "Thread-15" }, { "args": [ - "SP server:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:23,079", - "created": 1609969763.079589, + "asctime": "2021-01-11 07:30:47,770", + "created": 1610346647.7704668, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 460, - "message": "SP server: RX <- Message with no registered callback. Sending negative response.", + "lineno": 474, + "message": "prot-server: Incomming message with no registered callback. Sending negative response.", "module": "__init__", - "msecs": 79.5888900756836, - "msg": "%s RX <- Message with no registered callback. Sending negative response.", + "msecs": 770.4668045043945, + "msg": "%s Incomming message with no registered callback. Sending negative response.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11779.93106842041, + "relativeCreated": 12420.008420944214, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561696667392, + "threadName": "Thread-15" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: 18, data_id: 34", - "status: no callback for service, data buffered.", + "status: no callback for service, data buffered", "None" ], - "asctime": "2021-01-06 22:49:23,079", - "created": 1609969763.0797837, + "asctime": "2021-01-11 07:30:47,770", + "created": 1610346647.770683, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: 18, data_id: 34, status: no callback for service, data buffered., data: \"None\"", - "module": "__init__", - "msecs": 79.78367805480957, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11780.125856399536, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,080", - "created": 1609969763.0801275, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (64): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 38 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d bd 30 46 9b", - "module": "test_helpers", - "msecs": 80.12747764587402, - "msg": "Send data: (64): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 38 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d bd 30 46 9b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11780.4696559906, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,080", - "created": 1609969763.0803835, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (64): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 38 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d bd 30 46 9b", - "module": "test_helpers", - "msecs": 80.3835391998291, - "msg": "Receive data (64): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 38 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d bd 30 46 9b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11780.725717544556, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: 18, data_id: 34", - "status: no callback for service, data buffered.", - "None" - ], - "asctime": "2021-01-06 22:49:23,080", - "created": 1609969763.0806448, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: 18, data_id: 34, status: no callback for service, data buffered., data: \"None\"", - "module": "__init__", - "msecs": 80.64484596252441, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11780.987024307251, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "status: no callback for service, data buffered." - ], - "asctime": "2021-01-06 22:49:23,080", - "created": 1609969763.0808206, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: no callback for service, data buffered.", + "lineno": 438, + "message": "prot-server: TX -> service: 18, data_id: 34, status: no callback for service, data buffered, data: \"None\"", "module": "__init__", - "msecs": 80.82056045532227, - "msg": "%s RX <- Message has a peculiar status: %s", + "msecs": 770.6830501556396, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11781.162738800049, + "relativeCreated": 12420.224666595459, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561696667392, + "threadName": "Thread-15" }, { "args": [ - "SP client:" + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c" ], - "asctime": "2021-01-06 22:49:23,081", - "created": 1609969763.081019, + "asctime": "2021-01-11 07:30:47,771", + "created": 1610346647.771604, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c", + "module": "__init__", + "msecs": 771.604061126709, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12421.145677566528, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c" + ], + "asctime": "2021-01-11 07:30:47,780", + "created": 1610346647.7800107, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c", + "module": "__init__", + "msecs": 780.0107002258301, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12429.55231666565, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,780", + "created": 1610346647.780254, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 780.2538871765137, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12429.795503616333, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:47,780", + "created": 1610346647.780387, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 780.3869247436523, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12429.928541183472, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,780", + "created": 1610346647.7805486, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 780.5485725402832, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12430.090188980103, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,780", + "created": 1610346647.780664, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 780.6639671325684, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12430.205583572388, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,780", + "created": 1610346647.7808301, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 780.8301448822021, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12430.371761322021, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,780", + "created": 1610346647.780938, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 780.937910079956, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12430.479526519775, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,781", + "created": 1610346647.781088, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 781.08811378479, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12430.62973022461, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,781", + "created": 1610346647.7811935, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 781.1934947967529, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12430.735111236572, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,781", + "created": 1610346647.7813323, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 781.33225440979, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12430.87387084961, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:47,781", + "created": 1610346647.7815053, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 781.5053462982178, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12431.046962738037, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "comm-server:", + "(8): 6c 7d bd 30 46 9b 3a 3e" + ], + "asctime": "2021-01-11 07:30:47,781", + "created": 1610346647.7817705, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (8): 6c 7d bd 30 46 9b 3a 3e", + "module": "__init__", + "msecs": 781.7704677581787, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12431.312084197998, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "comm-client:", + "(8): 6c 7d bd 30 46 9b 3a 3e" + ], + "asctime": "2021-01-11 07:30:47,783", + "created": 1610346647.7831523, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (8): 6c 7d bd 30 46 9b 3a 3e", + "module": "__init__", + "msecs": 783.1523418426514, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12432.69395828247, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:47,783", + "created": 1610346647.783511, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 783.5109233856201, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12433.05253982544, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:47,783", + "created": 1610346647.7836866, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 783.686637878418, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12433.228254318237, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "STP:", + "(64): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 38 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d bd 30 46 9b" + ], + "asctime": "2021-01-11 07:30:47,783", + "created": 1610346647.7839441, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (64): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 38 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d bd 30 46 9b", + "module": "stp", + "msecs": 783.9441299438477, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12433.485746383667, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: 18, data_id: 34", + "status: no callback for service, data buffered", + "None" + ], + "asctime": "2021-01-11 07:30:47,784", + "created": 1610346647.7843554, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "WARNING", + "levelno": 30, + "lineno": 438, + "message": "prot-client: RX <- service: 18, data_id: 34, status: no callback for service, data buffered, data: \"None\"", + "module": "__init__", + "msecs": 784.3554019927979, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12433.897018432617, + "stack_info": null, + "thread": 140561688274688, + "threadName": "Thread-16" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:47,784", + "created": 1610346647.7845876, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 81.01892471313477, + "msecs": 784.5876216888428, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11781.361103057861, + "relativeCreated": 12434.129238128662, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561688274688, + "threadName": "Thread-16" } ], - "msecs": 181.54287338256836, + "msecs": 954.9200534820557, "msg": "Transfering a message client -> server -> client", "name": "__tLogger__", "pathname": "src/tests/test_communication.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11881.885051727295, + "relativeCreated": 12604.461669921875, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.1005239486694336 + "time_consumption": 0.1703324317932129 }, { "args": [ "True", "" ], - "asctime": "2021-01-06 22:49:23,182", - "created": 1609969763.1823347, + "asctime": "2021-01-11 07:30:47,955", + "created": 1610346647.9557343, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -84756,8 +183304,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:23,181", - "created": 1609969763.1819973, + "asctime": "2021-01-11 07:30:47,955", + "created": 1610346647.9554071, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -84767,15 +183315,15 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 181.99729919433594, + "msecs": 955.4071426391602, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11882.339477539062, + "relativeCreated": 12604.94875907898, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -84784,8 +183332,8 @@ "True", "" ], - "asctime": "2021-01-06 22:49:23,182", - "created": 1609969763.1821797, + "asctime": "2021-01-11 07:30:47,955", + "created": 1610346647.955581, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -84795,37 +183343,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 182.17968940734863, + "msecs": 955.5809497833252, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11882.521867752075, + "relativeCreated": 12605.122566223145, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 182.33466148376465, + "msecs": 955.7342529296875, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11882.676839828491, + "relativeCreated": 12605.275869369507, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00015497207641601562 + "time_consumption": 0.0001533031463623047 }, { "args": [ "{'data_id': 34, 'service_id': 18, 'status': 1, 'data': None}", "" ], - "asctime": "2021-01-06 22:49:23,182", - "created": 1609969763.182884, + "asctime": "2021-01-11 07:30:47,956", + "created": 1610346647.9563012, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -84842,8 +183390,8 @@ "{'data_id': 34, 'service_id': 18, 'status': 1, 'data': None}", "" ], - "asctime": "2021-01-06 22:49:23,182", - "created": 1609969763.1825798, + "asctime": "2021-01-11 07:30:47,955", + "created": 1610346647.9559755, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -84853,15 +183401,15 @@ "lineno": 22, "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 18, 'status': 1, 'data': None} ()", "module": "test", - "msecs": 182.57975578308105, + "msecs": 955.9755325317383, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11882.921934127808, + "relativeCreated": 12605.517148971558, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -84870,8 +183418,8 @@ "{'service_id': 18, 'data_id': 34, 'status': 1, 'data': None}", "" ], - "asctime": "2021-01-06 22:49:23,182", - "created": 1609969763.1827343, + "asctime": "2021-01-11 07:30:47,956", + "created": 1610346647.956152, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -84881,41 +183429,41 @@ "lineno": 26, "message": "Expectation (Received message on server side): result = {'service_id': 18, 'data_id': 34, 'status': 1, 'data': None} ()", "module": "test", - "msecs": 182.73425102233887, + "msecs": 956.1519622802734, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11883.076429367065, + "relativeCreated": 12605.693578720093, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 182.88397789001465, + "msecs": 956.301212310791, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11883.226156234741, + "relativeCreated": 12605.84282875061, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00014972686767578125 + "time_consumption": 0.00014925003051757812 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.6153864860534668, - "time_finished": "2021-01-06 22:49:23,182", - "time_start": "2021-01-06 22:49:22,567" + "time_consumption": 0.8617236614227295, + "time_finished": "2021-01-11 07:30:47,956", + "time_start": "2021-01-11 07:30:47,094" }, "_k7opsE4LEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-06 22:49:23,725", - "created": 1609969763.7251153, + "asctime": "2021-01-11 07:30:50,390", + "created": 1610346650.3900251, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -84926,1505 +183474,3708 @@ "message": "_k7opsE4LEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 725.1152992248535, + "msecs": 390.02513885498047, "msg": "_k7opsE4LEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12425.45747756958, + "relativeCreated": 15039.5667552948, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:23,732", - "created": 1609969763.7320824, + "asctime": "2021-01-11 07:30:50,396", + "created": 1610346650.3963377, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:23,725", - "created": 1609969763.725527, + "asctime": "2021-01-11 07:30:50,391", + "created": 1610346650.3912823, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 725.5270481109619, + "msecs": 391.282320022583, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12425.869226455688, + "relativeCreated": 15040.823936462402, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:23,725", - "created": 1609969763.7257168, + "asctime": "2021-01-11 07:30:50,392", + "created": 1610346650.3921604, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 725.7168292999268, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 392.16041564941406, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12426.059007644653, + "relativeCreated": 15041.702032089233, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:23,725", - "created": 1609969763.725998, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 725.9979248046875, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12426.340103149414, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:23,726", - "created": 1609969763.7261581, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 726.1581420898438, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12426.50032043457, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:23,726", - "created": 1609969763.7263067, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 726.306676864624, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12426.64885520935, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:23,726", - "created": 1609969763.7264538, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 726.4537811279297, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12426.795959472656, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:23,726", - "created": 1609969763.7266147, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 726.6147136688232, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12426.95689201355, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:23,726", - "created": 1609969763.7267895, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 726.7894744873047, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12427.131652832031, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:23,726", - "created": 1609969763.7269752, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 726.9752025604248, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12427.317380905151, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:23,727", - "created": 1609969763.7271338, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 727.1337509155273, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12427.475929260254, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:23,727", - "created": 1609969763.727274, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 727.2739410400391, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12427.616119384766, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:23,727", - "created": 1609969763.7274315, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 727.4315357208252, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12427.773714065552, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:23,727", - "created": 1609969763.7275972, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 727.5972366333008, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12427.939414978027, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:23,727", - "created": 1609969763.7277412, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 727.7412414550781, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12428.083419799805, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:23,727", - "created": 1609969763.7278903, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 727.8902530670166, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12428.232431411743, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:23,728", - "created": 1609969763.7280436, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 728.0435562133789, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12428.385734558105, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:23,728", - "created": 1609969763.7281933, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 728.1932830810547, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12428.535461425781, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:23,728", - "created": 1609969763.7283366, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 728.3365726470947, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12428.678750991821, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:23,728", - "created": 1609969763.728476, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 728.4760475158691, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12428.818225860596, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:23,728", - "created": 1609969763.7286148, + "asctime": "2021-01-11 07:30:50,392", + "created": 1610346650.3923717, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 728.6148071289062, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 392.37165451049805, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12428.956985473633, + "relativeCreated": 15041.913270950317, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:23,728", - "created": 1609969763.7288952, + "asctime": "2021-01-11 07:30:50,392", + "created": 1610346650.3927116, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 728.8951873779297, + "msecs": 392.7116394042969, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12429.237365722656, + "relativeCreated": 15042.253255844116, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:23,729", - "created": 1609969763.7290535, + "asctime": "2021-01-11 07:30:50,392", + "created": 1610346650.3928938, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 729.0534973144531, + "msecs": 392.89379119873047, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12429.39567565918, + "relativeCreated": 15042.43540763855, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:23,729", - "created": 1609969763.729253, + "asctime": "2021-01-11 07:30:50,393", + "created": 1610346650.3931131, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 729.2530536651611, + "msecs": 393.1131362915039, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12429.595232009888, + "relativeCreated": 15042.654752731323, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:23,729", - "created": 1609969763.7294014, + "asctime": "2021-01-11 07:30:50,393", + "created": 1610346650.3932977, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 729.4013500213623, + "msecs": 393.2976722717285, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12429.743528366089, + "relativeCreated": 15042.839288711548, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:23,729", - "created": 1609969763.7295446, + "asctime": "2021-01-11 07:30:50,393", + "created": 1610346650.3934877, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 729.5446395874023, + "msecs": 393.48769187927246, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12429.886817932129, + "relativeCreated": 15043.029308319092, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:23,729", - "created": 1609969763.729685, + "asctime": "2021-01-11 07:30:50,393", + "created": 1610346650.393563, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 729.6850681304932, + "msecs": 393.56303215026855, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12430.02724647522, + "relativeCreated": 15043.104648590088, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:23,729", - "created": 1609969763.7298555, + "asctime": "2021-01-11 07:30:50,393", + "created": 1610346650.3936543, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 729.8555374145508, + "msecs": 393.65434646606445, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12430.197715759277, + "relativeCreated": 15043.195962905884, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:23,730", - "created": 1609969763.7300134, + "asctime": "2021-01-11 07:30:50,393", + "created": 1610346650.3937392, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 730.013370513916, + "msecs": 393.7392234802246, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12430.355548858643, + "relativeCreated": 15043.280839920044, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:23,730", - "created": 1609969763.7301831, + "asctime": "2021-01-11 07:30:50,393", + "created": 1610346650.3938189, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 730.1831245422363, + "msecs": 393.81885528564453, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12430.525302886963, + "relativeCreated": 15043.360471725464, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:23,730", - "created": 1609969763.7303464, + "asctime": "2021-01-11 07:30:50,393", + "created": 1610346650.3938963, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 730.3464412689209, + "msecs": 393.89634132385254, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12430.688619613647, + "relativeCreated": 15043.437957763672, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:23,730", - "created": 1609969763.7305017, + "asctime": "2021-01-11 07:30:50,393", + "created": 1610346650.393965, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 730.501651763916, + "msecs": 393.9650058746338, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12430.843830108643, + "relativeCreated": 15043.506622314453, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:23,730", - "created": 1609969763.7306871, + "asctime": "2021-01-11 07:30:50,394", + "created": 1610346650.3940473, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 730.687141418457, + "msecs": 394.0472602844238, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12431.029319763184, + "relativeCreated": 15043.588876724243, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:23,730", - "created": 1609969763.7308662, + "asctime": "2021-01-11 07:30:50,394", + "created": 1610346650.3941298, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 730.8661937713623, + "msecs": 394.12975311279297, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12431.208372116089, + "relativeCreated": 15043.671369552612, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:23,731", - "created": 1609969763.7310221, + "asctime": "2021-01-11 07:30:50,394", + "created": 1610346650.394202, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 731.0221195220947, + "msecs": 394.20199394226074, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12431.364297866821, + "relativeCreated": 15043.74361038208, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:23,731", - "created": 1609969763.7311776, + "asctime": "2021-01-11 07:30:50,394", + "created": 1610346650.3942778, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 731.177568435669, + "msecs": 394.27781105041504, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12431.519746780396, + "relativeCreated": 15043.819427490234, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:23,731", - "created": 1609969763.7313344, + "asctime": "2021-01-11 07:30:50,394", + "created": 1610346650.3943663, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 731.3344478607178, + "msecs": 394.3662643432617, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12431.676626205444, + "relativeCreated": 15043.907880783081, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:23,731", - "created": 1609969763.7314909, + "asctime": "2021-01-11 07:30:50,394", + "created": 1610346650.3944468, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 731.4908504486084, + "msecs": 394.44684982299805, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12431.833028793335, + "relativeCreated": 15043.988466262817, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:23,731", - "created": 1609969763.7316482, + "asctime": "2021-01-11 07:30:50,394", + "created": 1610346650.394518, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 731.6482067108154, + "msecs": 394.5178985595703, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12431.990385055542, + "relativeCreated": 15044.05951499939, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:23,731", - "created": 1609969763.731808, + "asctime": "2021-01-11 07:30:50,394", + "created": 1610346650.3945866, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 731.8079471588135, + "msecs": 394.58656311035156, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12432.15012550354, + "relativeCreated": 15044.12817955017, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:23,731", - "created": 1609969763.7319496, + "asctime": "2021-01-11 07:30:50,394", + "created": 1610346650.3946595, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 731.9495677947998, + "msecs": 394.65951919555664, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12432.291746139526, + "relativeCreated": 15044.201135635376, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:50,394", + "created": 1610346650.3948, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 394.79994773864746, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15044.341564178467, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:50,394", + "created": 1610346650.3948784, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 394.8783874511719, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15044.420003890991, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:50,394", + "created": 1610346650.3949773, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 394.977331161499, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15044.518947601318, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:50,395", + "created": 1610346650.3950515, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 395.0514793395996, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15044.593095779419, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:50,395", + "created": 1610346650.3951275, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 395.127534866333, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15044.669151306152, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:50,395", + "created": 1610346650.3951988, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 395.1988220214844, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15044.740438461304, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:50,395", + "created": 1610346650.3952801, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 395.280122756958, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15044.821739196777, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:50,395", + "created": 1610346650.3953626, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 395.36261558532715, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15044.904232025146, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:50,395", + "created": 1610346650.3954399, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 395.43986320495605, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15044.981479644775, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:50,395", + "created": 1610346650.395516, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 395.51591873168945, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15045.057535171509, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:50,395", + "created": 1610346650.3955836, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 395.5836296081543, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15045.125246047974, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:50,395", + "created": 1610346650.395659, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 395.6589698791504, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15045.20058631897, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:50,395", + "created": 1610346650.3957448, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 395.74480056762695, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15045.286417007446, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:50,395", + "created": 1610346650.3958182, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 395.81823348999023, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15045.35984992981, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:50,395", + "created": 1610346650.3958924, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 395.8923816680908, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15045.43399810791, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:50,395", + "created": 1610346650.3959749, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 395.97487449645996, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15045.51649093628, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:50,396", + "created": 1610346650.3960538, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 396.0537910461426, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15045.595407485962, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:50,396", + "created": 1610346650.3961246, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 396.12460136413574, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15045.666217803955, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:50,396", + "created": 1610346650.3961937, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 396.1937427520752, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15045.735359191895, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:50,396", + "created": 1610346650.3962674, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 396.2674140930176, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15045.809030532837, + "stack_info": null, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 732.0823669433594, + "msecs": 396.33774757385254, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12432.424545288086, + "relativeCreated": 15045.879364013672, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001327991485595703 + "time_consumption": 7.033348083496094e-05 }, { "args": [], - "asctime": "2021-01-06 22:49:23,732", - "created": 1609969763.7325647, + "asctime": "2021-01-11 07:30:50,740", + "created": 1610346650.740479, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:50,396", + "created": 1610346650.3964858, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 396.4858055114746, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15046.027421951294, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:50,396", + "created": 1610346650.3965588, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 396.5587615966797, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15046.100378036499, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:50,396", + "created": 1610346650.3966293, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 396.62933349609375, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15046.170949935913, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:50,396", + "created": 1610346650.3967528, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 396.75283432006836, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15046.294450759888, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:50,397", + "created": 1610346650.3970327, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 397.0327377319336, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15046.574354171753, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:50,397", + "created": 1610346650.3971162, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 397.11618423461914, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15046.657800674438, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:50,397", + "created": 1610346650.3972008, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 397.2008228302002, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15046.74243927002, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:50,397", + "created": 1610346650.3975358, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 397.5358009338379, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15047.077417373657, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:50,405", + "created": 1610346650.405757, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 405.75695037841797, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15055.298566818237, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,405", + "created": 1610346650.4059267, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 405.9267044067383, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15055.468320846558, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:50,406", + "created": 1610346650.406015, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 406.01491928100586, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15055.556535720825, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,406", + "created": 1610346650.4061153, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 406.1152935028076, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15055.656909942627, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,406", + "created": 1610346650.4061892, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 406.1892032623291, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15055.730819702148, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,406", + "created": 1610346650.406294, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 406.2941074371338, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15055.835723876953, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,406", + "created": 1610346650.4063616, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 406.36157989501953, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15055.903196334839, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,406", + "created": 1610346650.4064548, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 406.45480155944824, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15055.996417999268, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,406", + "created": 1610346650.4065213, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 406.5213203430176, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15056.062936782837, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,406", + "created": 1610346650.4066107, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 406.61072731018066, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15056.15234375, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,406", + "created": 1610346650.4066784, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 406.6784381866455, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15056.220054626465, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:50,406", + "created": 1610346650.4068053, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 406.80527687072754, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15056.346893310547, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:50,407", + "created": 1610346650.4078023, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 407.8023433685303, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15057.34395980835, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,407", + "created": 1610346650.4079769, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 407.9768657684326, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15057.518482208252, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:50,408", + "created": 1610346650.4080741, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 408.07414054870605, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15057.615756988525, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" + ], + "asctime": "2021-01-11 07:30:50,408", + "created": 1610346650.4082043, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", + "module": "stp", + "msecs": 408.2043170928955, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15057.745933532715, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:50,408", + "created": 1610346650.4084232, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 408.42318534851074, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15057.96480178833, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:50,408", + "created": 1610346650.408519, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 408.51902961730957, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15058.060646057129, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:50,408", + "created": 1610346650.4086547, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 408.65468978881836, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15058.196306228638, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:50,409", + "created": 1610346650.4090798, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 409.07979011535645, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15058.621406555176, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:50,417", + "created": 1610346650.417371, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 417.3710346221924, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15066.912651062012, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,417", + "created": 1610346650.4175527, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 417.5527095794678, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15067.094326019287, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:50,417", + "created": 1610346650.4176378, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 417.63782501220703, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15067.179441452026, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,417", + "created": 1610346650.4177377, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 417.7377223968506, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15067.27933883667, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,417", + "created": 1610346650.4178102, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 417.81020164489746, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15067.351818084717, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,417", + "created": 1610346650.417911, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 417.9110527038574, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15067.452669143677, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,417", + "created": 1610346650.4179938, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 417.99378395080566, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15067.535400390625, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,418", + "created": 1610346650.418085, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 418.08509826660156, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15067.62671470642, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,418", + "created": 1610346650.4181519, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 418.15185546875, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15067.69347190857, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,418", + "created": 1610346650.418238, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 418.23792457580566, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15067.779541015625, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,418", + "created": 1610346650.4183104, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 418.31040382385254, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15067.852020263672, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:50,418", + "created": 1610346650.418438, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 418.4379577636719, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15067.979574203491, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:50,419", + "created": 1610346650.4194343, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 419.4343090057373, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15068.975925445557, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,419", + "created": 1610346650.4196098, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 419.60978507995605, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15069.151401519775, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:50,419", + "created": 1610346650.4196942, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 419.694185256958, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15069.235801696777, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:50,419", + "created": 1610346650.4198184, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 419.8184013366699, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15069.36001777649, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:50,420", + "created": 1610346650.4200401, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 420.0401306152344, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15069.581747055054, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:50,420", + "created": 1610346650.4201415, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 420.14145851135254, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15069.683074951172, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + } + ], + "msecs": 740.4789924621582, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15390.020608901978, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.32033753395080566 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:50,741", + "created": 1610346650.741209, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "all_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 157, + "lineno": 158, "message": "Registering a correct working Callback", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "'__callback__'", "None", "None" ], - "asctime": "2021-01-06 22:49:23,732", - "created": 1609969763.7324142, + "asctime": "2021-01-11 07:30:50,741", + "created": 1610346650.7410192, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__callback__' for SID=None and DID=None", + "lineno": 170, + "message": "prot-server: Adding callback '__callback__' for SID=None and DID=None", "module": "__init__", - "msecs": 732.4142456054688, + "msecs": 741.0192489624023, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12432.756423950195, + "relativeCreated": 15390.560865402222, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 732.5646877288818, + "msecs": 741.2090301513672, "msg": "Registering a correct working Callback", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12432.906866073608, + "relativeCreated": 15390.750646591187, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00015044212341308594 + "time_consumption": 0.00018978118896484375 }, { "args": [], - "asctime": "2021-01-06 22:49:23,834", - "created": 1609969763.8345807, + "asctime": "2021-01-11 07:30:50,942", + "created": 1610346650.9429116, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "all_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, + "lineno": 161, "message": "Transfering data", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:23,732", - "created": 1609969763.732832, + "asctime": "2021-01-11 07:30:50,741", + "created": 1610346650.741635, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 438, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 732.8319549560547, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 741.6350841522217, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12433.174133300781, + "relativeCreated": 15391.176700592041, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,733", - "created": 1609969763.733223, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "test_helpers", - "msecs": 733.2229614257812, - "msg": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12433.565139770508, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,733", - "created": 1609969763.7334833, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "test_helpers", - "msecs": 733.4833145141602, - "msg": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12433.825492858887, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2021-01-11 07:30:50,742", + "created": 1610346650.7425554, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 742.5553798675537, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15392.096996307373, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2021-01-11 07:30:50,750", + "created": 1610346650.7509844, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 750.9844303131104, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15400.52604675293, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,751", + "created": 1610346650.7512865, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 751.286506652832, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15400.828123092651, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:50,751", + "created": 1610346650.751429, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 751.4290809631348, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15400.970697402954, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,751", + "created": 1610346650.7515843, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 751.5842914581299, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15401.12590789795, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,751", + "created": 1610346650.7516947, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 751.6946792602539, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15401.236295700073, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,751", + "created": 1610346650.7518437, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 751.8436908721924, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15401.385307312012, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,752", + "created": 1610346650.7520216, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 752.0215511322021, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15401.563167572021, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,752", + "created": 1610346650.7521749, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 752.1748542785645, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15401.716470718384, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,752", + "created": 1610346650.752297, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 752.2969245910645, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15401.838541030884, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,752", + "created": 1610346650.7524304, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 752.4304389953613, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15401.97205543518, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,752", + "created": 1610346650.752535, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 752.5351047515869, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15402.076721191406, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "comm-client:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:50,752", + "created": 1610346650.7527227, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 752.7227401733398, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15402.26435661316, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "comm-server:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:50,753", + "created": 1610346650.75352, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 753.5200119018555, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15403.061628341675, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,753", + "created": 1610346650.7536907, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 753.6907196044922, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15403.232336044312, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:50,753", + "created": 1610346650.7537916, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 753.7915706634521, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15403.333187103271, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "STP:", + "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" + ], + "asctime": "2021-01-11 07:30:50,753", + "created": 1610346650.7539618, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", + "module": "stp", + "msecs": 753.9618015289307, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15403.50341796875, + "stack_info": null, + "thread": 140560656496384, + "threadName": "Thread-25" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:23,733", - "created": 1609969763.7337637, + "asctime": "2021-01-11 07:30:50,754", + "created": 1610346650.7542021, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 438, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 733.7636947631836, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 754.202127456665, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12434.10587310791, + "relativeCreated": 15403.743743896484, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560656496384, + "threadName": "Thread-25" }, { "args": [ - "SP server:", + "prot-server:", "__callback__" ], - "asctime": "2021-01-06 22:49:23,733", - "created": 1609969763.7338705, + "asctime": "2021-01-11 07:30:50,754", + "created": 1610346650.7543173, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __callback__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 733.8705062866211, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 754.3172836303711, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12434.212684631348, + "relativeCreated": 15403.85890007019, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560656496384, + "threadName": "Thread-25" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: read data response, data_id: 0", "status: okay", "33" ], - "asctime": "2021-01-06 22:49:23,733", - "created": 1609969763.7339296, + "asctime": "2021-01-11 07:30:50,754", + "created": 1610346650.754465, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "lineno": 438, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 733.9296340942383, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 754.4651031494141, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12434.271812438965, + "relativeCreated": 15404.006719589233, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,734", - "created": 1609969763.734033, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "module": "test_helpers", - "msecs": 734.0331077575684, - "msg": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12434.375286102295, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,734", - "created": 1609969763.734109, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "module": "test_helpers", - "msecs": 734.1089248657227, - "msg": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12434.45110321045, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560656496384, + "threadName": "Thread-25" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" + ], + "asctime": "2021-01-11 07:30:50,754", + "created": 1610346650.7549646, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", + "module": "__init__", + "msecs": 754.9645900726318, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15404.506206512451, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" + ], + "asctime": "2021-01-11 07:30:50,763", + "created": 1610346650.763257, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", + "module": "__init__", + "msecs": 763.2570266723633, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15412.798643112183, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,763", + "created": 1610346650.7634165, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 763.4165287017822, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15412.958145141602, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:50,763", + "created": 1610346650.7634983, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 763.4983062744141, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15413.039922714233, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,763", + "created": 1610346650.7635953, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 763.5953426361084, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15413.136959075928, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,763", + "created": 1610346650.763709, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 763.7090682983398, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15413.25068473816, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,763", + "created": 1610346650.7638092, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 763.8092041015625, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15413.350820541382, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,763", + "created": 1610346650.7638738, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 763.873815536499, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15413.415431976318, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,763", + "created": 1610346650.7639966, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 763.9966011047363, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15413.538217544556, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,764", + "created": 1610346650.7640762, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 764.0762329101562, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15413.617849349976, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,764", + "created": 1610346650.7641602, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 764.16015625, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15413.70177268982, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,764", + "created": 1610346650.7642312, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 764.2312049865723, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15413.772821426392, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "comm-server:", + "(5): e1 8c bb 3a 3e" + ], + "asctime": "2021-01-11 07:30:50,764", + "created": 1610346650.764352, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (5): e1 8c bb 3a 3e", + "module": "__init__", + "msecs": 764.3520832061768, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15413.893699645996, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "comm-client:", + "(5): e1 8c bb 3a 3e" + ], + "asctime": "2021-01-11 07:30:50,765", + "created": 1610346650.7651434, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (5): e1 8c bb 3a 3e", + "module": "__init__", + "msecs": 765.1433944702148, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15414.685010910034, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,765", + "created": 1610346650.7652225, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 765.2225494384766, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15414.764165878296, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:50,765", + "created": 1610346650.7652934, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 765.2933597564697, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15414.834976196289, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "STP:", + "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb" + ], + "asctime": "2021-01-11 07:30:50,765", + "created": 1610346650.765402, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", + "module": "stp", + "msecs": 765.40207862854, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15414.94369506836, + "stack_info": null, + "thread": 140560648103680, + "threadName": "Thread-26" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: read data response, data_id: 0", "status: okay", "33" ], - "asctime": "2021-01-06 22:49:23,734", - "created": 1609969763.7341924, + "asctime": "2021-01-11 07:30:50,765", + "created": 1610346650.7656138, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "lineno": 438, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 734.1923713684082, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 765.6137943267822, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12434.534549713135, + "relativeCreated": 15415.155410766602, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560648103680, + "threadName": "Thread-26" }, { "args": [ - "SP client:" + "prot-client:" ], - "asctime": "2021-01-06 22:49:23,734", - "created": 1609969763.734257, + "asctime": "2021-01-11 07:30:50,765", + "created": 1610346650.7657177, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 734.2569828033447, + "msecs": 765.7177448272705, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12434.599161148071, + "relativeCreated": 15415.25936126709, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560648103680, + "threadName": "Thread-26" } ], - "msecs": 834.580659866333, + "msecs": 942.9116249084473, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12534.92283821106, + "relativeCreated": 15592.453241348267, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.10032367706298828 + "time_consumption": 0.17719388008117676 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-06 22:49:23,835", - "created": 1609969763.8350353, + "asctime": "2021-01-11 07:30:50,943", + "created": 1610346650.9438376, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -86441,8 +187192,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-06 22:49:23,834", - "created": 1609969763.8348324, + "asctime": "2021-01-11 07:30:50,943", + "created": 1610346650.9434772, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -86452,15 +187203,15 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 834.8324298858643, + "msecs": 943.4771537780762, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12535.17460823059, + "relativeCreated": 15593.018770217896, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -86469,8 +187220,8 @@ "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-01-06 22:49:23,834", - "created": 1609969763.8349319, + "asctime": "2021-01-11 07:30:50,943", + "created": 1610346650.9436717, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -86480,37 +187231,37 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 834.9318504333496, + "msecs": 943.671703338623, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12535.274028778076, + "relativeCreated": 15593.213319778442, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 835.0353240966797, + "msecs": 943.8376426696777, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12535.377502441406, + "relativeCreated": 15593.379259109497, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00010347366333007812 + "time_consumption": 0.0001659393310546875 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-01-06 22:49:23,835", - "created": 1609969763.8353252, + "asctime": "2021-01-11 07:30:50,944", + "created": 1610346650.944386, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -86527,8 +187278,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-01-06 22:49:23,835", - "created": 1609969763.8351636, + "asctime": "2021-01-11 07:30:50,944", + "created": 1610346650.944083, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -86538,15 +187289,15 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} ()", "module": "test", - "msecs": 835.1635932922363, + "msecs": 944.0829753875732, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12535.505771636963, + "relativeCreated": 15593.624591827393, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -86555,8 +187306,8 @@ "{'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0}", "" ], - "asctime": "2021-01-06 22:49:23,835", - "created": 1609969763.8352454, + "asctime": "2021-01-11 07:30:50,944", + "created": 1610346650.9442425, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -86566,41 +187317,41 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0} ()", "module": "test", - "msecs": 835.2453708648682, + "msecs": 944.2424774169922, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12535.587549209595, + "relativeCreated": 15593.784093856812, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 835.3252410888672, + "msecs": 944.3860054016113, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12535.667419433594, + "relativeCreated": 15593.92762184143, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 7.987022399902344e-05 + "time_consumption": 0.00014352798461914062 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.11020994186401367, - "time_finished": "2021-01-06 22:49:23,835", - "time_start": "2021-01-06 22:49:23,725" + "time_consumption": 0.5543608665466309, + "time_finished": "2021-01-11 07:30:50,944", + "time_start": "2021-01-11 07:30:50,390" }, "_r9srME0vEeuiHtQbLi1mZg": { "args": null, - "asctime": "2021-01-06 22:49:23,192", - "created": 1609969763.1923676, + "asctime": "2021-01-11 07:30:48,311", + "created": 1610346648.3115826, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -86611,1505 +187362,3708 @@ "message": "_r9srME0vEeuiHtQbLi1mZg", "module": "__init__", "moduleLogger": [], - "msecs": 192.3675537109375, + "msecs": 311.5825653076172, "msg": "_r9srME0vEeuiHtQbLi1mZg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11892.709732055664, + "relativeCreated": 12961.124181747437, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:23,195", - "created": 1609969763.1954107, + "asctime": "2021-01-11 07:30:48,320", + "created": 1610346648.3208013, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:23,192", - "created": 1609969763.1927311, + "asctime": "2021-01-11 07:30:48,312", + "created": 1610346648.3126347, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 192.73114204406738, + "msecs": 312.6347064971924, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11893.073320388794, + "relativeCreated": 12962.176322937012, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:23,192", - "created": 1609969763.1929057, + "asctime": "2021-01-11 07:30:48,313", + "created": 1610346648.3135152, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 192.90566444396973, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 313.51518630981445, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11893.247842788696, + "relativeCreated": 12963.056802749634, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:23,193", - "created": 1609969763.1931171, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 193.1171417236328, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11893.45932006836, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:23,193", - "created": 1609969763.193272, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 193.27211380004883, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11893.614292144775, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:23,193", - "created": 1609969763.1934335, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 193.4335231781006, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11893.775701522827, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:23,193", - "created": 1609969763.1935885, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 193.5884952545166, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11893.930673599243, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:23,193", - "created": 1609969763.1937418, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 193.7417984008789, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11894.083976745605, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:23,193", - "created": 1609969763.193852, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 193.85194778442383, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11894.19412612915, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:23,193", - "created": 1609969763.1939006, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 193.90058517456055, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11894.242763519287, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:23,193", - "created": 1609969763.1939485, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 193.94850730895996, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11894.290685653687, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:23,193", - "created": 1609969763.1939917, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 193.99166107177734, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11894.333839416504, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:23,194", - "created": 1609969763.19404, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 194.04006004333496, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11894.382238388062, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:23,194", - "created": 1609969763.1940913, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 194.0913200378418, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11894.433498382568, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:23,194", - "created": 1609969763.1941361, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 194.1361427307129, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11894.47832107544, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:23,194", - "created": 1609969763.194182, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 194.1819190979004, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11894.524097442627, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:23,194", - "created": 1609969763.1942296, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 194.2296028137207, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11894.571781158447, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:23,194", - "created": 1609969763.1942806, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 194.28062438964844, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11894.622802734375, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:23,194", - "created": 1609969763.194332, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 194.33188438415527, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11894.674062728882, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:23,194", - "created": 1609969763.1943762, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 194.37623023986816, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11894.718408584595, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:23,194", - "created": 1609969763.194419, + "asctime": "2021-01-11 07:30:48,313", + "created": 1610346648.3137274, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 194.41890716552734, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 313.72737884521484, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11894.761085510254, + "relativeCreated": 12963.268995285034, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:23,194", - "created": 1609969763.194501, + "asctime": "2021-01-11 07:30:48,314", + "created": 1610346648.3140547, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 194.50092315673828, + "msecs": 314.0547275543213, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11894.843101501465, + "relativeCreated": 12963.59634399414, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:23,194", - "created": 1609969763.1945496, + "asctime": "2021-01-11 07:30:48,314", + "created": 1610346648.3142285, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 194.549560546875, + "msecs": 314.2285346984863, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11894.891738891602, + "relativeCreated": 12963.770151138306, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:23,194", - "created": 1609969763.1946104, + "asctime": "2021-01-11 07:30:48,314", + "created": 1610346648.3144464, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 194.6103572845459, + "msecs": 314.44644927978516, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11894.952535629272, + "relativeCreated": 12963.988065719604, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:23,194", - "created": 1609969763.194656, + "asctime": "2021-01-11 07:30:48,314", + "created": 1610346648.3146167, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 194.6558952331543, + "msecs": 314.6166801452637, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11894.99807357788, + "relativeCreated": 12964.158296585083, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:23,194", - "created": 1609969763.1947, + "asctime": "2021-01-11 07:30:48,314", + "created": 1610346648.3147607, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 194.7000026702881, + "msecs": 314.760684967041, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11895.042181015015, + "relativeCreated": 12964.30230140686, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:23,194", - "created": 1609969763.1947439, + "asctime": "2021-01-11 07:30:48,314", + "created": 1610346648.3149009, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 194.74387168884277, + "msecs": 314.90087509155273, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11895.08605003357, + "relativeCreated": 12964.442491531372, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:23,194", - "created": 1609969763.1947937, + "asctime": "2021-01-11 07:30:48,315", + "created": 1610346648.3150637, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 194.793701171875, + "msecs": 315.0637149810791, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11895.135879516602, + "relativeCreated": 12964.605331420898, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:23,194", - "created": 1609969763.1948428, + "asctime": "2021-01-11 07:30:48,315", + "created": 1610346648.3152392, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 194.84281539916992, + "msecs": 315.23919105529785, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11895.184993743896, + "relativeCreated": 12964.780807495117, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:23,194", - "created": 1609969763.194894, + "asctime": "2021-01-11 07:30:48,315", + "created": 1610346648.3153958, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 194.89407539367676, + "msecs": 315.3958320617676, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11895.236253738403, + "relativeCreated": 12964.937448501587, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:23,194", - "created": 1609969763.1949437, + "asctime": "2021-01-11 07:30:48,315", + "created": 1610346648.3155632, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 194.94366645812988, + "msecs": 315.5632019042969, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11895.285844802856, + "relativeCreated": 12965.104818344116, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:23,194", - "created": 1609969763.1949868, + "asctime": "2021-01-11 07:30:48,315", + "created": 1610346648.3157036, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 194.98682022094727, + "msecs": 315.7036304473877, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11895.328998565674, + "relativeCreated": 12965.245246887207, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:23,195", - "created": 1609969763.1950343, + "asctime": "2021-01-11 07:30:48,315", + "created": 1610346648.3158576, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 195.03426551818848, + "msecs": 315.8576488494873, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11895.376443862915, + "relativeCreated": 12965.399265289307, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:23,195", - "created": 1609969763.1950855, + "asctime": "2021-01-11 07:30:48,316", + "created": 1610346648.3160288, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 195.0855255126953, + "msecs": 316.0288333892822, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11895.427703857422, + "relativeCreated": 12965.570449829102, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:23,195", - "created": 1609969763.1951425, + "asctime": "2021-01-11 07:30:48,316", + "created": 1610346648.316178, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 195.1425075531006, + "msecs": 316.1780834197998, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11895.484685897827, + "relativeCreated": 12965.71969985962, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:23,195", - "created": 1609969763.1951802, + "asctime": "2021-01-11 07:30:48,316", + "created": 1610346648.3163323, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 195.18017768859863, + "msecs": 316.3323402404785, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11895.522356033325, + "relativeCreated": 12965.873956680298, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:23,195", - "created": 1609969763.1952188, + "asctime": "2021-01-11 07:30:48,316", + "created": 1610346648.3165064, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 195.2188014984131, + "msecs": 316.50638580322266, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11895.56097984314, + "relativeCreated": 12966.048002243042, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:23,195", - "created": 1609969763.1952577, + "asctime": "2021-01-11 07:30:48,316", + "created": 1610346648.3166568, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 195.25766372680664, + "msecs": 316.65682792663574, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11895.599842071533, + "relativeCreated": 12966.198444366455, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:23,195", - "created": 1609969763.195297, + "asctime": "2021-01-11 07:30:48,316", + "created": 1610346648.3167968, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 195.2970027923584, + "msecs": 316.79677963256836, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11895.639181137085, + "relativeCreated": 12966.338396072388, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:23,195", - "created": 1609969763.195336, + "asctime": "2021-01-11 07:30:48,316", + "created": 1610346648.316934, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 195.33610343933105, + "msecs": 316.93410873413086, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11895.678281784058, + "relativeCreated": 12966.47572517395, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:23,195", - "created": 1609969763.1953764, + "asctime": "2021-01-11 07:30:48,317", + "created": 1610346648.3170872, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 195.37639617919922, + "msecs": 317.08717346191406, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11895.718574523926, + "relativeCreated": 12966.628789901733, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:48,317", + "created": 1610346648.3177462, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 317.7461624145508, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12967.28777885437, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:48,317", + "created": 1610346648.3179135, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 317.9135322570801, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12967.4551486969, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:48,318", + "created": 1610346648.3181174, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 318.1173801422119, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12967.658996582031, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:48,318", + "created": 1610346648.318271, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 318.2709217071533, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12967.812538146973, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:48,318", + "created": 1610346648.3184166, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 318.4165954589844, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12967.958211898804, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:48,318", + "created": 1610346648.318557, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 318.5570240020752, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12968.098640441895, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:48,318", + "created": 1610346648.318707, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 318.7069892883301, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12968.24860572815, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:48,318", + "created": 1610346648.318863, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 318.8629150390625, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12968.404531478882, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:48,319", + "created": 1610346648.3190324, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 319.0324306488037, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12968.574047088623, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:48,319", + "created": 1610346648.3191853, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 319.1852569580078, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12968.726873397827, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:48,319", + "created": 1610346648.31932, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 319.3199634552002, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12968.86157989502, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:48,319", + "created": 1610346648.3194807, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 319.48065757751465, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12969.022274017334, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:48,319", + "created": 1610346648.3196514, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 319.65136528015137, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12969.19298171997, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:48,319", + "created": 1610346648.319797, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 319.7970390319824, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12969.338655471802, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:48,319", + "created": 1610346648.3199534, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 319.95344161987305, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12969.495058059692, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:48,320", + "created": 1610346648.3201072, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 320.10722160339355, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12969.648838043213, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:48,320", + "created": 1610346648.320255, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 320.2550411224365, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12969.796657562256, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:48,320", + "created": 1610346648.3203952, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 320.39523124694824, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12969.936847686768, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:48,320", + "created": 1610346648.3205335, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 320.53351402282715, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12970.075130462646, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:48,320", + "created": 1610346648.320671, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 320.67108154296875, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12970.212697982788, + "stack_info": null, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 195.41072845458984, + "msecs": 320.8012580871582, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11895.752906799316, + "relativeCreated": 12970.342874526978, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 3.4332275390625e-05 + "time_consumption": 0.00013017654418945312 }, { "args": [], - "asctime": "2021-01-06 22:49:23,195", - "created": 1609969763.195534, + "asctime": "2021-01-11 07:30:48,665", + "created": 1610346648.665071, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:48,321", + "created": 1610346648.321112, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 321.11191749572754, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12970.653533935547, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:48,321", + "created": 1610346648.3212543, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 321.2542533874512, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12970.79586982727, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:48,321", + "created": 1610346648.321405, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 321.40493392944336, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12970.946550369263, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:48,321", + "created": 1610346648.3215377, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 321.53773307800293, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12971.079349517822, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:48,321", + "created": 1610346648.3217187, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 321.718692779541, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12971.26030921936, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:48,321", + "created": 1610346648.3217683, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 321.76828384399414, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12971.309900283813, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:48,321", + "created": 1610346648.3218138, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 321.81382179260254, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12971.355438232422, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:48,321", + "created": 1610346648.321973, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 321.9730854034424, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12971.514701843262, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:48,330", + "created": 1610346648.330135, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 330.1351070404053, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12979.676723480225, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,330", + "created": 1610346648.3302577, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 330.2576541900635, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12979.799270629883, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:48,330", + "created": 1610346648.3303103, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 330.3103446960449, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12979.851961135864, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,330", + "created": 1610346648.330373, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 330.37304878234863, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12979.914665222168, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,330", + "created": 1610346648.3304172, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 330.4171562194824, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12979.958772659302, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,330", + "created": 1610346648.3304913, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 330.491304397583, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12980.032920837402, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,330", + "created": 1610346648.3305402, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 330.5401802062988, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12980.081796646118, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,330", + "created": 1610346648.330597, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 330.596923828125, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12980.138540267944, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,330", + "created": 1610346648.330638, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 330.63793182373047, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12980.17954826355, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,330", + "created": 1610346648.330692, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 330.6920528411865, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12980.233669281006, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,330", + "created": 1610346648.3307328, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 330.7328224182129, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12980.274438858032, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:48,330", + "created": 1610346648.3308148, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 330.8148384094238, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12980.356454849243, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:48,331", + "created": 1610346648.33176, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 331.7599296569824, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12981.301546096802, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,331", + "created": 1610346648.3318858, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 331.88581466674805, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12981.427431106567, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:48,331", + "created": 1610346648.3319387, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 331.9387435913086, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12981.480360031128, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" + ], + "asctime": "2021-01-11 07:30:48,332", + "created": 1610346648.3320205, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", + "module": "stp", + "msecs": 332.02052116394043, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12981.56213760376, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:48,332", + "created": 1610346648.3321543, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 332.1542739868164, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12981.695890426636, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:48,332", + "created": 1610346648.3322253, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 332.2253227233887, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12981.766939163208, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:48,332", + "created": 1610346648.3323104, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 332.31043815612793, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12981.852054595947, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:48,332", + "created": 1610346648.3325837, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 332.5836658477783, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12982.125282287598, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:48,340", + "created": 1610346648.3409684, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 340.96837043762207, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12990.509986877441, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,341", + "created": 1610346648.341488, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 341.4878845214844, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12991.029500961304, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:48,341", + "created": 1610346648.341678, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 341.6779041290283, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12991.219520568848, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,341", + "created": 1610346648.3418586, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 341.8586254119873, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12991.400241851807, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,341", + "created": 1610346648.3419986, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 341.9985771179199, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12991.54019355774, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,342", + "created": 1610346648.3423111, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 342.31114387512207, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12991.852760314941, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,342", + "created": 1610346648.3424335, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 342.4334526062012, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12991.97506904602, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,342", + "created": 1610346648.3425817, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 342.58174896240234, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12992.123365402222, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,342", + "created": 1610346648.3427002, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 342.7002429962158, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12992.241859436035, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,342", + "created": 1610346648.3428216, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 342.8215980529785, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12992.363214492798, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,342", + "created": 1610346648.3429065, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 342.9064750671387, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12992.448091506958, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:48,343", + "created": 1610346648.3430772, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 343.0771827697754, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12992.618799209595, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:48,344", + "created": 1610346648.34413, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 344.1300392150879, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12993.671655654907, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,344", + "created": 1610346648.3443937, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 344.3937301635742, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12993.935346603394, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:48,344", + "created": 1610346648.3445306, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 344.5305824279785, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12994.072198867798, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:48,344", + "created": 1610346648.3447118, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 344.7117805480957, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12994.253396987915, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:48,345", + "created": 1610346648.3450978, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 345.09778022766113, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12994.63939666748, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:48,345", + "created": 1610346648.3452535, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 345.25346755981445, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 12994.795083999634, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + } + ], + "msecs": 665.0710105895996, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13314.612627029419, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.31981754302978516 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:48,665", + "created": 1610346648.6658533, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "specific_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 100, + "lineno": 101, "message": "Registering a correct working Callback", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "'__callback__'", "10", "0" ], - "asctime": "2021-01-06 22:49:23,195", - "created": 1609969763.1954958, + "asctime": "2021-01-11 07:30:48,665", + "created": 1610346648.6656594, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__callback__' for SID=10 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__callback__' for SID=10 and DID=0", "module": "__init__", - "msecs": 195.4958438873291, + "msecs": 665.6594276428223, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11895.838022232056, + "relativeCreated": 13315.201044082642, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 195.53399085998535, + "msecs": 665.8532619476318, "msg": "Registering a correct working Callback", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11895.876169204712, + "relativeCreated": 13315.394878387451, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 3.814697265625e-05 + "time_consumption": 0.0001938343048095703 }, { "args": [], - "asctime": "2021-01-06 22:49:23,296", - "created": 1609969763.2965207, + "asctime": "2021-01-11 07:30:48,867", + "created": 1610346648.8675327, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "specific_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 103, + "lineno": 104, "message": "Transfering data", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:23,195", - "created": 1609969763.1955996, + "asctime": "2021-01-11 07:30:48,666", + "created": 1610346648.6661959, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 438, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 195.59955596923828, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 666.1958694458008, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11895.941734313965, + "relativeCreated": 13315.73748588562, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,195", - "created": 1609969763.1957042, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "test_helpers", - "msecs": 195.70422172546387, - "msg": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11896.04640007019, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,195", - "created": 1609969763.1957686, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "test_helpers", - "msecs": 195.7685947418213, - "msg": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11896.110773086548, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2021-01-11 07:30:48,667", + "created": 1610346648.6671045, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 667.1044826507568, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13316.646099090576, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2021-01-11 07:30:48,675", + "created": 1610346648.6756325, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 675.6324768066406, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13325.17409324646, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,675", + "created": 1610346648.6759813, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 675.9812831878662, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13325.522899627686, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:48,676", + "created": 1610346648.6761599, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 676.1598587036133, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13325.701475143433, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,676", + "created": 1610346648.6763642, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 676.3641834259033, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13325.905799865723, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,676", + "created": 1610346648.676508, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 676.5079498291016, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13326.04956626892, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,676", + "created": 1610346648.6767132, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 676.713228225708, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13326.254844665527, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,676", + "created": 1610346648.6768475, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 676.8474578857422, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13326.389074325562, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,677", + "created": 1610346648.6770964, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 677.0963668823242, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13326.637983322144, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,677", + "created": 1610346648.677311, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 677.3109436035156, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13326.852560043335, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,677", + "created": 1610346648.677523, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 677.5228977203369, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13327.064514160156, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,677", + "created": 1610346648.6776347, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 677.6347160339355, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13327.176332473755, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-client:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:48,677", + "created": 1610346648.6778486, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 677.8485774993896, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13327.390193939209, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-server:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:48,678", + "created": 1610346648.6787581, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 678.7581443786621, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13328.299760818481, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,678", + "created": 1610346648.6789677, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 678.9677143096924, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13328.509330749512, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:48,679", + "created": 1610346648.6791027, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 679.1026592254639, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13328.644275665283, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" + ], + "asctime": "2021-01-11 07:30:48,679", + "created": 1610346648.679302, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", + "module": "stp", + "msecs": 679.3019771575928, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13328.843593597412, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:23,195", - "created": 1609969763.195843, + "asctime": "2021-01-11 07:30:48,679", + "created": 1610346648.679602, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 438, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 195.84298133850098, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 679.6019077301025, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11896.185159683228, + "relativeCreated": 13329.143524169922, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561184974592, + "threadName": "Thread-19" }, { "args": [ - "SP server:", + "prot-server:", "__callback__" ], - "asctime": "2021-01-06 22:49:23,195", - "created": 1609969763.195888, + "asctime": "2021-01-11 07:30:48,679", + "created": 1610346648.6797605, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __callback__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 195.88804244995117, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 679.7604560852051, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11896.230220794678, + "relativeCreated": 13329.302072525024, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561184974592, + "threadName": "Thread-19" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: read data response, data_id: 0", "status: okay", "33" ], - "asctime": "2021-01-06 22:49:23,195", - "created": 1609969763.1959367, + "asctime": "2021-01-11 07:30:48,679", + "created": 1610346648.6799643, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "lineno": 438, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 195.9366798400879, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 679.9643039703369, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11896.278858184814, + "relativeCreated": 13329.505920410156, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,196", - "created": 1609969763.1960237, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "module": "test_helpers", - "msecs": 196.02370262145996, - "msg": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11896.365880966187, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,196", - "created": 1609969763.196087, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "module": "test_helpers", - "msecs": 196.08688354492188, - "msg": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11896.429061889648, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561184974592, + "threadName": "Thread-19" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" + ], + "asctime": "2021-01-11 07:30:48,680", + "created": 1610346648.6807153, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", + "module": "__init__", + "msecs": 680.7153224945068, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13330.256938934326, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" + ], + "asctime": "2021-01-11 07:30:48,689", + "created": 1610346648.68909, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", + "module": "__init__", + "msecs": 689.0900135040283, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13338.631629943848, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,689", + "created": 1610346648.689338, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 689.337968826294, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13338.879585266113, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:48,689", + "created": 1610346648.6894982, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 689.4981861114502, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13339.03980255127, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,689", + "created": 1610346648.6896205, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 689.6204948425293, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13339.162111282349, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,689", + "created": 1610346648.6896994, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 689.6994113922119, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13339.241027832031, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,689", + "created": 1610346648.6898093, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 689.8093223571777, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13339.350938796997, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,689", + "created": 1610346648.6898813, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 689.8813247680664, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13339.422941207886, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,689", + "created": 1610346648.6899815, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 689.9814605712891, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13339.523077011108, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,690", + "created": 1610346648.6900523, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 690.0522708892822, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13339.593887329102, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,690", + "created": 1610346648.6901631, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 690.1631355285645, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13339.704751968384, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,690", + "created": 1610346648.6902354, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 690.2353763580322, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13339.776992797852, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-server:", + "(5): e1 8c bb 3a 3e" + ], + "asctime": "2021-01-11 07:30:48,690", + "created": 1610346648.6903794, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (5): e1 8c bb 3a 3e", + "module": "__init__", + "msecs": 690.3793811798096, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13339.920997619629, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-client:", + "(5): e1 8c bb 3a 3e" + ], + "asctime": "2021-01-11 07:30:48,691", + "created": 1610346648.6912212, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (5): e1 8c bb 3a 3e", + "module": "__init__", + "msecs": 691.2212371826172, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13340.762853622437, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,691", + "created": 1610346648.6913674, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 691.3673877716064, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13340.909004211426, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:48,691", + "created": 1610346648.6914608, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 691.4608478546143, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13341.002464294434, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb" + ], + "asctime": "2021-01-11 07:30:48,691", + "created": 1610346648.6915967, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", + "module": "stp", + "msecs": 691.5967464447021, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13341.138362884521, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: read data response, data_id: 0", "status: okay", "33" ], - "asctime": "2021-01-06 22:49:23,196", - "created": 1609969763.1961527, + "asctime": "2021-01-11 07:30:48,691", + "created": 1610346648.691809, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "lineno": 438, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 196.1526870727539, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 691.8089389801025, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11896.49486541748, + "relativeCreated": 13341.350555419922, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561176581888, + "threadName": "Thread-20" }, { "args": [ - "SP client:" + "prot-client:" ], - "asctime": "2021-01-06 22:49:23,196", - "created": 1609969763.196205, + "asctime": "2021-01-11 07:30:48,691", + "created": 1610346648.6919262, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 196.20490074157715, + "msecs": 691.9262409210205, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11896.547079086304, + "relativeCreated": 13341.46785736084, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561176581888, + "threadName": "Thread-20" } ], - "msecs": 296.5207099914551, + "msecs": 867.5327301025391, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11996.862888336182, + "relativeCreated": 13517.074346542358, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.10031580924987793 + "time_consumption": 0.17560648918151855 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-06 22:49:23,296", - "created": 1609969763.2969446, + "asctime": "2021-01-11 07:30:48,868", + "created": 1610346648.868457, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -88126,8 +191080,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-06 22:49:23,296", - "created": 1609969763.2967658, + "asctime": "2021-01-11 07:30:48,868", + "created": 1610346648.8680747, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -88137,15 +191091,15 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 296.7658042907715, + "msecs": 868.0746555328369, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11997.107982635498, + "relativeCreated": 13517.616271972656, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -88154,8 +191108,8 @@ "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-01-06 22:49:23,296", - "created": 1609969763.2968602, + "asctime": "2021-01-11 07:30:48,868", + "created": 1610346648.8682883, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -88165,37 +191119,37 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 296.8602180480957, + "msecs": 868.2882785797119, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11997.202396392822, + "relativeCreated": 13517.829895019531, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 296.94461822509766, + "msecs": 868.4570789337158, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11997.286796569824, + "relativeCreated": 13517.998695373535, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 8.440017700195312e-05 + "time_consumption": 0.00016880035400390625 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-01-06 22:49:23,297", - "created": 1609969763.2972398, + "asctime": "2021-01-11 07:30:48,869", + "created": 1610346648.869007, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -88212,8 +191166,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-01-06 22:49:23,297", - "created": 1609969763.2970788, + "asctime": "2021-01-11 07:30:48,868", + "created": 1610346648.8687122, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -88223,15 +191177,15 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} ()", "module": "test", - "msecs": 297.07884788513184, + "msecs": 868.7121868133545, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11997.421026229858, + "relativeCreated": 13518.253803253174, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -88240,8 +191194,8 @@ "{'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0}", "" ], - "asctime": "2021-01-06 22:49:23,297", - "created": 1609969763.2971566, + "asctime": "2021-01-11 07:30:48,868", + "created": 1610346648.8688617, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -88251,437 +191205,1248 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0} ()", "module": "test", - "msecs": 297.15657234191895, + "msecs": 868.8616752624512, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11997.498750686646, + "relativeCreated": 13518.40329170227, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 297.2397804260254, + "msecs": 869.0071105957031, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11997.581958770752, + "relativeCreated": 13518.548727035522, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 8.320808410644531e-05 + "time_consumption": 0.00014543533325195312 }, { "args": [], - "asctime": "2021-01-06 22:49:23,297", - "created": 1609969763.2974646, + "asctime": "2021-01-11 07:30:48,869", + "created": 1610346648.869546, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "specific_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 109, + "lineno": 110, "message": "Overwriting existing Callback using one with faulty return values", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "'__callback__'", "10", "0", "'__callback_error__'" ], - "asctime": "2021-01-06 22:49:23,297", - "created": 1609969763.2973852, + "asctime": "2021-01-11 07:30:48,869", + "created": 1610346648.8693483, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "WARNING", "levelno": 30, - "lineno": 158, - "message": "SP server: Overwriting existing callback '__callback__' for service_id (10) and data_id (0) to '__callback_error__'!", + "lineno": 168, + "message": "prot-server: Overwriting existing callback '__callback__' for service_id (10) and data_id (0) to '__callback_error__'!", "module": "__init__", - "msecs": 297.38521575927734, + "msecs": 869.3482875823975, "msg": "%s Overwriting existing callback %s for service_id (%s) and data_id (%s) to %s!", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11997.727394104004, + "relativeCreated": 13518.889904022217, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 297.46460914611816, + "msecs": 869.5459365844727, "msg": "Overwriting existing Callback using one with faulty return values", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11997.806787490845, + "relativeCreated": 13519.087553024292, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 7.939338684082031e-05 + "time_consumption": 0.0001976490020751953 }, { "args": [], - "asctime": "2021-01-06 22:49:23,399", - "created": 1609969763.3994107, + "asctime": "2021-01-11 07:30:49,071", + "created": 1610346649.071171, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "specific_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 112, + "lineno": 113, "message": "Transfering data", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:23,297", - "created": 1609969763.297603, + "asctime": "2021-01-11 07:30:48,869", + "created": 1610346648.8698828, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 438, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 297.60289192199707, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 869.8828220367432, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11997.945070266724, + "relativeCreated": 13519.424438476562, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,297", - "created": 1609969763.297827, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "test_helpers", - "msecs": 297.82700538635254, - "msg": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11998.16918373108, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,297", - "created": 1609969763.2979572, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "test_helpers", - "msecs": 297.957181930542, - "msg": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11998.299360275269, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2021-01-11 07:30:48,871", + "created": 1610346648.8712971, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 871.2971210479736, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13520.838737487793, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2021-01-11 07:30:48,879", + "created": 1610346648.8797169, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 879.7168731689453, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13529.258489608765, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,879", + "created": 1610346648.8799102, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 879.9102306365967, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13529.451847076416, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:48,880", + "created": 1610346648.8800159, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 880.0158500671387, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13529.557466506958, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,880", + "created": 1610346648.880143, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 880.1429271697998, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13529.68454360962, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,880", + "created": 1610346648.8802304, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 880.2304267883301, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13529.77204322815, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,880", + "created": 1610346648.8803573, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 880.3572654724121, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13529.898881912231, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,880", + "created": 1610346648.880441, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 880.4409503936768, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13529.982566833496, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,880", + "created": 1610346648.880573, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 880.573034286499, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13530.114650726318, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,880", + "created": 1610346648.8806577, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 880.6576728820801, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13530.1992893219, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,880", + "created": 1610346648.8807805, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 880.7804584503174, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13530.322074890137, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,880", + "created": 1610346648.8808827, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 880.882740020752, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13530.424356460571, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-client:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:48,881", + "created": 1610346648.881035, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 881.0350894927979, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13530.576705932617, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-server:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:48,881", + "created": 1610346648.8819814, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 881.981372833252, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13531.522989273071, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,882", + "created": 1610346648.882132, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 882.1320533752441, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13531.673669815063, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:48,882", + "created": 1610346648.8822432, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 882.2431564331055, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13531.784772872925, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" + ], + "asctime": "2021-01-11 07:30:48,882", + "created": 1610346648.882397, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", + "module": "stp", + "msecs": 882.396936416626, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13531.938552856445, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:23,298", - "created": 1609969763.298108, + "asctime": "2021-01-11 07:30:48,882", + "created": 1610346648.8826334, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 438, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 298.1081008911133, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 882.6334476470947, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11998.45027923584, + "relativeCreated": 13532.175064086914, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561184974592, + "threadName": "Thread-19" }, { "args": [ - "SP server:", + "prot-server:", "__callback_error__" ], - "asctime": "2021-01-06 22:49:23,298", - "created": 1609969763.2981987, + "asctime": "2021-01-11 07:30:48,882", + "created": 1610346648.882745, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __callback_error__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __callback_error__ to process received data", "module": "__init__", - "msecs": 298.1986999511719, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 882.7450275421143, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11998.540878295898, + "relativeCreated": 13532.286643981934, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561184974592, + "threadName": "Thread-19" }, { "args": [], - "asctime": "2021-01-06 22:49:23,298", - "created": 1609969763.2983007, + "asctime": "2021-01-11 07:30:48,882", + "created": 1610346648.882865, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "ERROR", "levelno": 40, - "lineno": 468, - "message": "SP server: RX <- Exception raised. Check callback __callback_error__ and it's return values for service_id 10 and data_id 0", + "lineno": 482, + "message": "prot-server: Exception raised. Check callback __callback_error__ and it's return values for service_id 10 and data_id 0", "module": "__init__", - "msecs": 298.30074310302734, - "msg": "SP server: RX <- Exception raised. Check callback __callback_error__ and it's return values for service_id 10 and data_id 0", + "msecs": 882.8649520874023, + "msg": "prot-server: Exception raised. Check callback __callback_error__ and it's return values for service_id 10 and data_id 0", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11998.642921447754, + "relativeCreated": 13532.406568527222, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561184974592, + "threadName": "Thread-19" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: read data response, data_id: 0", - "status: callback error.", + "status: callback error", "None" ], - "asctime": "2021-01-06 22:49:23,298", - "created": 1609969763.298406, + "asctime": "2021-01-11 07:30:48,883", + "created": 1610346648.8830047, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: read data response, data_id: 0, status: callback error., data: \"None\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 438, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: callback error, data: \"None\"", "module": "__init__", - "msecs": 298.40588569641113, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 883.0046653747559, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11998.748064041138, + "relativeCreated": 13532.546281814575, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,298", - "created": 1609969763.2985876, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d a1 a2 87 f3", - "module": "test_helpers", - "msecs": 298.5875606536865, - "msg": "Send data: (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d a1 a2 87 f3", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11998.929738998413, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,298", - "created": 1609969763.2987142, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d a1 a2 87 f3", - "module": "test_helpers", - "msecs": 298.71416091918945, - "msg": "Receive data (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d a1 a2 87 f3", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11999.056339263916, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561184974592, + "threadName": "Thread-19" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c" + ], + "asctime": "2021-01-11 07:30:48,883", + "created": 1610346648.8835073, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c", + "module": "__init__", + "msecs": 883.507251739502, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13533.048868179321, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c" + ], + "asctime": "2021-01-11 07:30:48,891", + "created": 1610346648.891859, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c", + "module": "__init__", + "msecs": 891.8590545654297, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13541.400671005249, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,892", + "created": 1610346648.8920608, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 892.0607566833496, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13541.602373123169, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:48,892", + "created": 1610346648.8921692, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 892.1692371368408, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13541.71085357666, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,892", + "created": 1610346648.8923008, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 892.3008441925049, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13541.842460632324, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,892", + "created": 1610346648.8923914, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 892.3914432525635, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13541.933059692383, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,892", + "created": 1610346648.8925362, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 892.5361633300781, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13542.077779769897, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,892", + "created": 1610346648.8926272, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 892.6272392272949, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13542.168855667114, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,892", + "created": 1610346648.8927505, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 892.7505016326904, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13542.29211807251, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,892", + "created": 1610346648.8928332, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 892.8332328796387, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13542.374849319458, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,892", + "created": 1610346648.8929408, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 892.9407596588135, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13542.482376098633, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:48,893", + "created": 1610346648.893021, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 893.0211067199707, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13542.56272315979, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-server:", + "(7): 7d a1 a2 87 f3 3a 3e" + ], + "asctime": "2021-01-11 07:30:48,893", + "created": 1610346648.8931777, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (7): 7d a1 a2 87 f3 3a 3e", + "module": "__init__", + "msecs": 893.1777477264404, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13542.71936416626, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-client:", + "(7): 7d a1 a2 87 f3 3a 3e" + ], + "asctime": "2021-01-11 07:30:48,894", + "created": 1610346648.894283, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (7): 7d a1 a2 87 f3 3a 3e", + "module": "__init__", + "msecs": 894.2830562591553, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13543.824672698975, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:48,894", + "created": 1610346648.8944566, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 894.4566249847412, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13543.99824142456, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:48,894", + "created": 1610346648.8945708, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 894.5708274841309, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13544.11244392395, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + "(63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d a1 a2 87 f3" + ], + "asctime": "2021-01-11 07:30:48,894", + "created": 1610346648.8947256, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d a1 a2 87 f3", + "module": "stp", + "msecs": 894.7255611419678, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13544.267177581787, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: read data response, data_id: 0", - "status: callback error.", + "status: callback error", "None" ], - "asctime": "2021-01-06 22:49:23,298", - "created": 1609969763.2988453, + "asctime": "2021-01-11 07:30:48,894", + "created": 1610346648.8949862, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: read data response, data_id: 0, status: callback error., data: \"None\"", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 438, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: callback error, data: \"None\"", "module": "__init__", - "msecs": 298.8452911376953, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 894.9861526489258, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11999.187469482422, + "relativeCreated": 13544.527769088745, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561176581888, + "threadName": "Thread-20" }, { "args": [ - "SP client:", - "status: callback error." + "prot-client:" ], - "asctime": "2021-01-06 22:49:23,298", - "created": 1609969763.298926, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: callback error.", - "module": "__init__", - "msecs": 298.92611503601074, - "msg": "%s RX <- Message has a peculiar status: %s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 11999.268293380737, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:" - ], - "asctime": "2021-01-06 22:49:23,299", - "created": 1609969763.2990189, + "asctime": "2021-01-11 07:30:48,895", + "created": 1610346648.8951297, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 299.01885986328125, + "msecs": 895.1296806335449, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 11999.361038208008, + "relativeCreated": 13544.671297073364, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561176581888, + "threadName": "Thread-20" } ], - "msecs": 399.4107246398926, + "msecs": 71.17104530334473, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12099.75290298462, + "relativeCreated": 13720.712661743164, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.10039186477661133 + "time_consumption": 0.1760413646697998 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-06 22:49:23,400", - "created": 1609969763.4000685, + "asctime": "2021-01-11 07:30:49,072", + "created": 1610346649.0720496, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -88698,8 +192463,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-06 22:49:23,399", - "created": 1609969763.3997626, + "asctime": "2021-01-11 07:30:49,071", + "created": 1610346649.0716968, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -88709,15 +192474,15 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 399.7626304626465, + "msecs": 71.69675827026367, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12100.104808807373, + "relativeCreated": 13721.238374710083, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -88726,8 +192491,8 @@ "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-01-06 22:49:23,399", - "created": 1609969763.3999145, + "asctime": "2021-01-11 07:30:49,071", + "created": 1610346649.071885, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -88737,37 +192502,37 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 399.9145030975342, + "msecs": 71.8851089477539, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12100.25668144226, + "relativeCreated": 13721.426725387573, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 400.0685214996338, + "msecs": 72.04961776733398, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12100.41069984436, + "relativeCreated": 13721.591234207153, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00015401840209960938 + "time_consumption": 0.00016450881958007812 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 2, 'data': None}", "" ], - "asctime": "2021-01-06 22:49:23,400", - "created": 1609969763.4005175, + "asctime": "2021-01-11 07:30:49,072", + "created": 1610346649.0726123, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -88784,8 +192549,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 2, 'data': None}", "" ], - "asctime": "2021-01-06 22:49:23,400", - "created": 1609969763.4002585, + "asctime": "2021-01-11 07:30:49,072", + "created": 1610346649.0722904, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -88795,15 +192560,15 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 2, 'data': None} ()", "module": "test", - "msecs": 400.25854110717773, + "msecs": 72.29042053222656, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12100.600719451904, + "relativeCreated": 13721.832036972046, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -88812,8 +192577,8 @@ "{'data': None, 'data_id': 0, 'service_id': 11, 'status': 2}", "" ], - "asctime": "2021-01-06 22:49:23,400", - "created": 1609969763.400389, + "asctime": "2021-01-11 07:30:49,072", + "created": 1610346649.0724654, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -88823,411 +192588,1222 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'data': None, 'data_id': 0, 'service_id': 11, 'status': 2} ()", "module": "test", - "msecs": 400.3889560699463, + "msecs": 72.46541976928711, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12100.731134414673, + "relativeCreated": 13722.007036209106, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 400.51746368408203, + "msecs": 72.61228561401367, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12100.859642028809, + "relativeCreated": 13722.153902053833, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001285076141357422 + "time_consumption": 0.0001468658447265625 }, { "args": [], - "asctime": "2021-01-06 22:49:23,400", - "created": 1609969763.400858, + "asctime": "2021-01-11 07:30:49,073", + "created": 1610346649.07305, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "specific_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 118, + "lineno": 119, "message": "Removing the registered Callback", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "'__callback_error__'", "10", "0" ], - "asctime": "2021-01-06 22:49:23,400", - "created": 1609969763.400736, + "asctime": "2021-01-11 07:30:49,072", + "created": 1610346649.0728984, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "WARNING", "levelno": 30, - "lineno": 154, - "message": "SP server: Deleting existing callback '__callback_error__' for service_id (10) and data_id (0)!", + "lineno": 164, + "message": "prot-server: Deleting existing callback '__callback_error__' for service_id (10) and data_id (0)!", "module": "__init__", - "msecs": 400.73609352111816, + "msecs": 72.89838790893555, "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12101.078271865845, + "relativeCreated": 13722.440004348755, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 400.85792541503906, + "msecs": 73.05002212524414, "msg": "Removing the registered Callback", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12101.200103759766, + "relativeCreated": 13722.591638565063, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00012183189392089844 + "time_consumption": 0.00015163421630859375 }, { "args": [], - "asctime": "2021-01-06 22:49:23,503", - "created": 1609969763.503587, + "asctime": "2021-01-11 07:30:49,274", + "created": 1610346649.2746415, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "specific_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 121, + "lineno": 122, "message": "Transfering data", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:23,401", - "created": 1609969763.401064, + "asctime": "2021-01-11 07:30:49,073", + "created": 1610346649.073375, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 438, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 401.0639190673828, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 73.37498664855957, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12101.40609741211, + "relativeCreated": 13722.916603088379, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,401", - "created": 1609969763.4013755, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "test_helpers", - "msecs": 401.37553215026855, - "msg": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12101.717710494995, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,401", - "created": 1609969763.4015777, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "test_helpers", - "msecs": 401.5777111053467, - "msg": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12101.919889450073, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2021-01-11 07:30:49,074", + "created": 1610346649.0748317, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 74.83172416687012, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13724.37334060669, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2021-01-11 07:30:49,083", + "created": 1610346649.083274, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 83.27388763427734, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13732.815504074097, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,083", + "created": 1610346649.0835085, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 83.50849151611328, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13733.050107955933, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:49,083", + "created": 1610346649.0836234, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 83.62340927124023, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13733.16502571106, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,083", + "created": 1610346649.0837607, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 83.76073837280273, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13733.302354812622, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,083", + "created": 1610346649.0838604, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 83.86039733886719, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13733.402013778687, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,083", + "created": 1610346649.0839992, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 83.9991569519043, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13733.540773391724, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,084", + "created": 1610346649.0840886, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 84.08856391906738, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13733.630180358887, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,084", + "created": 1610346649.0842147, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 84.21468734741211, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13733.756303787231, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,084", + "created": 1610346649.084314, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 84.31410789489746, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13733.855724334717, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,084", + "created": 1610346649.084438, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 84.43808555603027, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13733.97970199585, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,084", + "created": 1610346649.0845263, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 84.52630043029785, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13734.067916870117, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-client:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:49,084", + "created": 1610346649.0846884, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 84.68842506408691, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13734.230041503906, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "comm-server:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:49,085", + "created": 1610346649.0855637, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 85.56365966796875, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13735.105276107788, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,085", + "created": 1610346649.085731, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 85.73102951049805, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13735.272645950317, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:49,085", + "created": 1610346649.0858438, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 85.84380149841309, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13735.385417938232, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "STP:", + "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" + ], + "asctime": "2021-01-11 07:30:49,086", + "created": 1610346649.0860088, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", + "module": "stp", + "msecs": 86.00878715515137, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13735.55040359497, + "stack_info": null, + "thread": 140561184974592, + "threadName": "Thread-19" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:23,401", - "created": 1609969763.4018252, + "asctime": "2021-01-11 07:30:49,086", + "created": 1610346649.0862646, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 438, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 401.8251895904541, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 86.26461029052734, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12102.16736793518, + "relativeCreated": 13735.806226730347, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561184974592, + "threadName": "Thread-19" }, { "args": [ - "SP server:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:23,401", - "created": 1609969763.4019735, + "asctime": "2021-01-11 07:30:49,086", + "created": 1610346649.0863905, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 460, - "message": "SP server: RX <- Message with no registered callback. Sending negative response.", + "lineno": 474, + "message": "prot-server: Incomming message with no registered callback. Sending negative response.", "module": "__init__", - "msecs": 401.9734859466553, - "msg": "%s RX <- Message with no registered callback. Sending negative response.", + "msecs": 86.39049530029297, + "msg": "%s Incomming message with no registered callback. Sending negative response.", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12102.315664291382, + "relativeCreated": 13735.932111740112, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561184974592, + "threadName": "Thread-19" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: read data response, data_id: 0", - "status: no callback for service, data buffered.", + "status: no callback for service, data buffered", "None" ], - "asctime": "2021-01-06 22:49:23,402", - "created": 1609969763.402127, + "asctime": "2021-01-11 07:30:49,086", + "created": 1610346649.0865562, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: read data response, data_id: 0, status: no callback for service, data buffered., data: \"None\"", - "module": "__init__", - "msecs": 402.1270275115967, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12102.469205856323, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,402", - "created": 1609969763.4024162, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 88 6a 33 01", - "module": "test_helpers", - "msecs": 402.4162292480469, - "msg": "Send data: (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 88 6a 33 01", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12102.758407592773, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,402", - "created": 1609969763.4026155, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 88 6a 33 01", - "module": "test_helpers", - "msecs": 402.6155471801758, - "msg": "Receive data (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 88 6a 33 01", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12102.957725524902, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: read data response, data_id: 0", - "status: no callback for service, data buffered.", - "None" - ], - "asctime": "2021-01-06 22:49:23,402", - "created": 1609969763.4028344, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: read data response, data_id: 0, status: no callback for service, data buffered., data: \"None\"", - "module": "__init__", - "msecs": 402.834415435791, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12103.176593780518, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "status: no callback for service, data buffered." - ], - "asctime": "2021-01-06 22:49:23,402", - "created": 1609969763.402964, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: no callback for service, data buffered.", + "lineno": 438, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: no callback for service, data buffered, data: \"None\"", "module": "__init__", - "msecs": 402.96411514282227, - "msg": "%s RX <- Message has a peculiar status: %s", + "msecs": 86.55619621276855, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12103.306293487549, + "relativeCreated": 13736.097812652588, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561184974592, + "threadName": "Thread-19" }, { "args": [ - "SP client:" + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c" ], - "asctime": "2021-01-06 22:49:23,403", - "created": 1609969763.403122, + "asctime": "2021-01-11 07:30:49,087", + "created": 1610346649.0871165, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c", + "module": "__init__", + "msecs": 87.11647987365723, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13736.658096313477, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c" + ], + "asctime": "2021-01-11 07:30:49,095", + "created": 1610346649.0955007, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c", + "module": "__init__", + "msecs": 95.50070762634277, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13745.042324066162, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,095", + "created": 1610346649.0956993, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 95.69931030273438, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13745.240926742554, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:49,095", + "created": 1610346649.0958264, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 95.82638740539551, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13745.368003845215, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,095", + "created": 1610346649.0959609, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 95.96085548400879, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13745.502471923828, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,096", + "created": 1610346649.0960674, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 96.06742858886719, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13745.609045028687, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,096", + "created": 1610346649.0962124, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 96.21238708496094, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13745.75400352478, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,096", + "created": 1610346649.096304, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 96.30393981933594, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13745.845556259155, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,096", + "created": 1610346649.0964284, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 96.42839431762695, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13745.970010757446, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,096", + "created": 1610346649.0965166, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 96.51660919189453, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13746.058225631714, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,096", + "created": 1610346649.0966322, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 96.63224220275879, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13746.173858642578, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:49,096", + "created": 1610346649.0967202, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 96.72021865844727, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13746.261835098267, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-server:", + "(7): 7d 88 6a 33 01 3a 3e" + ], + "asctime": "2021-01-11 07:30:49,096", + "created": 1610346649.0968888, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (7): 7d 88 6a 33 01 3a 3e", + "module": "__init__", + "msecs": 96.88878059387207, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13746.430397033691, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "comm-client:", + "(7): 7d 88 6a 33 01 3a 3e" + ], + "asctime": "2021-01-11 07:30:49,098", + "created": 1610346649.0980036, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (7): 7d 88 6a 33 01 3a 3e", + "module": "__init__", + "msecs": 98.00362586975098, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13747.54524230957, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:49,098", + "created": 1610346649.0981724, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 98.17242622375488, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13747.714042663574, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:49,098", + "created": 1610346649.0982869, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 98.28686714172363, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13747.828483581543, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "STP:", + "(63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 88 6a 33 01" + ], + "asctime": "2021-01-11 07:30:49,098", + "created": 1610346649.0984523, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 88 6a 33 01", + "module": "stp", + "msecs": 98.45232963562012, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13747.99394607544, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: read data response, data_id: 0", + "status: no callback for service, data buffered", + "None" + ], + "asctime": "2021-01-11 07:30:49,098", + "created": 1610346649.0987093, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "WARNING", + "levelno": 30, + "lineno": 438, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: no callback for service, data buffered, data: \"None\"", + "module": "__init__", + "msecs": 98.7093448638916, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 13748.250961303711, + "stack_info": null, + "thread": 140561176581888, + "threadName": "Thread-20" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:49,098", + "created": 1610346649.0988634, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 403.1219482421875, + "msecs": 98.86336326599121, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12103.464126586914, + "relativeCreated": 13748.40497970581, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140561176581888, + "threadName": "Thread-20" } ], - "msecs": 503.587007522583, + "msecs": 274.6415138244629, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12203.92918586731, + "relativeCreated": 13924.183130264282, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.10046505928039551 + "time_consumption": 0.17577815055847168 }, { "args": [ "None", "" ], - "asctime": "2021-01-06 22:49:23,504", - "created": 1609969763.5043426, + "asctime": "2021-01-11 07:30:49,275", + "created": 1610346649.2755506, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -89244,8 +193820,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:23,503", - "created": 1609969763.5039992, + "asctime": "2021-01-11 07:30:49,275", + "created": 1610346649.2751596, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -89255,15 +193831,15 @@ "lineno": 22, "message": "Result (Message stored inside callback): None ()", "module": "test", - "msecs": 503.9992332458496, + "msecs": 275.1595973968506, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12204.341411590576, + "relativeCreated": 13924.70121383667, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -89272,8 +193848,8 @@ "None", "" ], - "asctime": "2021-01-06 22:49:23,504", - "created": 1609969763.5041802, + "asctime": "2021-01-11 07:30:49,275", + "created": 1610346649.2753453, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -89283,37 +193859,37 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = None ()", "module": "test", - "msecs": 504.1801929473877, + "msecs": 275.3453254699707, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12204.522371292114, + "relativeCreated": 13924.88694190979, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 504.34255599975586, + "msecs": 275.55060386657715, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12204.684734344482, + "relativeCreated": 13925.092220306396, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00016236305236816406 + "time_consumption": 0.0002052783966064453 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 1, 'data': None}", "" ], - "asctime": "2021-01-06 22:49:23,504", - "created": 1609969763.5048912, + "asctime": "2021-01-11 07:30:49,276", + "created": 1610346649.2761447, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -89330,8 +193906,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 1, 'data': None}", "" ], - "asctime": "2021-01-06 22:49:23,504", - "created": 1609969763.5045855, + "asctime": "2021-01-11 07:30:49,275", + "created": 1610346649.275808, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -89341,15 +193917,15 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 1, 'data': None} ()", "module": "test", - "msecs": 504.58550453186035, + "msecs": 275.80809593200684, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12204.927682876587, + "relativeCreated": 13925.349712371826, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -89358,8 +193934,8 @@ "{'data': None, 'data_id': 0, 'service_id': 11, 'status': 1}", "" ], - "asctime": "2021-01-06 22:49:23,504", - "created": 1609969763.5047414, + "asctime": "2021-01-11 07:30:49,275", + "created": 1610346649.2759826, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -89369,41 +193945,41 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'data': None, 'data_id': 0, 'service_id': 11, 'status': 1} ()", "module": "test", - "msecs": 504.7414302825928, + "msecs": 275.9826183319092, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12205.08360862732, + "relativeCreated": 13925.524234771729, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 504.89115715026855, + "msecs": 276.14474296569824, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12205.233335494995, + "relativeCreated": 13925.686359405518, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00014972686767578125 + "time_consumption": 0.0001621246337890625 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.31252360343933105, - "time_finished": "2021-01-06 22:49:23,504", - "time_start": "2021-01-06 22:49:23,192" + "time_consumption": 0.964562177658081, + "time_finished": "2021-01-11 07:30:49,276", + "time_start": "2021-01-11 07:30:48,311" }, "_tb5akE4LEeupHeIYRnC0qw": { "args": null, - "asctime": "2021-01-06 22:49:23,835", - "created": 1609969763.835561, + "asctime": "2021-01-11 07:30:50,944", + "created": 1610346650.944848, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -89414,1592 +193990,3795 @@ "message": "_tb5akE4LEeupHeIYRnC0qw", "module": "__init__", "moduleLogger": [], - "msecs": 835.5610370635986, + "msecs": 944.8480606079102, "msg": "_tb5akE4LEeupHeIYRnC0qw", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12535.903215408325, + "relativeCreated": 15594.38967704773, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-01-06 22:49:23,839", - "created": 1609969763.8392131, + "asctime": "2021-01-11 07:30:50,952", + "created": 1610346650.9527605, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", "levelname": "DEBUG", "levelno": 10, - "lineno": 98, + "lineno": 44, "message": "Setting up communication", "module": "test_helpers", "moduleLogger": [ { "args": [ - "SP server:" + "comm-client:" ], - "asctime": "2021-01-06 22:49:23,835", - "created": 1609969763.8357806, + "asctime": "2021-01-11 07:30:50,945", + "created": 1610346650.9458058, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP server: Cleaning up receive-buffer", + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 835.7806205749512, + "msecs": 945.8057880401611, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12536.122798919678, + "relativeCreated": 15595.34740447998, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "authentification request", - "authentification response" + "comm-server:" ], - "asctime": "2021-01-06 22:49:23,835", - "created": 1609969763.8358834, + "asctime": "2021-01-11 07:30:50,946", + "created": 1610346650.946517, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "add_service", + "funcName": "__clean_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 835.883378982544, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 946.5169906616211, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12536.22555732727, + "relativeCreated": 15596.05860710144, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", - "service: authentification request, data_id: seed" + "comm-server:" ], - "asctime": "2021-01-06 22:49:23,836", - "created": 1609969763.8360019, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 836.0018730163574, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12536.344051361084, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-01-06 22:49:23,836", - "created": 1609969763.836085, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 836.0850811004639, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12536.42725944519, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-01-06 22:49:23,836", - "created": 1609969763.8361707, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 836.1706733703613, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12536.512851715088, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-01-06 22:49:23,836", - "created": 1609969763.83625, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 836.2500667572021, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12536.592245101929, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-01-06 22:49:23,836", - "created": 1609969763.8363428, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 836.3428115844727, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12536.6849899292, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-01-06 22:49:23,836", - "created": 1609969763.83643, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 836.4300727844238, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12536.77225112915, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-01-06 22:49:23,836", - "created": 1609969763.8365135, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 836.5135192871094, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12536.855697631836, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-01-06 22:49:23,836", - "created": 1609969763.8365982, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 836.5981578826904, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12536.940336227417, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:23,836", - "created": 1609969763.8366735, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 363, - "message": "SP server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 836.6734981536865, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12537.015676498413, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-01-06 22:49:23,836", - "created": 1609969763.8367658, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 836.7657661437988, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12537.107944488525, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-01-06 22:49:23,836", - "created": 1609969763.8368638, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 836.8637561798096, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12537.205934524536, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-01-06 22:49:23,836", - "created": 1609969763.8369424, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 539, - "message": "SP server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 836.9424343109131, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12537.28461265564, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-01-06 22:49:23,837", - "created": 1609969763.8370228, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 837.0227813720703, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12537.364959716797, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-01-06 22:49:23,837", - "created": 1609969763.837105, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 837.1050357818604, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12537.447214126587, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "read data request", - "read data response" - ], - "asctime": "2021-01-06 22:49:23,837", - "created": 1609969763.837191, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 837.191104888916, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12537.533283233643, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "write data request", - "write data response" - ], - "asctime": "2021-01-06 22:49:23,837", - "created": 1609969763.8372698, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 837.2697830200195, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12537.611961364746, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:", - "execute request", - "execute response" - ], - "asctime": "2021-01-06 22:49:23,837", - "created": 1609969763.8373456, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 562, - "message": "SP server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 837.3456001281738, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12537.6877784729, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP server:" - ], - "asctime": "2021-01-06 22:49:23,837", - "created": 1609969763.8374207, + "asctime": "2021-01-11 07:30:50,946", + "created": 1610346650.9466865, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP server: Initialisation finished.", + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 837.4207019805908, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "msecs": 946.6865062713623, + "msg": "%s Waiting for incomming connection", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12537.762880325317, + "relativeCreated": 15596.228122711182, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:23,837", - "created": 1609969763.837565, + "asctime": "2021-01-11 07:30:50,946", + "created": 1610346650.9469936, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 417, - "message": "SP client: Cleaning up receive-buffer", + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 837.5649452209473, + "msecs": 946.9935894012451, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12537.907123565674, + "relativeCreated": 15596.535205841064, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "authentification request", "authentification response" ], - "asctime": "2021-01-06 22:49:23,837", - "created": 1609969763.8376489, + "asctime": "2021-01-11 07:30:50,947", + "created": 1610346650.9471424, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=authentification request and Response=authentification response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 837.648868560791, + "msecs": 947.1423625946045, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12537.991046905518, + "relativeCreated": 15596.683979034424, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-01-06 22:49:23,837", - "created": 1609969763.8377547, + "asctime": "2021-01-11 07:30:50,947", + "created": 1610346650.9473443, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 837.7547264099121, + "msecs": 947.3443031311035, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12538.096904754639, + "relativeCreated": 15596.885919570923, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-01-06 22:49:23,837", - "created": 1609969763.8378553, + "asctime": "2021-01-11 07:30:50,947", + "created": 1610346650.9474735, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 837.855339050293, + "msecs": 947.4735260009766, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12538.19751739502, + "relativeCreated": 15597.015142440796, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-01-06 22:49:23,837", - "created": 1609969763.8379385, + "asctime": "2021-01-11 07:30:50,947", + "created": 1610346650.9476001, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 837.9385471343994, + "msecs": 947.6001262664795, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12538.280725479126, + "relativeCreated": 15597.141742706299, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-01-06 22:49:23,838", - "created": 1609969763.8380134, + "asctime": "2021-01-11 07:30:50,947", + "created": 1610346650.9477167, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 838.0134105682373, + "msecs": 947.7167129516602, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12538.355588912964, + "relativeCreated": 15597.25832939148, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_seed__'", "0", "0" ], - "asctime": "2021-01-06 22:49:23,838", - "created": 1609969763.8380928, + "asctime": "2021-01-11 07:30:50,947", + "created": 1610346650.9478567, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 838.0928039550781, + "msecs": 947.8566646575928, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12538.434982299805, + "relativeCreated": 15597.398281097412, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_create_key__'", "1", "0" ], - "asctime": "2021-01-06 22:49:23,838", - "created": 1609969763.838175, + "asctime": "2021-01-11 07:30:50,947", + "created": 1610346650.9479926, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 838.1750583648682, + "msecs": 947.9925632476807, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12538.517236709595, + "relativeCreated": 15597.5341796875, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_check_key__'", "0", "1" ], - "asctime": "2021-01-06 22:49:23,838", - "created": 1609969763.8382688, + "asctime": "2021-01-11 07:30:50,948", + "created": 1610346650.9481268, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 838.2687568664551, + "msecs": 948.1267929077148, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12538.610935211182, + "relativeCreated": 15597.668409347534, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__authentificate_process_feedback__'", "1", "1" ], - "asctime": "2021-01-06 22:49:23,838", - "created": 1609969763.8383493, + "asctime": "2021-01-11 07:30:50,948", + "created": 1610346650.948255, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "lineno": 170, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 838.3493423461914, + "msecs": 948.2550621032715, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12538.691520690918, + "relativeCreated": 15597.79667854309, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:23,838", - "created": 1609969763.8384218, + "asctime": "2021-01-11 07:30:50,948", + "created": 1610346650.9483683, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 363, - "message": "SP client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "lineno": 373, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 838.4218215942383, + "msecs": 948.3683109283447, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12538.763999938965, + "relativeCreated": 15597.909927368164, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "channel name request", "channel name response" ], - "asctime": "2021-01-06 22:49:23,838", - "created": 1609969763.8385031, + "asctime": "2021-01-11 07:30:50,948", + "created": 1610346650.948794, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=channel name request and Response=channel name response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 838.5031223297119, + "msecs": 948.793888092041, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12538.845300674438, + "relativeCreated": 15598.33550453186, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-01-06 22:49:23,838", - "created": 1609969763.8385897, + "asctime": "2021-01-11 07:30:50,948", + "created": 1610346650.9489586, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 838.5896682739258, + "msecs": 948.9586353302002, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12538.931846618652, + "relativeCreated": 15598.50025177002, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-01-06 22:49:23,838", - "created": 1609969763.8386726, + "asctime": "2021-01-11 07:30:50,949", + "created": 1610346650.9490788, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", "levelname": "DEBUG", "levelno": 10, - "lineno": 539, - "message": "SP client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "lineno": 556, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 838.6726379394531, + "msecs": 949.0787982940674, "msg": "%s Adding Message (%s) to the authentification whitelist", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12539.01481628418, + "relativeCreated": 15598.620414733887, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_request__'", "8", "0" ], - "asctime": "2021-01-06 22:49:23,838", - "created": 1609969763.8387518, + "asctime": "2021-01-11 07:30:50,949", + "created": 1610346650.9492078, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 838.7517929077148, + "msecs": 949.2077827453613, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12539.093971252441, + "relativeCreated": 15598.74939918518, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "'__channel_name_response__'", "9", "0" ], - "asctime": "2021-01-06 22:49:23,838", - "created": 1609969763.8388326, + "asctime": "2021-01-11 07:30:50,949", + "created": 1610346650.949347, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 838.8326168060303, + "msecs": 949.3470191955566, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12539.174795150757, + "relativeCreated": 15598.888635635376, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "read data request", "read data response" ], - "asctime": "2021-01-06 22:49:23,838", - "created": 1609969763.8389182, + "asctime": "2021-01-11 07:30:50,949", + "created": 1610346650.949503, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=read data request and Response=read data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 838.9182090759277, + "msecs": 949.5029449462891, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12539.260387420654, + "relativeCreated": 15599.044561386108, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "write data request", "write data response" ], - "asctime": "2021-01-06 22:49:23,838", - "created": 1609969763.8389933, + "asctime": "2021-01-11 07:30:50,949", + "created": 1610346650.9496236, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=write data request and Response=write data response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 838.9933109283447, + "msecs": 949.6235847473145, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12539.335489273071, + "relativeCreated": 15599.165201187134, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:", + "prot-server:", "execute request", "execute response" ], - "asctime": "2021-01-06 22:49:23,839", - "created": 1609969763.839066, + "asctime": "2021-01-11 07:30:50,949", + "created": 1610346650.949745, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 562, - "message": "SP client: Adding Service with Request=execute request and Response=execute response", + "lineno": 579, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 839.0660285949707, + "msecs": 949.7449398040771, "msg": "%s Adding Service with Request=%s and Response=%s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12539.408206939697, + "relativeCreated": 15599.286556243896, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP client:" + "prot-server:" ], - "asctime": "2021-01-06 22:49:23,839", - "created": 1609969763.839144, + "asctime": "2021-01-11 07:30:50,949", + "created": 1610346650.9498587, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 315, - "message": "SP client: Initialisation finished.", + "lineno": 325, + "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 839.1439914703369, + "msecs": 949.8586654663086, "msg": "%s Initialisation finished.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12539.486169815063, + "relativeCreated": 15599.400281906128, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:50,950", + "created": 1610346650.9500854, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 950.0854015350342, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15599.627017974854, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2021-01-11 07:30:50,950", + "created": 1610346650.9502127, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 950.2127170562744, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15599.754333496094, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2021-01-11 07:30:50,950", + "created": 1610346650.9503727, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 950.3726959228516, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15599.91431236267, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2021-01-11 07:30:50,950", + "created": 1610346650.9504926, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 950.4926204681396, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15600.034236907959, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2021-01-11 07:30:50,950", + "created": 1610346650.9506376, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 950.6375789642334, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15600.179195404053, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2021-01-11 07:30:50,950", + "created": 1610346650.9508126, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 950.812578201294, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15600.354194641113, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2021-01-11 07:30:50,950", + "created": 1610346650.9509377, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 950.9377479553223, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15600.479364395142, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2021-01-11 07:30:50,951", + "created": 1610346650.9510639, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 951.063871383667, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15600.605487823486, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2021-01-11 07:30:50,951", + "created": 1610346650.9511867, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 951.1866569519043, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15600.728273391724, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2021-01-11 07:30:50,951", + "created": 1610346650.951308, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 951.308012008667, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15600.849628448486, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:50,951", + "created": 1610346650.951418, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 373, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 951.4179229736328, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15600.959539413452, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2021-01-11 07:30:50,951", + "created": 1610346650.9515417, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 951.5416622161865, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15601.083278656006, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2021-01-11 07:30:50,951", + "created": 1610346650.9516726, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 951.6725540161133, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15601.214170455933, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2021-01-11 07:30:50,951", + "created": 1610346650.951789, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 556, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 951.7889022827148, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15601.330518722534, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2021-01-11 07:30:50,951", + "created": 1610346650.9519079, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 951.9078731536865, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15601.449489593506, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2021-01-11 07:30:50,952", + "created": 1610346650.9521618, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 170, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 952.1617889404297, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15601.703405380249, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2021-01-11 07:30:50,952", + "created": 1610346650.9523137, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 952.3136615753174, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15601.855278015137, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2021-01-11 07:30:50,952", + "created": 1610346650.9524279, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 952.427864074707, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15601.969480514526, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2021-01-11 07:30:50,952", + "created": 1610346650.952538, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 579, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 952.538013458252, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15602.079629898071, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:50,952", + "created": 1610346650.9526472, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 325, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 952.6472091674805, + "msg": "%s Initialisation finished.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15602.1888256073, + "stack_info": null, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 839.2131328582764, + "msecs": 952.7604579925537, "msg": "Setting up communication", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12539.555311203003, + "relativeCreated": 15602.302074432373, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 6.914138793945312e-05 + "time_consumption": 0.00011324882507324219 }, { "args": [], - "asctime": "2021-01-06 22:49:23,839", - "created": 1609969763.839738, + "asctime": "2021-01-11 07:30:51,297", + "created": 1610346651.2974973, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:50,952", + "created": 1610346650.9529984, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 952.9983997344971, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15602.540016174316, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2021-01-11 07:30:50,953", + "created": 1610346650.953115, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 953.1149864196777, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15602.656602859497, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:50,953", + "created": 1610346650.9532266, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 953.2265663146973, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15602.768182754517, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:50,953", + "created": 1610346650.953464, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 953.4640312194824, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15603.005647659302, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:50,953", + "created": 1610346650.9539354, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 953.9353847503662, + "msg": "%s Connection established...", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15603.477001190186, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2021-01-11 07:30:50,954", + "created": 1610346650.9540684, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 954.0684223175049, + "msg": "%s Cleaning up receive-buffer", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15603.610038757324, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2021-01-11 07:30:50,954", + "created": 1610346650.9541857, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 427, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 954.1857242584229, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15603.727340698242, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:50,954", + "created": 1610346650.9545126, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 954.5125961303711, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15604.05421257019, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:50,962", + "created": 1610346650.9629097, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 962.9096984863281, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15612.451314926147, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,963", + "created": 1610346650.963156, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 963.15598487854, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15612.69760131836, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:50,963", + "created": 1610346650.9632916, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 963.2916450500488, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15612.833261489868, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,963", + "created": 1610346650.9634778, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 963.4778499603271, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15613.019466400146, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,963", + "created": 1610346650.9636068, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 963.6068344116211, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15613.14845085144, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,963", + "created": 1610346650.9637735, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 963.7734889984131, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15613.315105438232, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,963", + "created": 1610346650.9638844, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 963.8843536376953, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15613.425970077515, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,964", + "created": 1610346650.9640288, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 964.0288352966309, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15613.57045173645, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,964", + "created": 1610346650.9641352, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 964.1351699829102, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15613.67678642273, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,964", + "created": 1610346650.9642763, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 964.2763137817383, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15613.817930221558, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,964", + "created": 1610346650.964383, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 964.3828868865967, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15613.924503326416, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:50,964", + "created": 1610346650.9645958, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 964.5957946777344, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15614.137411117554, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2021-01-11 07:30:50,965", + "created": 1610346650.9655576, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 965.5575752258301, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15615.09919166565, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,965", + "created": 1610346650.9657562, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 965.7561779022217, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15615.297794342041, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:50,965", + "created": 1610346650.9659047, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 965.904712677002, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15615.446329116821, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b" + ], + "asctime": "2021-01-11 07:30:50,966", + "created": 1610346650.9661028, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 53 5e 67 0b", + "module": "stp", + "msecs": 966.1028385162354, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15615.644454956055, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:50,966", + "created": 1610346650.9664297, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 966.4297103881836, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15615.971326828003, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2021-01-11 07:30:50,966", + "created": 1610346650.966581, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 479, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 966.5811061859131, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15616.122722625732, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:50,966", + "created": 1610346650.9668083, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 966.8083190917969, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15616.349935531616, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:50,967", + "created": 1610346650.9676301, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 967.63014793396, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15617.17176437378, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2021-01-11 07:30:50,976", + "created": 1610346650.9760644, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 976.0644435882568, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15625.606060028076, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,976", + "created": 1610346650.9763107, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 976.3107299804688, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15625.852346420288, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:50,976", + "created": 1610346650.9764447, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 976.4447212219238, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15625.986337661743, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,976", + "created": 1610346650.976634, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 976.6340255737305, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15626.17564201355, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,976", + "created": 1610346650.9767494, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 976.7494201660156, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15626.291036605835, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,976", + "created": 1610346650.9769163, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 976.9163131713867, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15626.457929611206, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,977", + "created": 1610346650.9770243, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 977.0243167877197, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15626.565933227539, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,977", + "created": 1610346650.9771705, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 977.170467376709, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15626.712083816528, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,977", + "created": 1610346650.977281, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 977.2810935974121, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15626.822710037231, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,977", + "created": 1610346650.977419, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 977.4188995361328, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15626.960515975952, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:50,977", + "created": 1610346650.9775505, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 977.5505065917969, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15627.092123031616, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:50,977", + "created": 1610346650.977766, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 977.7660369873047, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15627.307653427124, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2021-01-11 07:30:50,978", + "created": 1610346650.9788554, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 978.8553714752197, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15628.396987915039, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:50,979", + "created": 1610346650.9791193, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 979.1193008422852, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15628.660917282104, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:50,979", + "created": 1610346650.9792569, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 979.2568683624268, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15628.798484802246, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f" + ], + "asctime": "2021-01-11 07:30:50,979", + "created": 1610346650.9794862, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 30 59 be 2f", + "module": "stp", + "msecs": 979.4862270355225, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15629.027843475342, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2021-01-11 07:30:50,979", + "created": 1610346650.9797957, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 438, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 979.7956943511963, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15629.337310791016, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2021-01-11 07:30:50,979", + "created": 1610346650.9799633, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 492, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 979.9633026123047, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15629.504919052124, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + } + ], + "msecs": 297.4972724914551, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "src/tests/test_helpers.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15947.038888931274, + "stack_info": null, + "thread": 140562528749376, + "threadName": "MainThread", + "time_consumption": 0.3175339698791504 + }, + { + "args": [], + "asctime": "2021-01-11 07:30:51,298", + "created": 1610346651.2987761, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 175, "message": "Registering all kind of Callbacks", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "'__callback3__'", "None", "None" ], - "asctime": "2021-01-06 22:49:23,839", - "created": 1609969763.8393815, + "asctime": "2021-01-11 07:30:51,298", + "created": 1610346651.2980475, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__callback3__' for SID=None and DID=None", + "lineno": 170, + "message": "prot-server: Adding callback '__callback3__' for SID=None and DID=None", "module": "__init__", - "msecs": 839.3814563751221, + "msecs": 298.0475425720215, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12539.723634719849, + "relativeCreated": 15947.58915901184, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "prot-server:", "'__callback2__'", "None", "0" ], - "asctime": "2021-01-06 22:49:23,839", - "created": 1609969763.8394778, + "asctime": "2021-01-11 07:30:51,298", + "created": 1610346651.298273, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__callback2__' for SID=None and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__callback2__' for SID=None and DID=0", "module": "__init__", - "msecs": 839.4777774810791, + "msecs": 298.27308654785156, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12539.819955825806, + "relativeCreated": 15947.81470298767, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "prot-server:", "'__callback1__'", "10", "None" ], - "asctime": "2021-01-06 22:49:23,839", - "created": 1609969763.8395755, + "asctime": "2021-01-11 07:30:51,298", + "created": 1610346651.2984605, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__callback1__' for SID=10 and DID=None", + "lineno": 170, + "message": "prot-server: Adding callback '__callback1__' for SID=10 and DID=None", "module": "__init__", - "msecs": 839.5755290985107, + "msecs": 298.4604835510254, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12539.917707443237, + "relativeCreated": 15948.002099990845, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "prot-server:", "'__callback__'", "10", "0" ], - "asctime": "2021-01-06 22:49:23,839", - "created": 1609969763.8396657, + "asctime": "2021-01-11 07:30:51,298", + "created": 1610346651.298636, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 160, - "message": "SP server: Adding callback '__callback__' for SID=10 and DID=0", + "lineno": 170, + "message": "prot-server: Adding callback '__callback__' for SID=10 and DID=0", "module": "__init__", - "msecs": 839.6656513214111, + "msecs": 298.63595962524414, "msg": "%s Adding callback %s for SID=%s and DID=%s", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12540.007829666138, + "relativeCreated": 15948.177576065063, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 839.7378921508789, + "msecs": 298.77614974975586, "msg": "Registering all kind of Callbacks", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12540.080070495605, + "relativeCreated": 15948.317766189575, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 7.224082946777344e-05 + "time_consumption": 0.00014019012451171875 }, { "args": [], - "asctime": "2021-01-06 22:49:23,941", - "created": 1609969763.9414227, + "asctime": "2021-01-11 07:30:51,500", + "created": 1610346651.500497, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 178, + "lineno": 179, "message": "Transfering data", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:23,839", - "created": 1609969763.8398778, + "asctime": "2021-01-11 07:30:51,299", + "created": 1610346651.299108, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 438, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 839.8778438568115, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 299.10802841186523, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12540.220022201538, + "relativeCreated": 15948.649644851685, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,840", - "created": 1609969763.8400953, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "test_helpers", - "msecs": 840.0952816009521, - "msg": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12540.437459945679, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,840", - "created": 1609969763.840236, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "test_helpers", - "msecs": 840.2359485626221, - "msg": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12540.578126907349, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2021-01-11 07:30:51,300", + "created": 1610346651.300156, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 300.1561164855957, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15949.697732925415, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2021-01-11 07:30:51,308", + "created": 1610346651.3086936, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 308.69364738464355, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15958.235263824463, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,308", + "created": 1610346651.3089893, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 308.9892864227295, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15958.530902862549, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:51,309", + "created": 1610346651.309155, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 309.1549873352051, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15958.696603775024, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,309", + "created": 1610346651.3093584, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 309.3583583831787, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15958.899974822998, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,309", + "created": 1610346651.3095422, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 309.542179107666, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15959.083795547485, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,309", + "created": 1610346651.3097773, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 309.77725982666016, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15959.31887626648, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,309", + "created": 1610346651.309917, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 309.9169731140137, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15959.458589553833, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,310", + "created": 1610346651.310111, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 310.11104583740234, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15959.652662277222, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,310", + "created": 1610346651.3102438, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 310.2438449859619, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15959.785461425781, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,310", + "created": 1610346651.3104177, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 310.41765213012695, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15959.959268569946, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,310", + "created": 1610346651.310549, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 310.5490207672119, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15960.090637207031, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-client:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:51,310", + "created": 1610346651.310799, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 310.79888343811035, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15960.34049987793, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:51,311", + "created": 1610346651.3116958, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 311.69581413269043, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15961.23743057251, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,311", + "created": 1610346651.3118784, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 311.8784427642822, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15961.420059204102, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:51,312", + "created": 1610346651.3120146, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 312.0145797729492, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15961.556196212769, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" + ], + "asctime": "2021-01-11 07:30:51,312", + "created": 1610346651.3122551, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", + "module": "stp", + "msecs": 312.2551441192627, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15961.796760559082, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:23,840", - "created": 1609969763.8403888, + "asctime": "2021-01-11 07:30:51,312", + "created": 1610346651.3126338, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 438, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 840.3887748718262, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 312.633752822876, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12540.730953216553, + "relativeCreated": 15962.175369262695, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560639710976, + "threadName": "Thread-27" }, { "args": [ - "SP server:", + "prot-server:", "__callback__" ], - "asctime": "2021-01-06 22:49:23,840", - "created": 1609969763.8404832, + "asctime": "2021-01-11 07:30:51,312", + "created": 1610346651.312813, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __callback__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 840.4831886291504, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 312.81304359436035, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12540.825366973877, + "relativeCreated": 15962.35466003418, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560639710976, + "threadName": "Thread-27" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: read data response, data_id: 0", "status: okay", "33" ], - "asctime": "2021-01-06 22:49:23,840", - "created": 1609969763.8405852, + "asctime": "2021-01-11 07:30:51,313", + "created": 1610346651.3130488, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "lineno": 438, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 840.5852317810059, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 313.0488395690918, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12540.927410125732, + "relativeCreated": 15962.590456008911, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,840", - "created": 1609969763.8407636, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "module": "test_helpers", - "msecs": 840.7635688781738, - "msg": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12541.1057472229, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,840", - "created": 1609969763.8408964, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "module": "test_helpers", - "msecs": 840.8963680267334, - "msg": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12541.23854637146, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560639710976, + "threadName": "Thread-27" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" + ], + "asctime": "2021-01-11 07:30:51,313", + "created": 1610346651.3138583, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", + "module": "__init__", + "msecs": 313.8582706451416, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15963.399887084961, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" + ], + "asctime": "2021-01-11 07:30:51,322", + "created": 1610346651.3222625, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", + "module": "__init__", + "msecs": 322.2625255584717, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15971.804141998291, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,322", + "created": 1610346651.3225765, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 322.57652282714844, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15972.118139266968, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:51,322", + "created": 1610346651.3227432, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 322.74317741394043, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15972.28479385376, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,322", + "created": 1610346651.3229754, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 322.97539710998535, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15972.517013549805, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,323", + "created": 1610346651.3231225, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 323.122501373291, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15972.66411781311, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,323", + "created": 1610346651.3233387, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 323.33874702453613, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15972.880363464355, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,323", + "created": 1610346651.323475, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 323.4748840332031, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15973.016500473022, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,323", + "created": 1610346651.3236623, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 323.66228103637695, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15973.203897476196, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,323", + "created": 1610346651.3237963, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 323.79627227783203, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15973.337888717651, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,323", + "created": 1610346651.3239841, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 323.98414611816406, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15973.525762557983, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,324", + "created": 1610346651.3241189, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 324.11885261535645, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15973.660469055176, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-server:", + "(5): e1 8c bb 3a 3e" + ], + "asctime": "2021-01-11 07:30:51,324", + "created": 1610346651.32436, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (5): e1 8c bb 3a 3e", + "module": "__init__", + "msecs": 324.3598937988281, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15973.901510238647, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-client:", + "(5): e1 8c bb 3a 3e" + ], + "asctime": "2021-01-11 07:30:51,325", + "created": 1610346651.3253725, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (5): e1 8c bb 3a 3e", + "module": "__init__", + "msecs": 325.37245750427246, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15974.914073944092, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,325", + "created": 1610346651.3257215, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 325.72150230407715, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15975.263118743896, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:51,325", + "created": 1610346651.325896, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 325.8960247039795, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15975.437641143799, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb" + ], + "asctime": "2021-01-11 07:30:51,326", + "created": 1610346651.326143, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", + "module": "stp", + "msecs": 326.1430263519287, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 15975.684642791748, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: read data response, data_id: 0", "status: okay", "33" ], - "asctime": "2021-01-06 22:49:23,841", - "created": 1609969763.8410392, + "asctime": "2021-01-11 07:30:51,326", + "created": 1610346651.3265424, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "lineno": 438, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 841.0391807556152, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 326.5423774719238, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12541.381359100342, + "relativeCreated": 15976.083993911743, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560631318272, + "threadName": "Thread-28" }, { "args": [ - "SP client:" + "prot-client:" ], - "asctime": "2021-01-06 22:49:23,841", - "created": 1609969763.84115, + "asctime": "2021-01-11 07:30:51,326", + "created": 1610346651.3267906, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 841.1500453948975, + "msecs": 326.79057121276855, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12541.492223739624, + "relativeCreated": 15976.332187652588, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560631318272, + "threadName": "Thread-28" } ], - "msecs": 941.422700881958, + "msecs": 500.49710273742676, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12641.764879226685, + "relativeCreated": 16150.038719177246, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.10027265548706055 + "time_consumption": 0.1737065315246582 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-06 22:49:23,941", - "created": 1609969763.941682, + "asctime": "2021-01-11 07:30:51,501", + "created": 1610346651.501468, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -91016,8 +197795,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-06 22:49:23,941", - "created": 1609969763.9415874, + "asctime": "2021-01-11 07:30:51,501", + "created": 1610346651.5010471, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -91027,15 +197806,15 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 941.5874481201172, + "msecs": 501.04713439941406, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12641.929626464844, + "relativeCreated": 16150.588750839233, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -91044,8 +197823,8 @@ "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-01-06 22:49:23,941", - "created": 1609969763.9416373, + "asctime": "2021-01-11 07:30:51,501", + "created": 1610346651.501238, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -91055,37 +197834,37 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 941.6372776031494, + "msecs": 501.2381076812744, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12641.979455947876, + "relativeCreated": 16150.779724121094, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 941.6821002960205, + "msecs": 501.4679431915283, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12642.024278640747, + "relativeCreated": 16151.009559631348, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 4.482269287109375e-05 + "time_consumption": 0.00022983551025390625 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-01-06 22:49:23,941", - "created": 1609969763.9418497, + "asctime": "2021-01-11 07:30:51,502", + "created": 1610346651.502021, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -91102,8 +197881,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-01-06 22:49:23,941", - "created": 1609969763.9417534, + "asctime": "2021-01-11 07:30:51,501", + "created": 1610346651.5017238, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -91113,15 +197892,15 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} ()", "module": "test", - "msecs": 941.7533874511719, + "msecs": 501.7237663269043, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12642.095565795898, + "relativeCreated": 16151.265382766724, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -91130,8 +197909,8 @@ "{'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0}", "" ], - "asctime": "2021-01-06 22:49:23,941", - "created": 1609969763.9418094, + "asctime": "2021-01-11 07:30:51,501", + "created": 1610346651.5018756, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -91141,412 +197920,1223 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0} ()", "module": "test", - "msecs": 941.8094158172607, + "msecs": 501.875638961792, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12642.151594161987, + "relativeCreated": 16151.417255401611, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 941.8497085571289, + "msecs": 502.02107429504395, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12642.191886901855, + "relativeCreated": 16151.562690734863, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 4.029273986816406e-05 + "time_consumption": 0.00014543533325195312 }, { "args": [], - "asctime": "2021-01-06 22:49:23,941", - "created": 1609969763.941966, + "asctime": "2021-01-11 07:30:51,502", + "created": 1610346651.5024683, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 184, + "lineno": 185, "message": "Removing Callback for a specific Data- and Service-ID", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "'__callback__'", "10", "0" ], - "asctime": "2021-01-06 22:49:23,941", - "created": 1609969763.9419262, + "asctime": "2021-01-11 07:30:51,502", + "created": 1610346651.5023153, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "WARNING", "levelno": 30, - "lineno": 154, - "message": "SP server: Deleting existing callback '__callback__' for service_id (10) and data_id (0)!", + "lineno": 164, + "message": "prot-server: Deleting existing callback '__callback__' for service_id (10) and data_id (0)!", "module": "__init__", - "msecs": 941.9262409210205, + "msecs": 502.3152828216553, "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12642.268419265747, + "relativeCreated": 16151.856899261475, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 941.9660568237305, + "msecs": 502.4683475494385, "msg": "Removing Callback for a specific Data- and Service-ID", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12642.308235168457, + "relativeCreated": 16152.009963989258, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 3.981590270996094e-05 + "time_consumption": 0.00015306472778320312 }, { "args": [], - "asctime": "2021-01-06 22:49:24,043", - "created": 1609969764.0430546, + "asctime": "2021-01-11 07:30:51,704", + "created": 1610346651.7040865, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 187, + "lineno": 188, "message": "Transfering data", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:23,942", - "created": 1609969763.9420385, + "asctime": "2021-01-11 07:30:51,502", + "created": 1610346651.5027838, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 438, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 942.0385360717773, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 502.78377532958984, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12642.380714416504, + "relativeCreated": 16152.32539176941, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,942", - "created": 1609969763.9421513, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "test_helpers", - "msecs": 942.1513080596924, - "msg": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12642.493486404419, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,942", - "created": 1609969763.9422185, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "test_helpers", - "msecs": 942.218542098999, - "msg": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12642.560720443726, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2021-01-11 07:30:51,503", + "created": 1610346651.5039852, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 503.9851665496826, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16153.526782989502, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2021-01-11 07:30:51,512", + "created": 1610346651.5125103, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 512.5102996826172, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16162.051916122437, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,512", + "created": 1610346651.5128026, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 512.8026008605957, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16162.344217300415, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:51,512", + "created": 1610346651.5129921, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 512.9921436309814, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16162.5337600708, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,513", + "created": 1610346651.5132036, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 513.2036209106445, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16162.745237350464, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,513", + "created": 1610346651.5133455, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 513.34547996521, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16162.88709640503, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,513", + "created": 1610346651.5135863, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 513.5862827301025, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16163.127899169922, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,513", + "created": 1610346651.5137274, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 513.7274265289307, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16163.26904296875, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,513", + "created": 1610346651.5139198, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 513.9198303222656, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16163.461446762085, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,514", + "created": 1610346651.5140533, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 514.0533447265625, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16163.594961166382, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,514", + "created": 1610346651.514231, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 514.2309665679932, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16163.772583007812, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,514", + "created": 1610346651.5143642, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 514.3642425537109, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16163.90585899353, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-client:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:51,514", + "created": 1610346651.5146055, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 514.6055221557617, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16164.147138595581, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:51,515", + "created": 1610346651.515565, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 515.5649185180664, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16165.106534957886, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,515", + "created": 1610346651.515777, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 515.7771110534668, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16165.318727493286, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:51,515", + "created": 1610346651.5159116, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 515.9115791320801, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16165.4531955719, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" + ], + "asctime": "2021-01-11 07:30:51,516", + "created": 1610346651.5161078, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", + "module": "stp", + "msecs": 516.1077976226807, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16165.6494140625, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:23,942", - "created": 1609969763.9422965, + "asctime": "2021-01-11 07:30:51,516", + "created": 1610346651.5164356, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 438, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 942.2965049743652, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 516.4356231689453, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12642.638683319092, + "relativeCreated": 16165.977239608765, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560639710976, + "threadName": "Thread-27" }, { "args": [ - "SP server:", + "prot-server:", "__callback1__" ], - "asctime": "2021-01-06 22:49:23,942", - "created": 1609969763.9423444, + "asctime": "2021-01-11 07:30:51,516", + "created": 1610346651.5165868, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __callback1__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __callback1__ to process received data", "module": "__init__", - "msecs": 942.3444271087646, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 516.5867805480957, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12642.686605453491, + "relativeCreated": 16166.128396987915, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560639710976, + "threadName": "Thread-27" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: read data response, data_id: 0", "status: operation not permitted", "34" ], - "asctime": "2021-01-06 22:49:23,942", - "created": 1609969763.9423952, + "asctime": "2021-01-11 07:30:51,516", + "created": 1610346651.5167994, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: read data response, data_id: 0, status: operation not permitted, data: \"34\"", - "module": "__init__", - "msecs": 942.3952102661133, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12642.73738861084, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,942", - "created": 1609969763.9424856, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 33 34 7d 53 62 51 ca", - "module": "test_helpers", - "msecs": 942.4855709075928, - "msg": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 33 34 7d 53 62 51 ca", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12642.82774925232, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:23,942", - "created": 1609969763.9425519, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 33 34 7d 53 62 51 ca", - "module": "test_helpers", - "msecs": 942.551851272583, - "msg": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 33 34 7d 53 62 51 ca", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12642.89402961731, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: read data response, data_id: 0", - "status: operation not permitted", - "34" - ], - "asctime": "2021-01-06 22:49:23,942", - "created": 1609969763.9426188, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: read data response, data_id: 0, status: operation not permitted, data: \"34\"", - "module": "__init__", - "msecs": 942.6188468933105, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12642.961025238037, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "status: operation not permitted" - ], - "asctime": "2021-01-06 22:49:23,942", - "created": 1609969763.9426663, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: operation not permitted", + "lineno": 438, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: operation not permitted, data: \"34\"", "module": "__init__", - "msecs": 942.6662921905518, - "msg": "%s RX <- Message has a peculiar status: %s", + "msecs": 516.7994499206543, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12643.008470535278, + "relativeCreated": 16166.341066360474, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560639710976, + "threadName": "Thread-27" }, { "args": [ - "SP client:" + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 7d 53" ], - "asctime": "2021-01-06 22:49:23,942", - "created": 1609969763.942741, + "asctime": "2021-01-11 07:30:51,517", + "created": 1610346651.5174704, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 7d 53", + "module": "__init__", + "msecs": 517.4703598022461, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16167.011976242065, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 7d 53" + ], + "asctime": "2021-01-11 07:30:51,525", + "created": 1610346651.5257475, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 7d 53", + "module": "__init__", + "msecs": 525.747537612915, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16175.289154052734, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,525", + "created": 1610346651.5259874, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 525.9873867034912, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16175.52900314331, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:51,526", + "created": 1610346651.5261202, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 526.1201858520508, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16175.66180229187, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,526", + "created": 1610346651.526281, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 526.2811183929443, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16175.822734832764, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,526", + "created": 1610346651.5264223, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 526.4222621917725, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16175.963878631592, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,526", + "created": 1610346651.5266018, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 526.6017913818359, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16176.143407821655, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,526", + "created": 1610346651.5267122, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 526.71217918396, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16176.25379562378, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,526", + "created": 1610346651.5268621, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 526.8621444702148, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16176.403760910034, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,526", + "created": 1610346651.526968, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 526.9680023193359, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16176.509618759155, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,527", + "created": 1610346651.5271082, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 527.1081924438477, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16176.649808883667, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,527", + "created": 1610346651.5272117, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 527.2116661071777, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16176.753282546997, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-server:", + "(5): 62 51 ca 3a 3e" + ], + "asctime": "2021-01-11 07:30:51,527", + "created": 1610346651.5274143, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (5): 62 51 ca 3a 3e", + "module": "__init__", + "msecs": 527.4143218994141, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16176.955938339233, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-client:", + "(5): 62 51 ca 3a 3e" + ], + "asctime": "2021-01-11 07:30:51,528", + "created": 1610346651.5283115, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (5): 62 51 ca 3a 3e", + "module": "__init__", + "msecs": 528.3114910125732, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16177.853107452393, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,528", + "created": 1610346651.5285063, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 528.5062789916992, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16178.047895431519, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:51,528", + "created": 1610346651.5286415, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 528.6414623260498, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16178.18307876587, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 33 34 7d 53 62 51 ca" + ], + "asctime": "2021-01-11 07:30:51,528", + "created": 1610346651.5288372, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 33 34 7d 53 62 51 ca", + "module": "stp", + "msecs": 528.8372039794922, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16178.378820419312, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: read data response, data_id: 0", + "status: operation not permitted", + "34" + ], + "asctime": "2021-01-11 07:30:51,529", + "created": 1610346651.5291529, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "WARNING", + "levelno": 30, + "lineno": 438, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: operation not permitted, data: \"34\"", + "module": "__init__", + "msecs": 529.1528701782227, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16178.694486618042, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:51,529", + "created": 1610346651.5293453, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 942.7409172058105, + "msecs": 529.3452739715576, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12643.083095550537, + "relativeCreated": 16178.886890411377, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560631318272, + "threadName": "Thread-28" } ], - "msecs": 43.05458068847656, + "msecs": 704.0865421295166, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12743.396759033203, + "relativeCreated": 16353.628158569336, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.10031366348266602 + "time_consumption": 0.17474126815795898 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-06 22:49:24,043", - "created": 1609969764.0434809, + "asctime": "2021-01-11 07:30:51,704", + "created": 1610346651.7049809, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -91563,8 +199153,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-06 22:49:24,043", - "created": 1609969764.0432885, + "asctime": "2021-01-11 07:30:51,704", + "created": 1610346651.7046082, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -91574,15 +199164,15 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 43.288469314575195, + "msecs": 704.6082019805908, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12743.630647659302, + "relativeCreated": 16354.14981842041, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -91591,8 +199181,8 @@ "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-01-06 22:49:24,043", - "created": 1609969764.0433822, + "asctime": "2021-01-11 07:30:51,704", + "created": 1610346651.7048137, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -91602,37 +199192,37 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 43.38216781616211, + "msecs": 704.8137187957764, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12743.724346160889, + "relativeCreated": 16354.355335235596, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 43.480873107910156, + "msecs": 704.9808502197266, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12743.823051452637, + "relativeCreated": 16354.522466659546, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 9.870529174804688e-05 + "time_consumption": 0.0001671314239501953 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 6, 'data': 34}", "" ], - "asctime": "2021-01-06 22:49:24,043", - "created": 1609969764.0437605, + "asctime": "2021-01-11 07:30:51,705", + "created": 1610346651.7055807, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -91649,8 +199239,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 6, 'data': 34}", "" ], - "asctime": "2021-01-06 22:49:24,043", - "created": 1609969764.0436006, + "asctime": "2021-01-11 07:30:51,705", + "created": 1610346651.7052302, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -91660,15 +199250,15 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 6, 'data': 34} ()", "module": "test", - "msecs": 43.60055923461914, + "msecs": 705.2302360534668, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12743.942737579346, + "relativeCreated": 16354.771852493286, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -91677,8 +199267,8 @@ "{'data': 34, 'data_id': 0, 'service_id': 11, 'status': 6}", "" ], - "asctime": "2021-01-06 22:49:24,043", - "created": 1609969764.043681, + "asctime": "2021-01-11 07:30:51,705", + "created": 1610346651.7053905, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -91688,412 +199278,1223 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'data': 34, 'data_id': 0, 'service_id': 11, 'status': 6} ()", "module": "test", - "msecs": 43.68090629577637, + "msecs": 705.390453338623, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12744.023084640503, + "relativeCreated": 16354.932069778442, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 43.76053810119629, + "msecs": 705.5807113647461, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12744.102716445923, + "relativeCreated": 16355.122327804565, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 7.963180541992188e-05 + "time_consumption": 0.00019025802612304688 }, { "args": [], - "asctime": "2021-01-06 22:49:24,043", - "created": 1609969764.043978, + "asctime": "2021-01-11 07:30:51,706", + "created": 1610346651.7060804, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 193, + "lineno": 194, "message": "Removing Callback for a specific Service-ID and all Data-IDs", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "'__callback1__'", "10", "None" ], - "asctime": "2021-01-06 22:49:24,043", - "created": 1609969764.0438938, + "asctime": "2021-01-11 07:30:51,705", + "created": 1610346651.7058635, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "WARNING", "levelno": 30, - "lineno": 154, - "message": "SP server: Deleting existing callback '__callback1__' for service_id (10) and data_id (None)!", + "lineno": 164, + "message": "prot-server: Deleting existing callback '__callback1__' for service_id (10) and data_id (None)!", "module": "__init__", - "msecs": 43.89381408691406, + "msecs": 705.8634757995605, "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12744.23599243164, + "relativeCreated": 16355.40509223938, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 43.977975845336914, + "msecs": 706.080436706543, "msg": "Removing Callback for a specific Service-ID and all Data-IDs", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12744.320154190063, + "relativeCreated": 16355.622053146362, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 8.416175842285156e-05 + "time_consumption": 0.00021696090698242188 }, { "args": [], - "asctime": "2021-01-06 22:49:24,145", - "created": 1609969764.145824, + "asctime": "2021-01-11 07:30:51,907", + "created": 1610346651.9076762, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 196, + "lineno": 197, "message": "Transfering data", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:24,044", - "created": 1609969764.0441103, + "asctime": "2021-01-11 07:30:51,706", + "created": 1610346651.706412, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 438, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 44.11029815673828, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 706.4120769500732, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12744.452476501465, + "relativeCreated": 16355.953693389893, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,044", - "created": 1609969764.0443113, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "test_helpers", - "msecs": 44.3112850189209, - "msg": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12744.653463363647, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,044", - "created": 1609969764.044439, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "test_helpers", - "msecs": 44.439077377319336, - "msg": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12744.781255722046, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2021-01-11 07:30:51,708", + "created": 1610346651.7081184, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 708.1184387207031, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16357.660055160522, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2021-01-11 07:30:51,716", + "created": 1610346651.716675, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 716.6750431060791, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16366.216659545898, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,716", + "created": 1610346651.7169998, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 716.9997692108154, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16366.541385650635, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:51,717", + "created": 1610346651.7171628, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 717.1628475189209, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16366.70446395874, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,717", + "created": 1610346651.7173688, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 717.3688411712646, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16366.910457611084, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,717", + "created": 1610346651.7175663, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 717.5662517547607, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16367.10786819458, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,717", + "created": 1610346651.7177784, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 717.7784442901611, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16367.32006072998, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,717", + "created": 1610346651.7179182, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 717.9181575775146, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16367.459774017334, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,718", + "created": 1610346651.7181118, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 718.1117534637451, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16367.653369903564, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,718", + "created": 1610346651.7182467, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 718.2466983795166, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16367.788314819336, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,718", + "created": 1610346651.718448, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 718.4479236602783, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16367.989540100098, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,718", + "created": 1610346651.7185905, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 718.590497970581, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16368.1321144104, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-client:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:51,718", + "created": 1610346651.7188766, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 718.8766002655029, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16368.418216705322, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:51,719", + "created": 1610346651.7198477, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 719.8476791381836, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16369.389295578003, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,720", + "created": 1610346651.720096, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 720.0961112976074, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16369.637727737427, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:51,720", + "created": 1610346651.7202618, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 720.261812210083, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16369.803428649902, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" + ], + "asctime": "2021-01-11 07:30:51,720", + "created": 1610346651.7205052, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", + "module": "stp", + "msecs": 720.5052375793457, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16370.046854019165, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:24,044", - "created": 1609969764.044579, + "asctime": "2021-01-11 07:30:51,720", + "created": 1610346651.7208705, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 438, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 44.57902908325195, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 720.8704948425293, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12744.921207427979, + "relativeCreated": 16370.412111282349, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560639710976, + "threadName": "Thread-27" }, { "args": [ - "SP server:", + "prot-server:", "__callback2__" ], - "asctime": "2021-01-06 22:49:24,044", - "created": 1609969764.044672, + "asctime": "2021-01-11 07:30:51,721", + "created": 1610346651.7210596, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __callback2__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __callback2__ to process received data", "module": "__init__", - "msecs": 44.67201232910156, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 721.0595607757568, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12745.014190673828, + "relativeCreated": 16370.601177215576, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560639710976, + "threadName": "Thread-27" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: read data response, data_id: 0", "status: operation not permitted", "35" ], - "asctime": "2021-01-06 22:49:24,044", - "created": 1609969764.0447662, + "asctime": "2021-01-11 07:30:51,721", + "created": 1610346651.7212973, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", - "levelname": "INFO", - "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: read data response, data_id: 0, status: operation not permitted, data: \"35\"", - "module": "__init__", - "msecs": 44.76618766784668, - "msg": "%s TX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12745.108366012573, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,044", - "created": 1609969764.0449376, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 33 35 7d 4a 79 60 8b", - "module": "test_helpers", - "msecs": 44.9376106262207, - "msg": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 33 35 7d 4a 79 60 8b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12745.279788970947, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,045", - "created": 1609969764.0450702, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 33 35 7d 4a 79 60 8b", - "module": "test_helpers", - "msecs": 45.07017135620117, - "msg": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 33 35 7d 4a 79 60 8b", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12745.412349700928, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "service: read data response, data_id: 0", - "status: operation not permitted", - "35" - ], - "asctime": "2021-01-06 22:49:24,045", - "created": 1609969764.0451999, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: read data response, data_id: 0, status: operation not permitted, data: \"35\"", - "module": "__init__", - "msecs": 45.19987106323242, - "msg": "%s RX <- %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "src/socket_protocol/__init__.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12745.542049407959, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [ - "SP client:", - "status: operation not permitted" - ], - "asctime": "2021-01-06 22:49:24,045", - "created": 1609969764.0452802, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 453, - "message": "SP client: RX <- Message has a peculiar status: status: operation not permitted", + "lineno": 438, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: operation not permitted, data: \"35\"", "module": "__init__", - "msecs": 45.28021812438965, - "msg": "%s RX <- Message has a peculiar status: %s", + "msecs": 721.2972640991211, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12745.622396469116, + "relativeCreated": 16370.83888053894, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560639710976, + "threadName": "Thread-27" }, { "args": [ - "SP client:" + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 7d 4a" ], - "asctime": "2021-01-06 22:49:24,045", - "created": 1609969764.0453722, + "asctime": "2021-01-11 07:30:51,722", + "created": 1610346651.7221005, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 7d 4a", + "module": "__init__", + "msecs": 722.1004962921143, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16371.642112731934, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 7d 4a" + ], + "asctime": "2021-01-11 07:30:51,730", + "created": 1610346651.730513, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 7d 4a", + "module": "__init__", + "msecs": 730.5130958557129, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16380.054712295532, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,730", + "created": 1610346651.7308342, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 730.8342456817627, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16380.375862121582, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:51,731", + "created": 1610346651.7310057, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 731.0056686401367, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16380.547285079956, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,731", + "created": 1610346651.7312324, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 731.2324047088623, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16380.774021148682, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,731", + "created": 1610346651.7313824, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 731.3823699951172, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16380.923986434937, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,731", + "created": 1610346651.7316105, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 731.6105365753174, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16381.152153015137, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,731", + "created": 1610346651.7317514, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 731.7514419555664, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16381.293058395386, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,731", + "created": 1610346651.7319393, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 731.9393157958984, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16381.480932235718, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,732", + "created": 1610346651.732072, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 732.072114944458, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16381.613731384277, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,732", + "created": 1610346651.7322469, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 732.2468757629395, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16381.788492202759, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,732", + "created": 1610346651.7323802, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 732.3801517486572, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16381.921768188477, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-server:", + "(5): 79 60 8b 3a 3e" + ], + "asctime": "2021-01-11 07:30:51,732", + "created": 1610346651.732623, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (5): 79 60 8b 3a 3e", + "module": "__init__", + "msecs": 732.6231002807617, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16382.164716720581, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-client:", + "(5): 79 60 8b 3a 3e" + ], + "asctime": "2021-01-11 07:30:51,733", + "created": 1610346651.7335744, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (5): 79 60 8b 3a 3e", + "module": "__init__", + "msecs": 733.574390411377, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16383.116006851196, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,733", + "created": 1610346651.733818, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 733.8180541992188, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16383.359670639038, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:51,734", + "created": 1610346651.734008, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 734.0080738067627, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16383.549690246582, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 33 35 7d 4a 79 60 8b" + ], + "asctime": "2021-01-11 07:30:51,734", + "created": 1610346651.7342727, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 33 35 7d 4a 79 60 8b", + "module": "stp", + "msecs": 734.2727184295654, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16383.814334869385, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: read data response, data_id: 0", + "status: operation not permitted", + "35" + ], + "asctime": "2021-01-11 07:30:51,734", + "created": 1610346651.7346466, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "WARNING", + "levelno": 30, + "lineno": 438, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: operation not permitted, data: \"35\"", + "module": "__init__", + "msecs": 734.6465587615967, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "root.socket_protocol.all_others", + "pathname": "src/socket_protocol/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16384.188175201416, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2021-01-11 07:30:51,734", + "created": 1610346651.7348568, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 45.37224769592285, + "msecs": 734.8568439483643, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12745.71442604065, + "relativeCreated": 16384.398460388184, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560631318272, + "threadName": "Thread-28" } ], - "msecs": 145.82395553588867, + "msecs": 907.6762199401855, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12846.166133880615, + "relativeCreated": 16557.217836380005, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.10045170783996582 + "time_consumption": 0.1728193759918213 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-06 22:49:24,146", - "created": 1609969764.1466632, + "asctime": "2021-01-11 07:30:51,908", + "created": 1610346651.908684, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -92110,8 +200511,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-06 22:49:24,146", - "created": 1609969764.146285, + "asctime": "2021-01-11 07:30:51,908", + "created": 1610346651.9082773, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -92121,15 +200522,15 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 146.2850570678711, + "msecs": 908.2772731781006, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12846.627235412598, + "relativeCreated": 16557.81888961792, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -92138,8 +200539,8 @@ "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-01-06 22:49:24,146", - "created": 1609969764.146472, + "asctime": "2021-01-11 07:30:51,908", + "created": 1610346651.9084735, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -92149,37 +200550,37 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 146.47197723388672, + "msecs": 908.4734916687012, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12846.814155578613, + "relativeCreated": 16558.01510810852, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 146.66318893432617, + "msecs": 908.6840152740479, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12847.005367279053, + "relativeCreated": 16558.225631713867, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.00019121170043945312 + "time_consumption": 0.0002105236053466797 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 6, 'data': 35}", "" ], - "asctime": "2021-01-06 22:49:24,147", - "created": 1609969764.1472194, + "asctime": "2021-01-11 07:30:51,909", + "created": 1610346651.9092433, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -92196,8 +200597,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 6, 'data': 35}", "" ], - "asctime": "2021-01-06 22:49:24,146", - "created": 1609969764.1469045, + "asctime": "2021-01-11 07:30:51,908", + "created": 1610346651.9089377, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -92207,15 +200608,15 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 6, 'data': 35} ()", "module": "test", - "msecs": 146.90446853637695, + "msecs": 908.9376926422119, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12847.246646881104, + "relativeCreated": 16558.47930908203, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -92224,8 +200625,8 @@ "{'data': 35, 'data_id': 0, 'service_id': 11, 'status': 6}", "" ], - "asctime": "2021-01-06 22:49:24,147", - "created": 1609969764.1470566, + "asctime": "2021-01-11 07:30:51,909", + "created": 1610346651.9090858, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -92235,385 +200636,1223 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'data': 35, 'data_id': 0, 'service_id': 11, 'status': 6} ()", "module": "test", - "msecs": 147.05657958984375, + "msecs": 909.085750579834, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12847.39875793457, + "relativeCreated": 16558.627367019653, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 147.21941947937012, + "msecs": 909.2433452606201, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12847.561597824097, + "relativeCreated": 16558.78496170044, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001628398895263672 + "time_consumption": 0.0001575946807861328 }, { "args": [], - "asctime": "2021-01-06 22:49:24,147", - "created": 1609969764.1476352, + "asctime": "2021-01-11 07:30:51,909", + "created": 1610346651.9097092, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 202, + "lineno": 203, "message": "Removing Callback for a specific Data-ID and all Serice-IDs", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP server:", + "prot-server:", "'__callback2__'", "None", "0" ], - "asctime": "2021-01-06 22:49:24,147", - "created": 1609969764.1474838, + "asctime": "2021-01-11 07:30:51,909", + "created": 1610346651.909544, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "WARNING", "levelno": 30, - "lineno": 154, - "message": "SP server: Deleting existing callback '__callback2__' for service_id (None) and data_id (0)!", + "lineno": 164, + "message": "prot-server: Deleting existing callback '__callback2__' for service_id (None) and data_id (0)!", "module": "__init__", - "msecs": 147.48382568359375, + "msecs": 909.5439910888672, "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12847.82600402832, + "relativeCreated": 16559.085607528687, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 147.63522148132324, + "msecs": 909.7092151641846, "msg": "Removing Callback for a specific Data-ID and all Serice-IDs", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12847.97739982605, + "relativeCreated": 16559.250831604004, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001513957977294922 + "time_consumption": 0.0001652240753173828 }, { "args": [], - "asctime": "2021-01-06 22:49:24,250", - "created": 1609969764.2504723, + "asctime": "2021-01-11 07:30:52,111", + "created": 1610346652.111397, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", "levelname": "DEBUG", "levelno": 10, - "lineno": 205, + "lineno": 206, "message": "Transfering data", "module": "test_callbacks", "moduleLogger": [ { "args": [ - "SP client:", + "prot-client:", + "TX ->", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:24,147", - "created": 1609969764.1478963, + "asctime": "2021-01-11 07:30:51,910", + "created": 1610346651.9100597, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP client: TX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 438, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 147.89628982543945, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 910.0596904754639, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12848.238468170166, + "relativeCreated": 16559.601306915283, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,148", - "created": 1609969764.1482797, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "test_helpers", - "msecs": 148.27966690063477, - "msg": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12848.621845245361, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,148", - "created": 1609969764.1485317, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "test_helpers", - "msecs": 148.53167533874512, - "msg": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12848.873853683472, - "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { "args": [ - "SP server:", + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2021-01-11 07:30:51,911", + "created": 1610346651.9119897, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 911.989688873291, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16561.53130531311, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2021-01-11 07:30:51,920", + "created": 1610346651.9205053, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 920.5052852630615, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16570.04690170288, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,920", + "created": 1610346651.920799, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 920.7990169525146, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16570.340633392334, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:51,920", + "created": 1610346651.9209633, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 920.9632873535156, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16570.504903793335, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,921", + "created": 1610346651.921164, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 921.1640357971191, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16570.70565223694, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,921", + "created": 1610346651.92131, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 921.3099479675293, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16570.85156440735, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,921", + "created": 1610346651.9215555, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 921.5555191040039, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16571.097135543823, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,921", + "created": 1610346651.921698, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 921.6980934143066, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16571.239709854126, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,921", + "created": 1610346651.9219165, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 921.9164848327637, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16571.458101272583, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,922", + "created": 1610346651.922053, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 922.0530986785889, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16571.59471511841, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,922", + "created": 1610346651.9222937, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 922.2936630249023, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16571.83527946472, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,922", + "created": 1610346651.9224594, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 922.4593639373779, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16572.000980377197, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-client:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:51,922", + "created": 1610346651.9227164, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 922.7163791656494, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16572.25799560547, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "comm-server:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2021-01-11 07:30:51,923", + "created": 1610346651.9236615, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 923.661470413208, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16573.203086853027, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,923", + "created": 1610346651.9239063, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 923.9063262939453, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16573.447942733765, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:51,924", + "created": 1610346651.9240751, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 924.0751266479492, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16573.61674308777, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "STP:", + "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" + ], + "asctime": "2021-01-11 07:30:51,924", + "created": 1610346651.9243245, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", + "module": "stp", + "msecs": 924.3245124816895, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16573.86612892151, + "stack_info": null, + "thread": 140560639710976, + "threadName": "Thread-27" + }, + { + "args": [ + "prot-server:", + "RX <-", "service: read data request, data_id: 0", "status: okay", "31" ], - "asctime": "2021-01-06 22:49:24,148", - "created": 1609969764.1488254, + "asctime": "2021-01-11 07:30:51,924", + "created": 1610346651.9247193, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "lineno": 438, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 148.82540702819824, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 924.7193336486816, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12849.167585372925, + "relativeCreated": 16574.2609500885, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560639710976, + "threadName": "Thread-27" }, { "args": [ - "SP server:", + "prot-server:", "__callback3__" ], - "asctime": "2021-01-06 22:49:24,149", - "created": 1609969764.1490207, + "asctime": "2021-01-11 07:30:51,924", + "created": 1610346651.924918, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 465, - "message": "SP server: RX <- Executing callback __callback3__ to process received data", + "lineno": 479, + "message": "prot-server: Executing callback __callback3__ to process received data", "module": "__init__", - "msecs": 149.02067184448242, - "msg": "%s RX <- Executing callback %s to process received data", + "msecs": 924.9179363250732, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12849.362850189209, + "relativeCreated": 16574.459552764893, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560639710976, + "threadName": "Thread-27" }, { "args": [ - "SP server:", + "prot-server:", + "TX ->", "service: read data response, data_id: 0", "status: okay", "36" ], - "asctime": "2021-01-06 22:49:24,149", - "created": 1609969764.1492217, + "asctime": "2021-01-11 07:30:51,925", + "created": 1610346651.9251578, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "send", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 714, - "message": "SP server: TX <- service: read data response, data_id: 0, status: okay, data: \"36\"", + "lineno": 438, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"36\"", "module": "__init__", - "msecs": 149.22165870666504, - "msg": "%s TX <- %s, %s, data: \"%s\"", + "msecs": 925.1577854156494, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12849.563837051392, + "relativeCreated": 16574.69940185547, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,149", - "created": 1609969764.149556, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "send", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 73, - "message": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 36 7d 99 96 78 fe", - "module": "test_helpers", - "msecs": 149.55592155456543, - "msg": "Send data: (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 36 7d 99 96 78 fe", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12849.898099899292, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" - }, - { - "args": [], - "asctime": "2021-01-06 22:49:24,149", - "created": 1609969764.1498437, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "receive", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 84, - "message": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 36 7d 99 96 78 fe", - "module": "test_helpers", - "msecs": 149.84369277954102, - "msg": "Receive data (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 36 7d 99 96 78 fe", - "name": "__unittest__", - "pathname": "src/tests/test_helpers.py", - "process": 125842, - "processName": "MainProcess", - "relativeCreated": 12850.185871124268, - "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560639710976, + "threadName": "Thread-27" }, { "args": [ - "SP client:", + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 7d 99" + ], + "asctime": "2021-01-11 07:30:51,925", + "created": 1610346651.9259717, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 7d 99", + "module": "__init__", + "msecs": 925.9717464447021, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16575.51336288452, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 7d 99" + ], + "asctime": "2021-01-11 07:30:51,934", + "created": 1610346651.9343026, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 7d 99", + "module": "__init__", + "msecs": 934.302568435669, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16583.84418487549, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,934", + "created": 1610346651.9345229, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 101, + "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "module": "stp", + "msecs": 934.5228672027588, + "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16584.064483642578, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 60 + ], + "asctime": "2021-01-11 07:30:51,934", + "created": 1610346651.934636, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 106, + "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 934.636116027832, + "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16584.17773246765, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,934", + "created": 1610346651.9347699, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 934.769868850708, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16584.311485290527, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,934", + "created": 1610346651.9348698, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 934.8697662353516, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16584.41138267517, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,935", + "created": 1610346651.9350076, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 935.0075721740723, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16584.54918861389, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,935", + "created": 1610346651.935099, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 935.0988864898682, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16584.640502929688, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,935", + "created": 1610346651.9352252, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 935.225248336792, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16584.76686477661, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,935", + "created": 1610346651.9353147, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 935.3146553039551, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16584.856271743774, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,935", + "created": 1610346651.9354308, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 935.4307651519775, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16584.972381591797, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 61 + ], + "asctime": "2021-01-11 07:30:51,935", + "created": 1610346651.9355187, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "module": "stp", + "msecs": 935.518741607666, + "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16585.060358047485, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-server:", + "(5): 96 78 fe 3a 3e" + ], + "asctime": "2021-01-11 07:30:51,935", + "created": 1610346651.935674, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (5): 96 78 fe 3a 3e", + "module": "__init__", + "msecs": 935.6739521026611, + "msg": "%s TX -> %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16585.21556854248, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "comm-client:", + "(5): 96 78 fe 3a 3e" + ], + "asctime": "2021-01-11 07:30:51,936", + "created": 1610346651.9365027, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (5): 96 78 fe 3a 3e", + "module": "__init__", + "msecs": 936.5026950836182, + "msg": "%s RX <- %s", + "name": "root.helpers.all_others", + "pathname": "src/helpers/__init__.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16586.044311523438, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58 + ], + "asctime": "2021-01-11 07:30:51,936", + "created": 1610346651.936632, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 117, + "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "module": "stp", + "msecs": 936.6319179534912, + "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16586.17353439331, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + 58, + 62 + ], + "asctime": "2021-01-11 07:30:51,936", + "created": 1610346651.936732, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 127, + "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "module": "stp", + "msecs": 936.7320537567139, + "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16586.273670196533, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "STP:", + "(61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 36 7d 99 96 78 fe" + ], + "asctime": "2021-01-11 07:30:51,936", + "created": 1610346651.9368925, + "exc_info": null, + "exc_text": null, + "filename": "stp.py", + "funcName": "process", + "levelname": "INFO", + "levelno": 20, + "lineno": 148, + "message": "STP: message identified - (61): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 36 7d 99 96 78 fe", + "module": "stp", + "msecs": 936.8925094604492, + "msg": "%s message identified - %s", + "name": "root.stringtools.stp", + "pathname": "src/stringtools/stp.py", + "process": 25632, + "processName": "MainProcess", + "relativeCreated": 16586.43412590027, + "stack_info": null, + "thread": 140560631318272, + "threadName": "Thread-28" + }, + { + "args": [ + "prot-client:", + "RX <-", "service: read data response, data_id: 0", "status: okay", "36" ], - "asctime": "2021-01-06 22:49:24,149", - "created": 1609969764.1499956, + "asctime": "2021-01-11 07:30:51,937", + "created": 1610346651.9371493, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__data_available_callback__", + "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SP client: RX <- service: read data response, data_id: 0, status: okay, data: \"36\"", + "lineno": 438, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"36\"", "module": "__init__", - "msecs": 149.9955654144287, - "msg": "%s RX <- %s, %s, data: \"%s\"", + "msecs": 937.1492862701416, + "msg": "%s %s %s, %s, data: \"%s\"", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12850.337743759155, + "relativeCreated": 16586.69090270996, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560631318272, + "threadName": "Thread-28" }, { "args": [ - "SP client:" + "prot-client:" ], - "asctime": "2021-01-06 22:49:24,150", - "created": 1609969764.1501107, + "asctime": "2021-01-11 07:30:51,937", + "created": 1610346651.9372895, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 375, - "message": "SP client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 385, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 150.11072158813477, + "msecs": 937.2894763946533, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol.all_others", "pathname": "src/socket_protocol/__init__.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12850.452899932861, + "relativeCreated": 16586.831092834473, "stack_info": null, - "thread": 140247539738432, - "threadName": "MainThread" + "thread": 140560631318272, + "threadName": "Thread-28" } ], - "msecs": 250.4723072052002, + "msecs": 111.39702796936035, "msg": "Transfering data", "name": "__tLogger__", "pathname": "src/tests/test_callbacks.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12950.814485549927, + "relativeCreated": 16760.93864440918, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.10036158561706543 + "time_consumption": 0.17410755157470703 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-06 22:49:24,251", - "created": 1609969764.2512639, + "asctime": "2021-01-11 07:30:52,112", + "created": 1610346652.1123855, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -92630,8 +201869,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-01-06 22:49:24,250", - "created": 1609969764.2509089, + "asctime": "2021-01-11 07:30:52,111", + "created": 1610346652.1119924, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -92641,15 +201880,15 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 250.90885162353516, + "msecs": 111.99235916137695, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12951.251029968262, + "relativeCreated": 16761.533975601196, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -92658,8 +201897,8 @@ "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-01-06 22:49:24,251", - "created": 1609969764.251096, + "asctime": "2021-01-11 07:30:52,112", + "created": 1610346652.1121874, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -92669,37 +201908,37 @@ "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 251.09601020812988, + "msecs": 112.18738555908203, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12951.438188552856, + "relativeCreated": 16761.7290019989, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 251.26385688781738, + "msecs": 112.38551139831543, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12951.606035232544, + "relativeCreated": 16761.927127838135, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001678466796875 + "time_consumption": 0.00019812583923339844 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 36}", "" ], - "asctime": "2021-01-06 22:49:24,251", - "created": 1609969764.2518337, + "asctime": "2021-01-11 07:30:52,112", + "created": 1610346652.1129258, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -92716,8 +201955,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 36}", "" ], - "asctime": "2021-01-06 22:49:24,251", - "created": 1609969764.251504, + "asctime": "2021-01-11 07:30:52,112", + "created": 1610346652.1126313, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -92727,15 +201966,15 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 36} ()", "module": "test", - "msecs": 251.50394439697266, + "msecs": 112.63132095336914, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12951.8461227417, + "relativeCreated": 16762.17293739319, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" }, { @@ -92744,8 +201983,8 @@ "{'data': 36, 'data_id': 0, 'service_id': 11, 'status': 0}", "" ], - "asctime": "2021-01-06 22:49:24,251", - "created": 1609969764.2516868, + "asctime": "2021-01-11 07:30:52,112", + "created": 1610346652.112781, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -92755,40 +201994,40 @@ "lineno": 26, "message": "Expectation (Message received by client): result = {'data': 36, 'data_id': 0, 'service_id': 11, 'status': 0} ()", "module": "test", - "msecs": 251.68681144714355, + "msecs": 112.78104782104492, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12952.02898979187, + "relativeCreated": 16762.322664260864, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread" } ], - "msecs": 251.83367729187012, + "msecs": 112.92576789855957, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 125842, + "process": 25632, "processName": "MainProcess", - "relativeCreated": 12952.175855636597, + "relativeCreated": 16762.46738433838, "stack_info": null, - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.0001468658447265625 + "time_consumption": 0.00014472007751464844 } ], - "thread": 140247539738432, + "thread": 140562528749376, "threadName": "MainThread", - "time_consumption": 0.4162726402282715, - "time_finished": "2021-01-06 22:49:24,251", - "time_start": "2021-01-06 22:49:23,835" + "time_consumption": 1.1680777072906494, + "time_finished": "2021-01-11 07:30:52,112", + "time_start": "2021-01-11 07:30:50,944" } }, "testrun_id": "p3", - "time_consumption": 13.58837604522705, + "time_consumption": 19.242286920547485, "uid_list_sorted": [ "_XzMFcHYZEem_kd-7nxt1sg", "_7izDUEzYEeuiHtQbLi1mZg", @@ -92816,6 +202055,6 @@ } ], "unittest_information": { - "Version": "937ff4d1e2cef1eec3e4f65a89281dc2" + "Version": "961450f5024d02546d81ac0ff90bcfb9" } } \ No newline at end of file diff --git a/_testresults_/unittest.pdf b/_testresults_/unittest.pdf index 4ab710a..6d98ce9 100644 Binary files a/_testresults_/unittest.pdf and b/_testresults_/unittest.pdf differ