From 54ff073143e748dcf3622e1c96b420e8c4776d1b Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Mon, 11 Jan 2021 07:36:18 +0100 Subject: [PATCH] Release b2cd74413a21bced599aa52431777de0; Logging + Restructuring --- __init__.py | 79 +- .../unittest.pdf | Bin 600521 -> 854058 bytes _docs_/genindex.html | 2 + _docs_/index.html | 9 +- _docs_/objects.inv | Bin 743 -> 751 bytes _docs_/searchindex.js | 2 +- _testresults_/unittest.json | 208115 +++++++++++---- _testresults_/unittest.pdf | Bin 600521 -> 854058 bytes 8 files changed, 158734 insertions(+), 49473 deletions(-) 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 4ab710a67cc3375dc224836d4f103c2a7f09d18c..6d98ce96162dea9f3e9e39416ce14167ecc75c88 100644 GIT binary patch delta 731439 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

gsvBw#GTo_JZ+y5l~NC!xUh`+(OeL z8i`4rwUsp6g*mw1;a!`BIG@d>SC8fpF@xunb9iv29Avv`***Wd&j61rYyN=)fbXVlK2qL_8E4up~Kj7m#ynl-jTnM?}_7g;NwZsHZ~g?`qN!P|5mpaB@Fmf$Vq!kFJjoqi#h3|TlLpbVo8pddo?ng1V5R! z+9&*JOux_h<29#};31-;Y9TIL?jt;2js@ov2*g0mss8>p1BEPO=vdCa!jw_bI^7tm zdM#mtc;#5GQlU?eyW#$ej`@7|M@aevc`!lpCxfOHJu@)bNCYwnHls8;`i-FH!#xaJ5Pq`wYy zDgg$$+Vau&O@*O_)nbVE6(}U3Sr*mNY!CvCR_J<}8Qn}p@QT&<(h+Hd|ISz)YvP=j zDEric>U;Dh{V+I5DX+mkT99a|o#`Q` zXe5|0CDiC)wOk#`NxUP9;6BVNq7(+$!U2q_a#vSA=3~u`VzexHxmt15Aez5Bf!fh| zTBox-AGm|ZMk`zrP|zkbXv#5Z(qg#yOIBHlH{tc5rG%1Bq62jJjyUSIQa*ghOTX1~ zXvB;b$R8}7@@7B_Ao1yO!l0$nnyzu?>L`s0grF&+(0EWWQ07RZ;4U-WGP1u~5dfyo zmqw|(;iIGR%GLM5hxN*n=Vjz0VERxo1^Wscy9SP2%U~MF`TP#NR_x{d$(hV$+R`i5 z=u6?f)n;HFqMWPm=dQ;61$FAg!!3P>ZS^sKd+>cSx0pzv^Tj4U{Vn!nwh-5Ex1SZK zPfEr+=dkn?=(4$ zT;1&ugC*-^DXHUUksgubR-DmNduNwp4Y(L#88{?c^O-qLO}~Xsn_GJ@ry| zeMvdri){Ipnbi@ka|bgBy&A_-rE-}!fr6#$zEFuuU($P?W*=HB?lPf4rdf;l%YIvr zO#4+YdLXzhRl?XAIn~%6Flh3I`K@`;CKPJ(8^=v41*-A(uTfL|EThxVMAs~1i|$*Q z`x~k?r@Bp{%h2))<}eGtc_9n6(HKs{S{^?5Nmwm;+X+qzr0X}=)W`!7zF>-h?sejn zZ`AkxYM{_{Rr8%P5VPvP^6D*ql~wi*!@YwPgTjx{x6>dhnc2HF0&Muj80ARvg$BF! zBNYT8mIz}ptpvFLT5ad2pNfcn>qZc42&+2@FhFSM)312PKSlAM?fg(0S4OLiorW|p z(wIOik>g!b?x;n4gMQ)&{mn3J?+r1oNyb5V$N9(`q*NbcyG*7kU#U~E>qoR`nb=XW zn+)8j@1azjFu(_U0fpZf!RDHKD}1vmtjwxxw}&>F<7!3Yc!DYZDuu^H1=j1eW?o76 zHZyKq5QlW2nUTMT1|;LUtxKM{^UFYO723BDxYc4;!I&b@Wer-v$lABH#~5+zN35VU zldAMSkkE73miRDvbio`5bNp@BYc<>MV>s($fTr1q^40%C2CQP(|HkddVc3wQ!6TsG zXfJf+l{doegLC%q*ni{K2VZsnz2s}tRBiBi+-`m*Y|VjpC=hPmFR;8JL&UIlf6WxQ zP#-|YiDbk|d{}6mSNNl!pAvPGu`xot{nC@A9iGly%NIc=VSj!drg@d~utaYK%_R}h zXca@6u>Ubf3oxZOUJ;tBvm5BNTZAd)w+a58746^@wxTj}kMuY$p-YiUS=ba1s~lOG ziu=jWx;bPgw$lb5YZTw1=b+^ww92cC6GVz&?*@ZM)SWeSj#i+=OSGzTd1$iF(CfOT z%G{+bW?6HVg7ji%#u~PHwm*iw`wpLdNZkIve+9(<``E~t7$=Ac%91+E4oaI?d4vE& zf2|O@1p~zc+}l;<0xk-o-xeN)3#os(#eC}IUp?+emj4YR% z5q8-vslFk$yH|R}9N~ypDA(pZkYPznuPhQ~#JFsgk!&JT8q%^&Fve#Dj97?kx#$EAteP)mXc+3QTTwHl zsB)YshQq6`#so+qVt*q7PE_F4?-imL#L7bLG8IL3A4W|RQ~b28BUWW9YMcj}a4KT(5hKEsHR-6H{G$uSdgb1{V4pg7!Jzu!PH8-gg4WrFT zD)j+_ODfd?5v+{c`npd`OzTyFe@~!yp*U9SNGGH;Gq@fv6Cg ziChj!lB4}wqKCmS&yr(Ly>^@t72L$v@X4jD8O-AQcc31w63OOqvWFhtvyMaCU2C|7(=JTI>o(PAG_0FAT zP(pJb5$W59^309EPp188zi$a8FNCuy^C{i&8ZGii>y*U&@ut{_G?)2mCCrYJBGA|6 zAU1W3_0pO~Ur@Lia(JRHw?J(sEW~P3>CE+)dSMu}NsY-^2be>d54%!>#yv3-T*9+d zLR$tDU9?YpeT_!HUhPLeEhhfdfJc!Hpxj=^)-$5ae{&xASCceqR-d-;ciMW+=Wj>L zsBt_db17!xjjf*fAjktQc#dnl#G$Enu7vMM=};fWdx1R2?(!-9`)FirLv7k8zYZsy z@lt7;-hChfGgwcCJ~6yENXxMqxK8}kyEr%An5$;K2tKk+{}=Y~hDBeFRv6#yANKgo zH}KXb3XB234bHwl+}RytXT}OnrUE)^qvaM_`ASr;f^ncU!Kke_jASm8iZLGf4|e4V zU-#ES?x8YRb*dyu9v8l(tPSN}WX+`)YI&S@Lenc#uStT7e3p^yG7FF2bU=_d1cPqb z<0(J`r<5(Uw29W^HX`tT(OUL(EV_JS`U$ay8Zic__icyH=rAR<)cx7Ef+%8zg2syq zp$|b`UF1)_13LId(F_A#Q9>2Q)KD>&%4w9c{1k9Jx421=Vv@0-s+D<6cQYh04GE11 zjm^M+*FvT*G8afBdT5Ecw4T>FjQ>=6PRUeRbquAj#<`hvZ~1x7sg{3Zvb?JL8U|t7 zhMWL!gQ;ZuM3`#nlcg`v){Hn|4kbC2Ha}iPhMFI|ypjHLn~z{*VtK#%sdcC^+1Z#K zshjXni2;>Cy)Rmk8E1WMHorY|IHZ3s6j$qZ+H!7OO zT_C|K{4P6_8O1-;ngCq3Gi#EO{v33oKa>S9tQyt!ucAPB1S?pt^J=18@mD0L^#3Jz z6&g;nCv+&FnA41C)V$@l0GnD*)*>p<1jh{qSA)`aTv~u)wN^g~V~AaJZjsq+YgU9kj43^=$E{_T{EfA_%QT zU2DV4d*q?0_C$lN|1emEm_8^vSD<}Gn(I_ca&(BGnmLNO1rrR3Z;FylcKmC?*$QI! zL#WLo61~8C3|rfTBUe-_8VPBN%;hjxTOAx zeO|KN$;}=KTJ(7tdK)Rs|3n(^Q$>(taiJfi4oRjS?jgy0Ngs>jKZ)V!Ca+_K~7$zWg#%nR_w;L_)s{V(58gM%1wnzyd_l`Vr12KRKPiQNMFNZA0t>s?*wq{l_X zkKqdXJLJfcQJ?-Nn|Z6};KsO$e+pmJG<%DFJEL@Owokk6A;yM$+XPNe z=GXJ<3uoNUN?i#e1IGTzHj}*pXI%T~VpPfGacX&w)N$q#o0=$P#(rw^&P_-{HKric zMy$f5aZS+fh-K^a)XEgE_FF(vhy2vA?!!j8ldP=Q>6c|lAVnJcLwer>wDkv>>j(6@ za2U=1U+U)ko(M{S4)&cn71RKX4$zi&`Qq|*zI_2@N-F4Kq80m+*D6fw8`#Uoj7+X* zMgv5@DmpDk=~U7)fLwe3B*@H!;<$8jUY9x&6k9%!=&(!4>%SbkqutY7^FR8!H3`e! z4qt6=w2uc^EP|!0w<$z;pk&CGXj4Z2zEZxh{JW~RUaz;ZaG^1KwP#1?0Q9E)x<2f0 zw0oyIzNLZmD7@=TR(KjTFPxtnEL(i?7DDp{h{5$1#jgaJ>$VoP3clS~@@J?*;3X9&- z-KNaH?sp;2e&MF3R15oSt%_kbFILDKe(GbJy-kW#?zz_3>Z#Sv=+Jj%z50XmUaq~7 zxQv_h_gRbAO_$9~@Ta(^gC3S$+4C3p*t*Gf+zgKrYM~lCz!2Xw7TDeF*`PTj6tWnHv(8{1AQc2cozyJFk6lNH;xDyZ1DZQDu3s#s@z`#uTN2KHf2V@2%O^G|9h0K7y$l)BviZ?%RLR0Nb;=KCVfr-?I}i3^^!iV{wf19myafCtf}&+OL=Q}%D;5SAdy4f%FUbNl0 z+E%uj_(I(!%*1d;^y!xly{y70Y|F6251Dtg=?Ic6W-PvGY8#}57!J8$g_uRT3|oxp zz5b&1`_eY2&L1n9iC~^=-r*K7zf*Mbe#vn;;mu~muu=_S@QIdICFG;d$}xHI&x$2` z(9X&Q{yxlv86_HK1aFotWBkCH_T#8{(j&fE_T?ajbUuapnrUs_^g@?wq_u$MV-N%>y(m?4B+^!=E9M$<)O2k=hIh*x6tDhCzw6^ zJ-qKHF_)r~h2`SqF=ni4X|Xp?s}A?*$D}gUVTUJ=%?n9KSOsUxYjq#_C6kc^N`RHcYAvZ{skESv4Hg_Ikj}0hR#*x?wz)!Ba6xl7frHt*%mA`bZ)v^j6qL zHVbJI?X4%G6;8&#x-}D~qI|IE-5GZx;EUTR55VM&A%PcdQMY7rj*v8h8DxhAw<$8z zKz@HW6C3-j&?#or6-aabCjpYBwjq&*uSH=h;;-wliWwX}2Bk42#{LU>DmFdNSa}Ne z_+#9?NU!&C=tTFuh*>^@6Xw!xMBUxKQ64B2F82ET`Q+;tyPIbXZQWlSO2>*(u`w8409Ujw4ro; zV_fbivtpk}^Q}oXRv~6Ksi+ssbe!mHW)()33rsH-id_CgDXDTN>T{#99} z-Z~y?P54Xp+rtU_8ia%b5~8Y+MnpZ`n_%zc$$a$DQA5F`s{YXzJb(u~^cV=LGL3Vj zMYXlh9_jQO7_^inY~eE);WHbwlqrAVNKb0H?Ad59Tr}x7A0TH#-g9iV?dN#JPf87KnQpg?L@QjkLQ6y|gLz z+JzLobQ`>Bz+w|Q*^`Yl*yoQ-2Q+$VVto7Mo4KTr?+xDAGzcUz9wUM3G}9hS>2F2t zh5mQG2^(pQ@Xy@q`+%Wf^?nEsFThxm>Ou0>F(?Tx7ymG)JIdO^+3epR?-0qW0F!vi zn79J>9$rj#!((!CPU+!tG-RXO$MvIk2vFGI2Im0eX|9fF zBLT8BTtPSf@k@p6a(q_Ms5oQyU%oQJ<3`rtjxzSM@m-PrTUV}#afPk(;*8t&|3nTK zeq=Lr{G?bI#_sL>=E~RwxxhVU`oBa6R_0`qG<0w#=KpDu{{*;fa^U$r*Ba*2O^cyi zV*@pccIJy#7EeYtH!7RZ66UrX4M&*eK#$@x2(j5fsXfW!w!#BiGV$yF-g`iBF#7x@ z!|(NY>=bH1D8OlZ@o8{+_ybWRlT5)Sce`t{%`rqe50@+wbA8(G>EdX&vY{rrB5x)H zCE4SGhBJBkAK*DV|I~r}!WZbNh$&3IRcqGoVzmC=7#6f=_;T4Nnu{?5DwLaqkbxgQ z8ioglYkL_e~T7us@as>Irkl95W3>REa0CESmY-Z^Y+udHq%8VKgC+B;o zi7Rr4ETV@BTKjBhGr!#~UxT6OikXXp3f$n?trLc5?A|V+DGZ*Sl27kWO$@bEgl}AR zl1P(=&j2|K<%w~(Ut(;p4ceTkI}GWFHS#@{gz1$~M)iLt-CQ2PjY7^G^s#hsjoZf& z*oR;q09`91nR?YFiy_9^Yo=S6-+!6*(CF zK01sdg8M^+d73O@vuoz`F5mgVpAf3~)uhJ`kan=O3L_u={3ZO&!WzQM4JAZEy{~Bi z+ZO?2Lw}$NJWx2I+k5|pt4fjC!O=^wDMlgFl`?-OFrl|t83$i^`Z15k_^0)1XCICTv zI<-J!p}RqZ{9<^B+99F-yr<1B*wJD=k2tCaZRL@k=lkmN(Ob=qh>)z7N#P9Qr|6kA zW3AVyKVj~B)MY?=lR*TkQc8_-jdd^nzU-;Ry=pu##;WU;~ssA!WQl=1AT zuciU>cjwxAq+tN*M^Vk>vYy<-6M&gz+xYV~;IVB?ltDDYHQmOToSmzjcgga&y!Yy^ zW6c*tc%<6I?Z*!T#z|wf_>CLJVLh$oVe?g|oj5kReMF|=r+EFmp^@j#bpEp5>Hf4) z;@srdx>wtKwMV2**cM5S^^~?KzX_rJva7vrEp8(+#r+R-hf^T0uimkO2TVW;O%qvS-dGFu)z_}7D`JViX(WhFc0je1nd zSSd&d3wgs6NX943Y2b?+H>*}bO zP`o!Qf|=`@L3CsxjPesqUjgCT?opc`=`)tXGHYZMU%DhAE4Um z@*fsp1~;yUt^E7_1q&^VbZK*K%o}F38XwAM$#in4WxAzplq==JNugQ?zBH&Zyxo!w z3H&Y#H#H)0L4%WG49fUd8$-t3m*Wk4VqpdQ$2U*KUe7_hhvSia05XixM7YH$lK^At zS(pkTrs$#%6a|(xpG{g6UB&}Kl$t@Kh@dLJWAuTM!9l*koId7x!b4pD7z-s8$$H|? zs0Ck3`RXz{;OpbM+7hCCE33og9$^teIdk(kSTBXYS{V8)WMms|CdsOZau)Xs?9}mR zWPdyDe$Jnlyi{^s0D%cEbA(w4uLSEg*YrQ77@}g0k0@oO62c^J`%kvI1ot>i^O<5C zn!2%L94@7wq_I*?zBEy1$-N6S)S&)P`vQff9BIyLjM;ZX+FgchN&}?toznS)JBD~kvKL&)Xe>eY|Q(qQLf zNH^8wmm?Au!(~EKu93nejk3QGWq*BcFfu3xn7CP{?zy0_|I_Ek%aeBe$gDvf+~10H(j^Ovi{UUp%uoSTxby`WZGE3x zV|<4S!*EaZ_A$B%jQTr8;gpOx8lXrwy90JDPbM8btDhG_Ip@5&v6tXa&0hX!AC~Y| z4E9Wd%*9@@fSr%HofUmGltzDB#r_7D$A)ma*Ig99=F}^u#DBlWwTI@vORp^Z%u*8; z4-ViWyZY{SMm*Y(J3%~#N&ix6dX4V?z}^sr4gJ5Q0k&jNC=4)W?)3gMU|;-7=YM}m zkU$9-DYN;hww{?=Ev<(1!$wgW2|uc(J&mGPYC7fH4-Z5d-DEvUB#x8eoivbq$jp6 zOFgR9M){qJu;IPm@lss?j;1xy1Ej|;#y$i3);z&lKf zh06pc*~GaiT$q$n|GBTRR}{ma7EaD}2!LfrJFgEHdwJwO&%BV6`Tb^QlGatbxj#^S{*d?m?Icxq?L`7wA+## z>C%=T_e@Y^FdbT}c6r!pn8T0Bj{YM%>l6nlDWz%zy1>mdxAuw&@drAGT+}?(>FtEm z{>1AM2UTU=s}3D$%D17wz==$IXh84UKE3cIf5+ks0W+_r=pQwluQbcyJY(p%6Wbi& zJI54M>tap{pyZ}SHz!ZNR5?4PXV8i{HBTL<-b|lwh!lfLCgWG#i|b0fk$)wb0GVSajOL2$y_DR+6RB`akf;qQ_Yl{{){rUx_P*JknCI`F2juv+_KN_kiLpRF z@T5bmXrp1LAf^36MS2H zmLK2X^BqD>c}YgXUpQW%9{@uzPdbmwm8xVytn6s8FsyiDC z4}K^wT=@gJ6bCfp2)L!yrY>d~;pEF0wN3%R1TWeb#<5vi3ZL8^Nptlr#{=SpBg94w zsU>(oIU!3HKCELikBc9?C(NF_)^&Nl#vAR9 zr4a<**3UjW=f1QV0N7q!Aao)Q7C7R0tydoh$>GLtd%DFDipc*HmI-!B>X)(&Qsp69 zM;Z1_tE3xGp6J8c!cPfP9@Q3KE2PQNw};n_d_a=9Za?>p1Yg0;5iZ>Q(2hpEez7G1 z&YWlR(OW0Yf^CwIrw^T%iCrbb++6O+j6yPd`SFw%>~;V^O}G-OE##0=q7*H2lAB^( zColnb?SWyUJ=OGB*EVVvU9db?#(YpNHF}VCXXdk2FuvC<$T)-WfKiQwkh_;#H zGD_SEGv#IVtXLlTVO=!MJVn=)l6|37Q1Cs|GEL*(l8zB*Gf<6#gmg5ZwxGuG8Z>N8-Esu7@q5wZMq!jS-T*hWSiZmGsELn`9P zr#aA9Bu9)IcofHXOC=*3L{=E#1bk>0EwQGD{fnkU49%4)UNz&rd?RImP-84aD~8IS z6VrutUbUkbYj){vY#xvaF-`!W5G)LR8Kc~25I$iAw|s&}F6|4EW^{h5I)yoHRTVGR z07PwA>2MAxX{WiUF9~He9Qrr=HWm=f3zI+R;p~XG-B^PCQNcJRf=}(4Z4c8!4&q=6 zfD?*ZCsSxiB{L)4p)2jDNX zs*r7Omy;WAoA3X2t0zW8`)49_CHv`pXCvMwYKtxC=@3pFA7RP=jY(ldm2x7c=re~# zgWaD$hcDnx}vs02AdLYn|9E)?gy;aZyED^KePaq335=&>_T#|jpgX7Ddu~ zAdm3%*n_eX=Exm}BPQx(c11(;CrnEC*uR}C3QbHltEcqv#BsIxa=~M}{*nbODopQ< zI`5$t6z5@S!^D3~9{Gdnfy3zAJ`DlXaf!r}YVQ~?UH{A#YXGco1b}b9LoT%LQw>WX7bU~|F1z12F!%aO9GR)_n%pHTGguoq z`u~xbdPMlIH@`@%yjoKxCnA>6^&M>yP0hE;m|uXK4sTn6?d=)&zX-$F0$uaz=-1*o zYHAv(CMUkiiF%k8V3-J$6cOq%{x&!?;P6s2Gh@#ND(kYZV$RwC8K3^2hX=U<-4+xm zPyxY9im99b1S)lbqa1qqpWjp41*l><%mbLCsN{uH5@&ChtGiZBL)n6)boTQ9B)8oN zoWQmWZ7}t6KU+aJe`W2CNip|+wp&X~P-W>t#QWxpZh7nBQ}OTY*QU^zWUU&h-g^zU)BeN~ree5%KK z1N%T#AT!w|SO6kLu8;edc_)p>MR=G-z%M+qYHF3Z`>26bt76YfnflWSVg0i^i^-n> z_$6lfH>fi_nNE1v`3$4KK%mkpBB{xLjUBWJMHuch-f*_96JE2A7~cw_`>U(Hp0qeU zTo)R309-ruO$17%uO>Id0O=1L-ppLqTru+_zW}@kYU;jXLAEV%(+%w}=BXChw13+K zEn2;_%)~hz7i<+sduBI{S~>kayPip;Zze5JyN2c;^;O8T@1Z!6w-8AfoNd`X#irLr z?bd=7xQutN2VY@*s9GaL4f9gQ1{sobiye0#0P>lPpWRD7gS#}J%Mv4)IFlzqCI|@j z%aBME19=P(p$7`B!Mg~a@M^;ruBW-YZ=Gli4%TYqkk;ZUnJQcfV1*JZrGG5PeZ2H9 zK+qTAbFlur;J4nyb62E;%27X4 zbZ)Yu{|0_WBeFY@>}9Ed$4@%KZh<2}i#dlle}Xj!m?+sM1y>juUamxca@FN>q!_eb zco0Q(CPe$PzJ^(BO_zB=(T%o>JmAmPoq9rEhe_8nFQKEF-@y0?>*)7ux`8?L_5HM#HhSEQZRN%mh~c1rbL zN#6U#c?n^b@Fc}~tQ1#3GbaEnI^CO0Q$hKLrab(COavm)dj7cRQkz}e|WPCgm3kZrO9+@r zYCtD91fkXkjT7Rg=>wEu5HGe>h@(LMm2Zrs9z2OzGsPPh&-BJlu?KtE4O#LA3fE0 z+RQu>P`jqwz;nKXBVJUTM?Ehog%coiWZmg5D{;o9#o*$hzzlHWQ7o4zYiCWrD0bec z6d1pHTL$8WzB8R7oFY{{hTT1UR&_sUDzCTt-S8O0F-V48`y7;AxnMlWuM$Vxa}ZQ6 zf_X{wiEQj@j^mlRH#VE7w4UjS^k@ruCzS&M9m=4*`m`VjtC?`hG$0rr)<}{Xa7;z8 z8I0<*0iA@LqyVuJ5N$9raBMia@YNOA%fW0-%3Eb6Xf?1!i)Ad>%h~fYyg=9jzepjF zr5+JOqDSGtfFlz~u(xAKupE6${tOC6YLq?4!Wb{%KoBV0f1ZIL*W(fw={Zwnl4&yp z8VXeXMN7la)(d%1W>QQ6KPCn=sGK%yRUh)XG6g}2o3YQ=|1TMVgEcv@9^*fcA@d0s zEdXfX0q*}_XfTy2u~I-7-u-jsNp5qaYHtRj%8}^AH>+sIkALHSzcawdV9~E9*{zd} zc15tkUSDhuw}Qw8KLkMaB2y<`BLVLG2OHxL`~QYa_Mug_!Hrme{--bu1f~O+k>owu zmsPsTil(YCRFDvh2a;7I<`0f9J|0wn?Xk`{j0Hj}n?dTs5li(}UBAO&e=qoR5ELEA z3@o(}Vv>@5uqn^WeJm8Z?&>=tV9O$o; zSvL@lOlNH>X&`=3>4tOC#4FW5tQAf(USZwtPZF-uc9oExl7fD@~Wj($U;x9vu>-XO5-jgp* zK(BB#P>k4|a5qUHb7>61Gd>nq2V>1#`HJq;E*&r0FaE2DeK#zcUso4^Gh-vy+V(fN zJRO~rcxIA;iC&)dQOxbM@7EAmZX2>@eN0 zL~e^N&WGWq9k@!g?X=zmONk0=_F~7etS)GXUX@D0#x^Z%@v}y1lBbpfN4oQGJR=qp z{S%Y;%l0spJ(0n%S!PRs?`%c1`>ps7E@)5hCY>+l$S8*eOP?J;AaNSKg)U1>2ug;( zRp->$WJ@@A}|pwk;^U zd0TKv9swd*x$x`AX-9` z0#h15bVby?VAQbvnUvT`BY9yC8^{7eXulE#6B&!L8*U;3)}q>Sp&4dxTc=}`9`~@K za=8*CW%Fd*hLz#hVZ(Ko2^fS#OQYFwjmKlYR9400q*e#ab7ddcqQhzcyHHrau$WK8 zfB8ZDle*8x36_6!4nqCOxG*jP(;Bu-Kg7~09r4Z~a!-44mYS~)oEseqMN~V^U4)~S zuVPo^d$@golj8ijA(_(^zy$pCdb|fIbf7zz-`Uli#xY(`u-0v+90JO>NvpEA^)RBd zF1gpA4~q;4(*=RnAY$w$a1nwWfVF%&X*JR>6+5hC2bRY&x^X!$hpyHvp&F>}{)$yL3Oq5gQrnoXIz4C*z8iy0&&&H&5 zB&L|selr+q2r}6SHKHK*Zi>F)BEAPTrg_cZ?Ys>>SFL_~UKGTGDnYyT{ib7ZqcyFr z&9B)Lojgcglg-jPgm#J%90!tC7@{H$>siGH z*@KIfclYwrH^~XO^Eo~VD=`qahdu)CGK-!33W*shETNo9w?mbJE5;?Cav;@cS}(U# z+^bR9LZ9W%V-izx!>Iz~sJz(&?yUX$rEm0vQ79l{+FG;Zzv?Zk*N#qyk7^_J`e3DT zN+P78upkDO$X~thPY4v!>R#Zsj3ub@bN=!eMKB@$W@*p)ILVDg_>ZDO?)=oT)0FM2 z!ZY~N!WGh+=psTQuU3>HCNuB1oAQfyw=EH7kc0H5NJ%D)?If}Y0hSQZr6b2KOOo=~ z!jnG(u_j$xrdpQ2St);fD4QrEw#lrxYaF<1JWyGcgZ3_V+0u6s<2cmzPsYI1Olzq? z5pH1dwT0$VUF_Gno!KKol)6Xz}{UfDq^DQMmZ@8+UXFBO=J7F<}%T#y~bny zgWXuJS7YXkA?>#%cGv?zgv9y<2MH*o2@Q$B|3@h7>?z1$HrvXRzbVWr=o;-33X=BT zxvWCM#Nrwg>(rmnPr0)O*TTHlx&$+57sVuS{ zOf@p779{t-eLFtF&|qi<3aI2=&$h19TDeTXswA^LR4Oa18fh6nR0yBust2???Sf1f z$J=b$p|}N&kTGm~wlf1e!^<95&O*8eLl0VRG&J8{HvpI;#$_wwX=2aSO&ZC6pKd>e zZZVa&T*0b&fo2|$DqIY(K~MZ{3ji0YPNrH1O+I2qOZuOM+ykQP2HOi59#loHRwdPD z0^!OCf)!M>kRHTW(} z0ac-gGQjM`YWe86kM#arj$*tf3?`Y#f*3F$p72(7@10z z*Lr$U5vh#HFPB}u9s$1ci5A8H)8CM_kV}w0G7@Bvv)$9;Rz0p37vxZ)-4vAL5w4- zC?FBT8)3js&B;iDa*K>>4fT4gUlQ%wr_)WSO>#|Bvh8>5wn7`xp$GAn2^S%Z$I(kV z#a2)r?!D#!{Ti;?eO`zT0o7Ivs~7}9sM99hXcT{d6YDv9On+PEaO6GJ$md+CcSJ$r zT#)d*2Z6@CQ=Nb!88~0;WwSvJ!hKVmCtz1*VXXdImRS7X__l_=xd21Ug>i)JBmMK@ zTU|Z}xM9bSKhTtXyZ;s_|1Eg;rteV65U+!y=ZXCElS=BEsl}W6#$4>lPLJ${K$9HL z@TSIvHyEJF7rrmY-|ECq7<5p9y&9By>X8p!CWs;T&4zPfj$uL_gh}$l*`FVT2?D$` zp*=kgaxE>OY+mE>!zEJ25HAKI`-mb;a0H%QyP@_43CW~>X@gh=lPIL?g-Z!%?kQq? zK)`+dF4;Tcf()-R_RZPtqL2uQc};%4>OIH*%WJQpMl4eIX0AoV` z(ee5m001cudW8I6*&6o$1#fV2{RiH_0ApwUpY7Vz3{WHhNeC6FCl5b)HS2VBv$u@1 zAq}Ov=r0Co_Cvt#a4?JTe4HsOvV||IuwlFAo(`RRFKV2C7?(Hupi~Cdhlo${&9HL| zR~hMoR2f@r+6~zR8)=S&vU9O!6L1jqptr(p6HA^~5y#~2{VHdoEw5LnM?c49;awd? z3^q{uQezsx@vYe;Vf(b{{B$#guooc~qdcSx#R?Nr9(O-|In9e-ZFtL`G29d-pfxW) zgkl7zZRX1SK8X86ZtRZ`SaRQ5rT3=&gPj%Ch{shh0EvURkVd#X?biSX8l9WAfjO{% zTRf0shKxq*sVs&6BvU3WbS2k{YBTq!jv+-1>Yo6B{fq!JDQT$qb21a5wqg$d+*l*X zP;;U>{3sZm8*VXgdkX7%Of=p1vLah)2L_Hi7%`9s4aE~}_?=6z*wY5NYw-dzqep^BVzkhDmIO6W1}phb+pXpWW{ z*OD_5?}{!~r2_17)K-m{Gk58bZ+6#~`n0{va!u_|PU1yCzo869HCRO-D+j^hZ6l-U?x;T^0fg1!4 zK0AS-D(35S47T_u5rh=4je522>7=usYBloY$>N*n5gwo?i@;=Jm|-@$6c+4#8(`j! zi%x0yWO&zNqsMNiejMsE`H9!@3&+MIHr^ZVGHAH<-73vx_|V(JZD8Y+ zyk*jZjIO7rA+dg~vYA&lh!+t*oO-@`|1@zrUCMbIw&^Lr!~3e;90iu`aQ~YBeKRU! zj_%Oz)z;K{;xhLT^ZUL%Q=V8@5^w+ujg6GVg4m|I&JVi%{{Po@Fd-vXWa=0#p+ZIo z3?30+Z65&EcHY{R*Tx^f+8zrk2vZ*Z*8-8v;pYL@N|1 z$VwBhus?Xs>zJUZV<8y?HqYDMK;?t2B|@T`OfOi&J&4u|y-~jbqw?GhRd~X#JdzPX z?Tviv5o)*1Xfc{zUBJ^^Nskfj9i;9#ss%dqoB-2r;$4hYX<>rOM6Ph!=nA7)@@Bq5 ziE~$@Kds7y>ec|a`O69Sp)sREuQLWGEDtv9c)@kg>(1JSQW|xC!)<-<{mB9L7*-66 zQEtXSZs=WlUrRc~3lpz)JuUCfbGqljiwPai$bjoOTUH`*XH!NS2S!b z3%c=B(=bS9at1flHH@4PgI=R@@qV=Uy6QNf)DDM{u32fd1hf~N)ApI%o3YCe_2WP_d4CX-%Vm^ zz8rXZ*c-@A45KI>$Lo4j4tD6o2Us~25N6!^tGL)0xKtWV^OLIzH9%8#y(YaU$T{)! z5@*~;CT6ox`{wncf?GtIdRRP zP!(8#zGJ%1JTr%T!F09FjZy;O`S3bzEvKd*zpMAn1L!_5J=OW2yTVItmfCB7%XM>O ze$DKcfD5vt1d9ZXaZ(^;AQQV*JD1M`k_D^h%g;Vz35)!X%IKK?oIKNws}=x=I)dOB zIC7@5fbLq2s|wxeZle!X{Da*yOjcZyF&N?PVsu)}q$msYQdDdfxyb|^MVNlB@A;j0 z+;M=7&PGu)D@>HC*W$`W1LEpFb3uSkk|g!c1Qt*xaZf=gY=a&u|DMdKb*u4q1bn&N}6k9^K)O#v=Nn zpB~~39|B!O_8T3V9GopJtVj48ZGFM;f*XL+s>=5kZTjHe+=ifZSjm`C%dda)EBT__ zdNo+lj}5f&-xLUUh+v*sF=3sge2f~=@9lPWIJ&k2;PC=#S9&-#8Pnk_Wg zN<;0V7{3jQ)=%}WTKvLAhA?A52~(wj3@GPs^rOa1rslA+NIQKn`l0P0YhgV?@ja= z3#w*YDCF#3V;d8H5N%w@P@#fuZr!0NJ_70DrtB_RVlbWq`au+Q8sGiFg3GH3#G40Y24 zQeVIrCtbJ+`)dju5y5`VAw5;BwA7_g=I&)>h7#ZAK*Z_RgD%!lW7Px zKq?oy3^|A$llRm9ZDkTutg5}SkqwqTi;n}A7aQVP{-7sUSEN;kF$jR4fdbb7B_zAR zr$EOP8q~%QL$M2M##rwP!-fh^DTTU7;TzCMJ%Vuhcp5GFi-{~CNdbZ+0Rqbc&$WgW zbcnGg_vRVTj`&$;pw;e2F}|3WUoR>z@0(?BxBLNqE(X3Cl5&&lQa)Wz%j0N4(@Tq; z!OYK9Q{;8E*}98NLRSF6t@~lt>vTrQlfI9z&kxjpe>$C^5t_PzV=WL^K(U1fKMoA| z!DiD0<%_qfMxGMf7U?m#mTMcY$F{%Ord#)i=G1CS<%w}ba#1FQ6?E(@x-<+7CKy8nP8TkcHIFFnxM>lU_P(vX*fBf+uN%-J;a!nc0x+1NB$ge} zgGrVYyhDEY_`#yNACw(e7X)CD(*yr}W$NYvEn0_8N4;^?gm0K7AFQ|;!4%uwAZU`1 zGi+TQ2Zh)yX)bBu7mU}ec=1Au?^xUErM~?^`5V%>UJ%uoK@cYTdoc9y<$vH{dA8RM zGQl0&A-UlI8dr^;HUXNWN`q2NPqoy!)dK4(JQ!9*aT+{2)2=BCpjQ=VtI9k&p|91{ z1hBlCkMh(64`wpZ9Aw}}KWPYp>esM}dLQ07W4vDW?et5~+-YtPg@VqJtf`r;)W!EpwRE{;YPUgGdL`P$a`BkM#*SI zK1r3t-D3S)${X&0xvC&RHuUieyW-Iyop_EeolL=97+bQ;muAL+?ob5HOvN9+su4io_y<6sl6z5j_&t#V8kbA z3=5=LQ$I%IBGCquu$^*p!>gM?MK1NVkG4P z$FKST<|CJN!@5k6a&?C0gL+t@gH?YG>!E(0aFLps4uRnvxbppxKsx11wh9V}1zM`Pnki=D5pi*x-OkhqF*DV>}n1b z^DrPMTCUmJk4d-0dol$fe2Xl>JHmaobRT_W!&w$LTF3LNPvt?}7~VpC{r5@ymV-xC z79)tp@^&apRR_J;b`JG2_FocxCqf@}fJRRE&*d`pr_(;Ie0t;l^2euL8%lCUe_oEWsuBZL z+_{eeUJ0Dz?BKXGj(+%l*>ScRj(!-C{q@c((TD*(_MKO;)a&T&YUtTLn9Nr#{Pd6Ce zfP>eUu(ifcQIYdgCyCCmA>zm$fxvPzDiOnH(^G0IxDQ=#JU(#8TxXS1b|kNr$gM^~ z{K5D^4XUwyc(^!zUj=S+gU^@7?VwV&0YY3~&@CY8~ z_i2;O<6pVr!ATD{I`4LuLFHN?Y*L|<%qb?=;O4J$zvdsfLtj_p^Bz(HxL8+fO!Ek{ z`-tBPnc^=SsNAD(NxguLP+M+?(%;rS8m)7!EI?z%VuJo15XsN6Gk!a2Dp5?~c|S{D z@&31Av%T@_-#C8ZxTIfH0Mb^aB7c{_aHEaSKbR6C_Z*)`tszl8@g*p7@G2~Zd67cfxkPm=x0*Xl|QLh~{n{WYTlG%WDP1IV;^FY;O996$b$ z*QpQ|mpDeyK1Ovb{LEvD%YEXY!&EKCGW89 zth)`AqNF?~)lp_>0+gk=rPRe~{V6t);y%nU_oBOX?)Qzl5 zQ6K>_zY^e|ErzMq-tSTD5(VhA)3!pz`>|E1urO)QlLfF7;4N=vyWedVT7HVW12B!` z4Xhhtw40cxH-6C$UgFz){E;SSoykq&D~7lxsNhbEWt{o)1F){@OD|whSS_UM*mY)1 zjj2agAxAfe-M(!FQ>0Rt&qCibigXGv-}I@+em%T+tePy-^Q*6`#Jg1sevd!E@T7#{ zmD>BpNf$K!OKV>w_rLm1y{B;}XJZ}Pg-nIIIe$LY+nfQyllYWI`Q}FW=HebgiT8`w z|4gS0wRS)65gwCunWw^y*map}MVodnACU0#-dEtI-%)|0r^^w8VuCR< z{~y%fwx)diZwVA293dgOzUlg`=6sfVf}~O|CDnN>&Sm4Wzkf~mA`q4d{dl)53kqta zYBbxZh#Gs*zTkYhvgjN%9tkzxU(>PlBg)^3zy5jK+{q1*)_KZmZr+>-l!uaBY(&bO zdE>GO`Hs;`ebq{>b|nJmCK@xNP1kR$tFr@;X6#sth7dwbHLa(X=qqCbSU-55K8Oz$ z>?cDd0TGQo5@tqXkg>-m61caNq}oNLbLDtzZ2!k0LOHi^je}8`HOw zDy~O9T<`Og zmYjxcb+*c~bJAJ&`jk=PMPM8I*)p;s!jfWe;L+HClfLOoabVqyb(e=#Zjgdo4TdLz z^08a0*34gQ#E2V!>bxfuU>NjF*pt;qoDi7m*C1LI=mIeCiWoTfgcuC?CmAo=-L8l> zz#+4_UbkEJ=$9#I8~`6T-A#KH@l8_=U{trMbLvb~qlZCLgs^gT$WP z#Tx?kaMD%KOwS@j`+NQQ#C?d7V~BksO*`F|#5kjpWR6@;C7&VuIiFAZEV&I(Q*6{Q z>wL0JCgzDl7yB^?k-PH$uy;@0k+pr>=wqjYj?q!Ywr$(C-7zY*opfw;Y}>ZovCU3a zuIpa!Gu|(-#=SP4joPSDbGQEUob&vh$3X`pEGy!2`Sd+X;?PEZ)v39%`Md2HCzP1j z8d0KDmbJ3L;YN#W^roYM0RHqZu*KW7ixmCpB~+KFTf{*~9zD+=bpT#Sl14MsBhUi; z#A{84zI%gHTOWOwxA$mqQQdf}UiKG-?`8sq&PBkao7*O?uzBQTvJe3xEF6Z7P5{Jp z7i1jeI9|FHgN!*!T>gM&W`1$c=8C1ROiNM(!kMPG)c8z!?eq*PSp-B<5hVvwzZS## zH5)>TnM|Yn_|N7{_jAC*&-v-V{)Gjjk+%}N{Kz$q3+_A1oPwsJ1OC%IRg0Wa@@=tV zv~b`(6PV$*JwTil2qW2L)rmep8Z2gSq&QMlOY&oqhU2&425(tr`M0d3*Q*79pg}Bz z9-o9@*CuUAGd6@&J<)#sQ_^Qp#9JDu1 z(iLkyy?F1O_B?r+0hf^v69^n!yvzePT%Kll;IiM~(E@TWCFf5hVTRKAAWn{LHH`@% zy039JOt%k`9HPn*Aub?#!dQR};nhN#gl#wE)sGUh?}&`zsi`PE5Z^&LQW-YD(3%Yh zL4nZ7@FbrDD+3;LXLiWBK=6R!)GKmObkMJ~7O3ydSQMaTP-ub;sMk@y6!f6jz|EQ=FRMtQ+5?eawyg{iLOWA=qk=pFyRWxqAMaY+oWz1l;!{*S_tVAG#e$UODPzD6 zqf559Kc7r9j}%joLZTRfDF~&v^Sz-rXNk;mR?d)LyEg9&oRHNfQAd;c+ z8+AvsO;xU#H+?9UYvJV%xO$olU|S4Fw^Lv>@ms=y;g2jX+^C~D>FKTx-T5>ajTWc3 zmj@G6Q_cSOl&UBaS$9s*%1{XkG=&36MCYE)N*Kz@au`Qiln?_pqlFncCNzV~QGo#U zGTqxn)C7yo&?q7?>Bj65#kApZ>9bgi+A-NRpL%{w14H){?_`~K6xmy4AT{!Nxkm`) zj9ewt|mguM8qTQ;U8x0OQ{;32AG@#B^i7(=Mq%Od^{Fc10GWZLu&d3Tt^Fs3CH=Ipie zny>*-PXy$mZ&Qhy;GXWwTXp!P`LYQ{zFICF!(jFjyinY6<$)_h9Dq=r`pRtV0UBz)mLW^hYHs#JGh8 zX%c(2)Xx1@J;1ms#c%q|^{q7~HZ&EqS?1n1i`xMfEcJ{dDw$2>M3O^Ij>QfYPNjPc zPNNPFE8Gvy*zg(!t1X?1e#&;hy|zHGDtj!W)v8`t0yLC`lunjQ$WIxK)aR$@Jb7|w ziVjvfk&+nKfZY>N0QA;((&$2qw zHC^ekkla8FA|$e;G|HIBt88fu7cS7BsFA4Wtt+^YCqh1Me4t33FITR884`ZMQaZ03 zK^S}>*bG_+UiRi;WPzE$IXh!_&J0N;th9{oTY1g@zH7*s&P>|?&I8ud$32nU}=W7a2TI1ZL3Q2Y))M5b)QH8 zFB`$(m;)kAIv^tD$`8bG%8%+tg|`C~7RE-SH;;UZN5jt+TYo!vooPSf7G_C!k1P;b zBG<#8gBC-9UZ5<=cqmxg40XERT7!Y;CyLC!0VpY8K)TKI8$yGR=0yV-=K`tRO`V4z zKuC^-BG>&FL{U`xwgs7?R8zetuq@pk31UoQs5x&K3u_7ea!<7K85t#y+nO z6T8la!ir`2THD$9-0NM_2@72+-0ij7_$JH9+@DPmR(@F}h&p`4X>~nVld*r4p!5^5 zptXDMfd;;^)}U`UVO4g9M2{gVBx>2Je}nvL`qlAzR|q(xsD>aUP~5y2BkCk^s^R$0 z9Y=SXoQNuWlFq3zr)~FDnR1#a_8M?f$(s)HV_-aR=;}3-#FS0CTc!}K7FPcty2*{5 z<+8l~#5Zjf?letcPc=gSMOR2aAv=erxxO|929%3srGL^$OV=?_O2;J^gG1j5RTY%t z*ZX}q3wBGgu}gdOk$Q7fY8u=td_W$8gu)-f5r4<&_inkcUJSm#@U4?gWXw|w9!XNNdAl1QGclG; z?yE#00o-e+-O!KI>yYQahbv2(aMe>v8kMg%yi-bGYTn2^AnWL11b>HMx}1&=jgvlS zP2;`MQbpH4E9BL+ak~kx!O*~zg2477xX}^?V*K2)R{r*+U8*3t_Va(j2Ofd>0_hD_^aA6+mHnwArh(wzs7xDu3Pf zIy9>8WM_k%Cw?Hh(V5OXbDNSubzj!o>EwV%UZ#CUyx=wFpPKr?L%xwH5dye3bB2RkVfsnaWdPt-81mTeOgaX-xd?^zQn2+6#0J;r8MbgD~b8I4_U*6IlLG zS8rZl&p&l9vSS#F8ek!@3lRfG+-c(Rcxby*#P9;QlFxK&H#t`%j#B&;$+mTWZa!{v zB_PGI2YSiaP8HcE5fRME!BHG~K_5`CA@6bF(ymVbO6=fIOw1$52uHevdhAFhjOJ&M zMl>c=tpeP_YvFUxe7lrdR63H7vMcg@v@A;Cs;Va@kmuO_um?q&Yl*R?uQ+!@Pi?eC zcYdq1PqL*^RUKTeQttS~9|1*tuOSL;B`fKUDda9yS@cwVYV_D?R~P3HA=<31i_33x zDrnBmG8`8pAre*W;XzS=$Y6r=NDm~y!8~uJF9L=o41v>2LE?;8S8flz_P?9HQ)*Xz zHH@o9Txt|Wk*@$PD211&`N?kcV38Bnk}169ls2M=Ab_MPsp= z`Hvz{kqQE3@yrM@Vo?4CCi=!cyaF^(LH8;tMYv{qdQImR^|3=*7HRt*Ba;f;_2Z=Q zkifq9XB-_S6hfLlVI4iNR4XJEk&ZZjKz%wvdXB<_bMVV0UVi%w8L^!BhOS zW6kc7TTH0`*nEHmt0FV)e<|P{3^JYaZZXg=3aKq z`-5x1z5ImH2Nl6P)nhH$KrpYJ=-O{0@4oujL1Eh;qE5d@$G&T}Q`edtj?mG3W?MqH-;q(FR795D2!QyrH>HqTE;VLjiqIGdE7&dJ{-~Jj zhG9+@ap06?9?o1F(isA-%L{B1_EK*s)TqKJSL1eLIovjThz=ZVqt%M8CmdglVFalJ zTZ6FE!T!;J4p&f@ttHGq4^8i{<(-kKe2~^qh<`oJ4$1JKS^yV^d){K9!0T3#QfZVC zk;Tf&df^TerG>;PICZ3nSX{2^k&hsI%c!}hcGS>!(16ep6(IdjEpAzZI!<n8F)tiNm3wNH~geAEWOT8| zo{<)GJVE;|deU#iJ6vDwlb?`PKe$R)=v10C2Jybxjn93DLxV%7-SF8A>Gw#1i3+OZ z>3&WQb|^K%wavbrU;?T>944D~S{b)|e}sNHgn&eOgL(iZ0#hV{lCl)(h7h}i6prMR z#K7jL9v8ucM?Vr1Z7WeVxl0U>9DRGxA=#cDtbk{PYNh__5+;F~DQmnaZfxucqDt4c>@K?vw zp)Izls+pOs_|dMgJez}|rl4c~x4GK+?P+27p*Xe>-{F3R;ZSnTE0-s;{42D}-bq?s ztIoU0#RJ`xHhi08rLtDP74lz3cR!s+2HvJyI{m3;I>vq3i_uY0VewZQP)$;Q3e2zh zy>2)8tTXv*aIl<)5cNH8!>%KpUW$xIe72azelGWP)n0U;`?GQ|6y_jjw57qdto7Qy z`FBz(P(3+8XWy}_Wp%Oq=k|vv^mY4VV*SqxrVFi2<#i5Z;Iw|8S75r??CE@4I-i4p z*M-apUQmhNa3UAn4Kg0iFQ=#NZ7x^8LPs*g-(b*4gqpKQSIrf=mV>LD`{zDi?;f4+ zb8e}}K8{@;w_qpnI7krA5YywnDZrXl21wLx`T4AJj?d*^d(^HcD_tUxxA$GjxOG4B z0WUk1-K#6bki%F;eyj3H(s?VYo#8!jZF3(WWfCO{`LQI3&GZBtkD4Bht4~4Q?~7-o z{6uL_SM4-GRS-+Ut)HLLUo^plN)ie@Y++cfI4Mj6d__GQbbSjwK(i=)wfCI51ZH>W z>jX3*!;aHvF-Rp-Q;a7w_gESdgY8570(!C)YO;T8PWtF*d!d-~b2zng+1!u^KA&8* z>(bs&eHg@<9jSgKPTzgBR`Y!vW~8#t4=k&`Ef0>Ei*m^%`o_!EmH#}wtB_22V_!VV z)xY2WsleWP{i(#S;e(dQh5v%8OUA+B|2q<{kZBP@J=T#~3Z7r?Ep3{ae}RU>kTifCX4#_F4ncpmb?LM#d`kpw=V0XQr? z_owbuE&myrFiTIQ?!zuXNlL+F6I_szR%1a{A^Uj)bC5QpB3ecdIVv*6>ht%Lx%b-o z75$v%vffx%}_9QGjwdwk#g7=Ed(6HqJa@YuJT z?CH{$>C`-(Ks{LVb8Z?xXmwgz$xW#pky?xO1$i95VoZDu%&}+dJP=O4h393RAyR(F%A9Bneou%a zWoIs*Gld<;Ii5-_uxiv#G2s0MNp1--c#r|%b5cQGt8MR}`CfB}W?LJRD|PnP`g0;h zQfIsq1)(w;%LZ54Tu)}%qwM3M8n%WP))p(+fY3Ec^dcNl_?B0ox09~TVG7-%4@1m) zRzeb>6UoI$Jwl8vy8SSehIWo`_1MeIE6vQ3?-m?}R?x&6A8P$-1h@p((Y;N&pX8n7 zxeIN)J#A-t{AxAju{Tf9^>*ROaX;U4mKskgF9qdFicWq~R|gwP%TjhiZy1?bk_3_d>29jQ<8A#-DgpPoq>1EXd2aZo>&ji zed9M)=KvJoW$OMh0JeCdE&8+ya^y)93prEMJcPy;w$i8RtT7b9{9%GK?FozK@EHA(h~`j1eTyG!hYWzY@~MD{wj`l1~be;~s}z z2}LaosmZw4W4fRH%oFtJ=*h{pohhZoEY{rXD={^n;4vxHHDHdk;`z|(fP)eHQs z-C5vlAZy{I%i{G5HEw+w`D_f64h-40lwHv5(euzh5yQLr5*u)5mHKUygLsllpzRqsp^a)6TA~aRv^UhxJGzY{ z+U$gwYR*HgM0TD=*Si6>HRVsL6hLuVVRLzKth9*EZs6R)*h~vdLhR=VIHjM2tre)A zxdk1S^lU9t6be*yo;%+(6E5cBD+QuVE1!*?@15t^_`nf5%-K>Qik~!CgdLEi$3?xz zQ(qu_rYj6ETWom|hBiGt)pob-w>ZI@K=R5^QIdnaO$GQPLZuHSACiGJ2u+%^N}){^ zA9)vYUn|?aauXVPvT&GvfT@K-nneB*3~FOH!{U(u?u7#$HAES&?4=xU^DSrG4@W_}yt z9|%BEejDT?#K-_KrcI!wa`D1lh%|@@Qh80tRPHOqPI|{E#e{)H>`i^|fkiTn)L|$3 zbhXZ*7HiSee#?wUW)D~vFT;4ix&`bCc5sHomOqX3ci4NcyYR8?vPhVa7nGlDx#kw7NWvu3~|x z`w;nIQ8)=)f#pW_LV7(|ZfNrw=Whyfkeny`(_cmJ=6gC7$&0fLzwZT<)XN)bR(){` z7rwx%NJWd}g5(P~x*MQ;YNIkbmi_kB1NPfyMr0shjbggvpwEClu<2~%<}vjK|FF_~ z=K|c`ZFt>jyvWDag2NOdYJCPzev9uU$D6jx^d_Q$hN^Y#hI_-C*Qd$pMn08K>ZGpy zAUHY)PyQQOD0#L1yXy+;c11`3{t>i2l67J=b<5^E}a>Ds{9E{f5@ z80(pf60(6&bEL6tORj@h_$S48opC+)L8?P6+)QVW~Pd$UTRfyuj_?+ zQ0@<^TL-E870B=t3HBHz=%sY6!bW7+H>qDp4ECf_e(pf`_WZ)4D#ND*L&|LsitP`$ zA|l0_kQ&=9bwq2OcGxqeK>9qs`bg2AR$kT3?-U28J6F(3!=-R7SMcA1-{4x!Ot|Y4 z$V!XmE!QTDwI2kepUz*a{$Om!Keyqo?q*4JcS~PNG^Mz@VAhSUY(%#wROk=sr!095 zjKrIQL9^gNnc%uyEn)S^7Oi>d@N1h)=y35Yz_#uAiJ+Si7tl~uWp>l;s@0jgT=lNv<#{+6gKvR6wG3EUVLUx z-11D_-hm!<@JmjoU(!!)$LjI=(pePzE=*Gd!bQ_an_AuzO-0&t?v_54sRNKjP|OjW z2lF7qVe2U}p0>KkEfB)1bG0{c?w6U)@Em1Y{j05iuD(^C+f)cn0aAjRxZWJ&4=t1Q z=yA!~9gd|CWDThmZ)(%>)t)CK9|;SGLM#h82gl}&5JWp_;J#zwpr^qHV=!h2bT_jB zkN>>3oUV~J&G>uj1k&hv$6(4&K_`rU{Nk5-`J0<0x2p=r>^Vts6T)t>c-nXTr?!h3RI2Ygwt+p9An&_j~`+5wco?`IQBt9L~Dj z1!4yAU1A07`ud8aZPa{pfe1%WUq5&j7|MhO@ohKPkJh0DN-#a6q$o(LfMcBMyukgD z^G9`V2e@Y_t%51-QpihRER0OlTFCYY?M&}{Acn;wqio%Cw@x0k5e?)q<@%t8gUr`+ zM)*yo26aImdI>`QPrmKw2X5kU)N5&7s2^O|$x8ak35=MBauG^YYu~I_r__@xfM+h_ z87P>p38ELzc3$P>%@OK!TNvL%{qj;2SsbWcIXxFCsmNX8l_GfCE!^A`ZT<7%w$-{L z)@RB}X`d{b{rnolw=V{>#IFi}q-wW{f@uqT)E+`D7|3B+HNBNih-s1#1Sjj+KX2QX zo2MH(xbwa-KTdf?5<`J&`rN5004;)9-EnoN_W;{<;W_SJdl%u&+#b}lgGv(eY|#y< zxQ63Ix-okEmKxSYyEmlaYB~poy^FGsn@IBNu2T(c#PIclwDhGsEqJ<7A-&_~{7CET zPgJ(xY2$}XPvq^aiP`DgBEp~zyz|M{Kdq*lEdZhQ?;wKFX#t?$iTT?M(qe}Y&X~5E%x|1VQm+bBku-RXi;u`17Bhz$u zArD`z@ojc=oVwdy0=Iq-Tlm$N#!yRu+FHDIX<%X~*WWBrlQmiPpdV-LXa$M%>Dhl^ zxqk$OK&0)0l|Ul%mdCxJA~bHj>DML_>8r%o=c6_SmP7892?^`iLwQv}`YAT+u$O)R z!*S-DL_}g1y`Lq}vF7_a2;T&M*}!6G;2fDwDWq(b%W}KCwyxKcszKxXTZ?T^F2`?r z|I)ni<}y+Q`b0@B)ZYiqBbsP{4Fnw9Rya35 zVJ_lgPYvq5>#Ymu(ob!nP#vu%L5*A8v9v@4Zd3-j>l9}DNUNm=lS;Ij7ew}v32KY) zX5G2pDy$Yn+J))7J*bqOVY`J?t^X|@b|gni=JK5@i?$W3$kuoi;8lU35W7fkTrx~8@T*9FdEa3YwIayCN(gDrz z5&v!!(~Kr0vZ&Rt_=HK`c)C|@$7A7TLUOn_hQ`;hJ_maWuTKYd4tFb{V3`1tdkruY z%#e3k6e36_1A1B9m*1Q@<>whBkzS)}w`jO>%P|SOu{wO;;mM0y1Av55Fg6L3Qu(7L z42}JdG01l-{`Ge0+eQC>ygUjKaWUGL5Ha%wkzd(($v=hgH5;9c{u zu#)My>OpimRkUE{HJ5T3l-m3m(}UF^D&n{u17;d(NtGufSQaog)fB3o>({y8EF`nD z8MrcdM0_6L*c`49ZtXp3zW0iJxIc9odOGVQ-H)UIw!Y-F-w~_0^#s2SB`75XnZw@j z7yqVA*fyPvEb?*(34FX3VbMdDmV_kS`bChdE%^pvgzB&>F=>*J?b=t=yvvVf?TMdm z7{cqcV!oId;Ecdvs@3E{0T~pe1%sejWO>mZD zf!*b&S>cIVjIW?`Lq(+tV2n2U)X~ZiteC$KuFhil(lxy(=ZYEhB#W?V@xu?i_mWM2TO{QN0J<7;4*WTaevCO9YwI&jKxlaMVRd7qo-|+>qvi zY%tNqnZyLhHA`hA&0n6nekyT?u>%ViewypAgTQyoi_-EoprG3uUkYT4=c~6Gqm`O= zG@Ek?GGQlsP1EjuFoJ!IiS}mLQ$PDP>4QrhC_2}bYZmv7?ScV7Wmz8ui!Ds4@k5}U zSGzvzPV(3*oJ(gvV%Pf>pq|k0qM=3F#rn$9MuP~PJGK8&xn)c|mB`FAu_Rlt%Yj#X z1GGq==;O#-+Y*0*K2!w#=|Uq~4jAhew}-ot zA_-GMrbF?TzA{SP}= zZ2PmwRvc$0JX0}iicep~b88)8nyCo$>oAD7G0;0XUp)pu%D4grv{C%(CO_YcVpSQH|jQGgewfm*1x_5mtH z+d>M_A;&W7#i3ilIQ4UIeTxO=Q6umNUPRj0=I?Lw-2p~;qVU>3OfBV_%YMv4;OVPx zr-h}2N#*R}e>#J@GD#iHI=Mwf0i^>xmSF91TgixY3|8aqNx*0%PV66TJ;Z1bwU0EA zX}wZznr0!{ms14x4zwzj>uJ$T%(%zoCOMJxx>SdWG8m|;4`6S|y zM?J9wqURP|IUE{Jv|3bZf<`zB@C&WKwgC-u%eE>i=D=D@6{K~7ldK*Ng%D31$g#138PZoi7{WJn0FU=d=R;+s zO2LrETm@lN4JiC9se(8bfqydB7ixQ7(f0Cd{?o;u5DF_N?us4`=P%5o&??kJv<|ICzUj{7RjQXI zfSw47!L;m>T@O<1t)0VoqYTC8-+t@C#EMqYEioPN)E--7(0Ez22OgLj#W36oq%IQ8 zB>VL*(@47JjVyUHKVmnXx!k~@-pz#(n@@*mL_1~KVz06$+`I-XB4U3wLzs62AGi-~ ziVz&K_cJ3BtOcRDEB10e{Yi`wbl<;)0wkoJWKkx&#v9|3bw(Sp63$g?tJ+o+H(IKy zK1H}x6`3!q*N0$c&~q!ac|B}7zVWBCG%gB*m1cniyhaI7+~}img0@hqUe!h>N2QD1 z_K19dWBWR7{^v=I{og0CFXi=5(dbun%9;IF1l8wdx6n8_ZYg%cuz3yQ$Wntvt)cE7 zDEL~R1I;Qrj&#=Vh7n+QqUdPCy9Azw?2U`~)@H1mw}Snt;+0D%YP!!Zzi&0= zo9zsz?_iO6xT=mvVEAw^Dp^ZOBOz3W|5fMJ$M;}MoQZio0+6=EmSGq66CWU62d^)w zMp3oNSKFuzM(5$pvvZu;B$s*M6fo;|fae7GKPgn-zEY?kUV(*_Kxfav+l5u zEM`Xf3fb0I-x58#@~&YG=^>3zT7-Hd4WD<%)2GFnw{>!`v~^JW-rrb~PN*i}Y_oRi zWYb3_t7iq2g<18o&jVExWAq43|H`mA6+c`Cg6t|fP0VdGf|Nx2SO6-LBlNr zR_~{H>$`ccH(v&n$10CR7nB_4h_PgRUJ~Lw z*q%JUY}Fs2smf5Fr{Nm8WP3T}A562IE^l{~;!7eH@3fZI(f>-dby1hlUA^8oc6N-) zqyLO_IvBes2W?%g5L4%*Z2wc%vX8upCTLGkzDAfp48+Yzh}j0Fwe7=qFvgPpm4RsZ zmP7WGudc~wsjz=mq)L@y52c-awTZl3SZ^`2oi)W9Z++Usy6!-YPR`~AO}nR-KVLhD z+Sy}!S%gP3jc*6MByjNRxd3f;>#gj`)vnxG(pK@!s_6*6yv)4Wzi8t z6~$C~_yWL!-dzUvV2{&Jp~Uh>=UZaQrZOhO=f^!?8#!=s;C6Yu3~O$B(VtDx`SSa? zv6-}wy1Jz^$u-o{hE||rp|o^cz+eU^6uum#qFl};lv3>&y{rf3N*iMIZ8a#-w(B5# zaPi}I@!)6j*-5lTG6fIn`m@l2ifC-;Qh(&alvx;Z%ee!`IZ&{eCHl37!Wp6*3@SLn z6LTr|C&O-@La{yyNW@_B0oL%0eLEORe98m4=Ag7|VhElXV}qcKNWoYF1SGffgBZx* zOUShMcOnS6v4#~l7uhJ_P@z2wUst#(z-%Ne8QTb$lMK=g2lY@7BMx4wKt}UcYjt1H z-%fVE`2e5(JaK$qF`)w)^lvg=T-jpYR~n{bK*Z>s*Nkah6k)VjZ%QN9x%ipl!caxf z)6zgXcAetQ%kDR?JUzecocC32ZMxwUY@*Ii2(7=Jp*1@XPrELJ05ZGABR{}!|8pXv z38f#vXe2ry_-8vLVTaAoyp-BhmoI39sUX0UTL7qq$IPGSkPa$_>rJXRq{ZN5pJ8_F zTd2orT|r59&o}~0ZkRVF;P`bj_j_lkTTtmrOP*qI`4w6r@ zPZ{H7MvC$|0K(YL(QPpXs;$ZgjRgPT$G)Z8oASPkX*6^h7%Q=(fDa{%>1Db04%0-^ z<&UFkebDo@-Mp7~B;4jj#Q!;BmMUco3ZKfr1dg5>pao3@-26(i+W1NYd{Zwa9~VeL z**2QNkhr5j%?%yWzK??n`F*e^h%oTgs9}U*u|Ee=OhDWj=e7 zqUffMi-f5PIL$Y)&F3?Dz0{0H62J&ktIw+Xq1bG;Hd^sAdPQzV815hfE2yFn*P|$; zl2k3f1(e8#MCgKSER`z2<#xeW46=l)RQ>6DTd(X&7>63;9soUNcUoR~Yh?;a?zY;? z4?X4>u0%`{ZfGbo)Fw&lwV8%W;cp9ZF|jPEqAywnyqUsHEvNN?6t(OlPDd6A=sMEP zJ}bs9<-Uc59)yK;^(k4eqT@HMkmC+jk-jszX|3WvS$kk@(`i|fZ|kg@G6O{Wh|jj1 za6U6epJ^R!)pnEecqk@U(rL3B`=->jxEg6>2BYWw8p>g>DUSN9G0VZRPcG_7F{2Phi~S>M;571wUBofP>vzp7Wv!%{{O5s7Ggm68j2(i$XUT?EX%=~Bcf z^|;u0HHh4#aYy~aS&OS^B}$l?I!d% zA{}CysU11^Lc2_?5;k3k5Grbamnm2X7`2x-(UcKKp?n?g4G~TW6&sc}Af40WI!G0O zO7=sL#-wb(>%_IdMU72b_iXUwdnyn9H`fQkI8QX6790qT)IO`y5O9DoO|kdsh~$7f zaHpC~P6y6c%$5W&Ja zU+iODgAHn9(NeK;rr}8=gD`$ie1^D4Vk8e$_Dq6kV3V>+6xOKh6?It&+NlykE)P}T z-`Wu-vzP&!5z^>SqHua2CN{Xd@=lC9!3kX1%)d<~n)8qT~Npb^Lcl&l#ctP(`*Z2&e~*>2xNr$t4iw2vdM=ESjk zZ=S%|=Nd7?hdU(HK2=|&LY}6dKFA-04XBC36YB#ede+A*!|&f;b8iN~6K!OBcV_rx zfzJF}FR?G=f7pXs@%keaVWv*@d*QOv=DEXjSOrU^bkWQx4~tCcaN5RNpLk8AA~J?rNxvxRJYy&%B> zB@^nK`4rU~yphgO_c`t09M1OHWVO$v6#QOyPH*|4LouwXvdTJDK)&`W1qzp6YV>i= z(;$Mm-_fthgt*3WzDpwzruc#5EtC92GZVI+;pU#$tp*!tYB;gar@5=G+{p(2>8;z~ z*Q~Y-Jqp~l@BR&$`MZ(L;3j*EEjRdA=OI<6S}$TFe5c+0+#eAfyPY~y+>DQ0Kk)Kf zzvzi+G|_e_1Ce=T#J@M)0^m3T?`PAT1Bs*4YZ2~i|=G}XXbocQPO|o%hLjP z_$2TZc9oS$?nxhg*(4yu6$ZCL5idJ~2?e;(pU`iAIcdtS#DSe%P!6`*X#yK9%-hd24r{K3JWpLj8P6bxbVVoX4tdGi39 z=KlKi`4@;azu*6o{UJ|VeGPAKbWlHte`#LZF-^E#%!2d4J@&x{OaaJqvzl*cPf&X2cr3L)&;;eh% ze-~#h0sp%=s|EPq#aS?x|6ky&vQ0Xi_Ih<*oz%I?OpN$D0*oNez<(#-e{vZAS7-gN z&iY@S^}jmne|6UXA9NOn996Q_mE&KVct+=wYXy>b=y{Y#mQ>KWucQiMYMAffgp4ey z42WOFRoa@dUt0pcUtQc!qwoU=S0onTHn`*x3JsP^kZ=J1++@?`5iKbi+qL(%7#gXR zKgJi8>2__tH({af-Wm2BfMEz(6hV4Vi19sG-(3&kt=NLC{UaIT$Vwx)XtFTJ$T9;7 zYkx%X0!GjEPu}zckIaK3@F@>qLN@cJer7iTu+#HhXJ)89!AOkqXPq~-bODm1p2``b zc&B`4z8_%(hjAM9H(m*uG|}0Pr$=5vV+wD`{=KE#?iAIdFyk>q9^HcRE&BrlZG0!P zT0jHqN^B&He8IivD&uOfu)5JPoOXCb=pb6-oV{KHIT0(H49O&=S_+0U#ci-^TF*i$ zut$fYA#4_6sIyU+eECSVnXWb%bm0!ih&m{F<@?+W}hf6 zA&YBR|J{J9_HYfeC&~Z}QXAyQ2fjEv@P#IwOQiqotb*ZHp*Wz22oJ3W^4l^Yh4fuR z(u@U~xn{5r+BDzrK6;Xyz!d|e>XMOd8vT1%&p@f|b983Fx9lH<}YcHE0DvNf>)jD0Ye0X3XT4J+3mgi27<#*+o3)M+V=bR$# zUSU@7XsWMGkE$CXa-z1a;@yxCg}iT<6qh_+kCtLeLL5#kLKrDz-0_k1gN^#!^+$lcjf#o5z9m@AhuD zYFZIRaoOHDmZWTbDavhloxXF|OH#x8(x{a!WBmaYzuwykva8-REiXhc>>`!vE&gw! zHU3m?^M8mI_x}*B^Dm+m^$*cn`661te~gxMn(&Gh-9JR@@BblMGK;6l9!xiso%p9e(m~)Xwh41w=RXINB4qF zlGUFovqd9WYvdT~CvEJ*qv~Ulh<6~LJT7+-Iu70KtX9zp*=gIk>L(qO=q4S%4Qr7Z zaG#9x8WNDi&p&=D_^*X;#OY1a9p@+Q4W&I;y-B^Vk=Muei1Da6$q?n){8 zp{{h+f@(~Hs$x1k@Ovu(y3wcgMdB6FTYu`ePNloZOmD=UfPTa zcKjf|lF$Kx=wGcE5c7#yu{jP5fuYrg+7rh+UVQfegRfeQMpK8HyVP|X+kf*s7TCNp z1~hr1Q(yX?d3af*A*5fr|8SJDJ?SsS5`IOXLPnqf5NpY6{%%MF?HYV#d6>op_2Rj1 zwr0`;zm%2~<_OlVoC|~Rr-d6uDb@tp>cHY$y~U~3r-A<}#K-q#xjxI5XN)PGv(aqo zk{t5c8)B}<`g%!>HYyl?9xQ(R*l+s0pU!_?L%b%<3j)pMw`0Fa>egZ=tE*E%F+0wx zP%Y+Kd1@Bv{ni1q>nhVxkVC&1?ea`~PLO+(;e%ck)z##sz7&OHIbDu^grl zi&#Z7u(RV3p;KoPkT)E0#0L-?%1k>FqZ_;yN6gd6^%cjolbAJihUM{l4S<|h$ky8d zsf{?qAnLhs7}H27HMUWNu{ki>(NPL~L&8vSqy)VpunZ}Pg|;TcP=ttsO{Y;v2vH1v zQGK`!>kR(xF|~GmxS;D_8z^&Ycl!2{%e}_J$B8YM8p$x$;V}$c&f;b#YZSW&FKjNp zH&dEu{vujeB@a!1stUVuJeTuYw)CTb)JuxdO=)jUmZ|NJ9ZJ5b?F`*6hoThxq8=!7 z_Kf$_lMS^Z?p`}-xG@~NK5rO?gemHo)QE}phI>Bd+uY0hyYxq|Wtq~H0QM|vX*b?w z2<-f;L*40C5uMZQ{S;~ck>Uto?f%w;6k>wX13F_AQNhS&6qXqaYSKMEqX-eOu56DX zLl=#7S9GjNQT_B4ATvK&yZl%fw}oUmrO&)g+%|!=qGI2{=~p5XS*e*}i7d^&CAo}H zp9UJJH-Q;UN&PN%2G^}9?!u>djl0+@om3iYeH$0B&EU;tD8e;a7m^@cS@U;IZ0E6kM!PB1+gJ*4lFVSoT*q zugYQFaCk$~SdNWCFFbnGJ5~AH{uq|Bsc2}giAF7CueFti@K+2EQ#;Es!}ZX*&?_g} zJd)Jf5dHC*Z=ZOO-;vsPlKRsnK<7@@BLGL(&~qJ554)ZloTY8m&kN+IC#;t zaWzlM$^ho8T0e{dp}?DXlO#f5#}x(a1blYEH2gEm&}&Lb`N*C9xym@=wms*)PNu!2}} z4iQ=i4WGyt+xnsJVY&^(jZBZI1qkEZ`3X_N8RP#hR(4oeOTo?2he1fHxxr{sYztSkQduG`Ro`TTG%`vupqlsan4?-Gh z&p<+LMsT~IjtR75OL!+vbXG+eu?v4I10F z-B?Ys)9>5+zy5=FoxCUOXpQHYbBud1gme57q&`O=cL<+3xbRI^HgF=BOc1rp4VQ;B zxhC)TO{-2>;qkRXFy=J^_%RWZ8eUjZhw;r-K|&oAzcAMQ4w*XZwkhgM}#T6D`dhfL&lD(jy*zHIU2Uml*M`I=Ez znn0Ydmv$=50fH7kaC;op9EPvi#wf+#PW^Wid+UzkV^)(@>wO4pISq1p$ScEnFpseJ zS;$@6aua#$r1}xyI|$gabH(ktjWNS2x_{B`mWHLL6xCcCwNI^$7F`Hg%~B9l>YY{3 zN;H+_9FR>^+N1k~?_Md0Z5K|;x0&tjk@1&=KKE&ObGf4tm~P7TrTchZ4Rt{Ze2hIc zcZYB~)<*fk_o`%?#XZ}$uHp-8GP@sZ=Q7W=^V=_fe0jsFNd2#2iYb+u5`q$ui;EeC z@wZ7kk{u}U)Bzf6RvBjX1cD+oGcziss}0#v6X%rROnnpt3Q-Y15F6b zZhQIL%hfBF>+bIc+x>A!EW)Uns2s_NtN203Lzn&WZL9Vl2d= z;{=v{f1aVf#q>B-$Ts^PG<1sDcPDBreRR&RnKeN|qT$I14iyx>7c!XSpZeI?&lP*=*|&%kMU=1>sA(mYZTyuWJnZ{NApGpPz4Y^9ptCH-RO7Lr!lN928g3d@==rv`tn)oixq{d za_o<*IKafIlpW&DVHP-lZWAPt5S&*DeG^HE@aI+O>+v2fmI#wzRspYQ3>L4(SZA}W zwui%7eW22EGB7ehEfURthvY`Itli^4TTKZHqE#eanTxcM2@w&~7%l=o{_c+A7P8H+ za5(yPuvQA03|Rj|sp-zeg*9llBdSjxjA`)qEmp8@>KF&jHa;$@VXVbYE>t4+9aD>} z9l^6!((G>atS>O*LoSuZ-M}2oWFN48)H?0&gbE06O8_Tgl@*riS|6)aqiwkOx z_yx3md7)fnp2UB#0=M?ZXTyLw;$P^H${TjLhry$xH9$=wGtwSq@MsF5-@WtM9$BD` z=lyX55|!~|6K+qbbt6lsQ-U=s1#vHO;`QR-xnknAOz%gm?^>tt?aj!82$z(*eAOU{ z?gV#vcHi2VQ<`7pEc)N;l@$yOxe~~8;*A@=3BSw;H?2ckDsRwcDl4+Yu1~ ze1HJJ26A(Z*Nc>5PtZA(qzdxCG>8g&2?No(DoODZF!OuVfP}$c3$IT2;djKVS_#P& z-@D57xLw9DT*XzNkT8h@;1QFe3lXtStgg&&XYcD1BKYUOhyU+xNe8kpx^PpHRJ;~1l9HZYyrUU6W z0ZuJS44WJoLJnLpZ*Bp!F2~H1WRHB^^u;o@>bJKi*z@}_0jF^i9d!(ENBLZxL9>hp zAt`%??e)*_x8P8vTA0fw*V*i#hT1BZmBik;!6|}3cXB|=A=LYz*2k%--0_kmlg$!&7P}QivN&s7un3tJ4>bsngny_AzBx>70PD@X| zqC~y%O82K~-#jPLNM>ZlCBf+)R(y;54)%P=$vm=gkMdqeT{ULW@$==obEGj-a1v%P z8Hm>@+LgWB*aEv?XAb#wT=J1ziurYHl8@vwIW4tTOKpmySD%EkMCd2R`chJGgFjzt zoM4fAezsDdj-C$dL+`G9_!;r}9Cq`+*O3O`Gp5bKn%a8;Mg3_uwXvI%M0(HB+u4H+ z7fsp7_F?@h$qxnP3{?$3E9F-gTEFo(?1YA>wWF1XXa{}lf8m@ zn#Dcuv6(MQ0Xz+S(3=48ypOpKC#}C#w7L7!`+Ld1+e=sp!EyDM-B!OY<_^_i4s;28 zaW)f*J+obYWdgiCKGOAzyAzNnu~4ME#CrD=F)1f_0u7FwD9iE?ocx?XVd4VFk~$`h zS3Dm5d6X)>!>#?TvT7{miore`Pk#kF%|25aH47uPk|or`G#nWqeNEJlM=41i$Ct-exxafHgP zrs~?kTZF^U=B(Auiy_K|8y^1T*vwQ~txJkgCobt+)}K@0Ao=wx6`E??wC%=att64I z5qXSeD(pZQ*%T1_gZVSO<|2dXZbNW(jfy;ddVV&4t1I?g$$_)QP$gW)CsKC?wTlB8 zK5?H;{H;x?#Ea2t(7g;_M24~UeW=-C7V>RlsEtLxe3)HjJ7dhgqKHI#EXAQBDpFY; zx+QU7{niL}%qVg#^bO1wv6X-OfuqrMTZ}cHp70e}PePa1R4i8=egH)_{W1y2uzxbir zkxT)G^O9oAjRWJS7k4I4Pc}Zw5Zt!`B$8-i6lWQzcm_)GS}QS0DcID#pq41qa3L`1 zLY*|p_0d*qRC1x?1@iT%)RXr=eSlkMo`k(>$}YqkOme49kG&8Z&LRl& zQV^CuL5Ra9iXpfsR`0@vXjB}^MujytGbo@FWq$y|{PC5!BO4V4L6l~$*>Gmf-qe+w z5?q(ZZn)*=XoZdE!h;WxQ)9OYI4iw_g@VdLf~B|&YgAucrPq~_AEe_zUmem7Z?p6< zn_925QelK=BQzik-s57WLV`v#?SCGN3X)p0HwnNk=fhGQU}wp3e)q2F;Tldau>#OG z#35EBMcvt9I}EC)&9VAl__Np71Ki*5yr{0bDbK-Of-6&X(W0j+8;72cFTPOon|2F< zupX6Sv^zwFH|g(hvQ5mq+3zf}>nMzSM+i-Nb4;mdMA$`94{*MAXT1h99;|jpt@V>@ zXHTZcwDD{AZ6x)$j-A8eUlNRQFaV^k`0vnav4YnybJa!ztE!`%l{Vu8d6=56hFR2o z6E9Np2OUlOS^5Ik*7S3aiwXng0u#BU!(LWD8zTsm+fCDnDnm(WKN1PO?`6OQ%(Y`L zD>s!WQfIIUi<9>Bolm28?aw7x8Sg$z=d&|Wp;*YFhnvwSqKJ}&6HD}xeSj5B`rFb* z_}aMKwYWoPb`giAzJyLN8dgO6!MVtDP6TTS#+r!!HZ^d;pP0#Ur3!B{jPF?AffV05 z-Wh1u;O}=@lN=|Qe)1a+UEGOL=G8JURRpJ9?(FVwuB`~tRDHTi)F7O`qkgWzQPKvZ zb&nngVh+`rO=4s|^eIbmX28qT1#K_S^nIYaQenzQxmf&}>V;}CvDm2C+d`SE%k?Rn zn(_N3+lj2w_)ozhRgLYGq+&lT8a#0bgk-|18VXcVz2JjYD=jI9p9(=Xd`ERByS#RdSz;+WS20=uw*mj0thfd!Z=@zIf0pr#GY6OjbTkV zFLCGosHov@IgR~>$GTa2Y3){Lhw%$i2OIP%;IpZ1)LV!R6v^op1jXgYHF`481EC5z2B6zrWoxz zb}fga$u;SB*d4`Q@U`G&Qk83^tjuFATgLbdA&b-~+@G1b#Sd z-89va;23Mkb=q@-bnM`I^GXCo?Rjip$we7R(Z_10oFCY|wj?k7A(h7)hxm!e;K@RZ z;g2k+)b1q+_F4U%Os~8FY}sT#{YQX6m{XCFK2d@kT&W6`;MBl@hSq1^0qt|SF`YvL zhEBRET4xUHY{63W?Q7+AZD=(VT6j$Ga6*Ml$KTga$gTCWs#%4mwU4A|eCW|lHY}pa zR-2ReQEGT>>!)21>ni=#gM+(+Y&~8QlFZ)JDfAyFFa`-Ocs`wc((Cb&uj-Q%s1&Ps zIvGigY|H(|1b8{Qj{F(ajY00k3To^qC+SveqR7-9ry!*C>~*UZffi!RBl0KBm88`D zu?hUi2FKX)(^L+bJW6pskq@$fDjaXi`D>bl4^@m1`*4j!rL(-Yh!!S<#ebl zx6Hdtk>jHJAsKr1EIjb2(van;&GKk?YG4of*QOn!A^HLbuV=;fV?-Vf+^@-Cm^VTX zw%@aC0rV2t{+E(xOvk4xy-1OV?5ak3GwpH7sOV-oXkwpYIm2wAaI6Fi`dsE>de~5N z5055m01-F8zfY79I}xfXAvTxi@3ZhT+Fr^w&A_ zjU$=(=X({nfRdLIV^n+AOYoqEu`XWwdVF(_<-v-Xv1M4chZT9j2t@QZ*ET@>WrC5LR!Ea%5Qb-ZA z2-%dmwcbO>;khi}*d8X@-oAL~<&&+okk57Ta%#f3@AOr_uSsh`2*&33E#ri@>QBv) zK;At2fkK2p-3q}1tw1zVMg(A6L$cH8L!L+eQjIfK$i{f)6z*KNzl!YtG3_DlO$JS1 z3akkI%F>YzCB`-^x4E|uE8SY^{>gzl0tpRif1TH!9d)7V@jwM5{Ph$}S)~6Gy-)HR z{O|6oZct+jqV>`;%r9avnhnb&KLWo*)(koDC4y^c=~W3_2AjtWkAy2Fa)}Mz{jAs&Y)r zq$tqVbY4~Et>4wEUOJk_2zjiUr)RMprg)1D)~Vt9Kg&f?L=O#uMXtY(i|VAA!BmOj zETptwK3y6{ln|hHdnMxraFxICD|9t=45>MdCRQ!DiyRd#t8&RUu5*p@L~&eHD+Ai) z?Vgr6g#GdLZ^&Q3@ky9EFJfw3b#n{gvkK}6j^}(gjj>r;5lN8tmADqR>6*#e%3*L_ zr(G3%W?LA=(eV++R7z6vzTZK}!Sr9-q@HNjsH`!gu`9=HLT0zYY*;*DpLy{cg+ye| z+GcZlbd<4#r8#ZVkt^U=B|fKlqyiT3%<2_4MMTyW*kMp_ZwN^Bh#j@?ylH+(({Yr3 zT@!H2RkGTttYgeAybtw|0nz)Q=r=I|;OvQ`fz9toc_Gr9MWUy$_t1)YYldSZc)>Xtu zrdw|;ACi$*Dzs=V@WfE&RYTxAJr1GgI6CBN^NI@bArSt$_o5nffqCihG7v{HenQO< zT}a28OWGd0&dCWDwIHia^ES=?a44>1-L$@>R-^ZHmQse_X?ryI&J**;UGN(bhPTNV z;zh*W&|hG_QKS^&eX&wx;IEobCy1^RJ8PJ}v2PBCPl)TUWQWb&+qGXv>B{zyd%kGx zrDu6^Azh|Fr-+oTS71CH+1U=n-v0OI^hu9G2V>#*&mM;ckWpHb{1*!`x06Tby!9=j z38jm(Rzz2XJxr1EcA1LRj&PJ1rqW#(BO~B5u0p8-@$-wu2VN_#wANv z;)O51_qrEAd7Ryz09uH~o4zpm^SX_8)Uc~x=*p|+?>A5!`$0e27=B5jamZ`2t1&ec zxa&O$Jd75K)*SRMC@y(hCU)o_o`7ng&T$+obi#CSudeBwA&wknL(B*dUP`W?&cd&A zy4F|EzrGGIih%|^(^&!ajafqJjFq4PsD+@d@(f;S)SW* z9y+Fb^+2A;YZuy2#$Pe(z?SYExqEwh!6Sy<2Ke%z@OwhbS=#KUQF% zj!{7qRics1^=$tqM0JD;Uo|{XV-qwDk>9LzXBacCaw{`Wbh>fAJFf^Mvrtx^pkp0< z06qhN9VVY^9G!p-s*}c;%Lth3CEOX=zSw5s`p>k}c=&F!YbtnZ* zs!Hf=w@kQu@c{{6NY`2YrLmdn(F1esfw0MSZ`63Q8mg+uYO_Bo_Z(3XRNq5t>|_i? zoE5C)+i@(k>AjZritH1~7@Na%${k!sIXkrd=SL|!lGVGWJ0xowhl5pe?vhECCyfAf zV8U3v9(8ecrSxI~#zu~hmcimFibZf)s&J+=2|r)0>RtTlT&d?Ln*8CIazcjRb|YAH zZkxG#hgGBEV@1U}jcaZx%$=9L*+WqIzMrhC->FN=_{8*LEyw&bV1EFY#@205f1hiJ zzkT}ddaW`uNu%?LFU8|@iYH6%NeBJ}leJ621_DPuN&!z9tjGEzWs*|1EYhLDJryl}OOBA9@CK;6!U5dc7Zn$fcVpDPrCA zV2WCRgu;tjG{w8gm1J1|#$~p$G+V>t@8!n2Tti2y=R=UUdGhK(S0CGwmH>#{Y?o(| zrv=kViJ%~;tLz*#JXH1h6FLSb*8DbdCnokrL0P+7bYmDI56-1TAJ^Y*D;&qzkw|=; zXvwLlbHyD21IIB`;9^YuFbZs`1ip-3n3cJ`>xrsmWiSx(2K+1hFs-~D5(`Kzm2=CNdDp+980tt}(KXZapU~3OTD_U?oveJ-u<*!X^aikhpy3nI8cQ7W z_Y={IZAqZ&4Wf|aKwStQ*{Q{$ZxC1c45-r!#p=2EoiqolkKyXByLSZhbRhiQQrHOj zLc9F>c-;=eN~15zxwCBI?(!CWrQ#u@))QRtjUMqu`%C6mYckId<&*5LQxvWv*MnN5 zB>;p20cq@ilX9t0vmkJ(?{OgLV60qh|5n>HfX%<)^82M;@4XV}JlvLEK-IUD_Wy_e z3n7^+Lza-XDc1T#|Dn8*3`Fb^eNUv&^Cl6CcSC$$&z3@Qj)3x9BUXQ*dt&ZFilH@tb{dPchoRIPw+MLWT(YvAK|3btE3x#!j6d4~`}a~Nb&!xN87V~U);og9(_hu=Byl8@91e5cRM zA&sHt{KFdemr}|302|{CTW%6q;+Z{EeM#2*GE+1g#D=mGyUo2Yy8(LR zw#z}Qj=~QI>#%Pb^3&0(z-ZUlmoAi6oZ~E`$-`FsLyf~(!>nvocfyVnHO~7fL&}j5 zm4hAQ^LqAe$hYKVb@}dS5Sh|14%Xy1h;vHHw1izctSKR!QO|YWZ=HHHOqejT_&8M$ znFd6rfkEQf$AE6*?PA5`3nxG zhNS{J2nx}`dTpHXaEm7I-GoYQvTkP&g^@Cuji-vU9PJo!TbwoDYG!txl(zswgOh}X zM?>JXPcQNdSZJ{|9e7%g^eqSY3!qm2TAsjakG3}-+;VaRUdmhsqv3dY_{FCUJfX8v zy1z&ga&PCoUd0^*V54C$%NG!o>8|odvef&VV|FR#9R@w5DDK1vUZm~9*f6^x0RBi4 z-Ioz5nIa>@yi>Apb9JR#1X^4cVIsH>ht!m^-i~(C8FJcJ$bQW@TX(rQ&GZh2u;SBiZZ?Y_*mwPS~Wtp^w|yMo+p&# z#!CrCOS6C^eklw^;P}P|BdvrfI0C-YW#=w6RJZEe;iL(R7 zX314NcFQ!!xci*nZY2E`OpemWx)}K$}ob7yl%d3Uv5E1x#w+sEuTjmK0bYZ z+xJ2rdD&L``7>aB@X;wzurTQi9crGH-}~;#4C1BweAqt&%WN*r>4A+08 z?Q9^2yln^V)UQg$ieMpth(XdzoI5p&igx)j;2l+W7|s#`V$>QnfkkK(<&73KgP6>`W>d}@#u7E7 zp5;#k_Qkd-v%8*tsE+^*am}H>wuM~G=y6a?_kEs)4k|VXCHRtUM(g6Ud?=}L%QNf% zC~IEEdS!cKME8{-YW^sWFes>b(o2QsdF*Cp|ap)1vBRrhbB#@7>vQruNGp4QMZqs;8t0{$NX0HpKJtp<2YW97Y*i zS*4m0XYNkKI;qyMV@-?xvq z3U?t8BzyjK1=SKEl~9D4N?ZwS>w`1u_131%^a3Ue8a+q`I5{P~D>HhowebIG(YAnl zV3E0Hlm1z3&?k;sIhE0ciSJW8|z3CpSWq}*SOb8mQk~f7=We9larbz$75!= zI5(*%!(z-_PP*b2ZSV?n{B&8qx4)aL2mKJAa0U=NAi!I>UmvKtJs%iUNXHCO?Ty(C zf~Q=<#o^}iY#;rr#LcS+K;-ls-&$nflF-{j9~(FgGR7BVcTaUXljEdK`EFHl;8aDU zTV|Y5DBB7T%JweyF7fTI+`Wd@eB8(U6(X8F&Ia2l?OJY=`|px6Z&$XX3wNl-H$2B{ z5&-i76$}jRrf0gC-I1f^swLDGR0+cVeZz#$OtwcF?_i7J6T}gNZ2|-uj<9fc<{}&^5xXC7`GQfhxY}RH$1e6vpcG6~=0U3Ot{^`Fo*MpL zvgN9>laN5pL+F%O;HGQ)4&i4R`Zs4AZ-80!o7=3nUdX(v0p}+bGzSWrw%q$xlqwKS z>!(!4fK6Bns;RS6Q2rWpp)Yiw-!W?KRrn{3>c>1iIb6QvYY8lASY&Ph!>`}(ebL`C zJPKh4!)mppF&Vf~=2`VxP0e*;FQ0a86xxJ^pLSs}!7UuLo`uN@{36Wym|_}<-2jl4 z7N)~mB^Oh;f{52$I8#X~pJ@xv3;CGV1{{Y?zC>h&vvZ1v^LMzUECapKzD8k`ioi(* zKr*RFcwDQq4^8N%d5|^=B&B-~oq{XD>dVl`G0#ABO<=qHAM)7-cL793yhVeBj$Eb^ zzMI$Z{WP4YG_oAQ6ebwQW`a>R48W8H6e1&vazSx%Aars5s6;U7Zx5lQw+~iZFCvMJ z7p_1Y9^cwRXxv$Irrwdrh<~L@59J(gmpj6^3HVkq*9BAsRj5=yG0@$X`0XW8Wfy0d{p?u z1cAx?jj0@j>YgnkD?8SI3_>hXP_B2L=}}5!wS(E@kcTO_M`!c8N*O~6*I%QZZ)kq) zFetL?FMAa&hQhgbA$}(YiaA*<3gA%|f^&T+-VW1Fe`KMnH8@jdCfoL6UEN_k4;hYm z$3n;Uc_&b4F%up1#ywHMg%yRxi?mbW>?PP8^q)lH=h+9=R=XRL# z*Akz8?kBMeZ9Y*2kOO?kI7P z(jEt*w*zc?5ZTFq68dw?j`I#j{k#}!GG{bpGUG}ZhPQ=sq^ew{n{u|mWDP^A2Fc`{ zvu2Up*axex8{22sUF$UjxoQ~9qea8V0ScE=;KAXaam$Lk--y36d**N~PNZIwzM;&& zpB2@#h|RBmthB$cBr?5PlgG4>$25^oo~Wx@SePF~qYsR0MZ{^2u2I+&YWgpom7@Dn7F zUH=X7x1UVWg+NonaNHUXgRA$$x(5*XujaI6{L>sZu2lbFFq%{*Rq(ICRL!3oVUkZz zYbs1!dmPEMWy_jr@u#U3!c385wso1|zou4H-c$~1hht&FjO%r?N$xGT$-2nGTPTSd zEiCBA&uYESf{P{JvlC?Wcp-5`?0X4h6G-GAq{Upbbf<`gZWq5w_V`*fHcwavR||_o zRCq5suYUP>{+2SS2L1_8CR#&1*}Jh5XXV0Ki$II^*BHs)|72(Rv!YHGO|NmYYiI_E zXREI+ZDwZ4@L25kKiQ#}u{e_hmRCcfV91!t@E=%YZ^(X73=BR|aMPtgHNyZW9?DfY zoz;5(z=IM0z=ONC+pGV;g9HD-gH%m3P(Qj{fev|wEz9QiZ-Y=k#pbV6j>)gjTf8Mle+#n@_hz`N?~IwoUxtj)GOS+)N|=K2oRyUjhB*W55&j3G_d00rj+_1tsBLR$<;tM?7d(%9VI^Oe#sBMNpC&4yy*)z z2=ZqH%HOFYY>1>D9a}SXBgkaPKjYHWIL?L|H-C!p2BA6&OjBr5%Rnk1v@9{Xm# zk{60F)YW4kZM<_$T57K@8n4%(1u0Kkz{nnYhkZ;@(g6zD; zSN14p@7~Ri2$E`L5&a~X?`o*PK_ZN2b6p_xf*T{-a?1ODC@I(YTmZ>wUY2 z1a+V=Y9XfDb)n?0qPdNPZ-2HJp0RO(e87$c|u9kD;C8Hv<+1 zYLWtK!JcAK?Mqs`jj!Py9Er)BBSTw(k3VrPG^)0S1YB(Yq*uBC2Z0!{!|jLk8A zWn=feZ+E@M`|qWYKyP~v0)nL5i$5dlk~Q_yp8*YRH3~c~cu}-{5vh52eVUl3<40pl zLJyV9uumGL)6xkFy#M?6B{@)`xlyEHiv9EAEylI$z7T0`6IQqaWV%!q)k&hZ8QwWk zCq`-$DD1uc-Ca|D9&Z_4ARmka%H&+;zBe@~ga?-Vv6$?>9p&EPpmU|Ye>z5lKZ&in zh4GSd%w^0Kdv!t+H6B)Jz?@?s)tgfy$x2jV(N0Tmwf)#wn~`&QDg4Wl-7ohDyRI&r z>aSWZTN6kvtv{IaI^KBPL@zmVvT^*u&1Cm5p0xeEGWQmL;(?@40w66@?TD>DJr`iM zoV`^6d=+(Wu*!j)j9c_s53z`cLNZWR)jzNCDy-#2$A}psE}kOcUpxu;9R4~m@iQ9E z1P|k52=ZPKK6shg>Ao#ibX`yJe43Z&2%yoU>M4oy1? zK>m9q8tKGXZcxj0BuwZ%rjze@`|G{hQtN5FUkDKtVIJaVp%jyIFOLq1%4^w2z*w4w z2VZUa$CsdKu!#SDIKR*39|GjnA(L1LX9I1vcCz8NWSu;?`eR_?-&TAkBoZ_;7>1W4JjNzp`KX zVk08t6u{9nz^E_@z{hDpf`U~+u<~II^`3S8GM(d-JA8hRbLw`>xGdZpd)SHr^ziu5 zYv)x#MZVw|&sgTPKT7E;<3TU@cn>Fn)5&yEXMBY9zdTC$KsVm3tdk=j&7 zWLyUJy#HZOQm`TXfR_O}tc3*;fQ3mjoUomAxWS#5T5(qHl{!8Pj&bIAGB7ZmEtja_ z+bWnu^*9KmIzBm3Zw0X^JA>#U7*LC8OCJ>{74OHVN}*O{?t@~^1&wG&qU_`sU&4~t z&g0YNv&q%VNgXPNv3vIb4y%!N6+jf8 zv&b3JeWm#r1fS;)H^mwnPR_?$CJXtf?aFRPuAj{L3eE^?#1knc_6iS$y2_b(-tUhO z%maKxDkSBQ!syLskUXxNr#GSMSOWZY{JGLS_60XOxYJPN4yEL zJsJzkAGOXUqFtMCgFO9!qCKR5d_l8?eV@c5IbYo5j7`V@4X{r2KS*$U#HtzZ4jN$g zWiWJHC$xWSSKfX7g;m*DBRjk10vh7zM!GK8G^XoMGQ;8B$OI7Q7C&)+YCWd`;N{i;beB-LaAq zo)levxBH3&3ei#a1N=c+BB;!YUuTvs-i5s8Y6Ekcq$t2hh!Y12=%b%M%V-@S1GUeXl=Z?AFt*f zXO4;?L$leu?!0&a8G^T8t8S>Yw8;iI#&QTz^F{r%*&Xd(g#fBs`qIOc*wGPXyqBJU zEJgH%3jDq!yvEt&0l3j7bd^~}kSv2P4>|xGmi1u~_biK-(qmVRAchre+1HR^Z z4D2o9iFMAMXb30qG_ri0eIy67bb-@@=wQ4H8i=1r9`P~YnDB>7F)fP*J%N2V*Y<=31m!!1Gp+w!$z*2DWesA_qE3hOEq+2zxh_&ir z{@eg`s=MxP56iiIn_}A6YXbLpmP%-TPuv_hdC%hT7jB_hzjPVIY{%=pM$k z^3lPJI&J_FD^^0@%}e)=JsV29cwz7bHH05|CW_*T2ND?mt_qz94ZB1k@b^!9l@@k|Hjv87Q>tmIB&fO zXDEel2oRL-4%w%F6d&pEr!Q~mcll9 ziJ93>yzWB1EoC>vvsGYFH$C^1kEwGZSh31ai=CCA9Nm2h#B(_w!JNKJH^OFt6<-E@ z!nXow?05a;=XwB~ezrDj85e%du>B%5iCdcE0Sjq?*6EaCKeUE#=hkWSCj|_w(DO#Y zUxp&eCrzN7{DZHNzoYa^hLnXH!|8*zvIu(PNjS4O3mdM_FWqLle6^QZn^(+V0l@_| z%H;)#MB^0V9~C{K=8y(@Grzzowt1o7Yd(x9huYn$08glhx!xQ7uoUPMh4_6Gzge%Z z2LL};i`7pt-bcd9j#;SCS_iHwZW}P{8cmtIdsvsE}b%I-GN3OeDk%eQ@^!_~pdA)bv z$J6@k!>#?%3T<3CxvIZ($R2nr`S))HO++D-{d~{0uSd>`Xub;P@LWe7dn*LT8_%1- z&z(%O8gMOaT5OQPxZ#1)fpPrTg7ao4ruFA`rS3dv8Llro5u^}ORLj4!FTI~c6Y=yu zuOzMPBYK!Ra;QJBIG>yo@Gk!?4Qq!0TRM8NY74cQ&v<=}@ZsDWmI>`6pf*uV4sN8j20Y3zM15Lx*m5VLq6HSag54CHqt2IUEF0PE&# zYzu(~tUjD*kx7@qy$5awEd}zf@w8XJ7*+&&3FARTX^4}aG0DyuvEs9b`1%csy@>>!NVxhBYGSXdv2bGu#&0?k1%6SW3 zOCv>IK7q9T#6wz)=46YtTKGU~uzL^Hr%Sy!QR( zL16UQi3s8pk?TCFso4uVv}|n8;Z8ZtR-F7eA2$)V4$aHIGIgW_fD6^e78`Um?OcLy*V0#_I|&c zRpZhMdRTGr>}J{aI3oB1?4OgGp!g6Rwn3alCv0a;80TpIOgBNmn(YD7k37nIVv`Hf zS(Tl}dK|&%mJaab-nG6Op-L!f62XxpuL#GD!Q14|L6ZHToF2KV^$+~j#Y=06IaN$a zsc{-pv1&fg1S;t0q=zx|?#))-j@GapI%$T$pUeR?C_kGPbVB3-MRB6~e~_S=y%#TG zT9=CUOZ}{ z$yUfDwxWShXv5rG1$-CWw|UFI3KIF%x$Z$nAFr*(N*J8ca=XuGk9AWrq`4ZR@quMy z&8=h)aVBiEk*3ja0Q$lTnD8YoH4Jz+UT8$aiz++Qy+{-~yvX zZ7+pX?F+xhQGn6!mb*#DL|;q>r-P?#xeZIl$M&L2c$Q|&lcm9ju9OLrmOo3JC^Qhl z!ROq6(VsNF#d2UUz?kT2r}DeG5glu$amqy#A^?CJlV_XY`iJkXnk~4&_q!k@Tc&-( zLtW(hg5U}V0F-|(NXEIJdGHjIQd@~6N_S|)`qBv7jg;aS@9!QF3Am%*iW``Q_HrN( zk{}}3LQ)S=n2nN5TCMAt+CBF3xfjq3ez;sXfAGyJ|Aw}4&k(~ew;kr!Yp0V+3Rgnd*}vi9b~m%j`?n_kK^S{dbzQ(RixM~k##V0&QYZHf|Jv{K*I!{$}dkl~? zBwjpr1G`>k4&7WFk6f{xrrmVAV2ie%F2ru|+%rSP%?B|RmYsW~g$0p5_uidvK6Im4 z{#mx(Qgi~6=0cZMv8?L1_39XhGqEm1Dw4nK<~5@aD{Oyl*a~$(TwpX-e3kSemm?S1 z;g2((UikHHVHN3%K!z3q{p5h>C$|BG#X1`)LWZ+V=5@VPvu8`-m}LmyUcF=y7-+51Pmj-#SsPgt(1avu9d zXrd4yCSwt;DPI31A{4(givkp9d3e}nWpF8q{cyUd6Ab%;kG~M^0*G#4VJBG-S+f$<2w$ z!PpKjzSo;7bPXy&1}cpVWsk?zrz~-3`RAQ9M)C0`IupYj{jK5D6CH#kZ+*_hnd9Fj zBam1=hKnM4#8-Fxwk=(+8f&k^9!h3k{rT5`N29LKV>vZws-yz86iK{(Wn7-QnI_RW zI8X=!En65I&BA&1!&Rt_T4w+PydWcaHamJtfEU|wG&c3w+u&_)VmwJM*XU>IKxL(O z51xp&fXJz3k+-h8(N8@a%|%}i-IPNmKHl8PN!n9~%QD`S#D?n=cQ)+oH`f_z4wTXHn(B~4M@zFdwezPd zoGs1h%IO?HPD2AlZ;_^XZKt8B4HhDd_xV*wj7sf>T|UM2dV!&H`ihTA5b+9^3J@l` zs4SzDFM=)84DHSx^uTNPJ-OihbHko$vuq%PcZ{vM9oG6ZZRd`T7q`zAv^+U$7p(kB zUmJ;}W8`C!I`*_)h_5#P8s7fdN+#ebd7T0#^t~LO($OGIVL7{;+JV@#KNBY-y@UZp zuEC;stjS#@Ni&j*ftR zLQW4&&ILvUG7|I2f$uyBJ+{LA$3Xp&BgfXB?BjDX3q zv>`$bp(SpTR3Bvxuz^vGAe%sAb|~|-Pb0d}gpEs!3u94Di*U|M^)Mf!So+gUDhB$R zBkEw~l3=`Q9FF1eUB}Qo?K?KPaD9|yB6m0SP_VqjM*McK#tR3w4v0>C$9*ClE2dZz zhRy^3%TmT!=Va6O&mdCz@56#hSqgZt7S!93jL7hYospvR_$eQO)->Eyrp5!Gibn6( zEcY?>oqEGEmnjYAJvio)j#{|K(r!joI>9M3nT|F69YF>O#=Ws(eosj$MyhD8E8b&P zY5delpQh#s@w)Ch)hpLD-&tMBE1#DRX0iG;Hm)MZzJqoP0P_vuoqlYaQ0KBa?+=%t z;Wi(d`IIfJA`wx+SyY}4@89j_uPywoHZ5z4Ew%~MbE~MImc;{IL`&6~jUyssNm9mDnLmuNt9tP42-g$~5Bt6=)($~49-iAnbb|%d=Cn^2# z5!Ubav0GF{{{#(#Ds~7q6USp8CJ`K&NQ`{*WbsUjMrFriQ|lJ-ia78M$NE32@|kN( zWd4c@%E|h_s`A;TFvo-T(fx}gmC+f6-IrIK$pVuHyuCfO7E&hDgb+y< zqFnGvyHv(PpX=|dznu6-Z6h~t3`Ui#(hp^)MX!XfKn)?GgW}0Q;zkddSPfnHl&o#$ z#r=y{?xXep?ZneQmlG~XdgomqVS&WT-61B-_>g*$C77SBNWp(TZJH17E|FET!=>Lq z6ITrx=g8!CjTOH~EnVlQlcbG)%r@j@@cU{|3Q?gcqEi*b?XN59kF}*hff=xgD$W5! z?7dK`U5@SI?UFj&u!&)om!-TXzdY)<(3PFXosR_=NRfWtnRpnG#8?yIC5t zz8iX{ntf%MxFN%ro6! zz*g^T;RtbJ;=9nQxVSdr&RwQ8Zl&ReJD-@TP}M0cDljFo^<&~p4M*DrKT|`;DXZYK zzsJFL$WtRs`HYL6*o6GYnocRM+@OBtCQt$S2REaO_{&IYydCwi)Mw}nNRG>wI%`G!CMHp_tDGE8mAV83N)G>ru5*gc zYzy0LZ1aolRBYR}?TYO$w(V3ZcEz?Twq2>%cG5ZL{N1C+=+W1EU$3=Z%=sXwy+>3;NnEYl@5eHyd4~(kmOy*7`z0FNFb~zO!4UN=MrG9C#(Et(La$p}+PnGrqc|)Oc zm9lnR%V2y;Je*ag$lvQGmDGU&%ol`!&G+7pUoEYox+fEXn3Tc7IKxzA9BgDWKrr+{$qiJwyJmlL=Fy z&F7`ipWG&S?O5#2m_KS5@cz2bo&2u4y=wf;O`9}2K#~0KUR~^DuSfu)>Y&hI2@-+vfY*5F)(@IhTdC*uFTteY z{~kUhn<+{Cr@#vKqjf0)?m76%qZMq$H%5C%=#(yV!H+j%Pd>v`K4Z@DSdV`jpNl(1nMN7}ZB}{;xkdbyHyK%!OpA62Op>D26{szu6>E$k#h$i)xjcB} z*3HrM&jV)C8+z+y;;_Ee-O4Z?K?AAgI|OPrE;cgJ!k8?+ZR094BrFk9e2tMzy6~g3 zNezVipWTc%rY2GGwqEgy?9yA$Fhiq%3R}iW*1tjAXJ5AIE66 zKno8iHr`<8r9bocwswY$Kd%nkgu?-0H_b?Puq9HCPL)t9sQuoo1>dqGA&B&%(yGb- zN-3b#S&>WIWZ@gwF$`>Gj%Q&5Pc)gZR}`7PpLW68QpJS!gf&$G%{r^9oOA|?yO52A z(~TXY_%%b;F44+);y0ZzO}&rng`7XZ?f8&g{wtg~{wbXPP5ndsN(;i(|LX5uZGL41 z{Zlo0y`e={3pKY7MH!#se#LELg^4hi&koxByK}36RjkvPI%o%=k0d%nmp+d37&#U2c*;XgbUYQVq z`|y=&2=wUvxvv9wJw7rGsq3Y|0v1D(xUU-B@9${twr<2m=!>fc&t?n@O|0isL<|d= zymH%@?ZGzcbWLF&oz3=a>2>PW54%TWkV_#MEO)y$>)55i3n z0wMjp{l=zE(Ct5KE^Lz&q`)>W2CM9(Gznh_BR)(_F$NT3@fd}@XiwJzS#JAY<|y79 zk=0RnT}cHk3hNA1#&S7i?3u9jyJr>^pR~N+`IeeudCxxWGb_<)EfY^5tq?aHzBg;;dN;mXISX;}ygM&52&-fgKp{#AgI%#%4E$^LHgY=q zcXjvamjIBF5_PaBM)M6(TZSw2pp&oS(&(2nyl7xE^htP)Of7tiMkPy_RS{9yBCDr- z(?ex4oJc0pVy2}zmQ91k4kER^IDG8Mi&{r&L<@HHoR}lQs)<^Zm8u^Vy~H+rG%D2l zuP8HS8Rw+>ufRTl$q%F?X2dYrB%20!=513Z33uTA$q0W`D!>dxHCKvKlw0}tV-k&S zPCoMa>cXT{Zx*0rGwgEm^wX&l)gA(qS~m|584js10O9mM1O5QC&bxYvEPnOXK&3H1WE2o zze*tvJ=)3N|JsUqy`o*lOsv;`LcF6zonZhzZjV(@)go|qxi`yvdJkj$(cWU(Ae=r2 zRAWH=?652d1hmf?wDZZAVU;dDFP{DMHN;0+3sBp`eXk^)(p0#0^2 z5x~;fU+0ltj}xapW8DlJnxh=_LEXGbDqyE( z=wW5LZED%V+p)Q7m%kYVnna6E6AD=fJKwS%r2F8&;Lu(7dy-QrMG8ETRc8hm77%dn zLA2W0S@CY+a1jgLamcu+JSax8DuqRgp)eZ0S_CDB>xuiyiUATV{riG7MYjPE#w`9@ z>#`g0bDqU718ab(o{8Y=d&xY-hW3P=Ho`C<2BMB0>T6l}2T9nh41S%Us4=EM^DDwW z7G7u+qgUj*gHV;;m4iJxM-z}$Q@BZ*v$o|HMXiCp%qDoPt-4%Ys1_%jz3HSp$=soX zWJ6~>3dZO+Ekvkyt2oXto3(0NTfr*K7upPD9@dsusK(mQ`A%577kRcGs`IdM!MSZV zY~LovnK^QMD{69YGe$eU61n5|k$cP6PJ7U5Wy#trqN(Zl;eR=Zbf`H{q_1-0->QRy z?f>az{R2YK$A1wVV5=usbWl~_`F;rL0$9Y0CD1yWQtjU#d9@jvzlJUy)PB+eE0!u4 zqr5lV0+MrVJdsv+zCw``z+KJ{`_Wf7KF_}{oRi1Xvt{^+b+65CJoXL$#6xtZj4YZtIt$+?)omSG zZ8!GLBoLAQResaJ7ulR#o5!i1kOe3qljk;G(O)2*#@0ZM0!G0qP`mpa7h?EquIdqc zG*#;C!s()hy4ySX3%FXc3QiLeAyFhl*BW5o92%2st4OEzI#9z?D@)aku`$j!zI)|P zkGWD5q_n3r(_li}tDUPKSLmas%nQG>5Vc1ro8X9vqJ+S!TM@ZeYluUzs5Q|t^0rfh ztJ`g+hDF+70_~IxAfL@Us(h#PXslTUt27Q|0L_WSOCZyS8z>07DdOwr0`yU!>$K2Z^WTd;7c{2ZdmTT$YY;OSN2*!S_!E$v zbRX`sTF(b7S<-4lrTISh-V$i_xs4P2oIc9cII$mPMbYN_X29A zd7xa&d`NTVBBpPw`J9c=@RxMX&&5inGTE{^+oIw{uUrh&;q1+{7b<0#K zfpNH{`?cEk6{%D!<0p|mpFw6 z5!P)gu(iNDSz86tZ;J|ey77w!T)?xpH(7?t|2ui81nKpqzHz^7YOsT8v*rk7FRn;)=^a92DVzZtDN_b-TQ3~^)#dsfWN6k# z;=b#ZE@MbTES-5^=gB+Z#dB9vn=Wr=>JwRk8x74NMBsTCVjOTm-VCcEPqxq~geM+47L~+o%FG* zT}M`Le00!JH33z8JSmI92mw=-qAXH1HbD-v(8dM>Tg{O~2)y`$*7I|R4musfj>;$R zh>PqO=F!@v)jFgNzRQAg*(ntv@OVxAGwe^2Uq`EhFWOR%YCHnK^LMOQa$RAb-GrWN zn*Ci(S`~j>`5u^yWIQ+5zSucSclPi%O|ih^wXUuk&l|#)$JVZqa}N8=#M6u_BKIi- zi_IIP7w^~mn=Y3luge^11TUcn{12ANUpj3*Y&eV!mG0Aa8i@=F~0AAyb4G>=-x z)?!X>1!E7Pn0orH2Ob#oDX4a@0wExJ`XNS-5p7-kBIPh=A_rkDxQ?lTW2pY4NCoy` z%LQr#fn{)DIt;;AfS?-`AVh!tUO*PKXp)v zBUJ#De#j5P^;sgkGB{yD&yn&D>rHDTg0-yiOZhXaj<%6&(=#@`56k%G&Yf){utdr_ zQBnJ)`c{v)1Mp&GLd?(4osDL925||B0`&gELP@oCAdh<@|5H!omFixsyhg zP4E(`kAIo;whx0tHHMPRyV{V~>FORY0R_iO%%aoqJASQo`u(Djp}M*Fedx)^AwPwl z^|n+X_E+;`-Eev1wRqXNc3%9v#C3?C`kmgF zCO6kW-|f);VRbT($O95x(&0n9SF8I=pUKa26ftN6#K&M%zxP#MR4^h+=yeDYtt(Wq>7@-YVNFrB$-!c^ zLV#BI^S$wrVxbZ7T9}=GIW<9Ji!2f6POOCYR!yy~xu?JeD0c^~dVQzegwc!Wweug3 zlMq&L37&EdNZ-TTov*%!6ozw!!=9T;FS}OI=@Qg_pUj@f$%knJZUA;3uNATLB4S;l6AoAy zIU{_~uyqPDV4M|tp9#!d!PH=$tZP4;&T-qDW~iE1+$C=&nj3xgbSB)Inw$8>_`dVr zuqA!D0Q`JDX#DB}d#LaaYGRaH_T+U6oHx9yb@td$kd0N6seGFk^IqOlqExmbF5^(+ zn=WC+K7BGhDI8ig)8B=ZL;CTgQVk4U%a+qT*J1CE-{K)scO=>fvV~{ecycFNc6|>~ zHP)_*K`8j{)56-IRg;zyBt@S3ivQLkO1DEmT)jRASEdfQotdC}3{xcjzTT-KBjixF zA|J+?spgSf?}Dy>@-jAgc=L;_8Zw=%c2>!;N z?tjXJ%IIcpJ}l}GHB#tQm-hVus?nf@E4V_m!f~Lw`YyF>ZYYjEdgGLmQ%9UzKz$>< zcwhsdELMAQVtP5YhJ_3~ZNcJtgP|QEkyjQ z^MloSb*(ufEnE z5@CV@T3pT{#$m#~ny$dt*E>PW+6I=T`s4k5;wJ2IgC4`xof-#0E}z*)pVnZBqJeLCURZ4W?Kz>RD&Cvlde0D&=&iBpXg$=1;EN34Pw-pPU`;iWe#q z<4UOIYc-|J;*lw__l?=7JL2^N&FJ^`DGv6Ack61#JZc#D@rJ;PICXWctFD1gcIMt? z?>60&@9Wb{_xzpR4vt}g*GNG&c+D~B6y~b2I|nRJWVV-Fw)-AI=YDSd!cL@X6-R+{ zVzM9d<80CRpATS&je0)54pd(pb|79+PYLSAK65{Kg@x`p6f=5IUqhEW6L7u zuY%bp7vey-KmG(EmSy8_-a?K!MUU#j6@`}Lg1o!+32n?>+pM49mQp6H|1_k&GS#5a z!I(Ld0}tubnOZ>MfL|C$pGym>+DTe(kVdGTek0nC-%V5$q><6*zwWj#>nwBD;x_dn zthFCVaN-ZWySWduSuJgK)6?v__C&`zDppO22~3SUcd~N1hG6$8VjEFaj8w_5r9dK;wi?bu`F)^(=K>fH$-u zQa#vuKNbaqvam5kob4Z-zO$Wo$#uAbD|Wf)_PBdR12+rhkn*o|$kVeOM*h{YfE33; zJH5;^b^Kyw6#3i0^L59vQkXE7o~JolOGQHs@f|d7F`Xn6a=jesgf7b(Ar6=@oS$-9 zb@jtcr%StXz;@cjdXG50^zY?Uoh^zl;0m6McdCYh6w9|lf_}f+784cR&SrZ2McnySsWlyS^KtwyU3R zk6dj>MxV>mI0)K1S~61;4&Y7Taf?W1i&7`pqa(5<2Ii%ME>E*KooM&$XzGa1WK2~K?$WdzpT5Dx82smg_CyB1*67^ zVKf-d8$l#6x|okZk&$OmB!A*fJOU6Lz0LLIyX}l=U_?7uaNu5qC#P`48diywuQf5V z-R?hXfHrQ;QKY(js&SLFVQQsfM`}D4#nG6W`rifVi4GJrsRKv)A!rIPLE#Y5Z{yT#sdMFW(4z$9=+UDbi6rP;iuG^)!@8^R}@REspKEU z!t0FQmtm>@_}`ycubHV3U_0yQ5b*K1D$neI#a|}&W;N|}X&4MP9L1>#do5N8KjTg{+(F`bdS|At|C5(Oyqxo2_XBv=5s8qo=0!Yz)jm>vdtjhouEA5E zWiDPU?Rcrgi~vYIVQeZ~gH2&#O@;)}qI79rp4a(;$?me+)*59)98GU6?gs`!JGz}x zcZ^D~NQ#_F!W#!XHOdA|l7uo2^m5G7UJM%2xOh$-N>2ovMfExU*xT+xgv@4ASrF-n z#ji_rF|FOCZ$ZB5j%)e4z%eh_#n9270)3k2h%)%bGLQ zXXWNCS)dhlngNU)fm_03jNUo5 z+9yn$3s;gHilD=UtJ#*qW+yBHPox~@oO7lo;1zUMP($G;qOHC6UNLD?_qU(tLz!!= ze6thxvoO+fhHWidk8iEL{hB6B{87c{>G>y+F*gaT$_5e#^+OTLzmuVek#WDdLqe&F zm;)V$i^aW{VEbcNq+Mh)PZ5mrt=zlWFRkJ-N&F-WSx2|J) z1ANVd9gG_{NjmYc$ZEvY+{H`=jbT_f_#>^MJ%QxI-plWx7j`0MU~%lO1c}^_5x*ls z#zH5^a9Zw9#mXz~ZE<~9K3gc2M`kU=2VTsYB0vWcD{k$eDBB(=C z9NwD>dH_C6&EQ)bfjC_HxPB|y3LXxZ?0~Bp~h6dthqfk+u$H?)sN+$Mhr{6#eWqP4RBz6RlU|) z-<<%Ee7_-Ci$O%kKF-iTY(DrC7LW9R&oIK#>AaRw`f=W8F?+)ZpIQ{#cOzEr*kaW- zdkIZ7`&Lu9zYgVPiJDAcs3rqlM>^N>VlB1@OE!c@sAZ>C8)n#RL^=+J~yZ z&&gy_1zI=AuMM`NqB3^bJw|E!s3!0CrRB8IUQk#-afCD!KTL=G}`77TeWP+24 z9_wUh`{&Vr3_fL_)2RdRica{yFeKsw-xq_gKqWr%M2nwA5>&In$ctDpTc~+Y0~5-o z9@vkd3}Be(ExJ`AML^#}Fa`qL(;&zI_iGopyEkWJ1{om+t-1O+dAV+u(huK8^Zvyl zXTSL8)3qzIe+Yc48jxr`z`9cIN`eZuCBt8ilp;dSp9VEmEmj^!b9K=j3B&hy7QlMj z7P)kWuY?h7r5F*JAcoxtCu>VaJoO7eetmb_8cnJgNA_D&v9K;aTQc8J zmSsELOuI-NmT%NgP|6e5Xb2v+d2o>mH>yX@OmGdIQ^mt7Ir1o+SU%EP@4dSn2A*8l z_z4sh_0Rdna=n1Ud%=4j!abax?>F&z@~0P^x85U+NLvq3W~`2!(CSQs0J|U=_9T$u z=0PP|u;vB`hJd8~hig7C!&Lc7ko1=p$RF57X-2il72~uc?>%we!RgTN!S}8M9bLX(%nXZs;j}23tGEhXz>=Iqutz0oUym_MQRTr+9`w zYFMyOVv3Im0`w!A$~zOzKrAqEjn$OP6CiTOIQ#}uy2G+WU-Uh9tu|FQ73Bm&eMt9YA<`mlYi`HQrj_|%TK`X^Va zp$F50yd}39*WlFAKd&QcQcG6UrMlAhl$FDwbzz_2Vi6BAnL7?W9dGh>I&H=&C4Szz ze97=|lzzLzwIulZ*M>+Dq>7}G$HAmV zQv`(3Zt?EAl;)ep{$Pyzl7LWun3x6&+dU@<=TJ~G$+7`fSiDX;UDJkt>{WI;)oHiG zrqRu!;yQIem-|Qm5NUeCDiEuB!|hubhI|?tNE8hZ#dQ6b!FLWk>i3)8Gl5$y;OOo{ zX>Ij&!g5ae>(ao?ylv3Qnr|SMjAT6xL{IKtKmL7?0`MOUNhfDIwv_(B=`C#MZ^RsC z%|2vVs#!&OD_FGAOM{^q0JS81kB}87CBdn9%ll$BRV) zt+!{HwvAkK?Q`7;*@638GH)|p_5M^8v8r8^JVM8_i!V(x&hb!tI_T-y_+~Bxv_?Qs z5L0uoK;YcncUBY<9P`s}P);CK&e~LF$yU4>w^OiIr~F{Zn#lD~kkq8HF_s$``#74( zl3YD%c>CjvO7VwWo{DmV(S62W5tUpmLe((bFA7#=g5betdpeK}Q>!`LQbW7=(4W`< zHm?K*<(3=>f#lifdX6`~-G^%obO|r3fYQk~&99!gE}5t+nYeDBVD_=lEq4+x9A6Wi z+{Eut{MzId&kE;7;Q~{Up|~BC>8C*}HfD#sFrwI_mAp*KTC%w)DN_#OdUR8iC1k05ML=>Mi$-P~y z;sJeJVYokaAV~ZbdAEOY{J&v8_dnIu7i#}+xWzxZc3FpYuK%oq97?Rd(ire}36rLr zkQ_t9a1USOe$x476m543?$wVkS8kH&YT6!#MR2o^)e{O4>ozAV{@l>iVBZuGL5!Y$ zaF5dVSLr*$-BwgXmUvfo2w@t|5(!fphl2k+0V^>za$$#y9Xb|mkk7nCFzut}+OP#Y z+<70Rp!)8jA4E;^OPZT5U-GeHW`GA<_)u07*o)-!b;EcexI3bj%tcy!B}mn=2E|_r z(^L8#*5UKG07xgob^ajm0P&3R@K{brv6I7oMcW!o6nd%H$2{&TrBbEK)l{#R<_YEP zDC9p!bmVE@W1#+hdH`v?Mrz!|FFkV*MqkRsaOU4LAnP&NVP5jO`7ip#w9ZlVd2(tc63|D0 zJM#0OQwv%{%As2wsQK2lMt4u(mfu<5MH78A)3kc=Z&N)v&KMeKo5l69$Hoy$^bs}t zX1>_gU)QvH2x-biH=Vo9c=arCuSkYA7>R50*MP`!dcW4)?7qG?vuNL7C4MMLraHGTRlu%QSeYk0UZRI2agqaJmk z=||JPM0bxI_oV_iu>;3ejUvV%M1Q0*!?;ac&n5h{`xEbK1bj!_ z*s6)?da}X;xag}4O0-WB~PJNe|$q_7rdqRZ(Dfs>pVBZpzM^dEG*f60`=nK#x1&o!UJFW+7J>2|1+A5MzEHSqd+LF-bsQ$r90C@Y)B6&*j1&ZshQ5^u5(0U* zxAM#1*f)^^?X(tFEPz+`yVQ%Lr~^3Kh0A@g?yIy$w+u&o#r*ot^e!{}c$*dOF9Sz(5!G5Lpj4#CbJ}5>`aZiv1;hRg;>P^@g>i zV4}-4c^FV2lpQ(@G|r)<)YZdn3v1teq5mv`q7=EWai;FEC>D*aa|e~rXXt2XhEzti zp#UGU)c&^jk)|9HJMX|4r>>&+C#JK)1*!eHB)B7w6a7)laf=C6e8A?%r&e91!=9$- z1*#Y^^pPq^fLfMM)iPDyQC`M2GEOq@5Sa4^IPX3ffqQ!31t>;(0UQJt=>ON1&TU?@j6u(gEan?6l#@) zXMr2N-@(C^Akde*09X&mPsgqw7t6mIJmkcU5)##*c8PyX5cgaEz>v&>G!}enbV;NX zH@-D#83(N6n02U~$9M>a6FtOnXP(dj|Jg7mHm~K2uC?3Ea*OMqN{{mi07qkzK}|-G zK!H(3ALPtc%y*gz4=37b__A*4uijDqljx^exYKznd0)p0&O)2eYj$AjFru9}v|5G_ zU>q>+7GqL-$1{YSZ?U|z6i0!xt^gZ?NebhF)#K+xGe(JV9Bf4x<^c3+wg8bd)8mWV zfgM7_5zyuBZ3Muky?l=^;a2Xuzo2w&#i@&D!eDcIn{1S^o0~^{7@$&Q;Dc-dBLa(@l%ciDU(gr>Eg zwBK$N4Qb6mxKq=%EuXcLHxO*Pt$BJFHEk6k;oc7~3763399Fs3>kf9cgC*`gSG255W5o8lgEFPz9~&;YJ1O%{geQ3gVir%f}T4p0?DN62_i70vZK z!+70gy7syc;nMn69V{11788|J`d5OW9baIJI=o0}R)PxrGNQjue2e8RRgCZkrw=hN zR%OCt$K=$HmAPK);cuVoa~ER{KlF=3LI^kmtDTuZ1dnP zcQ1|Z^73Iv;HSCy=PDqT$Qv6faB5;0S8+y@$USMmjB*e|!~=Dn*OYfeh^wATQ1I8D zylDcW4~VZ3iA}%uM&X4^P>n4_Vfx`slyCKj1t23oK9S9x2`o!HFh;0on=ey8i zuFcdJvwF6cH>5VrYPhCNK-7;VUgXDt!mS}|Pj@FmLV^b*fxJ9If)FYqMgD1lgDRMN zf>x&q6n#4aK_II8$N;tcd0B;AVfNxfJ>jE`3$lU1&Ll+W^kbJ(KSqH00#r`tJ_3X5 zjb5eZ$v$%e65XF{{apJq6V;Lp*c`2yjk^fpn@m{=h2%WYC7x19`;p-)f5dFE(-5 zLG7rO?VBz!kr{&x6GH@%fD&#>h%)mkwye5KPGFW=%al9{PQu&aL5akobmxTm+(w>v zdn2`~54??X(ezRZy5ce|#R{;BQX3kr0ITAGB#ftUJwAEb&6i3KQagR;>S)X4wXW&2 zX$@aQ)sLfnNxWor@0ZS$+Ld-@P--x37rHtpszVlbtqlYa#4i6@JTi}dN{-#}^!!oX0(XH(Jc8*24-yVU<9vXcHRY>f5 zm5QpYEv27jWxIHw^h~#cX-be|e$!Z&-y$jT++BJnM3^I`$7svlIJyt^;^Z^5UQhvO zfBRH5+kL5Q_d12j`I$N)sHw%SC1@uQ9E#mt;lI;Y>1+QreRu?t4tSn@`VZdT+w=N$ z{?dTjgn9TvuLsz=MPm*uQ4liyphHmCU?FQx{o>m{zE-X7L~qEPEK0P`7zGm13?)C} z{w5yGst*=&B2KAYi}l=fl3s+n@BL-3_|06ZEO|Z-6KYD#%p$=;_tTxz8+iBnEB)}8 zOVA#UB#xoMlufb_xQBe+LRCvaU!>lP5&)N3gljqKmW7?qu5&(IDsdeoi2^G|+4utu zWAEsv*^K9BprpR{b6N#OPV7gXFHZynxbbm0kv^M09i1+X(hrj;(c*f}Li*{XDnXhI zhdEJw7TPFoOibj$$}%(opsHO6%f!z}1Z;%z{)I471D;7PAiF%=aQUA?w)P_L+Hb!o z)7Lq_iCfW%r=82z_x;Gc^EqY`jp!#Wf z(#Vz<;Br*FY_e_AZ`Z^h3Y<|;E z$aqcDu1%^h0Kcm-BW|bmC{$L=ORH}cZiqm3uDy7FBi!(2ly50o5l`ZV{|RuB|0U-b zgEj7_?GM#@MKB|kU-vOt;Y&%x)-rv#)vGqzr0#f5Y0oYVO3T!;mdH&O{N)?Yi4!O# zi{EcMd{{pST(=ynewNwDB5?Yihue}gpC!E1c29Pm2i&MRR96xB!oc(!x4jTLoGxBX z-^?>6v@xCfY;XvRrPp3_UOrx?rUyq2udgaNJ8#NwxgH0iSuXV&r`M{d6l?wM)k`m* zJC=sxEiZKlRutOS=~Cx^*R|KEHOldBk%6ivC2u;<#$RU%BiM@LrUmODeVSk042#vRy09ENG0a3K$=PiL0Ig}tV|$g zhLs2-o*4&i54Ev}6b7P%CT0l3tiLzklreH0%=i?9c>H$j@{k?P`lLkUdkb}n(Z!RI z)tIqIZn-fOkp5mzyd#m`YKWy5S zA1F1l_cZpMH}9Yuy`l53UKZEKha?nEwTY3~4jH=eIds=wqY78KTG_OAkJW7V{h!Z$ zkgpA=dr4Hja%d->X5k~G_ct2&4)&XC&rZMf(Wh>?4>po?vT~}1gj9)e&5Z8f{tO*J zid@&H7nQm+@W{QI8v&5#$}>M)v*T{lZ-Ls4^QU=JJ>J}$11+XR`T8SSxK$ip8%?5^RoGC+zSkwQ_n7Up8a*cTh&8q z+25@-S)^2S8Rtzc`yiN61@KK%jP|TFmP^OA-BUe>AOzcH15PjOl1J`5P^TFIy+Bq@ ztmXDrgBEQrJr(a>rygEC_m#bIB%u(vg}^q*!g36~LpbiQPY)Y}4A>VLy5vfsaE(Qv zeVHis+YB_^+-*37OVbcS&FX7ZzLLk{x>J+jk<Iq^D$t7h1p-Wc)~poM&v*W~Tn_8( zCIVK|5kIRpwAZ?KAA|QIu2vYwD;s1oW1Fjxm#l6F35fKmy{E*p$! z94XcvRNw2;s#(e*&-gmQu-5mCX6u!#WrOAw2?Fx+>%W$50}1c`$wWu&rxw#YU) zPfmahznAT(#ehn`?>`^?V~x*CT`&knS!{sV3_@Cb0#;5?6U~?lunUZE!jW@h3eo3e zI2>D4oh*khO8HgFbKd2%bOA%F6U-HF_pKw3y!inXe!|2PZ9VTqEWZ0B(C)q4Vf?Qu zUmHN4VdIQ%s;L_6`osG2$8zZ5db0iJknm-1_wgBH{81huVdv?CHNlqr{?v>Nq^B6& z%p43z>AFY3h58|gbg)DfV~(Wl7gc6RM$tKq_n!KVj@oBdjW3u`Nnq(A*k(DeCPb7 zE{5-PJU$dbEmF`xFYWEMI(m0kna9)p@KH0~xcifB!sQaSrI^bjXQ<{}%xKE#T>Bw3 z1|>{r9bJk<96uROX4JEYs!eovu;8xqwxJLLJ8Nc3$@d3&0KREY$u*{tHBRq70krx$9ZQtFQIN1~bs+-wp&dqSMc(30Gx@p{#I50q0kDOtY zmuO5$UDF9G5DqIg{M4$dEFzsc!GZ?fg*pne8drDeByV1ff5dVs8PqlF%vlSs>C1@} zUG;|T{)^Ov&ej!xsnV4shn1{$ukZD{N9G-oH4APLWlzM)i@}M1sXBPvt!dj4k#= zgrdhrD=m(+q!I>^+UK=ZuG+`uDFBcXK~qkATA}@5Hig8&8a(vO9Guj;MBHV`jq-&{ z7)4{k_BnUPJfndn1lMy25hIy3bs;U@=MgP6wQB^P)rVr$`qd|}u_QswapU<6V6~ zJto5CXo51OQ2hXJq+a=RIz(i1yk1|G9LNA^38#%84|3%bsS$spM1?YYq|nI&FlyCz zNKZSGI!I)f4pbh_xse7`Uqn4>A)9R+Ris6!bdzC`JmmMta%_AEob(XhF&& zr*zAh?pB}nrDD1lAMZtOPVPfH<4d?he0)cES7FP@2QxaHv5a3JWh~ri$tCwAC3Oxd zjW6U*h^BLKXwd@F`&S08j2PK25S|T6S+=N|ody?#hbX>Y(c6(XaCJx-9buiKJIM{j zfK&#r=YSy2jW1Jn{H!7k`6OpLOqBoL*WdhuY^CPXkFH*3D4*se{Qon4cn{tmgOX{s!V84kVuEWDfN+7LjnlhUT4FD1*rz;T^i1Q zO>zqYio)fH!i4Ys8J65 z6Er1EEu4Mi`SG$O0UuR%5gR5s$t*{s6{ALyFQ@`k7&s3B9fX+QZWVC8RrZV0VO`T^ z7p^Iyznh#Oetp#Hh;nt*SeM0X=DjlEJRkmQN`zKN z{=4>j4Sh>l%jIpPqR(iOjlX_A?diAM)ae$lLve&zOEw!-P`$E#Z*@9a=xEYVj7Qs_ zt6O4Cpui{=Kh5_s^#awehrXx-5@@-Op~KK;^Oo!;qn0fh=#o-id>aRQFKo2NJt1bk za`O$rP-6Ga3-aknCUC~yV7d!d)x4%0ZP|9OT4YoisI^5KeG#*Qxiz(M7oF{`ljpVd zv9fjRKE2NGa5^P}ZTJ3PcZ{3ku19occ56t4f?0%#_8_B$kTV0l}FQScislYle zm)*FEzTLb}&W}h|y#DLV)pl3hz;#;)Pj{K?q1chTwXWIYUeWM)qks6efBdQt&oR)< zT>=3eSKy|U32MH2;Y%`qq-#x}2VtIt8NbZTz*3s59w7VJ0{-tL*5O8Nob+&WdzuH> zrCGW;KWR%AA45F%Q^ypXSxhJL)aBy`g7$IfIiGQ$7ilph3HZF24fuDdBn5qfok`c@ z%Q%KJpVDX}p<*O)>;fU`7rA2*rw(~}t8ONEwM>3f!YJl`XQLHJV*ptd)U(_n_8kUs zERr0+7>23lF~p0hf2W2Nc?*&>hKU$h?Nt&}fRKXFMUI~Hr&mQWi20?Cr9@jR_wW^A z2;3=57hdLAV)tu-6#tfl`l8Uuk7zCFCswCZV7TBimN6_lrprL!sYKnlBy5t&57BQ| zZF546o_Sm8g@#3Zt{V~X@M{}uqHWTj4DqKIV7!kz@Kq!B9MO#YYfjoe8Rio}zN5#G z4Q5ufGNnL8S+2GGe7IH{jPO+oEX6r1LXdM@oQZrNW+#O5N<)W-qy<6 z*AFeE3>MCc=jdUU8%&dJj2oYN>G^d1u}ga?cgdnW(p#2Kyv3Arxx+K$x!L`2-cn$APM~rdl>`>b3V2J(YQFy_J zvrHmOXuGLre?fjDZ=mZHu>AGnDmEaq84U)!SD3PTxSaP<+n{>!xVgLW1`Jnt5Qj|9 z311j(%=RzC*Qq*7-PiBI^)IPbbYlJwsa6+#RCI62yt)>UBTY)PK< z$HgWZB$}E(tId|p=dWuRv@pm-V2vcE{aZ8P@IN~su^zC@>TjXIl=rctIag1G^<|P4 zU9@_x>vj*Hl`Q3BGFNo;%G3G`W?j6R3gI3n#&M#D|J5Ru_(`dz_>sWKKttbEm2K`& zCgaZ)ugfBzh4Y<9qLJLK)4~g7YN+p5^M?G+~#+qP}ns5q(E728SWWbgg`|2gg4%&T>^ zTAS}XW*@yj9bhBEH@lGFVC;)d3Mnz9)gQ&B$N}_$wgTfG!fBkW38CDzskBUYV#Z!j z7z5S-;n~~E!4UmJUHMjA8FWn!T}Y@*_tS{qY1^P0BBGT8$s}1BjA}<^6iPN3S`Mqk z(cqSH0P~aXB?xC!1wE2cw_tEvp;Jng>Gz*sz5{;b?SO6S^l*}BwrC}!Kqyk>0Y@gC zNi0<+h|Br<=!9~k;&@*4d;Vx)>g7Z2(lqE)RuH-+c8S77g-~$wYKs2BkzUvm@_^OqVmxH3D<;_I^||etP2NrC5%s zT^qq=7#Mu5c*#IE_7C;rY$rGGhB!BIOUp`Bx5`Veg0V{76cao^rchbL5puZv{j*47 zTB6CuD5@L+b7n<<{#fb0Y;JtyH98gF;qC8&rv`Y`II3dVVb~(5oL7A+laEyL-C0^n zEYUbM`=l`lm+J8LjJtJ)vh;g=)~iuar^zl6%fkP%x3zgQRZ zdFK@`TfRzrW@=SYELkyR;+w#dyC!pvOJk!FXroGxln$dyQ%Li*%$GTnHL_LC)GHHi zLKp!{NG&CmjU2{HFl0serr;BAxgty#9S#WLnM@v2fu2>Cs&*RXrdP~~d3T&NNqTO0 zPOio_50s(-)nUzs#tWtI5~A-mkHm&Gw;t_e!hlyK=rLpE6z|f4EnEMBpv%#kDt#Db zvv9gz-qGZ1(_!-##fb4Y&5VcchK}rSHv4S|u+H$XEZ8xT+&B@_c@&&~qSg~zDFo0j zhEU^=2btleyn_1dQe0(i_&Ff0JwvFYAQc$EVmlU|_&GpLQt2G|xn%j=23Y(pN6<#? z{t0djg+(OeaEeQuKhtmehf_o;Ta(74?hJ7hYl(WWUMX5Qr!eNX!f3wn-at-RKw@G2 z`_@V@G6Z`xTS0e3xncCyf&q7-KQxDZ7`3qBbJnhp%h3}6k8aZD16(*C?~XE-!x|s7 zq)j&?n1iYZp!oqE=+for-EQ$0)H-SlUfc|g3D(S)r2C)0R0%Rt=yTP#q zZ(OEVhto;(><_4AQq`J>=2ADW+IqY8FjbBe+i=29m%w=^F7*`rK$ugL5v!FJ+jb?P ziK6@%IU%mW;-rj`_@%X=>)Gp`sdZ$ryu7Z zUPQkxPi+QpT*!;E0nD4G0ye4SoL2g9=MQf=03LBkF)ZL&YN~#GvY2-A3A>Ze@Cdku zd-_E1m3Y93r~|YT1VrBGVdK4zw5^TkZsKG_OGHnWxmT*`!RzR}DAx=5NX_QXLnd1l zro(T^_)MJIpAZr$W+Tv%?ndY_H->UbNRe_soI_RXHfK|!0A-aLX-nE#xo3@ER~PNH z9eg;WUb+G^y>f|nr*%>iNC%9x=ZkF8l6i|pTJL*iS`>h>q;HVI@0r;HK6*l@+X1t$ z?wz5X9R}}Ujg!y&#u@?q_1a`VYWDtJ)R{+CL(_wD7xcMUM>RA1Su$n<2Z%*R!5Q*oWlo0MNi+a zen?7NR^H+TDkWx1WL{RhnOSOfKv(;tLrpf{5-U&+xzTXyLAnl%=8BthU(3RUNCP{gkxhA5C)a>WiyfsrsE_(?(ktepfnKy>%4fzz(OFu>y@V~K^v}x1bh5W znwnb5iBN(6f)I^ig-Uwvs^yFfKP^StH%lF$?d_f>Z+<$_gN`2^X7N0vaJ76>mSHnz zzt0#0UHdpvw@&7VyaqHm$VLnihy)QlAEOoOc-_bLn!H*{{d4Rf&dK@53Ir(RZGM2A z5-=}T@|M@J?FpN#QWry0f(xd(%L_+W!Jy^Cy`5nfiSmXFIj8fB_)zK+f;h@(YyS;k zVj~?KW!>E_rq6$CuKN-1(@>YXn`h}DbuGO!&8td7m9|dLtLu!zyFWL`^0` zE8ooOk#OQ=N$xsly7zWOMrP5JHK;TI%2K`~=yMtaG%t>sVQp+U@~+VHllfwf2qiFGAL&W;ry8hT6pkfp$q&>}yh z1Och3tH!ly5ca6pp;Q<6Y+CDNKi^m-?}Qq{Jr>5W$2Z&tD_ZB;L>MuwBWoWM$Ca~d}ptj;T$R-CJ*{`1gvWC)LK_>*^J4b(}82iwYaoea;#6aP}>h2oY4Xvv;wS=`UF?*pdmb(P?P>-0Ur7e$REg2T#UP$x=Usl=2D3 zISfG~DG;}U_)Jenl&Z(+7tsFv{Y1#A72k(z|Cy!g#bTF$R^bwh_CA`VOrn?}Lwq8p z3*QzqjC&O-6Khna;$%i@7i&{68EsRf&SIRcT@}na%90D~TeUwqOid8kUmp!ceyn;6 z1_(RE67g+?svI8KBMsGLg_E11;Am%?R#sAy$X$uo%jUx4r8|>XQpupmb!hxP{(I7E5M>|LHz%&5~ zn>w;$jqjm*;T$^|{^%~O*OtPz^fJRLXUMHApYyb|Pe(JXaE1exhtEreuG$Ya(X@GC zL(tK4n0^WnHov@w&HG!#ebd~gk1;la{ z;+(l1HX0^&4Mp_omQx@l{YWIzj;AEA1hF&<^lf;lPY=+;F;uIZbO}*uLFpc1Spo_m zMenp85I=Ou)ygO@;U*-q=Q|k^O8O-PV{DO;hfP%*$t`qNY8P9+L|2|Jw5=XI39afN zPs(bqLq|>bkQg*0Eh2~4U@Uxt1;~-sIa$k3E;e#-NZ0?BP&6b~XX*XAt z694z&pvz-yD2cM^`tQ?4(9@IU@3HLlOBQRwEsN@_BlzT><_vbOJNctiS$NGK*AO{r zjKrGpcih+%nfkd7iijMTu40Q*nD1=(_5ymp(r^&Iy!rk6|8K|#Jv?~6@M^ehB3 zSt`k{cE?`6=?DUUy_k2t-kvV5jl5g=0ZrU_7P|+hC#Pwrugb~Eu|=gn*or!03ruQF z5MnH`am#bOrVDSpc^EH%>E`m^2zlcK*sQbHlsz?phvsW zU{&emlDbtSbgGlK`~bwLdf}Z&=}i`HD`3#mGo7kpJR)b4*3jKpHloCh`t8r(k@87q zG6GlH05>WCTgP44ZKs{xww&E6EFXA1JM3xrGWOB08jo9dy~4y*TpU^-n=o`{F=7nd z47Nno;b<@ZUQXjzu)4*Z`CvV!8JrP}eHw3necpiFK)i~T?otLu)rtA}6e->FEc!63 zbOV34t1|)mx3fRUXBl$pfQRwq>sX6Kb(Pe#hh*tZEh?EDgQThf=?V>Yg5SSHNRQJ} zWW`3rdpX3{LH+}_+PqBQUzfx8`tIBM3&zaB!ID&vN0%0#4F&=D58|IY^bZ?(rCIY| zHZu5sY~;*;*vRMKY-By-c@-23;WQFrn{4!#0G(Zv#AEtUm9%pr)3F zAON!AG-D%9OZJ8$17qhUe#~?41v;bUFbNnD)qLG|4KwO`Q;!FsW%65E9iNt^>%(g0 zxmHL>!INUy{OvX&c|#32G8l4lOT=e)`iTp#pdP&(W0I&QN}uXu8`sa3DhK^mEu=_G zr3B+hsaaTrNOya(f?VcbVmJ{P43m7zJ%B0jBMOg48Y*ZkeP<6o|IY_QGNFquEo}kc z*dAw$rpCKmm`JDB=-E}x*KWrZ`Myr;amBew=Zrbb#dT>dZkH)D-~CA$-8p-~(Wa!* zIhMHl%J4E%XFdTuLiyNO0JpCnTVSK#Lv_3_STdI3e1ubwF2}HjsK4Le4P`4K3c&ub zWf=GnX(_ZyIs6}|_22<*%wzIR%{4?je1kS!>g9;m!Yc2$Qu1dGo!@7jrRbzE>z7uU z&LSBw>{}|+Y;H}ynesMju?!Eh0hlm#5*5XC1q)Gwm4{~3T3xkbT?YKMtrYocJv0NY z8$)iU{03VLRql&6ge+JzjpkBXcK})`le8oXAI-XRzk7~Ly7aO_OgFW={8(W@+Z9?d zp^Z(>rq!iMLpAK_(%%b}?*&lh&=tmZwL{N)zU*x+`&o}R6{`yg11|(u{C;Upar{*w zOX&gD7q#IFl_iT(*c~peoNFE`QUGcr?$5oX_Qp&bEZ`j|S!k=ilS>8VS&AM`x#N40ys)wUY&E2mr@H13dWsfCUy*20dm&7p|hu)hl3w)sgbZ~E) zS0VX$0E!ug70bFsBkAPWQ-Eq`ImcS9=@t{}7PR7f2k@rU#wE+D8a0vzidoH|28LtL zhaCv44Y0&PAR~R0Kzdc@j#B!E-vKv^PK1ZgYyI;(v$-eo5f%rFi)5{NlfO+DSU@-% zU^US4Hru{wzln2IT&~P*0xGAGoUkbll#{qXGLFLSiUc6U>Uk|2Ab@10-*toUA>95O zVgourXHy+>wLG_nM<3U_sziZJYd^8@X%eK<0?|;i)v%j{m{Sy3C7RMHDuT#_Q@D1e z2SY`YN-|h~7A}y9I9bK?r&FpzFDaz_5oSa+PS%G0DJ$M@Ay!1fRO|cmavV((6F*Q& z`*AwmH6YP~$QarQ1RG!}!;L9|lc0TW%mB|Gqz`=UbH&}AfLb&BD=c=pZjc6lc5aq| z^MM37;rvxHDfG9|9kSflv)4o`nSEAX$UWz^mq+oA*fB|j5#!5w^5E4FSBKvc6#4r-pwn=t|7qXQM|kdHPd=A07O^ky1D%~R`Zf?L=y#c}+zz$KO0y%kf}vq{ z{*6)lTtnChGz~zeT|J8{gHf02z<;>7EgY-;IzpH%tg-;^A-cz z8#1jc2-fo9jTLkNygRr6jgUgWpBD>3G*2|ZgGqG&f!U)?9x55Nupt2s*@sb|quzGM7Eu@ClJWyyHsmIUYWbrL2%=+GAhdjXBIrRX z_OV7_mILZPf9T~m<;I;Ljaee3zaU|X8+mhc^T2q{ua4l*o`@wR91f0jQxd_WCit19 z+Xx)@9`Hb-0m&idQ``G9rshIH2a)k96cP$o<9N`^5;5%0O4{&Xa0tTT_6t{V3u6@Y z))HaqSc?B=fwE09r-7G?M;GWNLNo8LT0$cD7B8A~%x(U4xXzDNK|Q;Hxxn@ZtDrBg z*nZDFbrt1piVW3v#YsXi;!K6c?v=m5ENvW0nL@Ov)CJF`Xw%#9kp1^9eh#Fe z*1YhZGDcysFf3>m9EJb)ZW{Ur+dpQTY381h^MHKo$s!2s*3I<_;PU;(_FLGvfRpy8 zZ2k&wZ) z_;g0kdiP-tuW*PVi7Ba*KHVGV&Lq7aS(|ug;SDCX*L>{k^J&-h`lwlaV`YTJzm3P- zbKK(_9SI>kqe7?vDHeFbuBN>W3rauWeb0;;%oRcZEb@`X zlQrO$bo3NNRi)@C3pu?Q^f}n9wNs5OjF!AyOtU-c+#E%VlcO`IV+{|T*x9hMp#e+B zr>WD80jS8QzxTSs$lnM`alcV$XD#K^vTS&O4<}X+7k(}P}xgS{16=;x@Lw6;y_MPr*h*j{Lr=%HNs0 zrD+4i?8C6=~!0u&Jd}Hb#u=Z&yO(QZ1T|h}Q2BjjkKHzI&0^ z2Ea}T2{|)BA&Unk(wSj7{nyhXSCr@?W3?ZodarpSJHPD>D1H$!f3P$5_d zNo&)C55uy*;#x;kt?7T*epy}yjqB0#UjN(kUE)`rz-Y%3&gk(DBZPL|@<49PCL?)v z)6$Cj;l+vOVdt40rkYj0SR71pPeZh~M9dOX!2fCnRdNE}IvI&8+QQ$*oqHPf-rN@} ziCEHUD3+5855HpA)(5?{9CX^OpAQn2Pf{KV%iB!)6}2Q=P=IS(3}&8!M6~ksT10#L zvcrV|?APY2Z#;B=!aLDu&%9Xq%g@hM$!o4jhukgqdw+|A>w=MoZGvqY2P}{J0tlq! z!Ot@Tya|@XnGk~9ECVFC6qedG2z=0$C_!!IgxDb(;oEDY&!XJ6Uc^qQ^FjCxo@&z-)W3;iLuS9_}B= z3hO{4@|lNENVM146f4i8tLtU^rpd$Wt^%}kJqERxEI!VtsnMksc}_-s{2kmY`iy?} zA0&TUIsR&$TOIv*12qe3T8qS@r(sTT2T_r#|Cw12Mpe3CJ^F{N^gwmM6A*1}8yGjH zOU0JtYCNNRDm4#TMA|<|E6^v_6O`N*`)5%gau?oP76jAJ7 zOe&=5lDLPz6iVS zR`ONsM>t2``ZY4{WLsiA>D%vrJc7kqH>kLD`%v(g#5EWE!u@a+00Uo7$s40RyjudZ z9#}lE;(yj`m8FB^TJ@0G%!UxneV8_a*ITpb+f9-NV`Fn8l9fuHycL^d?soh|hj@Am zfP=-(W8(_{?9&Bit?t~Cyl=zHH+IQ7JOMHGv<0yM4h%J(_Kb~4lm%vek6g?d;{_zUnKMIiYK4uNGbBXmf-DnnlD zFXPXSuVdgs`BI z;{Xvqpe!IXJqX&Cx65X8MYu_j7nk&6w)^nl{Pw#@vd(5{AokEQ2z>8+<3>9b!K3T1 zFiDV4HH=cTv(H+Sy%Nk4*3YQh0>-FwL)T$DFhY3Yjzeh_s^`YmwuJd zLqpH6%o4Jqmfvc0hUgSXBecMfX+lr}j%fEs{)Wb=imbA)JgQOes15fjM9whF4C{II zlv-}e{#pcE>Md7JCOPN+mFGe9Dxd`Tg!5L<g+R&7N7h6o$l zCH1iVo-l|o)j7)cNR8A=W30b)x2D|wp+wy1LF&UW)(Yir)fg*rsr7HqYRbt?FzZi0 z4Iyx?$YyH!OWdAwh^J@A>yf)o1N+`ZgjuJ@=V5(}oSZd|39!VD;r z+qHTyG1>L8jy4XdLu69Ox5r1*a^A0`tQiVMsh@;bn8vr#Pqc^8El;shxfXyq=aD^# zwV%DguRzEvX2$WypW3KohExpHJH7q+R`OX9q?=g&d?LgbLi-#WwG-{go0#)-Yh6Ls zitO;!7S%{>ejHpfg=Ni8f1*o`fA}xi9A+hdjdkdd-Y??XP0C;1$^e7SA}}M{%KoSg zbWN#X<*&Fb$k>BW10sdBB(9_J z2GiM$t`G`T;HUHaZaLv%ao5`BeaBXxFE`(TDD0 zC&jJqM<=kW&9{ywJ zj)6RLcO5o_TX37=oVN%B8vmT&S*6r0}7shR04vdPjgfJsbeV|cPopti3?Sfg;rI>7nIvRR}I1l0w_I+=xuqZlKcY3-G2$^Flo}& z?xYc?nnF{()KpBhDv47MX|@ukK>jn%d)%7~`^~u-mFMB7mp6GkB5ErVK$4x(>co z0jW-m3t-6tRf(J3M0rOxF6cn>$pXH=zK>TCJ9oX4k@A}>Tx-x@Cu=xe;JJOGCK~Y< znhcSSD4!kkfqKI_!z2*TB#eA`0-t;p8P@VcFVS3Tm%ve2Y09ATR`6yDD=uR^V=m?+ zuv4mws`sxDya1sOlIv^R7lctZwfTB~_`)sA0{Dz;>8G#e%gtoA_<8f zgz__!kc|(`ygv{YK!qRuRpNU5tn63f{KnNSW`b()h%SKQYgbx8N*NHL<+$=QsTy!9 z_UOfdryY~;AMS-m<~?WL-1Ko?1lfrbL%=-)7Zh}64IYyV@jn_#?dt#W6tikZ^RX8St1Uelnv}6V1o_u5(W<6yA6>Y+#C9M3;7LUQE09Ne}{_x22!* z>x}!chlK5YjusCGG0mE`m6zVPX#x2m$OGI^^p0TQ$-IfWPrbe+rV)bv!&cB16Ek*; zvLpe}Q6VAGO+}w9;2qKZpRc$N*4jtXp7!9l2C_ z{b(`#5JnBF-_BTOj2f=>*-F>7n{SPVk!MKhp9daF$TE;`+U#rW8m>iYclpzQVLcQ` z-Gjc`a|7s8wdV$<4sxNTRI3I=-Z?aKyt`4er@(Nod+f7c}BXvjsA# zBADfyY#B#D?7$FjK!k*WtQH`NaaT28zzj4fGN^;BnFiCb1(*S06nto=Xw0V&9uShX zhmMiD9yXpzq`t5U@w7yk`t3lFQ$VFcuu4n>w0PhDobyxO3ncsmZ>qe`+Tg+eI zS~U~mk64V&Ppn(Hx?&Of3J3`BL;%({p zJ#%0qHcl&6PTD%2Vjk`!&gU!*78Gb?J!IL$l#zmx(b&}38A6bUu?*Nk;yADe$Kcf2 zK8m1si`ms=!vbb%o%>5*C$3&ZClbLTih|7K3M7gN@5HL-7R&{HW& zvooEF1ddTjk@JYuv3#k&Y+~%9t^ofwAbJTIx=21p5D_TlA9}Ylsqx&|JQ8RO7i)nV zV@Q^S4Sub3!O!<*l|7MhwbRsj`w(oW2{jCHb}wN5$qpz4)%`RO=wMh$Dv`AV;Ec^A zk`YfD5>8)}n>RHsUkjRAB_J?K2}W!bvB};y5QF+jkc1@LTz4MEg4-${SQlJZ&c*;w&hUKn5Hz|=G1wCZg()0#44cv5#&52Qu28sVB=w8`VasKm zrl{G7Jn!9f;VR{3!q3z(Kc(@y)kM(B%Q@H&ThGtnS%{X?X0pat$h*O&J%EracMXP) zwH9}U-811eHiOff4&@;>l>_!DrG+9q!nVQocT=NcbjMKDxZ%G8RiB1WhI&LAWvOpm zPRTodtyCqFzj>|$0zCrEwdH-SpPgy+XPu>PL#IJ?3_?FLmuji^r5O*~=UFv1Y4o5o zgxF*gWR3}fao_^|_W{E3ubjp9U8_C^>rK8ZcR!07flZuz3 z7Q`k`%5;76Rph@-=Cm!mtTtJ`QZFPbhx}tFSDq}fv!r-E7e-{Z@P9@9Qupr!x5Q|nBCJROf`);8;HM_p##f#b7qg}&Tbb7E7cwjM(sK>Hi zwEXoxWY^k2R0IMohm+Mq6ICe{b?R&6i;HlHGNAIejxSCw%|z#1ooBD24iH_ax6v!qJH2t|1&ZQ*gz%KYwZ!rwrt!Gnvy;czh1%`p(hy{4@3QJ>aW|twN@HnuXO;{ZkN=&chyFUvSKd~l4}ECHIeu=orPPyS zof1g|-)aNeQaa)4omzZt(}Ti{UW97}y=WT`qph>8;~l7cdfy#-vECsUuQGx(eN#NKfPiv$S=M&l+x zWD0-R`Y-dTn;FMo6Z=z@(^4UHv4aN@wQ*QGKq)XDtw98a&k8b;5^2-|+Vd2BjDOIM!QpCLxj!X9MJLa_el)tlh~yHxwr$Ned94L__=rRQ)M(dk4l*#GT<=_?jvd zpzf==z1#Mz529*?zn+vki|3IPZ7mF{8i}&NHi8JOf+td+^mU2sbud!bV7XdR{%QVU zu9gz@2SjR~O}ifrwv>PE9>^xP9Rv!1cX13|6y}Kl3J9HaS{xH(s84qta6Fl_8TAQj zsO-jn|2gu0cs~iY^ZuuegfnhXl#XlxpcxXRi6YjZzqe*m8^AyxBbJX zggpoVIvUC%7QAJ~ttQ2G)#yR|+O(8%Hl33E#&J*XQ9?G;iZbK$*gfLo7cbl3@Sa#Y^Y_WS(cfW<(Xa0cAO||J zqROl#=S05a7ylbjjFbkV)anVwZ|rZA08If4b52VtwjYF}mf|wCu(yo7=L( zO89H%FTY28hzT4i%2a>1nPU$T^Cin}S#F!)Goj~u{|4l?{h*ErGHL+`f&^LOAS7P! zUKZtL_v(d9EVP|%pN0H=O$82qnd=GSJWoeQAP#Opac>lh`z6izUvGP_Ihv#kLwHG>7$q> zj3dtLGqlf(E z$uh;Fx#tW5v<+|!hhKw$pepEHXR zYzP0Jk}MQNs$b|~B(xdG8!~1kI$xi$-_fDNm%@J6tWiV`#{Ea$j~8Xh;sJS~U`~1& zQ-UEtv|#+ROPkxs;c;w# z4u;ye=^6ERHfGFKQ&(M0 z2d!XUONdSN5%Rs!MI=w0Daqk4bCIq%lDE4qn~W-gJ#>SA@*I6xv3A;jYo(8fqv2lb zxzBase|#MjF8a7_^E2i)8?4B>G61*%tEa-~+ww*xmMJY_Ov>RHa3Bc(hF{I=*U2Le z8bq%chTQ;pv6#XP`+VDAPh_$S*egYzEYJ>kzm3-4FrLy2^t3^h5d%MM(?59oJzArCT5Zf!Gc3c;0n?cp2N+bYSyqGCMntt~&E?9;bFCB-G~6)r6-4=(bnguP<=V(9q>6GJ zfxtD&n?BD%+JF#|;?xoSf*UAbZ`Tw@{GIv(eJ|Ch6FUsklaOYPqK zomc5m9NnX-E^dFmDX;3?`%#@&#i0fA(Vm1p(Yi47ZbnDA0aJ6=jty@Y*e5iM(9;L7 zdl}ef<3$@y9wx15fnx-2G<~(a#rCLH?ZL)8cVZh@Fl;whS0rsIo~{LgDJq!4|<)c5X=a&3gPWvi~xtwY6%wiI& zQb|9>Ve~LBI)#VH+#nj*#1W`>TN{WSBHAxE8n{Bq(66rx$Qmx~xIg{VPY={yX~nN+ zOz7&A_1Ab&?{2!utO03Vr9U?I@&{+b^$}t;)}Cw>@J&jOFa7oc;8ng*%!wQD;~bXU z8k*@Z-?Kq!AQeLHvw=Cb3?AQ+tjt-3fr@cEw$j=A56UDApM-E(nYiv^)4W4+@|G-F z85^*Z_gCG8_?9K4vrDWIEF}GJ-o7l64I-4{F^Uu_xR{mkVA|I&8IlmKP=_X28SrX< z2kM$W>n|n!%c~wG+cRBj8wD{eFD>>RxAX(URi!CafBp5$F65S-=YV~tR>1oXKW)~WD+>kUw>;T)?km(4HdZYn@ zEw@l(2(VC0WvibZ4P?lrlg-3Ft*{-PC+In7Ra67WPgg$U(Q2K}Q!3JfCr8aPQetpEsCI1VH^S>ZkU5^?E8Y=|jp!PmTrjK5&0V~pf(v9I2XV5WvK zil0IDXEG<5iUc!x%d`Q9s|+wJ{A1@+2dPwdOY5r}AN2?(Bh%cuI=G#Ki1Ud(VU->3AwF(T&?=O>|9om9pWpcwaEauexju9Q0ss@GWP?f7W7%SqA_jWX&qOTJ0{}~4Q#bow&Al}$&lw(+%RLg9BH;Ov2x)dIO=vpM;nch zcAql6Y`1@w)9rRFCOp@S9%M428r-@~1+Lx;*Zk@BfV!x@ZT-8F_cuXW>+mZe-*+Yn z#$+q0ZR1s@8MbmTdv1)8pq4Ll_ug0f09}KarbD|!u0g)mR+GLDTokV_YT=bdqMWaE z*NA&B>HhZg#rE#vHqXNDyywl`{qLWLk@XM)h^v8oXYmHIN{i=Y+@K64Jx6>ht-UY* zXx*3068V6t&ub{5RYP?{hmA^ry8P@IpocGuPXIs9UnlK>$gHznLU{{SwEb7QYQqjZ zb8$iF7N3#d{qQTC?tSlfmu6}Is#oKxbOu2j^M!>)bQASpL@$=8uJ!b#DIC}L zX2fDJfR!#}`}U~x1!Q*6aXAeUfycG^}7En9F8((mBDs=M3T{j>?btK&jjYc)J`31V_Z&s4hnfiIRxl=w#h z^J#27J|kXpqSphy6zupRf2g`^N(xtS}skb4MX#ds!FKe56k|GUx4s&Q}Ia?8;n){pZU ze`n&+57Q%rx7}V4w{{`U5%Rg{r3KfXY}K{BkG9JVQ_FtnhTa}P;4!Yev$aA29L&VO z!8F4}TzZRPYf=9cvmK=8KNdG&`HEG)M2cBroV8xV>5yL4YmW@49_jGok~b}5%AMAtv=f+pLlD_%nrAk)U=o+YkWaO%NLn29OT$oC%o|8Y#?+LBaxss zP8@&(F|savaXtA*uGl@GC5pnv_hZP)m4N%+nR3P;c>Hx7=AbbBcF;)&uQk!pFL33g zq8_;UT9ybAs(|>nM>Hmt>+^Z8>jo)F{XnPwr{ui0f5n9qISdf098+ANoGNCL@4f7L z`LKUBNGC^P{bKC)$u}WDzCP5`n_tNJGF9?P$9pTRVUXylPgWaG{;I_@mGoZw z9mNi=~nXODtF9GS=nc zxm@#)@aZdQIt1kYz(jR2WixX3@+(9hVk@8WTMhc9jSBKn{cu`VDpr?CqC{j`P1J&J zQ`9X|tD-E1ZZ(y{8X}C}MxjB6lrl-rprEL@I`!y4SATdT8`K{r5TjQat0z;z$eQPz zCbK|CJ8z5mrgjkP%l~xri@|=S?Ig))Q;E^9N2`LqaT%Z%UB$p~l$9_(?yYhJlNxeo zc0XP`A%e}h$bPSlvAc4np>&I`s|nru)~z9`>yzCm47hiy{i(YJR;wSSLzBQ!X|gF} zWQd_YWXG2i5c5#achl~-)HigAZ-4FRgT9FZ7g%I_u(IeazF9j;8%``$U|W)9ot48yAE$knz%4UruV7|8i+%HRD^t&?Bn}#>pShi z+<8LGn7DYkuces zO^9a~Yb_k#S`SCJhGTW&FrS4B!O@9hFQR{k1~sPbDUI9BrKo?i8#9S#FIq) zsSw*rNk;5N5}6Ovi^DZ_U%X|<}N1B7y1$SgoKNQ;DinZT!S46+RSkkHLbY zKm<&6m0ujku3*0aS9nUM8_5tAJy1xVb^5cMD0U}f=HECE{sjv6VU80&C!##XK>%4< zR%4nXlW=XipS}*Z!UKg8)6hM@leV?5@EV0sF5%^vi>6@;=$zR%<>;IyqfBGo$b5-h zEtAegROD+5H+rzIcK2d=!C$wb!DdPK@CB5J7_Gr7Sx1<$IJf;0j;~_SX!Xmu6YLc` zeY-P-O{2JcUC}Mn^;y>N5EL9dnmmqEr7Du5U2do;4I&a&yG)q;O|*ZNFsb2f7zw>l zXj7o_ZfqSYWw1JPPjZoQ*dm`ib~r41=qW%zsWmkhhS2oj62IZ-deta?#;e|`Yzjy! zzB?W}fhX)+_{^mkd3SYP9Mq%W0D0G*R(qfMp0B*`F-)=bd)Bwxmm*nQc8^Bn-x5%5;Ui2rKMw6x}8knIv zU)Gq%^{j_Elit+mhDN*stcR>5eFz4LFA%@Yo)agF#>ippOJnM#+eMI%P5^ho{$ABQ zWqM~^(}E)WOJyg2b@ZQH3X2u;dC7r(ZCSV?Mkyk0Bch}6@qZ~CzoxMBi;tUH2ga)@ z(#LXc+^JV10*FF9%+{I2lOt_(TI(SXBN?C2TMe=2(9b(uNHo%h%!iJurJD>)o)6bE z*mRURt!7Oagb_Gew@0KgFJZ#*vC;}n z;mUlsNUdRhWE_*8QBdm!9cm_xB`J%;Rg^dA3#e{*PKc`;Dp8Z< zV?-E&v{H<+MFg}rkbxp~PSXZgI@z@zrm%~uZiVO^8{&3t2TBWp>K$dCTNuW;r0jYI zebU|=ep&xL%We~h?~AbHj$qvmimr8Ur*{Uy;girQb-Cq|4N4nG7>PhM`TE)`1>^^@+I1i+ zX>>-(Vc^pjWc5ut^nX_`*MEBg?*Hux;!rt}{^lAq9Q{xr871h;13HBP4pfr8R;fVA zry^6pacV2*^7&PH2DrZXopoWae-+f&@AOQ3`{s6$;bqR(YQ+|1`Oq!;bGq+_u#YqO zlkX3oCj?95Fpbi@Ar5d`2y{d<#_)|L)6Z>JK-`Je@xn#<827aTreuEC#C#WEUx^QnM0_w=V&iX9L5e6_X8ml;kW&T$wjV*ogNzyC%NM8jZz%sr zO2ruzG7-MuULD_(k}eijAss;MXH+TIdCeit>D!qMjV^NiU|sFkvn1!N#JVps;Un4j zl@85m1#Z_XCFdj|q_(-L`}E=unSYWUV#!yE-e58vF!Gilz(dn!u?NyZf0 z7YzLCXCj&UzUO@d?kwdp#D)LtBNSCbe<8uQjCDkr%b6A3s9f^O7zJ2U3!ApVJ*fCn zkMiXbAS|&mg9!D8mvu@i^vR@0(e=^);xZ`IP{D;ZhCkr`;WLe-P@uZ--U}WqgBqry zYkm9wF!fL2nYCRLE}Tv}wr$%^I<{@wHtyKAZQHhOqhojMKhOKE|5$5#?vF96t{P{_ zx$t%nZI_Xvgf&%_pKP2L=cHyREjrs$cjR#}Dhp4n0do&8=?*~*8@{prc9MN@^f9BG zJiePEX4m~&-X{pCh4Iih9|?yZ^97{8f)VEe9RIjEs9Lp#9M_4P_^HDOU(h-Fzzjne z{bPti;wVvAHCx&nyR~JCSS*)1zC*m2v8+-LprVJ?|Cd2bMa;xv6LOYu%@W2W+ZWa_ zyyoOitp-XgnC`>T&|s>%GOa-x`(&MsR#AStWjCKjIW`X%U{!~I@Da%2TN2D`*y(ugrVmiPWX*#*{pVN*hncoYYMbTwW9vh`bbGaa)HPwK+BSMZVg3hW(hGj3MinbqjQbqYQ2+G z{y>6HI4}a_or+*cYt_n^JFn(&=;2<-ih^)DYk>f%VovjV4;MlFBKR)t{s zl&W-+?hoo}mZ3V)YG-LhOI^{_Pq#GZOi}#9j(6(a^k-(j=LvKRI=XE>D2rnm-&5>#VP!SPz+oLX3-#?bUCxaWfR=2k9 z!7EmKY8tSSEfxptV^5ha+u_POjNe8>*U#^PtE1D^vTt%cx(3Oy5q%UvzRP`g3b#Xt zd}4Q15Lgp3Dr+M9dp|gj@jO27y9brt>mD_i&qi|c+IOKAe5Yr#3YIa*m4Ch}<}i1d zR!r!C^n{?e*F%a)Z6q~J?Tua#2G8-Sg!N77<%-Gmz1799+q3b#znj+*&q!ooTuH5< z2!xO!HhQQ8sDzgxkWH}25uNtyPngL-GQUwT7&J&~#t*Oj(sAGz>Tns}#DHL0)gf&N zLkgt~^6bbBIk?cmrLEB!ad4p<&qWE2L+u#>+VT&78)%0hwDB5SQ5a8+I9hFp!B8yY zy6+kFZt@VE=_JfG>hwY9VV*cC{>pROQyeNCVJXyZ;Jl>1nm&9LE4-p-L0L1`XQhg5 z_$w3lnUNLwCo#h!T_0l@BV?H`J_UnN5Cq(~WVn=S^Z7aYlbG^ea>liS%R(j|yLx&7 zOgZBuZk2pKDg>DXEE*OT{ZMqgXwU`k4VOBW(AI8(#!|2gX$zsdIxZ4y*lekHZ-&| zmNc|;J}hs!d6TX_scikK*~@Td(;mk)+=IFs^)Y^C6V-NLN=F1r(=jaDdgFZ$d?Y~c|;!QK@jw% z&#pnfITD;Y9X!j#zd??n*kAsish>)C@(TromGeKrMFBX{)cOGqqxjC&%I8vnuui@g zUqD%lC>8Ou)42Hm(m~{CxP)>kQcl=>+`W-6vR+TY<*wI8_X_hs92Ux%9KBcQ?(t7j7&*J4RC1My8rwZ)n_T-nnEZnCK=ydJB3~BesI!#s>$` z<>5Iaai}AJK>9mK*$!3Xfs^j4u2C(pk>2d-7o7MHnM|4~jsT&AEX;Q1kM~eN1YVE7 z31eZP-SS+fAK?JYQb~VjWABz>>hJ&Y-Yx1|JycB<*s6aY+IXr{8u*AqzU&i?kqb0> zyn1>-3lhqxItT(t4Xt}`|TP1@;W9>1FU7%lC z&raU7-jgA&YOpmQ0V1iMp2G*PpsbtGOdzONlHtk)r9GlNA8%-fBn~0Cf{5-z41BMI zTdOq(?UkKDZ3g&(`rBRg%p(u}TJbpMG4b_M$4Tj&#jvvHiHkZQFRBMySVEW7-^S8( z)8{A*#<^o;X`Dej%LUS?850tiRkcHM)GUm0i#Y(hzLf{Ih{F7+p&HwT`ZgN62bAMIh5b^bXS`NU@!G*=t?mkjZ)8ejkpk z|NaCJ)v?-1M)JQxuD%(3a$7Q%a`ZMoYN>z~8W$J474^T7n(8=wAO28mOul)3Bk2O! z#2b4BEfD=OF3JTyBd1g55@mz(?MptVprDNNEgtXI0L*uVavQA3`9DJMEQ^o@=PhdU zMm^do9K{-aqF`X~!JL)GxhYC?5cWb(bch0c_oa!?W&cfHAVOnp*B}V?EnPzVO{Iv~ z@{tOa4#lXW-xYR_;rAJadfa}1T%0`?BGWTb{E@90K2q3BDdUWvd~rqt`Khl8HDA2Y=8(0uSh0_=UEIsI-|YP@J;?|MNL$Nwd3MOI2ag3Xb@Jr{ zrF5#8%+-^?o1fqxNVc{ATP&&huOO(vtc?Hvc%_ZqqWFJ$V*e1jTsXxCP!3cM{>xw1 zO*=DD_CVhF(x%=#@t_Uo^O^lZr?VxI1$GE$&ewdjb7wm}JKfB*3mYd}n8TB?PrQx% z1%8(L%{Lnc?@uWa)6Zfl9Cr{-7YJGur;K5VB(r!heOaZUhU%nv5{;_gzw?f*FaY#C zyZ$@hcap_&`mZ}sUvWlrDiOZLeh}<%eDAQYyALt^f8BvNzXz6t$Jh6!wQ!1W|DlEr zN5y>6hUSR;7P0XTdg%|1r8I*5?LRynl5iaw%>!3!B7S>G>TbM^ zA=6yz^Q!((GY0lQ^*b#0>80Zqre?wTbz=*+Y+6CBJAUml0V3c1z)!P(BZRKDn059ctlShUyk6nje zL-5aMwcB_s3Dx(FL>X`W$ltW@h77GNzzW2z%x*^-b?dh$QM={=&@@hp`cgVv-50g0 zpl(LmqV3T!nO3#=ll*0B;5Znnuj2;?C@@rI6tvz)>@}rN*sJ!whvrA@*Xys*iyJ+5 zo~dOkp32%et1?8AfJlK@FW&>Q=Kj`j-O7RFCnOk&{`UnUd5}NamJT1UIQB^B8pVaR zY9>1jQ-?cEor-oa@_}b;zCCPV5@Frapn6`MfmL-d0wV~Ohbva#E}5MV`Jt~GY}|JS zfA{iqp^pa}<4*2=`geLtZ;eWPyaGp!Tb%J|>ve7GDG+HX9hiyk0K- z?*^TqwtPf2z-tr`d6A^s)fnc0yw>GZj3RJq+(P2(`ud}*Gev3_BC|N$KRpAh6IDswC>6@IT4|0fuZQ+LKCTR$F955B z>L^G@$bvUPh+_V6b`kMGsMW)urzm7FkwM4Hbyn#*ZW9gBah_Hk*xFI44(_hGNB4L> z5ZyFq$43{_5fqVxI;{xwG3vDXoL_^#0b+`c_&+|VNQeOe`rV1Q4*?hx%;-N?q7chp z$`8>P;*8qiojCW^2tuUti>qqT!8k%uJ;h-Lz)03Vv@R4!nB+IQQSZ(~7fF<&$DSS| z3equ*hUIY2L;aW_Ck#B8wBJ<1Cm$nES6>*!q;C_$D1+pkaa!4WzOkA_8HC+9020?C z(t>=vf(O?TJt7FCuA4~d0*0ctVk2;FDfVIQPKkB8kkt-bot7Us)+Y+nQU5MHN*tte zbjX9xvP2p%U6<8aib2EDu9RAdbqM}O7++@(-D^y(#9Ig6`hK%`>TZNp0{wQiBs*DF z?n#F+_fp4w>CRvyVOYlTtaJ_S&oQ>IX@f~ja4futxZH9i0|avYjO*bnTRX-1R_ah` z>CM64Ks%XI+QW5=1TC>F{}Ls>lC)5m?Ab~Df|{`*ll&%~WXI2&7_~HLHktxagKH=|QvU|_3|F;3gM1j$Mv83*o{i6PP$oWave_!_s zUX=b$)7Zhy?PnvURi`Z^CQYItj0v$a=LK)2Yv8GAvI(7y>5cKW6cf zdC{NH=`=TQC(`3qV>Us)TOhvtv~jV=nU_ zYh#?D`EaxMXL_cu<6_}pkFW>BOKHKU9+f6rjG|iWh}y6hJDun&MRer6vG%g;_T`{4 zj}xEjFb&Yvl#`$=yluFR|hX;s-9lur~q>NR{flaVjY;jrMfqW8>TH&wfa+u14;Y zq-q1-g4_NF86~L85+aBfOv}p3$^xBLCY^fBw*Bmt7XS~P8p@KZH~T-!w>IZ0I(DlW z=};jP-i$>B2RTwfn?JjvtblTN7|;*CNkxd5`=j<1N9$A;m=Y`@Th4~Z-jA@7YpvG4mUahS z;Wv4$0XHC8w&`M;K%1WB&p}t7ZNQAME@LiS?k>)_PfPyuCk~#lDiKm;Z22nZqPf~O z(tN8o`wu=mf3TxxYX+&*cs-8?7yIw_j9=ax`D8cfZ!TIA7k6XyvSAFEw{5GG%3(oH zxpI1bhglKX0 z4QWuAq*Dk&MG3Mb5BVUPtAQ(y{u+mX6ij;WQ4Yiq2?lltrt}W^(F?@HD>%lNZep-F z4F(-TFczVq(Qpg{KgyvR#6eD>Xs;n26vH4SX^Tq;#;?zTD%DsNM&YQYa|}j7qQkN$ zK$u6HlOR)u1rjbk2ShEG%qBkaIRWkRRZ(ZT9?3nGxLGC(TA%}ux!To}NQTwsk%-Tl zTyw&e%9EhMh)p1AxxR$Id9--s9ZHgn7O2cf&mMk-@NX)mD@Uj6y5aVbi2IOgIW^0Q z3r{6%Kd-72Sdy;NCLR16rB{`yw5wT2z;oO7p=<1>$yPxYVE&p+n6ybcObn}_fYelY zm5}PSYO8T4v$ZDY4%q03x6W>km zk#r?>Tx4#CKsKu;Zf^hkc0V#5mZb0?y*Y>hWLV9Glf(^~;7w*_wcgSIX0s&|d58FV34;PA4A)xNkEvZfHt3M>mqVQW}@v!S$V!oH$I8LNzUrA#8HTeadvR*nVHkR&?z3 z@(*B_JV2ipvd^s7e&X88{S zMFr5aBVtDYoG7)~g)8ICz5te0CB3%FOC`I>lq;NhMNrr%ErHbnu9xg~{U2?Af|vf+ z#|eGVjZYhRUOc^bQ&otU5s*(M#BI7f^YpxGOP_N$SzV&jJkMaT7kW%dIe~(v)d#W- zUt!%p05hhX*~ZOR2Q^6#XHH&GFBa~vIRL=xpJuDhlcF5&LNGfRABAJvI|EBp46?c62g3(&Wp1(uS7E36B@9!euP%ho$ zndrQnYLc2&VOnBtDXfrmgWU_j0XOnJ`WRF!hDAAGdejQzAF50>SXLzKUhqU*Mc;y{ zTBcXHOh4H1*FM!o$4LcVr`oN(H}#{w@?+^9dQ($5q``J>#Xsry3y;4r-0P5OV-+S9 z=+xQ5>SZu%3)tMWexl3-RnGz4^4;|5Z)*nM!n5DRu}$9FTd~JJe&YvhtsJUQ)@045 zI`06`e>jp;fh}8K+?YECDsX7()02(XY0-Qp0+~I~q1R;FHlbBGY#qg{Rm#Mhjk~azL(DlhSoag;P47SM z4*j~O){RyAf466(0#=7T&5(7nd@ftPkm05! zpZv5kn}r$v$2Kw*GYuogYkl=d?Rv0(?h!2;Wl2|r60YRqw~Egyin28P?Z(n6z<2LN z%e{l8K~R6MKLiRfc$Z=aIM(gu;I*4#v~Fz<(fry@v*iF=Ahx;OwpZu_)iw~VPv!e7 zK&u7S@bKm=Zgr*jcnA`B9ar%1W#&8%FSoa0f2e>RD>vRA{Pf!?gdZ7pogc%T`iZD= z)d#9fT)>e6M^k$LiLt@8=qsIX_EV((0N z@q~DKF_GEY^=x}v5#1JVGrPz=g_|q5yd;!&om~N%5#ud#jT-HmHPG$Z-@$o1XYv`l^HI<2kIU;_o2t zJ?O%hr@t>NDx|*7i^uflS@P);c7gYAL}Hd=d6o+kKW23m-zLuDogVQAE}fSDH&#;# zPJW@L?w0+cNzGdU0S8>`3Yg8Qmbl4 z$tO_+iU=P5juTJ9XrMx0pc(E@fuN|I=dR+@X5Rg2xxBxTEHp060)L(nfrx&TFg-<2cXgq66oCcYn3K))<;+Qzjs{t>;n*Z z0)9da%OX6K!vWAclaog+Jd%ey(D2|Hu6SPO@kp}#K^?;v4j-pvQ4u>$l@K4yw3xZ z0DpJZ_cc2>dpgjUmLj!dYT54>V}0LVib{jdd)`W=0oTbEcMdr3=T^?iz4wXUSuuwc z_-2U>&gXpE^HE>Q#|ad%0}hIx4%d7tM~yrawWcZ#u6RD0<=<^U90);ietF;t`Afw? z@U=Vk@0PbmI=CG>^PIinfs@$y7U5^`q(ewWJ9Z5ZY zu|AeTz&2g@8%0Z8EdGWwX`JGU*knZ{m}!J_CqzS9O^vNp6lupQ)5hk}PDE^Uk|FW2 zgyFO&JLv`!g<;f$!AiCe@zh|Cb=Iq(KYfH8c4#z0bO9>AeW@z_)yu()FrjUE0Bb8V zU4l2auC`VBGBT|)BCYQa+FHXf3SKg^)EahWC)|%(+%phcI&a(Gv!iOS?o3pT4$cmY zQ3v--=pnG6&jueeqbG!C_82Lw|Ei?R_t$1ko4-bVKjz7$eEz_U&(@)85;Bie8&S|K z%Hm9`niFG`U((TlCs&_-dWKb}0lH_&m;u^G22@6jX}YhxO$V)gK_Dmb*qUM+%`cjc zqB3eDG@V^re35o-L`sr!WmNjg#SZBi2I)`=NA;2>>6Yfl(UvQf-&##th+?-?dc{Px zDYeg~7p@nMI?0{cmEpSYD#ej{6UsaC!fW&eJHJG-duu*HoeLlhXrE!<0JH>qGM-gZ zcg2P5(Yx0o}h0(rn!$sA3W5eqG``2jBWkVzK0?SB<=-p`Ct z_cp$8f1QG+v95JWFaJwz?9Z)z+fQ8VKU;kihfkN5u!8fm3@2RBAnV_z5>hoa;FA-c z)GZOYbgF%_@Sj{M^X}bM90Z2Qrj;^y#XM}+H zk#!?!?|m4~5e|h~hA>>Cw(F3cKass?7~{<#0V%lLL42vHYD7`0k|c{rh6TpTUZnvb z8;D@*Oa_WHhJWA&wl~^3D9qv23L%T8$^!!A=hWa%@-jw>_*E+4`Xe>jyDurrdKjZc z*3hH|@tC0C*?Kz?fF$!nQx&bRh`Eq{H%nhow31SrdunrkrOe}1xr7VpnqIiefgt+2 zo`*&amWsKU^Oeo|iF>DByD_}LWa-HkJ1$U+bCbikI!4CBqOPQxQpe@DFw}de%gqFC zZ>fcqt1(17k(KvNN2!19g{S1nXSNG55~21uGnlVP(~!yJ6*|uc;u5OJJ$~htlom($}vf(~_nvg29NG zbY;vO^=sLpfJBY+@op~v>#{Jkl1>bZHT0=v6Gh&F7 z>0=F!2LoLTf4Q3QG@H%SYj~es)s_;g1ba0Sc{zkH4EZZjnpdnmnP-LawJ_UC_oA3@ zkb~-kmH%57^h_XVsS1R^)Tz-~KP~8UZ%E)_8awnNS_D>&hQkpq;s1FwgY`#CWkx0m zTXYytyKWQ-4J4E8O{$wL9*m?rGlcNHgE#UlF|t3$!E62EYveD%Cn;UI;N0+l{QooQ z`&kP9Yx^$xY5Nullz1q4J~2!=aY(sC%*Xb@AO-}Yj6f4xPQr2^ReXVN1mHccel zg>tkmyTXBU18&xUapJ=iBGQZr1PG*MSpIB!+{1|>Q+PvKG8Pufi7YpU{XGBjOcx$z z^JO)#`bR;LFqBhz<&b$W$sPymd$04bDE%&oLyY$kmn++pnx%| zd)*QbGBD2~go!A10I+~|vqM=IT^vFyrv0Yeinhzj%6=UE$%BsJUp<1NcK7SiUGce` zY5gzM>J7^F?`*C3e5g3-&Fxs}T2bQsMsn#Q*wv&LIXCvRQ|_!SXE%vlsFzUh&D$s% zT_Md!vf$5tn8TSUJ+{nnll6h3uMFxZLVAa`O1pvNz`F{-al)4@I=`|5?}$V7bCa^~ zah|<6RMq6GX&&1qw|b#&DSu5E2U8|Z$LW8m+=_{9w`GXxCE~gTsjBa#6*+}`z`bt` zY#NuN3vSyR)0Sj@ynfYB5LSp^60}7l%Qs3Xc7hmwbMzA*qvag0<+*Mf&ze&NXNXPz z!lj$c8o)l7ELBuwFT{n{^~8`B<=89P5IO7~tisly?s8+n6Jv&N)T^2E67Bxs+r*Jg zE9-ONoiuul$c2vw4+j=HsF(Zgs=nK;W)eC&3#W?@H$F}Fe4HprG2lIouK1H@-n3C=RCNl(u#mNbsG;`7BjLx;&d(0FR;1{WaPPPJ57)3jh8w#VoBPo{{jBpZ8Eg_k% zbd8{d_p-6pQnHf|n%Vm4((Dt(!wzg*gwe5w74d#{OWlL?GE2vq}-l;$2zqRzMfKYQ1lb^R8I%q}FA~kr@OH=?!S6rDe{| z^v2LpuHf4^wZo&?H6)s8P-3Ean@-%9;F(&SC(0bL;HfW$w}qc47A1}rS#>4p6AfB3 z9#vcJwj2gF(+EEH5})NU;na`?7<6Da5wob1t@fZMWJ`Fd#MIzA0u>&khdFd!n{oCXFqXcDz)xj@rAb2nwG7XUW-1-G7#O za}8iEDq|CQ$E5oydZJB!imOGgx%a#KbB?>0!uM@S*F58&Z)JH5g= z7qURR@jI!S<0*^UAWqUzU-PeWQ0!#Cje9nUf}Kc;VSISHCBsOK%|9nB>bQls zME_;3e{x;_1Q*Q05atyC2;zOMPKE;k<0<#v!;)6eWw*0A1VNyGw|szn>;1@3iMYju zgf=%1KMuOQNe@UQj@f)Pg}Jsxy?*mhn(FwN6T!$&_$0Z#%yRA-C(R}dKanw2V;oD6 zJ8g1V4GkzdA8j)Hnx*91Yz@v+$7+FU)bG4p4{uGkb#n5+9MYu&ta7ntDmhuUOe$HnNK>sk(DM|_xqUi;VUm%zfS0S-abn%Cxz);;pD1$^2RRzs?fwk7D zs9!z(%T|Q-D@JZ9L?hwvwoj{D2Wwpon96U=7EszUVCz0IrTKwsk(qW_bgezpbW6ym zMYJZ30=0qqV27lsykv*I6}t3xwtb9QF^%JJ(PNI0m%vASfDJ%$KZz)y)qq#F-?PND z`+mTRv|WuTz0h^jAv%7^7+cajq^RN?D4stb)P0LB2egxL)l`Z{N{PVcfO?LG4na*v zPy2{Mn_jb2b6IF-quzi3$$*bK$AGW$HV_bLzjnp(G;U^uFV(5odc_Z+Tdp8_B7)kP zq`hC#cY$Rf<<>aZ!9Vg{S%(%|$*;Aw+ZD2Jr#8HRx6y`tTp()JBclv>{odX9mmweE z@}r=_LiGcm!KpF^b7)j<^6%-R(p4XUaK1r0bcHAX&tqduMMMDp33)NFr!pP`|18-5 zUSqy~G~r_+$P&#su?Uqpv~i_Y(^?(fo!>7T0}i$;sOTeE#SPHGuXkBAN~wmwBf-lo zGJn>*5yy#duG_hLo}aYw>u|tCrN51~7$)E_BB&-};L*8h7lM-aAu$ z^6>8coPhrjfJ#uncbzpnALBlnzTBb8LIYp<=(6j0@?)4!>A0J9^ZgrFg#b7?8zMn$BzeVZF=njyPjkBSRRlKR=Iyr9I)x=+qLX_Z1IK?a?OuH85^ zlq+q0zdxnV?wW;el&Gy+99RV|wV)E^J<-EAy%taHya$P74weoCCXJl8MGgPVU^n7kjw@7; zZuzaW$Z-J{_&M6%^2AbJTFbish1RE>2j$0^T+I&?kbv~Y&w>ib$@O18-GOO- zo&3e`*SQ`W!}3r~Gk6;Ih@O6j@F`&{1cf_&US)gyfl!QysR=c$9Nmao0E1W-Y{l3O zA+x0Kh$G}J<300iFgC*RyTKAy(u4(mv&o&`xbLFH{}86`Nxr2Yox-qbCHM&Y?^F{4 z=4WzgU@11WUl}c+-zB?#&9Tj~ZW6Z7p}4Y{>aN5nr!(r0aOJFmMc<*S(rq7bZY#*Q z05^sO`Aa$1FY3(!=rzYk?6{0XeXS*MSCBu6ZSpp#KF!+KXfCEGJ_=0t`lO(XJSrz1 z6YaEtG9o!|Rhp^|8#9m8BhA;LN@h7W9-7s)i}%}YH9M_VYc{gXwKEe|jNYGj7j>82OuNBG zJy~7&QER^A>uKeDhg3+N(aMAaQJs4(r+CWxZGYdaqVn)Uroik^ZlFSFQ!dli^a`2O z#`&Al!Mn!9`SIzIA}>f}cCNlo!7zE8R)t+OLQ+b=bIgvlr}k z?>g;(9=Goe-dD9O$RxqzV60vQ$GQu@(v)bA+LS);^OjC@nnsnKe&~ zONs`fG{+zUc~+=wQt_$ig`%_5X=eM)i)hV7W*f*>-|`vD))?*{*mX-#Gi)WjaT|bS z(^9kwx5wXW6uYZ;>yxSKZoiBu!VULvzbsEO*3j){xhJvIAa(b1v##3~l?1Wkp4`te z=#Gu@TlL8ZJ3dIl0$hI|Z^Qoh<0oKG9~>Ds;XPAJ zwJ%?Jno8!=o3Wi`?Z%g6S5e6;f=Yo9j*MlG0@H}C87-RpTJcQ*c!ok?k%dn_0rcYf z<^4DRQBxVWfRRC%7@7Ygno|O{|I7G}Ao)Jm>gP)Tnh)_J4{YJzU=aa+*dL;Mn^VI0 zAm4$yS?7j zr+ZowkcB8gX|)?%@7<^N8^iFc=m70Kev~;sX3@3-0)d1uQh}ECm&aC$F@sy)vf)II z7xNNZU|EXT{ARcsx-X+-T*$xDNSO2S4Vxv`=T*Ac{qsVu_OtPhiiv4w{7M2y{m(9o z;nyz6;Y5hmgI1w>VgLar?6nbaGwmFh2bHX$cnD`PH3Suh1OROFdrD9GD^lX_21FP z4?a3BBFpQTtBvYG(Wt}&OSKT&JReTbR_Alk$<@IixE|z+K>+M;%NpAkSXukj1? zZ=uvVl8XAv>jn6p-c^3NX_w_u1{~R65zh`H&)33%6Yb+MT-n0XB}-%B#{vaqLlAg- z0vT)qLui5Va{@N5lCRoqKSJ9!R=0CEzmg|JbZYNjX?+>~1jh2>v+NbMl8{SAIISb( zghy4w0$!Seof2G4ba-H7ft^V|G-i zhb)&w`~|2wDaYS zRK032kNEf(EK`UEADY1+18E#?CLbg)AYsm=IwYtBf#}HT^1_1H!1vaQY(`JUbKpDh z`}@>mfaKdxxYpf~>2qwwVv}oQUUMY=GbYJ6Vh8|5P|xCth7ZLtt;pHGIoW(QJoq*hqJ}1I(!PnPKB5Yi9;Iq?5 zfJbtvymLzdh-0LYIyAzWBImk1L(V2dj4^l-HWU9%((%jT#VVAguY}0D-Bw!krKyk& ze;bhWsvk0r@QD(XggeC3Pn5vWkxFWhfjkU5(|vZHDdOOSuV?QJ=&$Fe`^KBYbQ|Ky zt!E#?1{g6T^!^$n+!EzEIocdLHi&u3R*Hi5*>m6b8wXPY8mN%l(Bq8`@nyqJ))%1t z`={!6C;~1YewE*YC5C%giZ5gfnfRF=d;#D}pbi&g1;h7~i(KH!xhVhPRQ?wIz_xA6 zVsBG#R632%Cp&Szadi3wVf|2l2C1M}XvRvA(4WvDs^FG&=g8y5LB(~rBWoVPig&HC z%8UmJ+uI;6m@QLB#T3q#Bc{dn&w9)FEJy9T@ueBprb>tIrtO|kmf-+f;?06%HXUFk z_`RrQTjc2dC7**$)l99Jo5n_8ZXI}QeiImZB*&)F6a1rhy~Nbg%z*Kkxt}83xjBtp zB$M@M1%hYF#7o>WR0S#j6Rp1eloPT`JwUP5#-b%ir%i_LfMMF{XM&L8q>oGb<&IgG za<_@^lYr8Jg0H}!x1)y~A$9I8PXW|Z0&L9PLt#0h@7?UOk|uoqf%(C8(}!$ukQ&~6 zwh;HN@3Gx&+)Pj|bgX+^TVGu{%+|wtoU4{s;y+S%WF#@8u%HY5GlhEvlZtxPEiQM6 zpPFA=K<%I+hy1*$J}?OQ#J__}BZ|8ESkVmUB|H^d%WO@jF1pgx>vz)e4l8ujaoxFKSl7Zi zWJgWT>}BLX)ft&?pHZ#R(8SI|?1a>F-+|N^_A=Us_F>WXmzkV+e1^hv8Y~%8wNPov zM2>oIx!n8PPsuxOe+&jxRu7;nA@nOv-3SC<+*^5$^gZ#yZb2L+rqOX-`3k&xghbI( zweZqU9*|-qALOdtxxd)6=e3Ny&=?pfxY8!`-NLF|;M_nz1I7CV!Cd17-9G1aZ?sgVqZMh+b zf$${g8RlQbX-7kci`!8(eJuRqtU@y;`9nD$iuX!!Fc~AFc6RyNI1vLM#vzMwP(1TdqzeRRDBI-}hI~h|^ z8|YJ;;H@ItYH}?u%V=V&^@HCziULy-MTt(G@BmZOamwp=3w0BcKB?@^xz2L@8!y|D_VrzIJoqa3Jy)gv=j$G@XK?Ozdntj*%R&87~wjmj+NZfcc&fx*Dj-y z&%21zZRqb{KPF&!=gnwTZRkD2mjx!tnM8?4Af9g!?c{)${|QfEX2wKDaOD3eyZ?hv z?ka6^Ao$Me<$DFDi<&=bu`hzdna9o~%?P-kyYQ43BEa|O*HgNEe^wiUi({Q2(RK6{ z!4qu8)1JM%cJEqFkD(g;^@&tKjk)E+qi=iCDs{Pyp*|>E)J~Mmwcn=@myL>Ff?7C> zpY=-hP)+Hfc-|BY>;5v&&FsGWN}UM>1iB&RY*qR>0^t}tsxeB|`e1f6%W_rQRo{XT z^Z!0kHuoo{m}nzDlexG@7xjEO1kXybPuY^|*g+5wQ0Ku)h+M&6HZ}u8(N-ANH*IJ= zRN#~p8yxSm#)P}49nL@Ry+ifz^!)O5g`AL|gk{t(OJS-a&`y2PRke;Qqu5kt&yB*#}HT|TyN?E6<;&aeQpZ)RtBSNG4z= z`6R^nm_yxoNg#PD`@9!AxY#>*exxk3#XVO99*#FR*J7`b9(`>JecO*Myyn;g&F)34h=HqU;$={Nw3( z+L1!}2VA_=G`?y!GtYQUNc7&Ugd#Qi%ljHyF9qJ54vs}6oMA?^a&U6yW?bZ?&M84V z$7P0|o{M~Re7>}?F|lw4a8}wlwo=+uymC5*C7>aMsz;fnt(=e-GpWIuR=};`Znr4F zKKohMk>+Oi5e1ah*m1APMbmZx?xSBZF0(vxfd~xM+-x$B3Da-QDsW3rWycu^t)hF{ zT*xGs-@!I8WSR<1RTVydjfB`c_#o-c$P^b(l;X?}x^@EgoiRxQxJ_L8TF1D%LK`Y& ziE^|u%r_%Zfny8OHTjOdZMW$w{jFktAHN4(t%@D?n)dpDw~I{;`Z3(f6Y`W+7UE7* z(B2d@9&!K>d;AF&6`xMjv2ERd??w0nsk4}!BuM(f?wx=CJJV^;pv%5^x5inON+f}v z|AQ6>v#7Dzw(OMwFf&;hCio<=eQxBT2I~yTb4g#5c&_IYku1K z8VI|+Ez2qA^R(UCyYu+&i{teP1(Ffny-FXIr#(i7vvONh?DZK-w@iYB-(~&U^X~#N zGXK1Y;K{cK0@0Mrmi=Grou9_SAo z%Pvg_ef1QSsKExlRV7$dp<#dgZel=76I#&Ekr-Mt|{mgLR0whtYWa5 zFLF|C;}n#3S*MG0G|&rAPlo84YPw4A3KO-Y6{)r{un>io4BQ7zgKZOnpvmQyv=kH% zS!1VyzRnlzOM#UWerRYz(g0*L=Re>_wqn+In>o{)yf+?gh*o<~bM9{-!WS&?|8v@y zQxUCy+CJo~elr1{YyYp#@CV1(%)e435@C2@2#+y`7DBXGE-xl)QmpfTIL0K3`bGxY z6rQ!Nu-5zd-F@;17OrUXhYqoD8l#ukJL-SF*iSj#z?d3_sAc9H;eJ{JzlAlS4c%FA z#BSWaCKd|p?+sgLId{{iTm^3acH)QH<#Z!iR|9H{e`5^FqBS2k{%xe5Fzg;QxRI*$ z<|jsT02)9Y#UshrFZ^5e{6!o+@^T9c7paBpqlLm7`Exw4Z;b`(2~Z8RaUK&ulF%@! zJ9({2BW*k@F!IEOyNc6S`%29fy%;}Sl|laB@jT}bk8vS@Nl#sb0&C>=zMx2ZBpJs! zVCLG}eZ9iuB0-&6P4zL+;=IAou9aTk`Z9LZ!c}uP(VdGoJaJa#9K^(tMe@(E#&Jm@ z%^#=2EuZ#2NSx>iGnMjjnp&d3!oZV~h>`WS2poMp8zOh5HeS!L#1t+R&nZKv%b2;$ z+}Vcqi=f#rpqC_CAqY@>(1D4p%zf-Oz=u^v8`T{x?H`r;L(6gAS)EG-%ux~T;SWda zeAi2Z>oP@NnCOcB(2?JQDwq;!!QA|hS~+O8QtI62Tktgz$kZYf+R20j)3|%*Uk>9U z(F?HdEfYIfVh?w)1U?XCH~!fW&C& z-UX5^vFZgI(!6S2D*uhC5VSqlX&`O=kO*-`A(m&UeF~xahB->u=t0g6^~t1EX6FZq zdUb;0E=u&U$;q~|o`Ifff7j~UrsT~QT$d`0;4^olL{au@Kre_@fk?P0HJo%aHIvS(%?8NbT1@4!=!1^NqK}o0_jXvK*BWo&Qqy9 zeVMxrg+Ea_8G&%=KHp9!L?DX@&=-LUVc$>pD^UE3pQTS)fQt;)Tif~++JzfAwR zGL)vP4bu(TV~}KJ$Pcp~py!5ca+NZ<3WUDWc6bp~sugLgbsDu*t(FTBI{DluLXznZ zS3rer>x|l;-4tZ>Uj^_qfb;jGraIl`iiz%zp{-Q9va1b25raCdhI z9N+{$SRg=fcXxMpcXxMpY2NSe(S21HHAY>o+I!78pSkertAi~L-Aq4-LrZOd`st#< z9|7@xzPg-N-RPmW1~E;~X)lVwq>=b3^icO+|0%O7y&^Q@fw__({eUJnx(mdS$9vTA zWA$lV6naPjPR3$udg-~;lk>m%2m-5T9t-8e)K1(x+p4aojhci7h=_^X1nn+1N-aYJ z6JIY;q#3I~yAYuGL=@OAH1q9=G;+;Iuwd>cIJt|-k%`?LC$9z+r}NJXup{a(%ZPr3 zjfOev+wPN-Tb1zIWdY&)G7v9-MV@{MTzF8@SagFye8FPdJ43`M1Iz}7*~}_~wdLh^ z<3ybH#s6@)KAw^OpWjWv9=va&n6 zA(>H!Nob65St{wLA@Az8zRN4_@`I?getRvJUanstbZ)5L%AP!Cdy)q^(U50+A-#xwbF#NaJ0!Qs+L4{H@$u`r|4f%r-+{vS>kc&=+7JI`bDOs|9@xK{>+}B+^b?pITT1Sq=Ioh{Bav!*G5=iI}E=8TOchn}|j!l{3zkB`h??GJ;2y~Mo*jeOhy_wJ9D-v=W(H}=2K zV`o&Qjo|{mwj(9Fj=U%Bml~*F=&>v;e=vSX>7)}n{X2t>f$1e7AB%p7@|@_>iU>F~ zaC6{SW@f`sX=x!yqxVQJX45K)7?S)o{p^nCO_r_H>ffHg~id|pu` z6^ulAmj|*2|11R1xRnzIPPaReCPk~6pLUI&rLr;uIw(E3`93`=LzoxeY2+1A9cy^5 zX~fR1#)UgMxw;fp?;63CvFKg?P5x%>3rEfO6x*y8y8{(|BsrOJRdvNJW4a@*BR5#1%8`B3;%i|dICmg&7b9Ftw;n0|4On&i_+us6n6hjf^c9#U1 zTs2oj)ot}`&(t|yRaWN_Mr^Y@vjSX1)T&jUoP&W?YWh!6Z2>4GBzal=tpW^Vi*r+u zYy&eb1aN09(6ugT=T%C#{U*W-44&fz7cC7JF(J;ItRDyKPt@r5<1M%6*N$D~mrlE@ zYI=Zs!pD!@rb}@jMBF(gdC1!YTLABNN%yLoP%XMgD5mhu!_X?Fb!$z zGQ_eoLx^;M$|-9co-8I&iTww8_VGBrcvfj@3X>BP-RKPLn5=e+`2ti^1CR&oj^O_Y z-d_85cZU(iZ%1x!D~ddCQEYiDf~`3~5vXoF=bjEaQG(Q}Od3vB#U!HyG=Z;2jhWdS zyW&m$@<3B6>uxF~()%=gFV&6*Vh?MGb4|yO4)-8(962#DOc+L{(}*-m;~q?yI{-#oN zB)n%WN)j23c(D2J@3A*kg!cpeMAwg8Z*9ITy|d-7gqT|I#a#Qp#h*<|I5D(H-2UU> zQgKqCov0{Klfk@stQgub<&sfUz31zZ(f4up(GUVB4pJul^_Q=>7Rt?%@<;?DwGH&& ze5GNMtpcbH{e_cNM$Q=bl7RVc}pdT{FQYb?kPg||S z;NSbeF)Gj~vuo@?Suz;Q!B@uGawtn^)^hy*#z^Ri1hZpf|8y!iTy3j#nwzr-S>Z$w zYC*r({a@bhIaBxk7?r1)fO(j!_ zgI(MteJ@ft6>JnIC!-|kbVn?4Wl4C1b7?Ujb4=fzS2R|IsOznXhDbjMTKV`^iMevdQDx>gi9Zs`||xmspu) zgol|^HqIsC^_SaEyBQl6OL-2ddwka`07r?nt~7-wfr!!iK_x?hl~$i-(v>6|^|j3$ zd-SBDp0_XC?n&|Kqcito$aCAD<^t`G*!NP&ve!>oW6jls8TQuTH3ZHq4~Em|q>&H; ziJ=eQK{T*-b%D~wPjIWM`9$;~8U&_<^F}Pav zD#etu(>VpXbJ2=L?JCG#EtawUp=ZMea3?CqH`-`M7qt;2_aQ;td zlV5=0uM4YJ)0*46-%f+l9b`SpW5i; z7k!0S;+=22El1hBP3tWWs(3jnq7RArv}WW_B}YA@6q4IC;e=ER^Wgi1Ae zMtbgalP=Ex@NQr1-LGD^qGGB)FYac9f?`Py<6R8t=zRw`tOgrCji2110r(RN?%d;r z_gYNf5qfs5EC8m@fb~j;0tI=_NoO^?8gYR=%(F;V@pyQSbvkZerJuK6Nff&r9l+k0 zO4fN>BIDp9X}L@<6K|uLqk!(Bf9mfG8w<806Np)15%6@@0-V&R)ts#xGLon;3h-VTrN2#Ta1iNQV zX%fK801lZU+d^5#{}7(anA&4!QXz3+hAMW9g?~@SQ1@atF2@2VhLP0M$`}d$D+J0? zp`N3UVZRf#?g4`NHrXgV3?t)F{T`ARy>L;d9_J{R@q>5 z=)s0i7(_4vLW`dt&Q5wGnIwp#~M+7;KjjO_%ui+fL6};#fs=7<-F`(s$@5U$jGUS|Mnx zDN<@zpr32NH&57Ad3zz!)Zl~V52!Bv>K2*O|G&;4#O*o z?y31VR`IQ$kKf!px{HY0_wVF46}sR{jAzZ-bYw-H$UYOJlHP5fY_U7l^mh$Egagol z>XehUFCX6ETTA$i6EK94<%QRK)y-bsp5EX#FK*FkHBEG?tft+-#58}oNOrM#j{XCK z7S~yP(0~}-ayftq*ZX$wiArFiTsN5Gec`SZlprskUKVSGPTPO-)!4Y6PQuZRPGe(~ zX&kdCUrZom8gL+b%=T%0%odoY82)v0l%j^1THzKJDw!D|1%{9^{FwYw8O9ppCD_B! zxxs{;Fop%-k0(`Rsd}BN0DB2{PesX>Z%B7ZFITas|HRd{M3W*~r*;W-Zv2nf{z0&D z&7G45$2tLdy@`H2{!YJJ(i=mSjQX~7LTfq@kC=zo0jrXW#SUQC66mQ83v1%wKuPiZ zDa^`Iphd>q4^;UXgr!h?NjadYb+Zj(GXsH)YOqZd;sfSlH`4GfCoQu3G03==L}W6` zAaUGTlyU|1q>}q9DKh_9Od`@0Y))pGbTZucbErZ&%Xo!ETlQe@*wHCdK}-cas^U~x zVX=$^)@}zOBe)<(+52S7>Z-;U{v4@`lU!_d)nuWH0Y;nDQ?ulCCGZj-co%g1SZ>Pj zCu*|LZC~W5d+F2HzjMTxluP!xbMXPN)78kvq*U2CeU zC&YzpG%QFgAB_`&c^@(;+WJ8JCynZE>atGa(Trq4LNQ>T@;XF!Q?#-oWCHJ?aBg`* z_MN}g8%W7@0k^<=Qq+!_?f-2*>>GTwyN$esod2r(@ak8p?w=k23UhM7UN*qvwM9sE zglRR{{t-YdQ--{MYXkbWj9h4yD6>DWjx9*@?R4?DcyDYWfqC_|XhC&!k>+Zp)Ns+@ zPsz%m?Tk!geMuDcd-uW|pcbT?sP2ZhZZJVi34G*EE=7&IxtcPTr=oEBHD|oqLLyve z{Azc{Uj5F8G7&3oT$Te>hnRP>{`}x8cYUanl*n8)<>gHu zhzQ3&@)@?cBYS(Ysu9K~?fkf{bbdXn*o=xcxacG$MIGP9m$o|+_yIP%#L9?ARe$&D zBcF0;Ou!SROR=os$c%{t59%6U;w{(&;>3I z-)wMKyf#h)GRGL$tSlz2nasHfzxnIs<4^+eYS?N)`KZTgXkRQNvFv8^Q5^M|qTpHk za*xas)|}ZRJQ*laxX<~O6~7qb%h(w5YNz~|Ff1)1&SmQIJ&jnKQlZG zT-`7sMc|*mkCl)Bz5p=fT#qOX9}}>;r!lJjP+usMj6PL@s2r~aHX+o|158oP3tZ)P z8;?&#UxY8L*uTR6uwwj>x)WbmF`ECVV&2YMibiwg>&=J2lQOwu2z<&LZDJ%Lfz=Cm z`nPLV;)CKnMxy;<7A+(0AYkm_t`XLlQlN7NpgK-idNX9(4M$1;)GZ0d3nPe>1jz%| z_X*g!DeP0vzcjvi=aIto0?Xnle1~dHyb+N>D9(Vqm93eTPXJb!82n%Yf*&%?gLjUV za-QmYGJ^vOp@nL6-EtCcf?ZLUL7#zDO0%)Y{}QxR>8I0l|JR&z-4q&aSN?+>%<8zb)4pJ$v{XZ#D(vFxg9-RXkF%ywT8In8fXH|l_-s;vg9U*QHY(oB z5mP*Y=8i&=K=>+{jrzggiZ0_{FZoCyIg1K36M>GZWh!{+EA=M93veJyp=MP#pEbg9 zOVK1gXjGy3aej5$dK)+FyxBsxaJ8}hd;o%`(y7<*Ev@_h96oCQ{Y{R+bhOQ0f8YMN zceDH|!+s+^lB>9-Qjm*cJSO=%8sy^!5myV`g^~!40;Lik5A!b*ZLSI`kaFPC@XYjiECKEY7vf7jzqgbTp-q3$oB1b z<>73CHQC|V)4JqPJI;1SLHf{xg1)(XEA7;`n)fC)4UNlAB2R!Y4#b(o<(+;Vy{#g_ z%#pX79P|voxJ_xTXA6sa)Awk5WJ+x!i`2f@g0wO*Mft@9%1=Obl&yrsVp+6o7?AT| zbhq&K(dJ>_4y&nALQwlAym$FY+n7o@VRVMVIe+?bTRZ=ycH!5p)ipGxbDF}iG0hjp zJUXD4lO$xA3KUrF`+B5Vt~N#Vt(1qkjG}azTadkIW?7Wb6k>ZP%U%Q68gZxF!5S5E z%;;igmVkA(J7@v}$`NSAT^WDz2JT$Da%UbE=bH4VhNv!hVB+zFMiT@&9fn#*(&dHs z)@k6u0xn-Jg;5f0`Op-~tI)tY{}Nci;mVr-+k`a=q+%NCiuG7+m z?4`56PfVUYnKps=@ON0{SfE#QrHZs7iDt+h*}WF~+YjDsA62`QME#In157HWldoa? zsk-!Cbj`)bj*Y-Sdm&`435Sdoqb}{kFNS&N%8l0$>N)+ll}Y9rFxeM;d^9$4V0EsQ z>>bDcvFJhH-nj>a27&koMk-D;*%a|A~oFZ&6i+Cslk)Sj%A(^ff zCsF!HfzU3``mKUz_SL+>t5mR?M0vLY#q?`2jHZUCP?JkaxsPr5K!_n6VoYf1i=lH zcL2M+?Fee6KFc`CMro7}&K@d-p1y);CA<=zyD0wD6KAi7qH5WksWPUkpq^kh36(M9 z3Ac~y;1fGoGs=1nP9m!9r$X&I%WL3`yRqUyqNxK-8G4{GxJDz|0^F1{Me7Tl3>GWX zJi$UqW{%BX<<&~hFJKKPo^n6FYpT_Cn}Vr|i>`l^6XXb+el{I1MN&H9as}jmO49;( zi>-6uI20vef5U@})VC`S+~J2F*}4H}eDN|QgJk(uMG_UA9cBH<;q?xT@n8N17Y}U| z(+?$KHfJxk=@>9;>9|}srk5U*v=B$r{{%kY$|p{I6@q2H3}#tmPd^<~3`|RTpXLCX zT&JVHxM)$A5cd28wBue1YiklrJ(tFJ9A&-=bnV-`$ukd^Fp0}!8&Q)8T`FFS(nMVc z#yRqU;!X5tYJiC|?L*&Ftme|ncI`)U~@aF%7G)mGA}XeB&mB$McyQUHMymkUcNVsgAYLKXOcbQ*08np?f<&T-U=a{NJRH3@GF*DBSr z6`FcRds7`U(gam4ON&@BUYydP+a>O#@4xUj#2LQ`sjK_q-<*I4Y)9oaN z(3v5p+Zw7__#S>lY#FDw)Uy(c>LvPHBwO_Zp#-8^&Tq^!e#|mXxBjNzlSEPA-CGe zIXJb>KNM{_m2F+*b#m7Y<9KUo11V(1q;k3MhbjOINznS^y;QFu84SFmAESrU`V_39MnfQ>RY z2}7xK@!y>$Y8ID%v;!a8pRWX(+ljN}_V; zOt%ZizlfU6TWvaCit#}nNFlYArO@Opd^h5ZZKqQ(~-c;68zc{m?4n(<(@SyQ6)8*feh z>`neQCMwA}K_)tLr;ha?fG2E!#|!EB%^6Gz6@v6Y2t&4tAM!jA3v&%L!N{+Dg7PeM zD0H3DyC^Ipt6uljlB5VJGVP3i77tWYKv%63IMMcT>|sz>K{xW?H2|mN>S}qV>0>WI z)3Bu`_ea)<(?*{NA?Yt$-~~*#l2qe56v~)&*d|#t(B>Uo1TWC zCcue~g|7eUW9;G}_N`pA113#Jt0xou>3ivm1bO2TZiS&^U$ho5d4zT!Yqf@0(M>+j zrM1{3P(J+i^)B9JfI&Xdoqxogai0+P>3+V_hQ;FFdmOfP-myuwC!4|#nNbpfKk~b4Y?N&+r!^f&QCI?h>0}@)wC~w?qX`ipDTlsKw|-Sko~AzD zXalbf?!QGG5_1j+;r_bKH*dwyrT0_@GDgfaoorFO3;xcPx5Sy)h%Zi1 zhw0s%c+G7r?4A8=AX}$RlCTbP*1bF(2S|q8=d$Nv1fL54$(e40MC73yl4&Kxj03Lu zlw&z{?yoHdB1!+S?R`$*mHgea_e~>@B+o3pjA!eRXtD1=^ABI_lWwU~#w{CnBwcy& z2;hQr16{^3Co%L{uLgCiQIy^NWs83NgC_n5BfODVYXCjpCo?f9{>KJ4R;W69Igyv- zZEt7d5mx@kXsYgk;dK)HrTG(Ge1?6{&pqW4C`CJFNAT3@-}B`o(y)XLlyeGeJb-JpUY)3qc-h0e$OfT0k%Aj8i4DP(y6 zLT*WGmaiT57d5A#wZ*{DcfH+SsU#j0$6mdMmeywrCpM!47scoW7c6iW%eG&}rdFJ% z!ks&U6QELC7l1Ypj(teq7dSEyz6$DfAFEcjs40Z!ODE{ZNzg(4h=S`^zfrCnGB`7``S`!{D)*c6j!hXAmQmc}ER*~rzfwhpxcq*yaA#v-czpRD{J0knz*gYA<% zMH6T-V68!H&)0}IeO^~SdYs~aQ}tLVO#>0BW(lmb53 z@I%@}v5(aXlIo-kF=f%zGF$;_GR)}lS^sLYe;~QZg%X|1d!J*C-;rLEuN!%M)%w=0RKZ)Sg-}M=nEM)Mq+ZWUR32V6budvr8 z1(M0lV*SlIPqofejNv09lN=RvRVl#ka(1gDF#LG;Q{1i91XgJ7&W=CNzr3BWYuRSK z-OfMx_%=T~U3>dBn*&H+&EF5sOKDT1-BMV$#$iRpHFvWcYO(F~yWsBp6&Ha%ejWbP zv*$Pg8>K zNq=<8#FH*Cfb)X;hg;E2*3Oi-g0wVeN7i-d_$YGJ;N3c4?|V_hB|NxK_;!+#S8Kmu z;q~ICpL8J@5-CBJ;OEuFdZLlCN`}L=L_nZd>kbrudI0MxYF6mM+KAO=xWSqqFbgx~ zF(>5odb$7LK7z|d4kTh!QWM0Kk z!-zC8$z(Da$}w#}0`?%$_g2**JMTJ*h>5b{8{(hszR8=*SHCt{e+*`SA}2J4lqtoO zti}A$@F3TvFCG!h;DZ&TyQKJG&n>2b8?JH>t6VaG8B_lpGaoFrFr%OL1GuRA{Z4kC zMrQsXu7v5|k8#q0RJcO;le*_QYs7q|w&=}$FE;>@2RugQ6^Aou@I83PNhCmTw_DHv z>&g+LCRLU8gU24WCSNUdw%uSK#YfhNxz)+n&mt2XcU5hB%Z}snC}3A2Eok{N1lM4 z=syJc4LJWL6s<~Oe8nicPjN>@>b5&B4`RVO=Dw-vy_l4W_&1=Lg}H!+@)*>v@%!H& zQ}-{_^upuKbzNLZ&!`{mEi5f8Gw|vEROIl!T+m6a33LO0T^zkG9v$ridMLk6?i2*$ zl>eRFCB9DXR-7r4oydN}Gc^j~H)b;5h{tY$m=v(1al%qxIhsi)Q>OpaB8d_WNul?& zc#D-kcyZdODRYIvTzd1Jd^gX`*qXD}Ygi4fgs^^-9WcR*kDV5c40u zhA|kZFSTfp*XY3_Iq{j(@JGNoJ@1)zQ&x7;3u;HM4}8jzHIp4sim~8I}RX| z3KDEDk}6G(ImWpEsewzyx`0MIzqF1kpd?~ixl$=4?W)^OP3cVCIZ^R^_L43780y3H zwL_sm_Julmxsk`wp8uV5xMJpPq@0=7+=SHl_PYN|1cvzp3J4Q^k$L&*DSI2w@hx#L zm4JMNaVl+(^{6=IQv_^dD>>8%P(URQ?DKbu0fdHiH0Rjw!|MuN7m3>HLl4O`kMON@ zx8_Wzr+IWVno28}ov$b_MfvCTUpk&lBxm<@RSkzW$7O=g)5E6agTo1kyquK_mZV44 zTH$To$Jo+nCMiG^>wf=zu=kGe2;Yudr4Dd8%c%ik+gRX?RO^2%u+HX<1s-p=`?gBn%rx{BOR6ohuObk2$dgRmp0=_5U21PlQ0V>OCf3W_XgPfxPQ?;En?3zyj@ow1d*Yzgc@p0rZjp` zuFn)>%ZS-fSUZ1f!QS0m1WmP z2{a>Tml+(XSQd<}HJUcwZuctK-ZdO~Uo7qckR-0MV70naT;|W^Z?-YE@ z%)^p&bd5>jO{G~Oj$lo113IRVXHAcGztHDl?d5!qNHYfCjtXCGlyCTI<<2@pn^-eM zRWOY|s+-0(3ce~7m?W9z47H}CQk|kCDh@taz7{SHA$BsGNxN^8?3>K^Gfc7UrrCOV zYn=j`%;Ys3AtI$PTB?9nJO`$t_h?!nQ%tA;Mt&+x*A#5@%U`ihW5>#;YFAZfmc#|c zf!cDsbpi7b56P2&qeLy5fE@@lp1XZtQG!>Z`D?bKOouECobRyN`s3lF-LCy{+wTmE z{dHaJxx9W5qJW9c9^acOT{o+K=((tP&~NLdp{@cHJo&qbpx{c;pCcD&F^zE1AtM#J zOrntff~?ut*nA!NZGlY0uk#XY(YUz3uJ|7QY@WfQ@Y*2fhLU>5#)K}M1ZNtFW%)D6 z^0V3Bmi^l-P+&EaC=t26?K{YdKezzSM2C2&mMt3{{bjmhys+;##-c0^)Tlpt+i_j? z_ycx~*RsLxtb+2^?3l=Gq4s8XiX;Qf^3IC*IDeWnw((oge04C_V3uekG;!Z=n>-4O zuAE%O$)2DfreDOHrgKv#8R_R&9Kw}UvA$lq{fSg}J^ z=Bq`uQ_oDU3ezB3(>bCZ29!UN}73vQB+E-2{YaCpmEC|EPi5%RA#v_F#CqvyJyXGHt4MWG(F`gn|eF(^P$s^(!~r=^ov98Bao;MyCpzyErBv#J zhgvxio=n~A5d;PlpOivoRE#J;h|kw;16h4E9FyOg<+d}(6G0z*NGBn!*g&t+r&Z5a z-x@RDnHv2RJ@d@kH*Q4w0YzNV7yY1g&s1g{V^Q|@k((1YpgQNW1FQamEUy;q0Bi$3 z1+@tIS`|LP+Nb!icd(Weh+j@@i}WZzkfx6C{3l0^!+ z9z#IZ_ei8_4A7|be3U1a8LZeQu+fe`pN8y*kr&x!$alT$mr(9#79v9F+23(>a$XAj z<(+@nGEQk5gVlTo?TeKP^`ix((A0#-@J6EmNK z&78-k4v*z6$*Uo$=sc0uoW){gPFRH9QqdGwqxAjo5%-)IQIUi!S@)A0HT#Q$41^Z* zRnNDuxIi)>ioIyv!GN5YnN)QOj*+?Q7Mc_5ePzc(b9q-^Cd;)qqk1&2KXvQ-oPcJx zemqT@$n!2w4b^`+7jC&cp|oARf|k;ng%g8%`az4Os2s8d0n1XJuTsLl41xGe8WaQ8 z{ePZ#?nG7ZF9neEzw|M~|IeP-|6)&+{TalqUV<^R)%pL}6GI7Sa8cz-KMD3WFR4^( zs8+-DwXA3N0>^RxO5ZdChIS)P$A}ia)?JgwOzxDgk-a*R0h5N#$9NW4niEbZPMk477RStEU6ov(O);;6lzV{ zXN@mA4IaAPyF@4O>GN=?T$`O~ZZ}?|D=?=98|RofGhEYg)A@(M1jF_D4%<5;Cb$VC zn3LVIrDo!4(&qYsSkBK51#g$@9gnIf=7wcTUFQt7cYtQD*mVjN-5P@k z*&zF|Dy;Ph^{w0cs7)nlxiFt5nj{3u}p4GgrTNTY*d%>^4l(m9ILv4 zD_<~c9mZstUNid?JCAlI1Z1`n^QtvUj)PW$v-FVCI+K}On-JaK*5eLOj_4?UK&GB` zJB_6?^OHhN`BXySjiXJ!p&1!}8rjws5+m}h0gar8qnU$YA0z_L2x@%*BsJ;aE`QS^#ey}O*BX7GaTmE`3IMh6 z3cMY)*_l?&khwZ1e&t_-0_c03PUZXuVOPA%c?O5FX+idpjT|(*L|^fg2|OM3nrydT zJaT=HN%@gSalD?X^E8&BRcLjwXHC;hIgX5mNm994ky2E}XnRE-EKKPB z-Bh)IT#o~{HW%aBl?NTW49yjlJ19=jiw=c;)Ry)9G$cR-|9DW)mQM`&)W$n^iWpo zmVP<3+<@nrj}JBm{VD5Z??}N|Vk*ons{&QZKlYV@}TMaN1`h)r%@5E}rHtDs%WGxjV=6E|Y;^Q?V>xud)F(}M7n+<%cA*&)RN!tyI)z_9f$7H}> z?DP>PCZ}}7k^`f>vREaP7z!_s=glz8wZ+#Hl%eR9tgRR0=sM+gqj&o?_K0G~>_&TW zBfPKxwC1V;?wXxa&#!w%BJM}92g#{I;KC=YUqjpQ78mD9664ShlLQ5o6IGoyBy`tB z8qZ?;P<}~0_+vxBbz6jBqk9W`Lasft+6C}!YdJt6YaF%x(PZXF9DLR4hTM9AQ$9)!}svp|@qmorHgc}uKKBuM@N&89Dpd+Fvdd_u>I!1v&m`q)b~aZV@mS8CX?#nyolw+T zk)n-9-ru>iC~q~_;lRb^KMbIM^pfLzHL%iBK+QCd`b<$YJ@eNsQ86mS>)k;AnYj(H z_JcSpt}hOm5u&QrfKf}>C7lANVu$TX4l8?!`QCHgOh}Pj`Y|tQFRv9QQc{eJ3o()a z`&+J_*`b++J_Ni5t4gAZ4Ec@i9JP_Ys8=;MX2xZi39(wf1kuPJeVKnS&Qd9Aw|U|P zz!@2ndd%b$GGjCKgJjDZjqZV)&b2TjGRCv^dY>gXBFkF3sDjsM;^>xNTJu2=i1-bN zl63J#AxQ-k%$(m3$#?aS)IkvluZP52v!HE+bYf^34LUa*vaY+BvxbVVo?7RG=N3v= z>cPE0MOu9g#!&i%t@NiDaqI}i(a=OmAW5Lw!tq~5l}6a+0U4VbOhHa@HLm#~mqZnE zWKV3vNQ#Q_if|UBIOz7k9eI)Pt{4iPV8~z}qoao4-g@YusS>C06pAu4K7KVeeO1Xm z^Zl))iYAzXQVkTt3OnMhrXho8<58&wcTZySsDs&+$N=(^Z`^rnildlVL&32)K>4NB z1Ue~?3p!;f%W11*!?X2=5JmsUPu)^WfxeM|0b+FN{lDdK*XTiM$c<9ju1_<(6c!5| zkS4cc|9DAWyYlM4K@sUxKcMoIiaY8@i;+W4Z~UR3AX~V*$dQA~TRNz@vlT1NrF*Yo zTjCyAX=$>NGOVBc`M1G0OZ)hj2JlKVMBlgd+@!Kyna$Yg*07z{!8W1!V!fmg z4-wAG*aLkAHE~!bTOU0LC-U6)do(IsOgo@(>!=}ImH)uhwO)@5j79OsXwA3_h`i)E zcIvR>?2;31aZ9=1VUVY5F=|ic)RPV6u;8?)#dKhMM$+n@!fq>4n`G_N4S2rw%#H|V zvpTm`t+7)Qlr9gZOd#+3Q#KJ%5WkOfXHQ*k)k&~l;HIna)c^D7b06$-H5|$Zh>Ylj z^q0kYlCvv0hH&x$0E@!WvbF!^)sjvQItUmrl=$6T|oND~b(%`kT* zjFou2{75@~-5{WSq5DT(80fG76Jy7OU279&`RTYfXq) zVCw*%$Y? z`{YBC$r3?tDA|3GJG(u7_3Q4W(C|;{U3;6S&&$ry_;t~xG6T}8W@Evj_dnGz5WD?u zfT|i0qMhi_D}KNoGV$3FHl!j_n*g9+qQm^1_`}0R;N{rr*WGzrV%Cb^^)Wmd)IDD$H7$5{58~CvL=M10bhb&dHUa)Mels#c3?3kP9@9a%}BVH+m(+)IKV2#m{ zpd``)$aRCqgl_I8M40TL0!@5NE4TR!p6!8wcKg7OB4lYZd#gkECpt8ACK)QIxfM6K z?}JRDsDpS^@|q!(u#L{F?x81JAakV1{p8;|>}SoUQ2XY?51?N}Bg830NcGLX2HbhR zEzEOW7Wx?`^y$X9nDa|9xKsWHIB~U_)V8sg3lsVE&LxPFt-Q+23Y!3|>BqPea*f-L zXAu{PBgpYh9EQ|SVaY|USIwVWu;2*DTcDgU;T*gn0*R8VDPL5}F}D&}w%f0TKN-jW z6goE-b7T9&QU?fxFFU0w8q^oliG%mQex?6+8O@9Fkzts<%2Ms0vd^ENrAxM05W(zF zz1{~)RMiTHm8ul96001Wij4EP>G(t=Uz5hW+7$X4BSRIMwk;rjgFnLC66JK)3oq5v z_O*;AE&5V__wHfobD*eWN32>vbn&&C$x~oUxLF3n660m4pzRrN;=gTFSY0&kV z$-+{xnW;RfKe}gcxU+Mz{#+PgyW)PSK6%)RV|v<`VQYWt6+MXUVjoOua?I8l$Mxq*tA(s;t#W9a}+3Mr- z8I9P;9S6##q8U^81;JsS6jJ{@B8#?yLB6$Zas6@b_2l6cl5`GsJ_?9QAc`3%iRP@U z(Q3n+VgD&}QI?MaWM0-gbZ;1fh>c@9bGF-hNS})Ws6~gHd)Wfdu$?$e~j9^%X}<2xo2Cc z1$2_^LagZ%W@}Q`A4N%pw$Fmew65e`Xnza!hu{BVxs^NuQAElG0nxsJ*^LR%42Sv* zGH027Zp4?Hl4smw8MXiJ2CE^6<2$^Gy!Oh+9Zkm<7U(ZmSDfq~vMEVTVtW=~X6=_I z%^Jpx7;abR_dC~aqc$h$_5Fq|RvIzxZR8m$YM-^?Vl`LQt<}@rTUx|aAD)M3KGSd? zy==Q`+Yje~o~fIx=%ptK2D;R>FVJz6z0nddQ9c?^UI)}&#CGr(4G#^m&6Fb* zT!J_bu#5{rTv7N`TTEsDjAiCo$v5cl5qLgAz{&9+pVLSvPif4IR3F47i1rBvp8-vh znMO!c|K3sO?X}*(_Cl`Sr7GA>ik2%3X_aAhQ5ly)wZ&79^3nb2rNHNfmjGH;7+-lG z2y+8k6vXVvq7_96daV80EA;R-m7n-9@#4$+!p)MuyyH1O(pi_W#v`8>WP*F5z&YOw ztf4NGcyM(?be(8v=VY<|!5}v(8L!#6Sx^F7R$NsFp@}$Xq9Sg>Otne67n&bgNdeS_ z%Tg)Oc_gbjCmXr3`5gG@SYZqM2XDyJW|4qsH9~DqrpTvM<+T*R@6riOMjgW8j-hP> zrb#98Inh;(&eVS?PFODO$!&i&{R4d)lODJ}I7Z>2RT1?#uo*9~&|T+>U!7Bs1gN{F z!a8o+I)?@Ah`yT`JyuyNpe?2Gowy>vVPK4+!x}(la3E*EoZB(!K_GVZdDD>JRHp)& z5L#j{#(ys2KyS#k2u&PBu_ZKow;dA&o`4pD;Kk8?J(jJf5v0`HGWoy%U7lXlq;99_D29G; zLw!dBVH`c@QG%=~BVrKfVT=h3Q)kf(X#S=B!9u}H{H(Ui1 z1A~pDRJBC!(={F?eq16erG-pM1$GRM7QfLeF@=641qrS4--_l{0j57`;!f-Fi&3p&$g&r4-4Z0HVD9KikEnA4NeZbiS+3i7T^JIm7DL;tJ-cgnl zza5(meV^dbdJxd0fFT^QV% zs1Z|x0C_$T`~V`+oIkOB$ew@TDEiQ(BBd|K%e)+v)QY8wy<}d&=@;cS6AKwOTj&NN zBjq%UF6%J4pL&fb0heIro@#*-aGbi$tQ7aWAW>UzdJE>SAi##~?>u0LQLDDae0l~f zl63&_=|WP--oaikiH zbNKa|CU;W)C}*Arh@r`nIo3Q|XOjyXM6l-3gj<`}(!gJPgl>GTx9RDIs7c$QWg(yd zk?%t<$_bbW2B!#c6Zk_>OHmjT@`6-PpEm`$^Z@d%y3u>la+-oMVi647>-I@+xOp zYrkS#r$FJ6jXL1LC^VM2Xcdp)0i3U#S@gX(gyhs6!!7FSKwlVgmCAv6i-6xd2h%so zIUD_tJ71Qdrj($~3x~t&rVp$YMSA4a`1UWB=GWW>0A)!9)d!;mYDp`v zN}zPUs*i2_qOm)8Un;}bAktK7C|p6a^DO5z6_*}(k$#K(ezr|H)g9Kh5$lP_0pM3Nh4 z5q{Q`YmFW>HRD}Y{_pw0_NoVJ66hDrD!|{ZBH@=OLpD@I05hzR70bN|Fs#i^*G_FC z^~BQ+a-vkM%*DxVf${AwGxwu&SzX8WEXpUr{8@6gmCJsl^b005{@A615bDbv+w(Z0 zrJ>`1k9u zpaBjH+=w8&TfvTiC=LM`uxo+ncQdU(lLd*l>T_3QU?ZBU(x2@bK5U%=hakqfInL=p$-2d1(eF1N>4^1grSry6n(vL4WY53Aq8-@4CnUNKX4tF=Uv|6`usU6H z4qTn3xC7c6lPQoLG3U@ns^x~&WswK%T@Az5?wMa!``o>FfkI%MKn^xw1Zj#J#>dBv zXnfY#(`zP;7F*CnE5rV!>MSmqDVllUa#-&x=tN(J+V}KiQedvhx{bp%ZfZfr-EIX{ zE=r5Lw*$FwqPC%g=?^Eof)_=%amK+a768{z|7F#M0Cqe2Vy}}=pW>AAAV@i3?J6bQ z3Z>K9wfW)qeFUr`pt6KWTAJeZv$i5ni6sjGP;zFLRw+GV_j{aAmYk2ON{J1=I^RXm zy7+5b^|9=din`mWxnZB2D5M6pu%HC}Mu=?_c7A7*(BB1+ygyKB2mVA!G5&L{v@qiQ ze7X@^B;+P}s3OpGwp1X|5XPqBAUhD$Ia}8#h%F~CM6xD5K%hdLl%HeIFBOZ4BWSH( z{XE%>_P$CQXJ!#-hFOoQt3%Vd*NT6>oevB_Pj7#HHQ`;h3vey1hCgf)2C4B+bf-;W z*;6YHcwk{&x+Lwj5ON~l?u|9AwO3PFRxLk@Hw632U!KrcfRhRjU84DSVAxYYuI>QAQ+>d3{525QiHB0)Ae|o;KOf!550WgBs+@A^RiB=h1xHo zc)~IKI8vBy+k*Pj_$_boH;~rb?%S0j;z~%w8l-SrLm7B#>|;*Pcx`P$mp<>_U_G=* zasiJUgNjllkLIDIFaG?fr5i?g6@v9>T5e#ups{%#ki}%}SFQ5`Xw?T{u3l1kaM8~f ze%ztZ^@L`jHt{AD7|H0<$b}z{0+S@#;0c7LffFR8=)4xf<8!e_G&rq>fmJr7<+A75!!w1(b&Uzl z+`EQ#oK&^YG5SRH*ToQoG-3dAoi>Ot<=0J?e8CAP{0Rxp6~Jg|F?+3nWk3Sfx&=%XZ>RQ0aEpE!D;`mYwTVbY_8&o0n^%_ z&T$o>y)ppD^otfkv>2T@CTT>f{^K=UW~327TMN$W^BxzMFB$)cpWC*p*!lC|dE+!E z)?GF5Q$c_FL43*UA;LkPm^|#Nw^sbOP#UVdR0!BfFzIFAgk(xeQBF#mkJRx5*Cx4B z$K1N5^QxZZ zF&aBmok`*l4o1Q!$&3c4j;3-h1G^V!@b3UX-NGILSbmW;k%x(FwQ#5O%E!jOz&JCka#7_hVa-c=;8z* z$VKSu5&ZLcab!_LNYKgS)czW@B{9NbLQLMvkfUD=+nmO`Io7R7>I zl?#+s@9hxz+2sqGqY7N^yr<#yf-?Vry1AA)vOn5Q%qq#xSU!KVTpU87gjrmHMDU>l z>R2sKouqnZp6r9hEvlaNgHthk{XT3ei=w#~Ny*8+;Mdr`@EOX9g!d2Pxii7AxuVZA zZv;|$pICPf0TL#_eoo-rEW)o{Iz9)-h{M;{rgZ7^nQSlX=1ajUO$2zzk(0RK{oVjr zehaNav>r+u>cIeyn;`K*(hHHQh19tR0=Zil7U89}eF&p=&CJP)0YOd^ad)(_3*mc) zDJhl+a-PHXv9om9Ij5*v(s#)uJ=gj9qO_4D$yw%#R?K)FfU*<_6aXauZCcP*5eOK* z+3s3DT=W}C(3%T@%-NyA5xVn5xsvca)U>Fox!9rV?gv89s>d%akRBA|09gp2#!vXQ zoXE0tW9I_k;13KP9E*gvo4V3Z+zPG7?wBVRqq*2PW4vA%$XqfVNjb9oGVPo2nEDos zmd-NG+@rhti(I|fp;ia_E=E6!iM=8Io$Tpi(rZpuA2tP6)=MamGAgue@x3cTc3hX<`BIto#}&9c&u#7|xLTSHCnMb0X@z$v}td&;i$x z;(K*QEBWWkVDJpco9dR7uNdk>Dr;CQ@u!(rE)`f+H6jSzT1n5sm#S@xTzX5?)FHDv zqJo3lQ+5_{{=;@j4qbUfSsBeJx0F7e8q$tmdgDwzHnVFHs-=IUP(d4*P`JF2BR_Xp z`E{ACo~=nVjXN@QOI&PX&A{C36`l_s@$%gH2)`aAM>g&h?LiCUP20gX)1-cFaBNF0 zzHV8+@3AY7z7aux zt>$gr9(=3Ttpj-*gcbx$=Nm`-x~N+9s6I}m({xB4jKo90bJOtYaBm5_nmiyLnPF#Y zU)%T~Ab9(3(Rw*xAGrOo@hZ6Yq76|&6k$4c?Sl?VjykZi1x6Jto1!~lS{iAC^VJS# z3wreZAL^^virECalZQYA+G~5`(YY%rl0ew|>?3;A zh_u&@25SCQj2*!V$ES~l*%sB!RDSxZW133WnTltpQ`8a~MI`mdI(u9YGhzf(p$gjb zK#ZQj`EGwLf3fcq!*~?&Jz~tkFX~~Afu#l#*8bozFT!`*N3q9LvgdSs7futgRXfJT zu?fK4*!Q25_7LL{2;R~4j{S|@!Eece%M{u6&OIgzD;tjubjf_qB%OXEs zXLqYiZY;2i4Sm^PS)y;syTZtLgY+{F(eak2&3VS01=>euk1icN`7-p{nr4|Ap2=1C zn~!quy{=wYJ?yVuDu5}Q$DL&Y(``@3XFm4bWmk66+QQ{gJxWzSM!`U`*0EO3QD%W4 ztZ4%5Vdj=uOWcD^#12I1DWH?p&koStj0W@u(C(jJK3jw0uIKQ;_Oi*5(rtnuZZ-XD2tZA&689N*+5=aCIj)%%ayOGtq;j zJhIukuRt|(S2NLMoXK@_|N5h%0$kvvGPRC}q2sC718q$rg13Jmf>}h0LdNo5y(~W5 zAyUz0TkJP-R0Eo5#w4;np=&bCd(&`&ZsnQq{4F+rzCC6BFyb*{xIb*PElG6##*?S)cQuuI)f!twV_64HHD>i* z>C#Mtf%BqD-&CZxa>s}ov63SDd&C0^j6^birTD25-x>{9vBa;z7%8g3|7~m@@sEBh*TU!pHF2snN1yzO&uP{#k+Mun+vh5A{T*v$h2$@ z9s+)EAVQ;mpDWYf%i`L^39^{(ma4?R&v3Fl`kB0>twuPch;iXDB9<*d!1_K#F#MYe8&>IBqUR$=L_Ths%tn${l zf`a4sePXYNwGrd~6emEB?D2;FsMnZV=RQZ2ityV|$yWL~z&S&!ymo&)fwW6kGBYv8 znz~Ic?b2<;d(@B_bT&dGc#b8QH45ooA{UYuK@h0q@I*BqDij$xk(a06*bfag-RT(E zzNl{by{9M5t6)KzC@^%Y`Vw!@VE^n=`(7BLsFYA-1_EFd^Dm}|R}uu6sBN!S zvH~I|5~dtjVL?MGPUvut=6ZIxQkG7Ukbu9~=zk(gQhS}|M6LHs*=a}%pg*2M;F>MH z&+mWxy~~v^?HBZi`LE#UhlT-kqKRw-I;uf2CC^u%l>#uPLoX9M^EjcziT)hcqalhY zSzYqWDe=5;4WF^z4oTwmA9&y=+I&DKxSBS6QlTyvf8(Ar?dCXfgNNEGmLkmF`&902 z(Ol)bg82k(`bn5t8v%t5#>|qM2M2)x&cXSA4NkKX|KNn%r&vnibYFGX5Xqk84n!)= zgUNC`3Q62@;S%R)JoxXAoTs`xZfK!ob6((mzU=p zhKkF?XYFx)mF%p=gDaX?6~`M})UJgU>-80Poqj!4hvW{Mr%ioM2lXfb%ICLw!z25i!bqq_U26~@Yv z?lLn08Fhs?1nM!qQZl99<;hcQ1m31|Tt=o4Ymr;OmV_J2R?(_LAjnL`b= z2iH!Krv;J@a5r&^>mGeMdi!{CWtc+2VoV~n?dH}lz2f}pqJd)-ML_-wQdS?^PH}6B z1i0Z~t8biR1(8rhq=MsG32lrGt4Q{JvgNFxkdmjJT0|6*fSIxMJ&&Y`l63ND@5n{v zHpS##WD(ZD#9iicNYP94<#X9|a*|C_D(20hV&%~w2DZX4pcGzl7}e&^!mAs2G4mLO zWV?WSJ>1izcAqo75->v0Zw^fpw$zYn21)ZfO_zM#4QkpLqnH}lL%{PH!CxsRNPw?J)lLG|~mR^WMFeR$pAYZkn@O+XOS1JU(oT zCLX95$lf)3X$u5H-&+jfB+O#dx;~EwSQ^S*NeyBeXH}GW`3_2~9{oUH2edmVEc2dc zQGufl?5s{69^h#j2f{2sl8z?As9+FU4RC-?7Gxo9q5lIWk2XUI z{UvoC&=YSZtGIk#UCBwSW0)B zxpJ@Z=)_OJ)3loZwk3^iN&APDb2g!lLeEz6V_hYe1{h7HJ?#T0j(=6FO>*T!R`dNb zk%A2DXZSkb#xdIKD1Oxb&_xZXUM!eclDlrx=`${}ER&ANf(ZT!k(3v{rD?!DGaKhd zQB*!bn=?rz8!?FKGuq9No%S=SHXMUrd1F#W0Q?pE>cZtZZMNc;V{UyT88itevqs_` zvb=fHGf-l+UIOn1j~hDL{>zwv%tl4ro-7mIMKCPBh?=0|n!izXq#kp+kwWF>kvdbO*U6hpH%LEHM7tQxOP$&p;kZ0d z>^(|eHZGlnr~r7rjMk4)uHe+sD$(wWI@!f~2O8)?f$60BE~?u3%N697PPAp$YZ6e} zPp$i8@ntVC^outC2x_ot=vNO@Snl5(WjyX0e`s3%;8-0ullJLX(Y}Tn{#4)HiT1tv zu-qp^=lIhV-4|S0XXyL0<3Ip&G8PLuyqra-bWON>>*8hmKC-E!^-*u`{-uQS(krkr z7l`-gN5%dwHZcMQkXj1_-fwKJzGs|iG+$E(vT3W62c!j}4x}}_7*qG9r|ouQYe3TB zriQXM`=eoxlz4>&Ni;6u(HbwAZ^?%Ek14#rf#E&PTa2uTQy7LCJz2Ww=o824$kByO z@P|=j-7{gy=}1b>?=jXCgSpdyNX3D3YK)$(mhd|s`Ll9>vFG{A56cf|YtigfMN!Cq z+PDG=1XikH6%6%1ithhb4eozQLI|7s0hK=*TL&TxPtpDdg`SS8E%hH1x*X=dMuO>3 zdU|E8KtCCI=NjLh^UwAru4W{MtKz`;zt&f<_ZXADXFuiil~J)x$dUzt00pzJNP3F~glRNNDoOgnSXH>2=s&-e=Nod{?=y_B7`EbWhDQ*0(Qdq-;-zr6flVh~a)$@I# zMD7FZe?o&5L@31+Va3^xgpN!>srG_&W-eEz8?LxaB55HjWX)%9dNA6W|A{1E7~0R0 zN#~oe=wny+<>`@VjJy{u_Bh?{$f`o-#TC;iL=jm^R0)1$;e|6%i2=X3Pf(?ZVnnW| zPE|Hm4QaYW#v*z1rl0G}lIjYMya@F*zsEZV6%}9oAkB!q6Y{fH{>BKb8cx4#n<|O{ zgRk$oI^7EDnd(I`C7rgEmfZV`EyeXRY%#q5x zQ$(#YP=^-<3r=AfHekNgJaLYxq}3_*W=OX`n;umA@A_>dKmBg4UZg810I9I#lq+;u zQeBI>GfjpcX#wo${b|4#_9-EPF@hk7!Ic=~D4=}PwkbPyQ%yFmXAu1h`()s^l*1B& zSJ-kjhE2`BBU|8N5Y=RB3WzTzUc)d>6UmA{?8D~D_`2(D10w2>pbYh5HTM%i4%#8v zCCQYmTd*`b9{jlY)SMT9PTRuYs!yO0m8`XHQ))R3!6=FowbXr$X!{^vuP~n_MZm@x z_vs0vR#2et;i^A2&*V;Gz>nJe+2w&GHZ{#F7j5C zWuUD7Gw(6#NV_*o+|7Q@Dbd7^iyX_U72Zs@*|(&TYrc`!_RcHcXH|Sy`lIV1Q#gEB z$S%4H&jl7q=MGnQagn$e-}qs^|!J;yBxw*wJO{l1lGw3Xr2vH*`_{0|nlc9Ow;% zvIB<>+_6pJ($Aql)p%9q_aacT4J7#ysN(wpiu}XAWjTc4iBLG5@vcTJsf^j&42@z&zz49Gx9^mqZ{gVtWOso&&<`@du$W~jp#e2x- zk5QI3*`4(FpT(wnd@t8jpHTtHNdp@KP&>!TEBZtnu_^5haQ`Zc}LbldMJqs-!l* zxdXkn&i$Lt+f~sdk7=a}apkI1!Q= z&l&dRR#<~iz89`hCreoCD+-uGppHMX?#mHbOo_Z4z#4{0dpuFjD>H{s1=mdHU<yJOF?NkVr% zt*AOM1w6mRpgduX-}%l!uE9UPW55ifes|cP*3tYVjZ&So>KfS!0Q0h#f-ETrzrBF~ z&k`xyo!tq=iAqnt>B)PBmhZv*54`qYwco#+$>jrP+!&-x z#rLa>Rlt1{_`C(gp=@XjAd-SXP-+~Rc~VZmnt$+o@0j!&Amk!JEdVeN8$kFou`7Dl zK0ffph+Q2@r(v>kzcf{NqJAw1A!}^h>#wVFjm$*<76jbHj;s<7+>%)*18)qZa_WG* zI8?>>^jz`i%fv%j;{O!6GY1qB2P24n=R`9^iFW7*Hb)&uvW0jwAsx-Qwv=r^vM~88 zRdIDRADIomNwWamr@oeim(Qg?ul>cBHQi{wVXwIknGwhwrb|9U7hXp*h2itAmf?|h zy@k~x;V>dDRB>T~I=8qI*DeWTPSCyK;Kz!OF@a>!VoFfLu*xQY2CD3bO|E0{zO~_0 zpUeTEbkI_b-(TO!M6PsiNwJ61T5X%_q3tto7M`D#w}v@ObT0f{=Y$Vm3eHO*r@QBp zfKAn`Y4pbN^mgWkUr30WR3WT>a0=K~h#mZS1Bx^~N~$-;j>$n>8$MY0gt=?n`%Ej+ z8J+wg#sZdP3gYCq72(ZS%$MI&4=W&Zq;LSBxa6Gc>6rWmyT|pN>Lgl6I2TJsjnEdu zbeQ2u_(x}@phYDdXb`RR)sWrGI}(2iQH;(an>kD%@v~tDCW4rzs*5mVBC5ia3Ga1A zMLlxmbga`K;cPX4b7=v&WX7fx+v&5LFTLVgAu}%LsQOTRr+_|#Zi}VvH>aXfY;{?n z%}8~6MvJFaov6#_`a-o#2Fh@A`i4O}7}#2pueqgenb_h==7NtJA+T+{aYbG;ugy!K zsos+L$wLFG&Kr%ke|UzoeT9z-zd|yLS0~|wE`23-`HJM4EL*p@p01^fEkAJhXuEFZ zogAK#MLowC*SDPAq3AJYR?~^G<{cfVMPleq@Ip3t1GVHI+s-1M>Lilc%JAcni^%d+sgjp*k-&3}Igu8fycMNI^4m zO&+?iNm$p@!GAEQ(2k8Oa*qn)H4b*Fj(5Jdxe!FieEz7PXc`Sru<&J(}A9Q*L2>CMj37<(8v{0%wovR>8TUFi7JL zZkEeyzQ8T0ixjcQm*LY64+AyZu^ zLV0k_QsoN2Fq(2gY^14SLGBE>hxsWAGU?NFv+!xS0-l2tbo{=l7pvY_vSg{2n>sFY zogMpXL=8<`KqV34dyxxgCo0P2@yrjF`|oW!o*VlkaQNGgP-$RKTN$WTH#G4kytn&x z-1tz|S#uJ|X+8qsLfy9s1Od-pT{GF()42ZnxE8AD!tuRM+M_?qy`gfrW+;-jq)3cb zWIrZLSVW605Z z`?Jqlc~0OV#=YTFN@cp8=i#>E*FLQRooem2-O{7ytfsy3kJC?Q%J$j7?44SrBU|h4 zdBw`Nj_dWMOWjwm#gC1KO7lIiYXw7AP6=w?@=2`GCVO=OowfUg?USLU%n`K-tCqO1 zfZ{flWJX+RUYL+%slpT9nxXor^ypi#?00B+LWYx6$4xK{(C>-Y$2eA7uQohrx;o*z3oZtRy-ocy@Rj`kh;R zO~z*lM;v3HfNmEvM41a*xt!RL&}dZ$-3Q_NdsZchwmx9FP%&-A$$F-#yzW~}Y?4+m;LP|?C^1$V8 zn?%Ag>Vdqs&8HMPEXK{0l3xf7Ybf9$R@C)4CigRzBMwGuO6OcaoS{9a%BpWw2~`tS z*rFCA*<@-q)bgUJ8h?s7%E>hI|3y=<%I zhyh*2o8G6-+b7v3>bVpS%Y3HoT(#5%bldG+y*bC#(~V)x=NyS-<5VR0n#MPs=0DEs z<~@9-JOAdQiIcekF-17aDZV=97;_S4+aa%tDE#cQz8EFR{%aiTI5Ow>>|DN(G6FsH zJr&ULk|W(Jf@iME$n$%rR9aA1sD9c)d46_$f4n)dE-$ofe*-9(7)>@qnq_tnFcaa0#!R% zg4VWIEnGi#={F36$0X+Femp~PRxz4iy;aRz1os3+l5cVKtPA5ld{LB%7nP50O-FnP z@xH$A(x=}o$qd<@9XwSkNqeI->V{4#X$LBQ zvPW5-4oBHqRT)azh@bfW%L!NOQT6XfDZ#dtAz^hpRnA-O8x?+ojCGrgs&r4qs?(qR z?DnZKqi*B6RJ6*~&Fx3f=c78^BlVl}E7=|O9fjrO2X!5*we>5L6@t!>zBwWL%OM(9 z_d3{eK-1bBb93s<1~0c-!hyrceRlxzP491>sL1{ITeh6SlE|aglX~zLTsrN~{%N*s@yXvj*g8K8 z+S=!i-I;iBguWpgmL%%Sq7$wUNd}#Mwo>t<12x-dv%Y=zZ{|innG$mlY+-i&D8E3m z84e!yVae#<6bsROI9fCT5JEmO4`B!fVPXZ8LKdkvAuQPTTeOf-VN&K8LWr$n_J2xP zRHPjds5_{|QM1Rtdah#!c;P=!>TWsqn_Q@J-IGH*E6r228?aD8^ zfve#5$nBMf^sIBu3Ou*?Ts|wp_seD@2iZ(8?dVWqijaA+vpteP;g^hDUOaE)8J?_$v^Rv-FS9gC1ibTmWA|i<`SlIud0}MgG@JHru{o5myP;-MD zvCAhIwA+Mcs^A>hmq?Qc3WW~A%)!N$n3qch-2cZi;z0R#KC&-u^ULg6uGRwFq;#=? zYKB4057gF>sxAxHwQw$_?O^lLLaEV2J3KpBHo(V1WCk$ob#bx1Udq)B<8Wn$Olqig zg|&h==o|Zx^C>9$>&sGrnr8a-Whq$x0*DjC=L=qyx~4=&kYrCMV+m3L zlrX6B#Y$8gt1_@BYT&}xrw3DvKBf4oKD$caJj4x05>!>P!ibeS) zb#J+)ZBA*RL}gi4pQ9knYHjO5@4{^5XUM+2OF%b1o=ov4Ry(>ek1&kP@Ag(AX+L;P zE6$z&^coT;Z1b@i;t7S?@iQuHlCOcuZ(h=`J~n}3e&Zt)i=?o1&Sgi$6E|8M99cg z>SlCwf-U<^f>I7xJ-z8#&Y_hg=5g_}_gp!PXWVGPa`^oAHj;Ii-K2Z-JDvhEb zHBRhIg#%RlUaI}W0Dz%c)o<3u0dKpwNzfL? z+yBm#JNpa7aoVi2E)TeUxPQG+HZlfP`L&=M#u`MN)5!=Fg@<)SGcM1lqBdg#fx<-; zFQO^m6Q(^Yz&}+e!5mndtxX`i??k)z*!L=8R@5rWc>(B$VX{(|gEVNVfb&l0KLFb7}I2-|5UHU8Pr9PvxR)L4oSy=ESPnV!Hg% zS?5IcwH6AHwZD^rUywMHVif=R;HVoyqkzn()?}XU+o~LCE(FNYp3wh0Z=X=ZF_4V(==mv|jKlgb3mZ3U?~;&HbyDPLdIrs9L@YsyJ9Lgs z9et7+DE&jmb{z=PUiK;Mq|(RK?f#aE5j(d44Id9N+{JXFZq6>SvGW7?JSU8B-}+kv%qNV{s%%F1zJF6T$YX0qH`he>*vlGd z79*SM+(Jii9KV>*w8rM=GWW+LHM+gArEg2mlaY(acI_Asd4?)6MyQ3PzMtt0$sLRb z(jp9iwsKhNHu4m@+~$!Ns5XK@jSeo3`@%;Y@<7I0ODo96Cp`urtKvGw`C5DX*|65s zLW*>VnhdAvc-iz=1avFVHRi@#i0O{w?7rx&nGAGFU8wj`NGLP6^q1WYK0g2X0kiIJ z?sMC9E37B zGKFqIws(6onvw;^>Ez8%Alp?O*oHI4kcZ%}EzF`HPvlRhQ(vQaVz5w3}4w$4|TpSiSn4k4w!eY1@E(e1BFidIfo*F@Lro9kcx)`V*_ z%NgT?ew*URhWaXhOp5(G&RRbYtcRj3adpG9D`}MI3ZoY*JQPKD^kDU4J6%R-P0DBe zRVg5rP4AVUuNxrk%=;6P9zNjX zKW`Qo%YP>Q|4kD8ud&eczs7>?|KC^$AYuJyEZF|*Se3&x)h^p#N>67G?@D7N@fafg z%9_Sg9KoU9wF=kJIbFd&W4H?3^9)s|iC}6E08aEt2I-3fh$|sE@b96I*0*zynI_lS z1WueLkQwVqi;*eCfrKyiG5WBrbLvWCRFEX~db4ybZXVMWvtP55TLdzMVn0rwj^i&P zWK>o>$7}TL8yuZ;?9*40B%eaCQWGO)lX&vb%9w{aTIEHm{ zNaFx-Y8!GImPA?=+T4yRc_AyCuOyMfn4e*qup(ncFGMi~kc*=GsXtG8t1a1p^xe}J z1Eb0>g6c5UWY>`s2T?a87vGgUG4#D_ddM9N96=>HS=T@zJBFj9M=|~!*b8ZBS z>L0y@x{az6PQssCr{RpRN#yr06nv`D+Viyf_K^d^2!)eWCrV$DrTsJ2g7WsPpVZ2= z#F1uvk!7L)pz3qg_2I6{8wDai-{;8uQ1uI_elU!L&%>%yi@%E*RilJ~H5KE7PAcvg ztnjFde$qIVww1VH$z<)vdYPjcV(V&bJ+r~dUv}564A*8=CBq_9gEbmse>mOV^Ep}m zmhjO1^r7>|bw0bt=Jj1S^fjlz1{B#fPd(0lTOK`l;2XTM+;RKoLZ1W5p>LB+SK%;N zIWI$vRthD9W1sxQWieqpx!gz0Y`LN5zSp7SMH3gdX(*70zIIq4Yh|2MQ=g=L81$<{2Ol%AHPHa?PsB zeEz5h@bj@=@9yRga0Q9;CYo3TH;{bMABBXzPizWW^zRH!#Skof6gsRNxCAMk3>m&D z-8(M%az8uyT1;xs#Z_+(w_bPt)eQg_j4{A);F)y*ehGs_)1sTnpWUW{&xinq8H^6W zln%uRLIb;J?)J-6MjIkVGu73rQ<4?!aZHGpfAB|3AAh_{Yt zsPo6*YJz~bA`Avwlo#}O9rUQl!|mA6y7Ec zT!K6~s3T}QX6w9}i7B7%a~G=ryZs55caFeLOM=IHr%O$_W$ievbG*`v0Bz74n%ZYY zoqDN1m$1Bi?=#BjJ&AVWYa04UGk&eMR)4mox8LbIINK7tj5aSCMBDsf7Gb1!e7O@m z!egk2@NLsdF7t3vus^$xLuFvN8GWeK%p%+m1HTovk%2@w5&g>PuZ<NpP&T2nOsR_2?n>?P=qLPPPh(H(DNR#wN)mO=7v3xAd7{&IgquILOfulnL1WeG1 z1xH{j(K4%+$x@87zJ#p>Js@aG5UDL>P@Ikyn(CD>f2dQma z%aYf-AJVsX=Ij+h!G_r%#+`;B_TR~$_21+V&dkA@s#pO*pQ?ul3JtuO5h3YYV}zk` zl}>@o>uoIk^Hp%_N`IkKIpfTeA;am_YQ2*gvNdMtnaH9&EvJ*|T033|1d|x4=1h>)?ll8~I z)Yy-$!i9eWKhR(DpyP(^!y>Y7Sq@n9)tvDRDo$qf59c!W&zX&w{JGING>y&Q8Dz>_ zPyjrXog@u`nT^X79pVADe5LhGREYc~jcc(qwF(`%Gv%YYg8Hl?49ZRzc_L2+3Jzsa z|IZ;Pf-vR#=MY3W^fyPb;K>@ySI(*ek6TqDry*IyxJqN7?FoK*1w>4^t3>HAbV(Vd zdWAxokv_@me6O#~_N_Bk_iR0!dFrG3o=IV@dTFGhks90+Iu!UWNchpke}bHQj{LBm zy0Kvu`ElLzk@*qFvE9M2j;m#fuoG1!B+U*YXAgINkAfauQ(TU6D4MaX8pS9E+yd8B zf?nHSe!>Ik@|*8Nx)S?m&CZo0j8r@6synN*p^A&4tBovz_h1)qU=X%q1}$WufVgab zHS&~9td^^ylZ7GeF)P7K9P`~{+o51^*9=LN#`PSOTw&jLU15hYM@1?SfHOlO9Qt}j z`C$h(zswCirrJLMLlS@;cfVeN!y&*37S9RzIRN2-gcJDKPE-~;;V@*!lttZrGL0( zFxa0hRHxxaq{sLN7AKafn`Zl3L<3a@zSf{fBUP>I1hVluv~jo2TuzFJOkS~Fv-cC; znb^ZqQ&oGdap5W#j6|R)R_cv)idknn+cHTjV^cJ(EjkGf=dAXax{zPyj6J<=a@lnQ zXvzHa$?fLYs@hOG=aH?z#JW5E;4KOP#hv3={G6G``1?MhP|Hxp;KOx-8aj`2u!)Nu zpX?!)Wx{IcC=+*93?XACpU%ydsos1Ep}2YjlInS2A6qRlm^knURBb83ry+_N?!-w% zBk|g&&F-iXYUa+gjT?7_KF5%bh(G12$UzBP!>=x&K~ z#XF|A))CO7T_s5!*Z7Yf2fx8W(s7v*h!OFSC?N8e>|q&pTVU>ss@h5Z?GF9( z;PzhoxAFCSgFtu6>}K4b*bdK@7o7u^sV8z!Aga}JrtRM)62bm#Yn^e=pS4cjo(rer zxUiq<=(>1KtuqX|ASfy|V>Uk^MmX_}JN~>SSzTvhQx0=J;JIjs zvhfaN3CX`VXQ@`_a-tQd=3G3LZMXKJfGfd6k7&oXQ39ry{yqJBkXmol63?|HBX?{v zY{F4~&c0ztlJzpW=9EP_FdwYT0s5Xayy2~mo0iIi@2SG1N8)gFeW~(3iM54MV3a}8 zB+gWBxn=p!uMkBPh43ar&{kB{Q-(C6g`Uo?#}GaUJ)|k4+Bsloj&PE2q^imXt3cn3 zDQ|~<2X^a-;&{*HHAk@chdskpX$fC>Ib)zoL{>JJWv4TVCa8_wk)#*m;m0udW16_w zz&CBvWj7DX;QO5>On5Yjw@1q3!&Y9D`n4o1tCmlqX>boX;THl^YHR_U|KUjmOCLPOWY$W)b8I#9+TMQ$3b;V zJ)$7H9?sS5NLXs%Fvf|8KMGd=%ESQ2qa0h8MLQjTGhSu$pmc+m7*J_d0Ow6}ogfDv zDMl^^`rW)Qa4|IWJ+LQoF|dB!+q}SAKR5_!-ngCXrtiXQ%P*a@~o9(uOY{v!~gO6s@grtbefIl2FEzGZ!fH@@9xO?^8Ff5j%E@L7(hk*%j98>4Yo^6bE9JR z+_ls725*U!;GaqT<6k2jW0niQ@8AZAU1z8vb3q5tOqP;BILNXY*XuA_AhKrxz(Nz( zUC6Oi&NiIDgfj`)RpnwM2UC4u?6@l%sBdyb|9XCCOtt52cfi2%a6IF0E^qdj0C#{sX3=T6P_ZI*bf@^oz`X-@kt@Q& zaC+^p8Yn;dCgL9uI~uJ*e%OT)cpx2J@W)+rdu&o&vAusc5W658@uMS!@MZGRa_twH z67>N^f^m>v`i05#$VS>1|B;s^?RDjaCJsG;ngaDCkv+~lhEn1d6Fh9P zb4Vp-`F#kjn`ul;QYQ(tWy^>+!#5lXCQo~*6S1wZ_=na0U#C)xrxvxo^*C$V+aeJm z1@!}31$vWU?MK7U6y@B2KDE|x5ObJ5bwgo@1yW*ci_(dpWW57)Obw?ec^hy{4ICh* zk}e=YN!v{AMo3DDkyg=OouBjar@?70y|!eZr;lB9+L&`LJ=szbv`T|U6ziPTPcOKkWaR$wd>+fZ^uLYwo91qOZ-1rJU zc(fg!=QL$rVUiWBDfSbS(WU&Dkm0`c;nEbD<2d+04TZ0&BRaIAzo@x9O-+r2`E(*E z*h6j0)|>M9Z2!4(`movYQK|ju&3NHDsh{n8^bo$wgp|~adp!sjZuPr}#~BzBpiVId zrUODg9x+-Dl5%CK1KE5Bn1d8F zE;77KCHCnn4q#o!(5uLlw0I6+Il&xZgzT=!Bnv18&!ce8Vwms3Swr9hA>10m4ikuF zbEpleBusVCL!`-mFQXr9zyO7r(8StE5blh-Pt1q0i`iHrxXch(YZ!`5CevPx5Js^u z2T={v#uAy%($PW;yAxU|5EfA$X7~&*gwoF47Bo9&rm7O8qNsuzmaN1(>X^mP836To zPT*~A-`Kz3lx5<{Vs6QkV9Bnd-xpWB za1gs?V?zpVWYs#5E1Pq552bVtB<9wg$f}%3dB(!o?&*i)ZEVj;u<9i!jT+ZRcDb7$oe>t}tx@Ap|Uh{M)1`0wxrI)u5zGQ@I8yHEaM?b`DpyY$G%vegOh zxa+pXjRUaIxlE`7M7QOELjY>*fG1h0GcF~fq`;KMqT!DpbLR9hnAlCwv>Y4_iu(M} zyJb*_DdVd#PT($T(C}8`JprB$l1%-{#xpe0%}KUi46m~a@;QHQfF$R};aBRPC}x_v zyQ$1N3S`*#Z@kx91m7q%zCDZlKepZ}JPtNo!;RgTjnmjp8rx=LtFfJlZQHhOHn#0F zPGj%s-?i4>2m3f@lk58Cod@?*KCr(x!W5ZSv=82LO$fQk1O4y(XZ?Hrrwm+y(E&8I zY}X{veU8=LUX^0UoGw#JqY`CT$`_^9WlI~Cw1`Ji(UVrtGn=0uJ%?GqhXo|^Q*{aT zhaLI1)2=dE2=-4%`e!3B#rltS2>;6nwPb&Y{!d0o@&A(%8aT0jm1U<7chYqNW`rIn zuM`%uowpwK0KD%J|Jxy;@|?UqFw$HxtOSoxc*il;k39`}49%QpY|`u@vub?uN=? zfP0*OSy6MyG=6l)Vk8LuDACv{vjEyCvD(wB`DZ7c@}U#p^P8z+_Pz|ARh^s98yT^3 zc(kms=Kzcb(FOzdvdt{wqxnmOAMf5~ibg{?JFv~Lx?NGQ%EtS50vbLPdpO+O|F}*k zIU}7pcQx!6EO&uwK)R@Vm?;!7g`(*~C;jwI-@;tj+(G>^Q0)hwI{}xH1sJY9Hq*e+ zPca(>2k8P~@%@tf@9d}Jh}Eo|bo~xA(ARJ?@$O^r?qvq!W&<_K+KCVcSQW0qECtPr zU_srnHs1Daq&j<;*?`HUU~G~m0jaYt=ED4-40oXn;7br{xX3797^qU}oPE&H7=7b1 zi~yW6a^f~Rknh9322iPt7Gs0+iN56rqKF0Xv&o_bQ#Ov)c!hX9Q}IO3xMp{3- z7q2i#VOPh2{bZHK1|3J^R9aeK!G2${WVwfEEOy<`Xv5kKLy zSCkS_pl#yybX|^rpF48h5TM=G&Eke(^5{*5sd8M5O!Twt$YGISxKVb49*fpWT--^s1G zQ50XvM^m>(e+QpYcG+!Suc@0O9(*Izc6Vrc_7K}tZP<9Sr_^m^adcEPN|zsUY`wpw z*{JD$(qh1i38tOkGje(vIef7nStU|gedS_R8Kca80@(7-e6Rf)O;~ULItd}px?<}I z>=1xh1l-xj6VOiDCd+LI1I>rN%;^$$cKICI%?o`Vo*(R<^^MEwj(XXE$Ql}a#Aei+ z*+pQmhnsF?qkxcN&EO#_eeR1WcO)v!7Q5<0ck!rdon5jdPg>^4sQ4o*wwn%Or4N)~ zK!9HbfZpM1(###~!6#vvKA^mKx)8xDcCV5Oq)vddQ(7C^Zrp~@le7L!`r2jj!ktEj zeN?ImM!kMf+QejGPwD$F!s;YzTWv!PQ@O6n2^Hfc1dEAp!26oHv!Y!}s!1(HvqJ_8 z8@644!QQujE1#PZd;h}gKq~W&-gdXnS#m26(9RnmyU(y~tzZZAC_v6Nd0aLLI!>8~ z8`6Bl8y@Z(=YuYP8_JBFl%rCK2u9LzzE7}epa}IHG35ywEH`jn?z@A|*C0)vd-7s( z5nO&-%bgxz9sWU1CursklU#Oc7!#FQ4czXs=vjP3dMI)Fpi8odrgj%n-)Yp2|sllsFHBi^k4U>wymS$BE+?5h1q~>r5T^|x);60Qz z^s6I-(INXUSL;fcmK+eapsZTLwwu>=Ksg)8qj|;82MD<)1j7ltL{1@ybEy((nBj{L z=yBSzHQOVTa}pEJ4^V$&b(mvCF{w*IcQ3vhYioV0c>}n!J&jV=AdQzHleaP|yh&>5$)t@8E)k zL+tTTax!$Nn!tPyA(|JaHQfZO@ik)*-vk8P+T4t|2&=;V5x*SWx*dyX@wA~ipDuufG|y|o7t13bd;+{IB^2{Q zvZOvcRE1)czbXHMP{;xM>+hWtbLGq?i)Spu{gPV+)U+OYA%rn<-`yM4kpUvGpyc<} z%mNxSQVa=1{ix{{6%=Q6n7{P2@_C# z2#`|f#f6nA){MJG{j%UY&sz9IV;KFHMX~q zYxe9eS@6nR_b;q)x0S3myE~QQ{rkE(fn*K{DWssmGN21%Ogyp`g%UK%=MFsMRN?(A zY(-SvC6e6gIS5>%3#1$&U3?=DJE1fjXTBEfY5n(C^Q#m0;m`p4pUl(~RYYlL4D4n{ zTh36?&Y$PlZD9r-#vq~7i4;Qb-HR=1DF6ff(OH+E|TMb0(^TaN<4t!dp6<8xVv1ci%@yqe#1 zVS6)LqH;8@=&Qk(+uZh4ML_mN&9NsE1``kCBdRl#>^NwlQ{iFas+;)>=agGna9L9=Tl4}N5uBzS!ZjwA+%VL7ChOEp+RkGxG0Cmpo3 z+|tTo+Uvgq3$Esk17(ClI3j~b(_kOwFtz-L;F$i9O_}Fj(oJ;%{SXNwjofP`aVJF#HoTnTsH+age{7gCu2MHt%YV62hpG_wQoXqWWuw(uAZG z$5P%Bzu^FY69paS$Lc+^bjB6^FKj*Ng1>$CeO!)yyDH$ zBrz}drm@{1rUblkz?XLrB6$*t`G>Gw;`IbZMb(B%P~y{VXg*>L6c8j=gZf`@-2D1- z=_t;7$*|WgPjg&v@RVfLiW1n9*?rj-UqEfUR`y%vj|ah{a;c-4g3h~Z;y9~BNucea zVH7D~f#oCdEb|m_QEjd+5?hpHb|I7%K&r;D*UoX2vs|u49e32NIu42YV)FKYQGwY{ zmb9ka^$SK=sLnd^TBPL#z7_ho@I_ zMlXII9Gz?=272g$g#FnN`Qu{>!eFzUDQ_*pJ_(rZM;ocWVW!oAA?~zc4O3Ga<_KGW z?8sz?YFLLU|K_49;oD>NmWZeXdZRo>WoWnYtOw$8oOI1iYhIP!0;4ke=c z&4{|=pRU3vpXrP6;gPM^iFGhWp?2>Z2iqqO#`i2g-x^r<#TgX5P=!!#?#D8b!&>(| z!KTvy6do^-GxK2f7vp!0Vp3nAA66+ZU3m9)u0MSAMasE0I)UN*c`IJ(v#-LzPzGG%cZlRArPlZU=Xx1kYmroSx!T? ze!!z?2@?PJ^^lSY4vvxXNCqSW{oledum(oEtrzSpkX&pHM>~WHjXi@AOfp}GEdJBF zNCW8Bk{tesK3wy|sgd9#rBEvTy}F!1*_rq0eI86a*vOx@VlYL!zA+uCNmG1(;2e6Ez60}=Tt<)QAoc~u~DA2#lZv^{^hN+ z*3BXVOgFhQQy!bry@5Tj!7Q~+w?_iLe{oS+!i(?=! zi?hbA%H)D$r_ZSD!I8&(4%$dv373-&!+rW4`R&1AP3^ z*-JSx*N96dp;h9xGPu&?49=dNQZRy2EI1xedSH%O-7wgbTC<#LLhBv$8Ys%n*=ueWqo}z`md67adW2lukRKm^G|c@SA?|J3pfiL zIu<=C)vTcrtvQHZF=b8QPl)zKB##cpT2Y-|k?V?@EB0J;J|z3h8nagV`*1||{Q$79 z%ik9poUtk+zN2aeHPf4fGB=?uchzs_lv)SnOQ4~yH1{J93btjrU81qmBa_eP8Hy1j z#Cufzpb8t=kKk-8uaXk!*%nxRNC=}7m27zTS?zDaKSCq4!S8X8y4ou~-IZ0vV!uR} z`8ME8iSRu(J9m8u8Pkg<&=?C@2o*pMg9J&O)T{5Ig&b|=(1hA&5)m6Hh74}Ji$fT{uqqI7hk# zC?mUTMF4Oo=0oEu*L8uP|94h)&VBUO9TIO?cT1S<9m9Jw?)JYlRX(goBFP#ZACn$W!+b#sJnU^7VJLZ zt44Y^3rB%oE+cVP4YQY1@9u})#O~)p`wIz~={zr^r^TeFQGWZ?>@2#*71@h93QH1*-OF;%C)g>$)~4td~=EbRkb{JCeJ}? z7-lZm26S;3O-9ge@k=KG!AJr&5!EefY)CvJ&|css@vwkO9L~IJT&XeDZ!_{P_5?WDjp~ zGv47?lu=eQU9)%Pi0^d~k-*cy&@Wu+JL>-(hYFCZOlYPi$6mGa@F~C`0s;yFbkc={ z1BJBMwt2gdp&*dYseSF>s<{Ce*Vr$%%@2K_L2WH}--T0u1FEtXk;f_^3QTe|jMM&v ziv9WHHpHRNXJZzYaM~{^<(=j}nw40np_ac|eaZ1!9pg~eBV(XDSE$j$nO)hVwJfb? zs~O{WAf(Qe>1-cg^If#dBfK6my#1}!o#4Lkp( zM~GR(cG*`a4yn&6qs(04%MvipDzJy-`lv4XuKAB8Z2Q&WxekU*@kmfIVz5OfRwYUKaG zJ|s||#NFgquceNEf+daXRAur`P?>C)Fc2*0YIiBW<|2vr$OgM#7C+mkIQlrH5wLhC z;sXGYTUnhbPGyyasfut>6H>DC2Wy8zmRY(B&l^+({~xYT10{~@U#<@b(qFC*+eyu8 zh0!3>A(Y`ar`hMGbE~R~n z$ag`~U8c7Z6E4RvTp#-Y=KIYGW|@yj3iW}}B!;Y!Hktwj_fHb82#g#3oRE-nOR)#l7enzIsCwGpz4CBMz`SV z91Z#~_wf`%yf!=Lop})Y)Z(yg$f=?mgT|L zET(`>rr;(PFF}A;A?%++4a!JX(FS&8JyJ@9 zWiNTyZwN~QQMG|_xr|`!c+f%aw8M68r9u~)z(1=x@Z)?FFf4@aa*ZQmiX>z`(qn>R zUt;Tcamq0G0;-DC6yt}F+IW>>BFRPInlL*f>tMTb@(6foq@O5-J9|E!a7*y{qrGoJ z88lrZb15Vb7^*AIYy3gEQqR&IIJaP;r+uWz`AF%#?tMxL3)!KD14jmn&g3Hh&frTK z273;GJWj2?%-=As9X)QB)yLxVioRcwExAb&=dS*V)DWBI{q#!s-B{NvU0-;jfRNme%6*( zlkl`ptj~gM&EfUYNUI@x6@K&L%pGqDF84>R2|6GJtYM4+Yec}60XaNmU@(h*<8&}; zY>C?xti(D!?u`aj4}UExy1 zKsV#*B(%Klkb1khYsJyzi)-$wrAp^&1ayo~-sQA-S4$k`Ft+Y{W0TPuGgaMg`Gxea zHQo=uX6Q8n^K~gLFnprC?olQ~rUI{Rz$K;PWbIy_{BUVeD$YaT6(w)PEhF5zn5qDYXuu+i46O zy^{{p5fPk!5*CWfm)LT=5_hz{w7(kiWl7?l1$fxtyt*^Hy=hZUGgkyXkh93=nh*t< zMH=&YB$Pe6JRLj472k02;uG)LC1=91XlHfj06IP1w1p0}AZ0*i$TMn|B=3mj8Y}{C zjIXDOJo|XB6<~tDT0jrA*6KR3xxHq4DtkPKM+YrEer(Eg{fPyAxpVrRh4k?Yn5{<+ zG7J~Ks3laFOcxnFG&SM z2J~wUZAHp$w&@gX7FDl6vZ1LREo8~-@_)yt$_qYY)fl?G8D}2L;R_xtU1YxM+z&TO z<=;>Ah~=-@qtx|^E^)sqDRIYr$EOEYN;-e=%50uCn%MDu&xj1Td1f%H8S(oyA}-Go z%G;NQu@fc0oY>A&^m^d+=QYFr`rOJP889AkPujqzFSZTi6|9Z^=MQBLXg)I}%#2d5 zPiceG_Je-&Ps_BtcU&uHh|AF>8yAOB&Qx;l5`(YoZD}mmnAqyOLVfM@O9T)%yE8ur zNYk^~#9kXKZ7+j{Q*Bj^D$8#d?>n$*=rjyB6Q<0ACPFfcDcjn=R_!kyyB$7pJp(G} z7jdwhhj|_ejJL|+M>H;9T7pn#Vgo}ge3D|&J?^c&+lZi-AvksAY?)hcWEISyIz?Wnb!!IN2DoU|t|-FY zpU;Wh-gnyFi{x|BS5zdNlcv=YU zOB!Tf?z-{#s03G8 ztsD=|3Ib?*HAQX`s#JA`Q{2sPbcceHbOAESXHTwFP&b?U8CZja`D{-Z9Zh8+V+|m7$w@ z#4Ku2gjISMJnvLdcR@iQDPr1#1YODhoDd*tXZBT?Pc*E%+#TQ#a(m;aYXs_!Ioo1{ zqRrUh8RPs01UYJxVFh>(>FaaO3-Kv<6C(|fJybI0LR5u_BRRS{3+?nqUcL$u!f zuDmY7)_JsO6_y+h8OPn7K6Lh+a3nm|$d2{oQ_hevhKd3UE*Td6FZh<{Tk8?cgwq=- zIfBf;AHCCdUilHObCs498!vmzsr02*yDtqeZkwL?c;4@Owrp`NH&msH(ujg%kg3w0 zOF?4Y{MiRao-t_ht$DHPE&<7i@&7^Cz?qmi{$(dQfs3Y<5Hx@@+XYVK&#fMk>!7N^ zuRVl#RSNGa6&Gt^n zyC*|m|M{nM&VcA80^X8;ipDJM|Ep*eSlk(0)2AJ~cm7%qiLC3R)hYQITLt*q1bbM9Y7BOR~C`zf%1%F7FK-cU?@JG^)V z1sGrXg)iD+`Pn+U1oJPxvYJ3UIWOsu1$%g7{D^9-;>@x8t5&{@sI3EkZN4qv>m&`qFJs*EB ztzYn-o`z&351|bGQb7FzD;_!Skla0fc``Zmu+>mCo1B1!2Cz3~HE{73&PN$w{WUJU z>^~!g28KWfd8&&)H(snBf?+f$7>!%|0;!9-WW&iM9$wk|9shWrJRPxD3#8g#$hR7P zji&BttTIU{AU_`Xr2hBUTlwF9=S1O;=A4;2$_9VEKHgHSo`Rv zHWtA**Si$@3a}&%v>^GSmxkFA(un+P2cyukccR2Te%kC73u!wy-S`RGI_Z7YKfCljqTjO8J@1+=t!$4)TSoD6e4`_QOe-LvvMLnEzDu{ z&G^Usu##$)&-W`Eu4Ks8?w6SgD>lnWvGq1(FbTlfg7HRbkrgy~V#Y=n{Ug1f=J=^J z!n>8m57nKf5uq22p^uK$EB0?&hQ6!mGnoPK}8@+U&KOM*xAiydCJS*cGQ#G~?Cajk9x&rib6H=+NXN zHSZ(+_{VRAl}$Ttp%Bt{OuW>ay9txq1=q-d5}u5aBF6@Rnxi|{E`RjxfYVFYb%pWjsELX@C9)mD z2v{=*J!|)`bGORWGJP^ZWX71*V1;zpEBb6X@?6g*Dh@WU@$InNdD>?#J}yAi zrlbT{0~H|;9kQ!)1j$%!+p?P0QiuwYSJ0xux>tO)unE-K(d!SZoMOpK=-q(X_M?D_ zxLvs+Ywl9hfCe;dD`<`9BQ_^%8?V=>)4z4KwdP18!3Ys9klj z0rk`Xf%^9=*wRtXoRZOt8>Wh#`dN5Otu!&n{6da-F_@Kuvy5iD6@w@#96kV+7(Hz8 zBo|$EAF#SxE^7o1!~AOptYa7oP%`Rl{T0$S^{e~04AW7D--6y58VNfDj1F3+U*Jg( zbW+)hVNtt&lg{h2nv`f%WG608>H050?Na?A;=wR+VxG-&hcr}hR1c1l423b*lSzaE zYrp-nF3Y)Uxa6U4L$ltSo>~ELx6TTVWSXhjDd>_hwTOUXHdXxdwUsRkv!tp|!Y}0f zJT%JVG#UO}6)escRdXV9$RX#?z|8b;!-%780~nkR^%Sk-*!m`GbG1nD zyr_3UbzqoEuplfP%HT6k;i?qbydl~@>1n#`RBu1Ax#<&0i=e)!CcL3?XND1_-l~rMoNlZ z#!MeXanau?W};kg*dhrQtoB_EMDP)`FofFo3@^N`ANH%bJUu6R=xm#2lbBr<+w@xx zP?gnNA#+ix6_rE&;l)4GK!X}=RWAmpi=hVT0cD(%d!$yUPs$+J68WM*Snhml{(Ce{ z$v>g*NyLBxg!3`3lzM}9^CDh2Cal$$!{?XwT1L4autW3tkS6f5l$D+Rr}7zTw>PG2 zKy8VKSnRL17tJ5QxmfA#J1N7YkaZO$8ncK&UVFQ zBlYHr!>y}MDW7$hU7OR5u$k%z7m~yb!;{ksXQ0LAN-#19Q(5@fCCXWu&0tl{D#I5N zw$7bm4qQZKLVuF7Y(_4NP8MSqSX8_Csn|hAMVQ5tmn!tK^mHxM`7j`Zs<*!I)AU$V($zu!VNx${+JQn)wU!_x`K`*fue zVbb(n4*Wiwwsb#q!fw|rmj_(A59xDpF>s9j?$Ts-Xg-|V7LnVN&e zpExwV+2O)7mP9VvXM`1ZznBFa7Ugm;wQUAYd};dur0qhPR;5zpkFY&)6|J2=QjbmV zRJ0AISUlAI615){BcEp-cRrU8v-9-CN3g9e!0ffAR#fDKWzMBHnFib`;}sEaNtDGX z6#J5kc|bv?V8YX{C$2@tvI!WlgNT+rE6s~q;8C!RmdHN%cynY6?>1tHKn@;7#rVV& zT$`tu<2QiKoBVD2AA4`mrL)((GCU1BQ)3HE^#aUl5s0F1W zwes#f_^!KbFmpm6?}z0xPu1xl=D0whsR{i%olxcw#Am_u4_V~kW$GPg^18jD;LtAG^9Bg$)cXp zA8M=D-uG_%Q8DAIEDzlh0e2FEWwgl6*^RyFQbq$8*_cL>)bRFLqO6d_U{#Ppsl@h} zN@cLVN zeNC<$b{`3$_yXHr4NH&5-gVCgu_1LL>NWYAjICLycj-2xNCX%w%3uHrF_9vZ@q$G>tV}duBNlg0ItsSW1vecZv%$a3dNbrY5#EaTd`^eTk}<9!V1( zl8VrdXMB;BqPF>}ztBQV8f(m=^8JuQS>F7`>G9cBR-|pe#11t1;zz!9YPJ|2EOq%g zU(Wg|U(TPX<8i+_<^A2#Sld5`H7J$dSVX2l2ao54ziWb3(CpZA061 zbB78bdfmn?72G29D|r6>e7Sgg0hu-Pb~nm2$VeXQafq5dJ1L5X_KML}hUQ;{pd@m^OfT8G3v{ znx1lD^r+9VL0Q7u>gYH1`PglV@Oj_QXy9kRE!ccMyKsMulRv&XCOjIUKoR7Ms?{YX z#>mjD9VZ8Xf|Q#$AdCGWt(@^#iFnOCx^iJ~fza-D58wGp=+Ix$i66t1FgcSnDTp7liBtKU$7_UCT4j?A60f0& zjgq3~_Ek|wU*u|5IvdnLQo+o+UU5iew%Jh51*8HTY!dd|cZm+Q=Mt~2T=arF8SV;d zuEYtO2sba^y1k5O*ZMha-Ptg$7wos5Tx?oH6poK_X^{)7C?s%`h^)2!2Qzk3ehg+j zNzv{_xl7RQaffpI9CtVedV%J(6AC2BCOC|~N{{5J?$KNAB)o-l-*Q~luH_!Hi@k|g^RdYM9(*ji$--o)7HrBAS z4uADo>3;iIYs*x-Kx}(9k+X`w%4a!J`q^gyI=?}ie{7XmMAR5&!t2L4V)K6=_u(_O zG4MZdnXK{|HK0dSIBoRb@d*mNL6yPL5(@cgfoL2p+kJLSA7Hfc!32-!=-Nj^2Kv{O zaX99M4aW@_yi*z0 z{Zz{O;Cwy0hnDkj{2O0cDa=w$S(R_LH>SX9NXU`j0FjgE|10*a2olN2##hPvJfTp) zW4}SI7>ZHkXwEtJBO84ES#fZBaFxB<7aR#k%80|*Q8rdQF{awVOThlK2 zGC5uoERGCkQI0wU6Cd1)*6L$J3h1|E1O^$I%dF}ls*!B4#@>~kE8vYIuS?p~y+4oV z%W@6tB{CM4Pdi9%n*auW8gQRsw(9H+&*B}|RSerNK+KETvF0D?GYy3(S7hjG%Y#gb0iwcGEeFr_Y3sqKFVA{YTv!epwk(m}Rt;^CjejmHPLrspiC;yndU<|LjnEncg8TJY zp(+czDM1(8Y$Jsl1~7A~0Od|6qy>?6qS8z7$|VsE!7(Bv`?C=8EHAmrL5meMY20@$ zqzQ8 zO;FaxV1XQAn1|pZ6>p#wMy!*Gl@zu&gLrGse!jgaK74Q3gYbTo>+vhA%y3oqh79o4 zQigvbp9e(HicnK;jaY>lH+gzxTF}>3PTps~Y_$P@2G|ljKDKDFbzW5q*izzGxBCB@xtQE zMMv|{0Oa!;z|sQ0Pg(TPM3B?=Q#2?~QY38$dy3jQ%}kQJ;{H&U?f;<*9fzRnFYwA{ z7I(#wZEVLJgl??hmuvslcy=nuxmMx6{^u>FLj7BZU36iheN;<~^`0SW<0lB_5dD|E zcs}`a`8vc`ZqRKhJeuR94I)}6l~j+8pO@ebegLqxDdwlAQh_bq5zlSvnS8AA$#Txw zs)ypXbthSpBa=3V!*%u*ew+S*GMX4j;(}0xOXAKa6YynH>p%5w-|;H4wYz!X8Vhn! z!V^`*>#ZiRNmHLEi|LAkv~ONT2H5bfwd=wF+<&~;j0wAstkQ8O-?&>_EUF7^=Q}TU z-T@)baLyYzF^8cy=DaebE8TyHr)gqy9YEvZ&1&u6`8roQXz}8i=|$lq|Lkt%r8vWB zrR|Qt#9|<#6zB^_-inSyUbfon^0{=xjzX*JD`rVmMf7lr0|5BDLos~Cu|!cDDF4Nry|YXc-^zNerZFMN+vJciH}V7@ipPOJi=Z~4j| zE@6bUd!W-Iy%h6;iG~NId&R$m!qd)zbjzM~j+0+2RnN3y-v8oCz@b2{RJfw zL-);2ek7BH5^wn^D3fJgpSJM@Jd*`{6YG3Mk1KUB)ZFKnrr9J@q zgZ6lh)-h#gokLUVOwiqUj7I{byH1YKqhzMkJ=B%#=#T8BN$l!hPd%OlbQ=XHb8nBo z&Yrw$7k4dF;(86Bt1oYVJz}$m!Z}-Yfv%g^dN49S^Nz8gro6r6a`BeRhAbTB`Z!B} zFr3WEC9;}GoEpO!Kr;#Y9>cuRf-?Yw7@=tF5|(8#21g730OLUkP8f66%Nk9_&6Dfi zug6uNbRY`4?vgS+K7?wVCdNvl{a>}eHIC;u?;qS-w`)G<*jI%`z=(fkjgDp zjGI}mx$LhqeE%U?PRlHgb(d{Jn{epF$HWF-u%Y zdySV;V{ME}J((BZ+HSDcWyIJmlApt=8?*a8rtXCdyFw&z#ZdJ8;@Bat!l5AdpmjYD zo=m1<)`)JopCHjwW^Mnz^1uJ{c39X`{Crn0vpptATkO>yD>Gj{4$*R9kh_EsA;v26$Pd;?pL>;|9mKS@XN0ow38ZjaUC&K%_#wgo&b1uvpXGN)5$XK?N) z7!Tfb!eQDj7_I$7Ytdo8K`FIJNA^~?ox~pjUChx4yAhz~StNfa5n{!@4J~0SiP7Qg z0lRm`?3_Q(<(LbZkP4y7L$z*bA@MasVwna{ln}JgB|Q#jQn$Hs_f{t-d1Uthr4ptV zugytEZjue$OAo2NafH%Zhx-QB1}(_{?l)azIcOX0Dr`kh>^%UCK-F~#gsG@)afu!_$UR#pjD&7aPE1nZUVFg|x1)Nf*iICvOVUZc~n zCsaCd{4J}l8P7@Eq2wUWU0*-}aN%UB3=qBD26=19Pc%~DWFY$*M{tsw58BNm4XjN! ze|p_ipb#kVBU>maYsJv#J#jy2$F8xTgGeO&SUiaM7bX0e))YSo_lOW$e+3cijO^O6 zYUVTgVo6%*3_YjTI~nv$_EC6;9_?7qk>D_#TYS;DUsBC?Qt`+1jmMP&q!V2BAGI{F zwp87=E>BHmfM`dPS31;+d<#wq{>VB5J$~zk2R%qeyhs_jd2sq50&d_uA0b6@p;%#k ze1LEe=q$dyM?p^E=Q%F};k%AaiYg)l#wszts_^@G1{cFM-ZNL!;yG&UIV9n@W&i9^ zkYLfQq+H9=uULKy6nEGJDXXDdAyT|KdybeYPKDs=L>8vNcm%y zZ8_$wtIJqpY`sVkai|&pN%Zh1XzJqB7yJD>M&qHXIhP)(;r0?h7vPa&mw8 zUKJFV+i5pFM{&7hV7*ESe$PWj`~7YR1Gf!F><$W(Mhuc%GZ=&e@GH!H^|v$JKdXYV zQ4-q26&ylw6W4>G*3sEIhZaoD?IgsF-X%@ZAuI|Xd<_B%C^6njM0v~Htr~;*zPYzn zwV9@>o*--M?1uBfhZh*KJ9_e7+GdO_EMro zG3s_88e@#lyny8``K-E5OYud*9cl8f8o9mH67NOu|_Csr!2dP?$sL1P3Qp6~5k*{&_!)V{VPD}eG_bS2OOFLa8 zP%PMOUIF%o(t2^Gft4yArt>a*pMb(5Uj7{BS&dkZMv@nHst@XCg;QLTXzNNSPM9qd)KRHrm`*Z4}UUH&t^GDHS)=8+ly3;D_5> zc-SfN0G5!60?(9lgX~&xg^X+D3r`7J^)3W88|(qO+@GKV3;4n*alYW_DJWk-F@b9Z zKo^}2033pp{&P)&@pmh@<$t$=5&mrjYf5!|yy62%&8x{~W~Oub?h=%Womp4fPd76Q z9e1UVX9Q&RUj3g>o%xq3c2`5V^j*FX;WP|*9(Z8=5RZ+RgU}3kZiElh^M#Z$x_C|? z`hZk?yDomdC*W4_jaY44cRUJU3R{l(caqsn6V;fh=ce7&yzaA~#{~EkEM+eaX&%q@ zUPc!ZVHrnnjIF%}^3zs|aO3%1CCS`B7a8lPc7%@&ARE#sW zP~~RNxm0MIu4oZd5qUS(_teg);Y6s=4WCF>FNRp&PlU*H$0vt@QLVDQN7t*4?~jb{ zER7_;hJf{gDvAY0=W_v_?CHm<@WaRHj3UlIRr%TO+b!CfY?2serJ5`^l>{m05uG!( zO)YG)6W3L$=R|tr9jYpEsasUbq*(Gf{w#BTjiS$gYFDF9c=rJ}o{t$Rrgboa0w(kG ze{xR@FA85BJYh7E$0C-8>`QK{DcB(84Vs6SJ456R`pPZZFo^&>ZG&QYp#nifsJAf! zeT$Ad{IACbmn~7WO#&y_{AEx?W-6Z3%dbAv$feb$I!39jfpZO)*dk_ zO^|n{FkAiWH;ySA1>H>@l+l%0)vs9G{TSIfDh6(^TYMOJ5IWv(=daH@v0P$a#joV# zJH&TKJCsM3D8>OgfsP~Sf-jusral`L*nXSI347&Yu0q$qV4`Arx}s{D7)Np6CuZg4 z1ak;R*V>7oEPFR00g>RIfq45;E=2z9>jy9!RnwP5T4Qw|P|s6HF{rnt=USyR6>8iq zeNnx8&0p&g6ax>Uekb_^y1Tb^H+ovHcUofm-rzj)NC@!rf;*IVF&00uh-NQv4b(LO zz6OvnpgFYGTNpa1N~kln0lb9rd;uC8E9L`wnSI21MF@A$bdCYcK= zPDVepUU(3yWzf{cofR(uD(4`ow=rQ?;gdgp3$1$=v~ChhDoC{|RmTnr#}B5?`5#E8 zqe}*Q-T^k6d1dBEdziuN<4!6>!1Pe3^qJsmzLm6Z8dFl2nhwiA`|4Y?0z)R^*Bz zacyZ@9wC3W;=*zr$iwMK&Y|9;e#g>{cy>PflgGQ!YB5fLyN7-V|c5e=B}}( zHpeR2J8o#4)3E{K;7-o8p|xJmS*0gg9+829YK&zx(UM8C)YS72zOd$PA*Wp>l%tOJ z7{G2gDoP{V$5UTXr{nP)hTuL}XyUCa6%z5MOYtzOUd#1=!~6Kl_1ZR9O1;TEHcJdsC8zdh z9wui2OSG|?C)6SH^r}?s+W9>`VdaqFfS324VfA9ztniFOsM}=Znc};Miq@99=7oTV z#?`mZjKe9+ku=s5EB-0)gPl|X@uIQ1ZD#x(+Dfc1@T zv+ee-f`P})?lZk_5b-C6EPK&48Q7;1p=4Gl33al`n_{8{!@qgDouAf0r<7?eD^p04 zva2Uueg|Dm{XbN_V|3i%8n+ueX_6)r+cp}T4IA6GJxRmHw(T^w)!1fZ+kB^c@AIB> zzRj9h|21D`*7Mx>U02)tZvWNQYpYIQfBfZH$u|M2%B~q8@nh;-uNT$dNhbL)q*P-n zrJoL!`ZsYlHUKoc$K>9Nj^JkRh!;So={rr#kop3HiD&Sh7{nuwP6F83uLu_3X+xRI z?o#x2u-?)8yp=aZh?4Ty{~R44&_Ad(hXKx(67UW||9|Jgc_8Eb08-2)QWM0=34ku7 zN|w(+NF6(T+(g2Lt})5({gL+{?_UkyJa1{?!{A!nr~UA0U5N_x=SGX#Y@m+wM5#&D z|MBSC?D~>E@&~;lHN0&JZ8zE9Aa3y|Hlge5%xl5cP$0eY+*!-SH^Dafm^6WOd?4_s zi{F>QpsWU}56mH6v&J%gy^Y>}@x(=&Nc$NXS9k!2Ovf=(7=6?xF;eSNaJn>xYip;j zg=0p)zPKRl>o$yYKgbJdUAsIQlqpS0qXO{elCEc$4z2%nEXqCq_|N&qML8!tml&>;fX7Yq!iWNaH!<&r;~Q!P6vkTt5JFKjyl2?Fh8DPvw7 z0a&fahmOj7AGz^2*folYAUI~ALbZNkm$zo&NY3?>8FSZlXFa#GH~{ui*KMkupyR`7 z=D3sRG8@Z%mFbj$Cq*!``}9r&b5rhkahlfp7mQ|TG7eNGKVWqNHL$m;1qgA?E=yG% zeXSdbpBkA0&UDl9iPSS?$Y3bxK_>Cb6t(d^gjT(^yaET)mOPB3$N71+)gUoRg%2dH z)3$^C?RE0S(5x4Uq@~X}#|EVFqRHSS4D$ceYhIbCm0Ne+aPY6{%-icSsdo-4~7OZl5zHk$S9t367U=g8!Ef_=g^q{M%P> zXZtEEDXo!jQTjC^F;k4d1od*oWtX@&=$t%pq261IXknAaA= z`$vZ3H!(GSCvQ1Ob<_TIbFOlT^3(!bf*Hj$KgHGgY{gju1+-3j?{ii5>z)l|A0)lo z`#ZE6ngv(ah@cnhk{8@eyPeorPR0aGr5n2hVrYlyPLpbyqt-+h+D1=3Q%EuKlFbP9 z(ydTC>A9jRbTEOWNh)(x<0+y-6(CGqm4YjbqpLzy)f3x9_ zv93{HpHRN!p|borZl*Y`NTtyWHPe%ERgrT`)GA!!e(Z7bF-Fiv zFrU$H+jjf%G_}3B)N=hon@#`T z*9qjm@CM>-^`%j2jr4Tvhwso&V<2k2CIbICzhE~xZvfQbgtVIjj`+Rqc=qYgbcE6D z!rOtIb0Plh0c3JWp&Tv~?X@29w&5HUQ&?M}2SV{5xSL@tci-aEgpdqrKNEw_&Bc;Q z$O=vJJW1IN6A3oM&Ldf3BL+Y*7jnbzASgc=kUv5kwVxHHl5(~j(%5YfTTzI+R45Xh z;@9dAEXZ-vki6%gghPY^%BuvrU|}ft1oU7iuttK%`3y6?$3~9oIF7kv7kX7R68_`yXlq&0l_k7zP|tWt_^+;5(jg!{y(69ZTmS8^yjkX z>LyXjB(ogppR=+x0(`(36X7T7+^$2mpM|6$kZe;)V%XSZ_$-XTP8Dyq7S~h9>drCM#&#hY z_^}0xx04n@RF%78L&8-(xAribOJqQ5@KwsPV>uZCaQX+Y*UNa*jA~0uBvy)@E8)Sa zo8j$kq=QMx1%0ppD6Sun7YR}pWJ z&{C*UC6fa<;Pp3FJ0$nwWdNSNlQG=%*UK*q_uirEGujg6$I9obp7Fy>VxM5lVuCH8ns5w zfW5PbJWnx!(`WGdg~Ad?ihDnrg#+rV!aZq>xg!m5v{&mQ9@n#7{3F=5>}$l7&X_Ho zwDVa6rEY7r3T61lawEIdq13TSQUUA}RJstM$h|-Pelfz4M+l*HXsKEZmXI3@DUK(OQ$vg$8 zNVp@Q1LidB3?Iy{3yjA{jV;g(kbZn8ihsP@sI7a{NLk2yOQ;Lo^~Hc)|mL9!z~f+ZvlFd_ca6O1ODsk)&QrgK&5o!R%!& zneZ#n!^j{b5tJBxaL#VoPNPI?S+W(b`(p@v2(YJPP9Na1RJfg~XQv6jIZgT#L0Jk0EO#N@+!Iqv( znI*otEI}kL#m#O!3n`8;@F4+%u_Z6>qeUwnTs*v;8N9r3VqnjV{7?anggoul7`2>0 z7`YB_jL;~E6-QD^@=zCr#rc`#2Kg+WXc>=*o<8j-@Q5X_TrZg`2{+e^`B^{Y%q*%_ zvJCnAdCiC5=ss1oR(Ptw9UZzrGpYM?2IGH4U#kmAV%-i1O{#La0){(6{4Czs zgVa2SOm534SE3ead^P!f%cts_zsbOX`&d=WM4R-lkhpg)i76+79l!2aW4@ZR%eNJH z@N|GH)*Gga?BfXSTUL#$_#SZ@*mhi;5=na&#l7gXA<(x?hAkLZ7nxsl9dBqGAazt(>V`ZC5k9wE=xP)#)P1n2$+~(2EGLXvZTg{h z=AJ|qS6BF0s$!8cN8ayE)^S!kd%fF~=OkzELALSQxqLafb+BwW?v}b_evH_FJTyH< zp(-okB+nqzFX$E)#NnckDC}fehpL5|3=GOjPQIO514o)Ld$b_0GqPIO(jhegtJ&+UZ1Af=lkxy3n(XWL$@ihNi0PeT)vm#O59tfqC1zGSx z1bCWN)&lz;K-iZHME7@XAh;3~dwk>5B>Fp~cvF zbI$cO?c_avUG1e*%eH{V;iV+hL;v}uiYP5d^w*9ZeEx zOf3T0SLvXME&DI%Sb?@SGW9)ukQVHO(rkw=Q^#r%@nj++!-UY7T2Dl4&M$sMcTEBg z;`rPX95|71SSYC=?H9aSY;Ua31~>gp+kE|_;`;;A^LXBCJ)knO)`aKqk@0e zu#x*Cd|6{w$Myw7Cm`R(tgd9gA=_+jWH9iU72l2soM_=ANpkPt_+xm5f*LXz&jze)qfozlaArTM5?^S3zl`N7Fk0X6Ag%V|P})I6DUCf7Ngy{??098)NMM_8$zp@c zi{;D4z3Hw)BpRZ&?Lv=~2D!rUbNFLP1Z;&2tTao!J{pQ>-@wuw2o~+@)`8LO3G>Hj z*Bpmi#~2@~aiOQ|98S1H_@IIoCl4z$&l+b()PLaI9A@Of2Q5)6AeRx4xEf#vdi~mU z>;=;hw=#X8VVb@k!A8awz+xnusxU3xx7dP z1?Ma&(jsp7w?YKyCg>7gFkh!yc?AaiQx7P(?I6_8f89kQ^LJn2WgP9+7OB_AmB_198$D3?*5kF;lYCSW6j!ao4(4-ntWoqn=6+;(i5qjy33M3&E8eF9* za`i|g=sEekUeWB-((tlA3pCVWl8s-@&mWTEE<)>h?hCs85x3+SPUnRi0;tsC@aFOlV#2d%XGWvM$%@~_e_Y^E?Z_ZBcvvyjp)Yjcbd4hLYcbQxS1;Iy;E0vp8-1+?OJ!KUpYCOBf*;= z9QlBc&j^KK!^o;f~f|0TC;AMtt$LN3FcqVJ4%^0+V0 zsJ-jRR(_XZUK}t}M2zioLEY_4)>tya;vxXj8FynD{|sCFXX5PQWNMg_ z?hlCwa<8+jLxAZ1>>U41sQq6_3aC9YkL2m|HLy`=u}%Dc`gIU@XRJ(7@_&{TbW`oR zq-EXIA~}I&41KX1!cAv)(vd&k4EJ1PlvMft3JTa$znU)ddO(M3SaDdeW}>1dJHdl= zh>*e|#y57CQ|u$R9@&?V!KmH|Hbmo_HlOdntBGE^5%o>gOo&5nspmz$2!SDxC4~$7 zLEt_dL4q3%OvNIAjC!;u{wV+Pf}hN|(kE~Zos(F9v=~cFkrBctJ$`PJXu$*z5KIwKjf{?x&u1S8a`d*z$vM0ST=crFrh4=Ne=LNXRQ#{R6;s3J3CS!_CR z+=#VT(;ek-*0l`KNoQ51B?F2#NM{~|zWPF2U0U$T&)%LqvuFFt=eLadNZ))}n3H}x zMo2l=d{e;J-LLji!&FOSCRma?Owr_tS+lK}rA+23qOjn;hKXg|3MMxKIQ&JFj^>$= z!-^j+-IV5*J21=!HRU;_XH7mx2$aW$%n&_pMeX8Mql9<5aGiiq%z<~4l<2NQyRB5~!{1^}^vOY^gR z1^B5b%^pj0cCtR54!pww$tWXZ`k214DieP^8DEB4g~Bmc=?5dFScJdTu`JL5eqLsU z=7}9;E*QDBt@0bu;K*SM(2XN)fNg6BvP2?~={fI6-u-$r;jLX$U}E|PdXwEhZ@&V0 zmdiq+C%#)Vj+Vx4=uUx`&fr^yNPPyUu`kl{SQAD=vSA|(Z8ZG$b)P?a>k-heIoPT7f;aA$_Nc|ZevA z=>zg%gSY=+I`eVi;lo9d7-j+zux~up**U!I9Gx2s@Jl+z?`rj}GU9EA)(5Y#g&44e z{k3&KOH5m%Ye%}}%Py(_TY9(z`0M#=25y*^C)Z@600nU(^?-!PF>S{~7dWCpn2EBx zzexIUy@sJQHG@tqA+jw=UGnHx+2n$1Rd71x6Knv@EEkmHPY-aAf;@)dxeCub#;8Zi zL0+Yie>G@)KoPZQahSI_7WYBy-$GS4jT^8>MnZz$`@q_;$$Z+eg|NteN@6*?2gM0N zo{tTJ-mNAo1xA3ouxP!wvG_B>oE1boD@3l?nr9Uxu&kye{5>*BU9lAPHPuI1r%ZHs zbu?~nEi$owrF^J-U#G@}>YB{)a1`vlX!7-BQc_N41!ZHbg`rcv%)K~G&qFQN-|yFP z!#3K6?Y>y4HV;PGL$v?iMyzDodFJDb(Z*_i!`^pV177m74qG6A`Q$h|F;ZVO2HRE2 zvP$q~eUJB|P>=djsgbiLK-W5KPTn;sVR!w#kbg6TEk3JAH#>NJ&(1HiKAxaP09<}d z-6fY}0in&#ydf~~a(`z|{*dx0*~hj)RyHb5_XuT_cL1>jBY5su6Wh1asUR-UUB!UY zDK}a|mB%*wTgkUE(uRtROk#5IP7byYDCMsW zBFj;?eS^VTS}jf6C15vML_EbaI&Wim({%*3-oRMNZI-hXp#)`692S9u>O+WvkN%H` zwcpM+I@CK#3W#zc#-u$3ItWIQg@8W}VtVeM*>ZF2=_Q>4U@pUs3aNIp-n>4ZH##?? z&A{*gzGPMYM3WbSL%?-_5>LC5@>uhHPmV)V>l&~OFdsP- zpVNj&3><96b6R+&%K^ooP{V15tP^~51}yQ1xFP~pIPud#THDeRsfYOQQVhW7{4O}t zQp^zSZ53}mZBaEwemNY*C|LyM1aea2OyJ`XxNcipb)CC7f2L4t^#`AffcS`IO-;}V z%IC=3#~j}TZHeKYRX;Frg}!Zst$v$xbSvKCLm+#iVA#_QqcA{_Ad4}hHQW=okm#_Q zuM4G1MZlpb<|E8}rhsSCz38z=Lp$-SZ3eb%E>f_uWaQ;gy7t+kA;C~{^IEN6KM-RM zJ!hT6zo*DBJKf!rHfStR)->BnZwgP@KSq+!Du95;EL^@T0G!NlRI(gaBA4}j8Ef+cAiumm*7F)$k2ku4mK{2v zWs6i8Zq@Lj3&IfW`!g)rWeFIV2<(C9M4sMz=W)&LR{&F4$Ax%>0_ZlY^|2He4jHyyxoFzz3r^T z)8Xg!=D2$1Ur+TFQe9LAr<0HTeIyXxPa|4f*4PBk_%pun`ScZx|Jg(hx@8&&3)Tiz z59TeddhBF(kx=nBCk68J&BmiC&F+lXIE=ML&ajvwgnE74VqL;lHbmv4&n-Kw$@8Z? zWMHyoeqyl~vg{7I6=_Erkg1^mTKw(IriAC<*AEs1t~KA^G($g zX`>{=M~@pe*-V#%f}rA%zwmCkmRY12Bw2WWA(?R(xN%D;ptFiU0>gjomXOjI%r?@* z_ELv@6}vcEU`3t9tlQaDh>lE7yB(WZC~Dt3t3*9|zlFC->GGrm$VzLIxhZBF(T%Pm zZGlL^j?u*3y>@+f(=G;&u}~qiqeu-7aJ&|}XM#lN(O&E(_9%`?N0qFf(dFT4Lp=K) znxe5KaqG$KXaOsJd0x6dSiAM5Fcz8?vVXPf2xGBdNzG?&H6|@u5ms(^Zbw~hA*S>w zM^rz#!BaZF`y##&STz<0sTa;ZT%i}w{k8tlDkX))9VavAu+Btb@n_LcgXxRdkRKf_ z38*U+L_`T?LWD>?&AGCu!%V`y4=t#MM)-ymOf)yk8QeQD(N5ek>D+Zm{J^&S2BEPv zRWY}WGewS~)LG3Ik4R*O^|S~Pm_eB!Nu)|v8fiWXR}N7L)I!4a0D&_U$H@N@Di&qs z>W&XNPX5-i!Oo>p#+@9qV9hE}`0Y;_frwZqmXEdewJBqpRkvgLkY0zLse=(ukj_B| z{)@BqZp-Q(Un=X%=7-O z-I+Fv4;99FbQh$6wOEXhWk?%kv9*Htcxr48cX8>vzsBqeOXZ$Tq0z9Lez8PtUGc}s zy83rM6oGOX=f+`M{69^f?0&qj#*+BIcz8$FQ>q;KGn0rsGirX4Z(cqaT)Ubg`!d$g zvCbd8kJGr7=a@S<*|t%&9>ZQO%70nt`^=@~mHuy=0*m#bT2(79^+2mLl{V-Xa(* z!1+cM*>TQX9!~WZGezeiD4DhUKSQ~gXkTyv@i!I;WjZN#Vxljf_%SzpSqGB3Bm;jP zoCYQg-R^)iUhZ!aeInY>iIBOmnia?7tx~u7S|wPnT`u8R{}YtUC?+~e##c-ZD?}n) z?epR%J0!ocRd|U*K^tBl$7i~JP{V3}rEbX&7qP0_>kuW*ty!4!54(Ur|*KlAx)})MagLJCUC| zvrg~iJE5&cQ4mbL8@7}FGzz!;_1UYAT3aG5J#iTCbTQWVLsJ>~zE0`hOSRpz8*<9L z>x@R>;p9*1MI9`9%*X`sR;E#_9;_4a>bq~VK#hf|N)h*4 zzeSkw&*7>j1pZjdoy8bex%H+URc*<}04Evq8SgLs!kOOf-@Bs{v@63~daN`jK}uj> zxlUg{FV)$-OAj9b+?>}%&&-m2GN9Y0V1#_W-sjR%_q~kXqw1~hUGt#$UGfKU741ObaG0}5{pE+O-JeG=&P;pgtMwzxt+60v)p9D z64i_}@AC4G{!m2>7iy1f7*VU|(kl(-z768PdBT0%jV(XmBhgV*;A@c*q=CttuInhN zy$@jhIo}Kt2f?X9vOxq$1a&Vi&?R)(q8x%u!ceC-<`>99h|D5lM68~N8pskN-CPjX zi%r&u9EBap0_GNzIxG@7fL$O~8UwIoXhe7W%7Si;v=jhNhRi6vyt_~0;aF~`s&B_e zH-t?h0xq$AgBnrdG_nsuP#$hp&xF3DGgg)YQ1*KgU5?~X+8o^yLiBD8N*(ebeh(bw zX07dw-&k6PvP9;g%J3p_32L1e*JG|K|7QK&jH&j6E?FLD_Ig_YD`T_dtj~1H)i+7L z2^ERio_PP_MJ`&7^eAh690r)m_l%|2askPgtUzkVBxH`KSBBqNc^FHcS?}I1>G}0EVfVUv6}rJ%}&x1BA(VnY^V599Z?tf?gVf)^7+RJ5=_aXrE@oirN7MyfT7J| zX%PakA-G2>QB(||8!ux;|ImGjGl?WVTSz}>G+pTXd!*IjV7%4mFaziB5l`QYyE!)e zE6nHL&XNnF`g-#%Wi%WU@}wCXOeHhazwFB4WE1%-tS_cFmvUOk(n{G1IK~O8Zt@G{ zg1}GPhyHr|ZJ+iI&lcBT7pd}!gp~C(6%3wF?_lztl zYw-p?0HWz!R#bESqv?2PORAfHI`uXES4Jqiyv9dYFWyv5IrMrr?fXwhvcIHM@A0hb z4gVh?HI+Aj{ z+Fpj;C=~|idE$k-dL$y0*C^^c!+D%HRWLytC5&)znYzGqB~*`+@zpu#*GalFPKx7F z`lLS{I`8mG^0XZH%N-ZJNM_}{Z4&mKgyqyI?GM*F`J7ui{u*UBfz9jgP68*hDH%on0D zV#SA*qd~)nW&N*q(18r024wwJ{!#Hmk1Clq$zOzRZer_z3?@r$UDDyCT@R}uO~`KU z)#KKi$2HAgCRn5vdy7fb5Q4)IBsqU9r4)plq8Es#4Tw3{NE=b~bGN3C}Nxbr;;Kp~u&|KA8qdxZsAkG`o)C zalKKy1@A6BtYt27K9~mFdTwkc*%-|$#ZuW9xCh6qze7uSw>JP?tloHA9A2-hOgOJj zdqKl#Vv)0PUkS0cMZ!@mpK|2**2`EJaMw_4_U6rjgG*}*v?IJ}3_ia{HZLQc5B0{z zfvG{otO^M{z^*Q9(*Bl^bKKHoY;WpQR_+*|Y^Gb8`mc4t`dGLrMB7OevcN zXF zTHy~hx8jAh@)%Rux)E$$0vLVF(twP&m=mbAlZB8M$F!#7)`ijhBae*-o0lF}p8j<5 z3V{F9JIu-j&CySENN&j%v^%ThWh0| z385$xqJ(@wkrjV;ON}r)NiW$Z>g8M}N+iDY$Ddwi3G}fhd=hRFt(?2kG^GL8szIzT zz_OJ()%o2_l;5c^S?RlAr?CxgKvE&H@x4FaqQI%*RzrJCm2H;xqg$ITGT?7d#G{wr79v^izNzzWAcL39_?d7Kby73orwghkswsC zyl)+5)LJjr8PU~j*7Q{}<`oXE(!pEkfGiJabddRjwSq>SPrHD4ZJpwkgKL2VE}u*5 zO9}5zi<+;<&m;cY3y^*=jPs}XsieWf`I;ESadht*>4R|g_^>PxE{pjuS=Np!Yn|HR zstYR}ONE+EPJ$Dpoc3U_FU0ACnU5^_kF)fOoLGg*5h^E2e29nxya*5Mh$bY3KtOS^ zCXxlfTJ_O{)gOUmp9TseSsI>&+>ofGt~*1~iKq<152iF&oYzG#O!xY0Y=wZ4IJAFN zbSZimIGq<#?axNq>he6e0!ef_WCWu#awiK_+dOS2e4$FhJ=GUxJ@F)Q=zFv<%wSy@ zb>p1qA41@GTMa028;17p$7l?gH{e42i3R`wrc>_W}Ac-!ppgvs83828{dI?dg?>z)<$)=rlocdV5eNTa1UiX zkh;Op8HVUn{UWUb~Iq>TszA}-$V-pt>%_Srejem2v}UanJ`be*jQE6+DRgeM2i z+HMRL^!8cZqBduJ0oxmc7QXmrWEM+^p~Oc~T@E7aXe1-I^zJ`>u1nyEjgH~JNrT}8 zhZTknD~J={di@QuS~+mMeD1m10CcA&ddSN|jV$WS&8N&D>Ab!b$qS^L`U zGr{GDv4ynmT?(MG`={9FYOmwoO%)y?|0DS*EFE>+o6oF-i~J+`sPTAb zP->!6Eqxs{!9;QWC5+jGzW?QzqP%cQPaT%zAInFM+icnpTQvKhxIN^bxPAJ1J`eH8 zy`V2$2VcJ|m~NUh{CaR?LXN77uubXVt%WSj=JA8kVu{Gvbqgc{b!#H1wtc#fr3&|=mQbV0`ccsr<55yH*P@$%H+qs)K46pK&{z^-l3p%l2IT zSoZ8|SolZhZRcMVaWE3HjcV$uv7T*8s}?aRH(@Ef-P8su^b03Gd*T3b2HC1_s1L2; z2YJ8g#s3ye)p8m40&Ct0e2FV6o;@I`Hhn<3; zJ>`^=&N-l2TO5IL7*tAuD|LtzB1!v46H;16@B*J`B^r)1hq%& zQAhK4>^z3#Ge=YjLHItn=wRd_Z1DIiep93(jSS#+$sIPTPC8qleXhZx_=M_4^~*$Hry6@r9ABNZkFZ0&EoGc(UjTRzNWIEL^9qOy z)m;S78O;4*n*+`nuwZ13Pf^=vwn^|#2_bl!SAJC5uY2I@dNmZ(-7}kc)XhAGAu+Sz z8z}+No`QmYz&*P9=F{D>;`LHD#WePInIh&cUm5}lJq~g4=n;@1DC$UFbuay01 zE70M4x42SXeXK3hACef7OG`ur zPvuhgucmF6v+UBZ@1%mV9TDFXuq%&P)w$C`Ck$>Y?8Db|+Tgi~vxzAka(h~a#L~^6 zjNLPkzY@_D&N!UGv`BS4?a9zDiMrtuA=N(yjnXu%=;HiZmt6W?*{LKmD^Y(54`KZQ zY!U5^YNRPEyGp!@eDX8wKe&~T`iX7_kP7-gR@vs`5#TP|x>Cr|rO zW=VE>^k}jdP51*}3c5FZq{oqX0l#6oSYdLb{qGRr6fzg?LwTf=Dx9iL65U;O3vE4l z&|9~<`NM5_B&G)AX5tE`ZQ79XNwIH(4(JKD-1B71itewr_sJF&?vYJe##SO563iHg zV-M$k8L=8i)6Hv8dT!8v9hz+y#Hv56N9#IPfvQ0!8crcR+aXBzL{NzV;sr9z3gO)q z4t6OIUy?_GkoA<)|D74I|958ajU`3c8!g9Iyx7Cjv6F(D*+oL`>j``bD@LPCW4vhAc zUoq*llq_vvFMIBHvOddP3`r71n1pT7%PG&yL#5=)I~?Oq%Q{h2rj2KIkH<4}c`M_8 z#0m{yA$AhQE|Zd7n=JuS)5j(&^8ch<2G9Y_3%yS+r~Op;-*c}CVh3HYedyY0gR$-x^tQ;-kmCVmgW<5EVxx7T%rFiz=wPG1!ep3u|M$d>3eUN?eQgt zH$HynDiFwADB#Uiq;6ID{4Mm@OUItp}nl3-Q#j ztskuH0kHLJ8%=nBbLC=N%KYs5Q5rvLs)<=#3K{JpmAaxu&wAm_OBK-{nx3?@pa z?d!zhsHa~^A{>4kO)n9`Okn=~o zlcmtv#+3Y+Hcm*0Lp6%_9l%UjFo#)`xg+}&0UHWIz24m=e0@vE(-IKV4=t56@2UT8 zNav@f(rhi)0g0pxgYbZbz{*}gf!sJJVdu`hWuj@p*Wq)eZ{A$;FXyNFC>IId2ixf6 zx9BD?=vEnN)LZWSDvNSN9X`0K({WRgb^}qdF zWz}6-n5)&_(veKQO#IN{QyJf>AHoby8c(EIFF)e&JjCt!G}AbiX*tus9|X+;W1;;cSy1 zpraE|GmH!qFt~f1ehJj-<^4ih(NVW zFKq0c(k8f_+lu$RyZgvwPD2f2FizJ7Q2#)(ELw$nvEE={Dg>A}&c!EKp5@-Sui@UA?4#fuDRJrY3wtqhsG8r)!gYG2qy z#F+t=NoNEbs?TzSjcR7=G2Uf;{ISzh1m-PWp~r$DA6@_q)|{=mGz)KOmTuskTE|&> zv+=lP4;)bF2d#ad;wVk7b}VvU@Ua$`#*s%nuU0&c7K27PX1v%23;~icdF|aX^~BdR zS8wPH9C5zNmX_vU6EIu_n5)M=01etA^*hZJcw1RIr7|>!>fIIzaFkICZ^j5R9)On+di)|VYumQ@vNc9g>N7RCF=!~Rc3 z&fC6~7zRl2!AI2oo7W%__fWHh-^O!Y>iDUb$VmA}J_MIKx?naqx=c-OSMNwWYt%6b z&l9ecRmYpMB@)(+7FFnt0Xcxia>_Sw6^kM#MFhPF*PsR@ubK2M3`>?`EA=16E;j2g z!4p9377z?XNK;&wz%(uVo;t!JKq#Olv<~W63DQ8L1z>7uR~^mV)q8kb;Pi}G5yk3K&DZxM0}!z`_gyqgmA0gp`T{)}S^ zbA*MC56?XRIH?c}DC{l=VIV&;)7VF`Ah`ji?OJSoCdxo|23e_h)2i z|Bwo1HvaS1RCtks<6ssn!VXG9Zop)1b$)2DkOBff34p71%vQvJyltm-QFL`#jHo99~&X!~9Yg+!rxnWic= zbSLv7#PtbjLdneh|6k66;9yG#sKo&P4?O(;TL|5Q3L*N-Cp{a;It~Uc4DBV49{*}M z6-~D&N+-H@hL=ls(Aj*Wy~BusDgtm1pbbG`RSn$$^IDraPIDoAM^aeTYdJ=sWhU%wsUB+9sf#4%*$+LD z&%u3+7swXRo0p0ydiaM^GAyyAg+ z5~0YGMNvOBr^x*r>tj8SQuKwK&!VPmY*yA`qf|m`y7Y{;LB>f~tcA28MYNJY8s0~m z3Ja^9lo+y(wMzN5S_ZAZ9;vKc8S>n`V(tFKEy6DlMJebo)@YScKgs;W z@6_q*sBal}NDxo};xsszC#O@>vOF|`QnkFATdZYOaRMN9awxn1r>TQ~55(C`TIv7H zbd|EDp89UO&i7-TH+Db$G+-Evub*L%zbalYB z-J_!Fa3E&61A0%S6~Q zf2|>`389>`_iWoM|1ML#C@h;E)omgy*bSwS*`;tZ!%f5xm|Qukd}v1#j^6{^3)K z?s7|t9{;*e@L1Txk^Mc~26GqWw$~vtzJfK6Wc`!XCl#qQhpomkywb@oUqJc%nn6TaIV3x!0y0M%Nsa@2c>Y%dNR*8grNC z&zUZc_NVdw^-PBlzyk^p{KCwOZT;KVx6#lnHPaNj+%7J~D3{T=kxx&gV`f}G*28G~ z00BIWu;G!D06#Ch;FsTK-8yL(hrtfs1F+nXz{~VAR9dzbrC$5f-+FLYtFG`d2ZU_2 zUO>h}3QR}(5<4Nol2n+j!4BcE9CQFLpp zjj(?c1f~=cd0gr331I2&uTZDOxmRk-3(DVE4jBj1&~VhcLkZ(m8=hLdXY)#9@~P`r zH_BLn*l8RzTBJmF_lUA9mjYixi)6UyKLjZ~AGSGzF$h~&D4oQ>OQjI(UOm2boEj)Q zcvs5`uUlhLT8moDy0wX3L|bFw8O2?8hB$K7=u%G<=sPt;)785Q9$a0>Y$QBnH*m?U zZhRswt28-T>sszeThCq9;s8AS? zTwI{d*aHX<&1>y{#(R<2KOp0Mx%f#_!>SdN?jIRCS2_&*P%UH@>kK!g#!ufVkD+L) zUnCfj$+NJjubFIz4-+HUl2mBXdiI9oHpm~MzH(bJ1y#c}rC~^{@uL>(QPgZ<4!AUf zab`0X=$&|PEDB?+G^1H0#x~3oZl$<;yqA*pK*H{w!bUYzkf)e*p`0{Akg_PNsZntC z#d{28J51~!*#{EgpYtA65^Z?n%NblD{{}hl1=N2i{BzzbW{8Jsck`M-{`^PrgHPoj zt7na<*A&OrrwrXk2dDW=$q_q0=smsqf0g&%5NrQtOehlEMmiFnKyc zTm3~xUaN+~3W`qwR(o;6WK12}g17TT*b7fbFzVG6LVHW383`LWG z%ueqj0EzEW)IUN$Zsdp~r;{s>NA#hHk$#*7@E|Qo1z6vmGDDz-i1u9*7+#DTVDq3H!l~f-ZR7(ZE;|eTP%=Jdwy31N3~`WovOE%O8`5g+ie2-W%yBx-kyuh+L)MhowjYb}YJ9Q@ zp2tOw+eP;-9{PoY6ehL#OqTEtIJSfqd@v*kmEO_AnJi*z_2ni4t+X&y>hNnrcM^*w z(n^sE9Sy_x7w?r^4vTfEl()s-FPHRbq^S9hEKi{G3jp_64IeQe>3aJ7)H~gV-sxEzvK=Zq8*q4O}XPlOw)tdPwtZ4D*!^DK{)g$>Ra0 zp7sb2AHAnZ&jZm14^CdfVIp1Y^nLJ=4f#*)X#s&8`2@bS1`BW87{7^wk%HHRDAsXQ z<3juWA4V}NMQ{46;65b#4Hl+qdY{J~z^VWW`f9B4`YFWrR)>XIx=-%1&`~})+yTKZ zxC`(sPKWeFqPh{?Q}?Wc(#5dyq(^O2m0Le;>w3T5#tKJMY}Nf9>&Ud^A!7IGRLS`+ zl%;PMp7?3xH*rp;UaNJaQ;TY~h#KpWYdHzC~+^ zfq#`_pkSpP1?aHc8;CK2qA$M}0||Pxm%f=J-!m$VMbsBdixtrw)!uiWOm5k4ik68L z*Suw{V$t?zJw1GWgZzS%V#(RvigcUIn0-&V*a-1|sCoy#Ouq+eH%+!}O}1@ovTeJj zdNL+Xda`ZXw%ufVvg-|vq@f%P(3qWQB*dG?jT*lxmXr8H>R7rFBjIEAxPs-T;;zG#wL!mj zftoy`4M6~VD6VcKF1F8rrAKSoh&eyp#svd2eX=Hn8r&+W4V;b=ziH67+X~qT+0+ux z(D_MJ%h%3*wmO8uV2Ylm<;m2hEBz^IG`fxYo0iT`38q196`Pq5Kx|dJS3T(;l+Se$ zrYnB-;MQ33*wa`{+HwB6IG7^@!wWxC7YLgHt1Ti5lrm&>>v_D9P|W(nhwB3sytcJq z5x7$pyjbarZ(C8IdLPf%ZCz$5Sm-cPJfV<%aW^=8xwthFWxXb0qEV@hZvhb>P=(km z(f{8y#10mi;SUZ2#=-heP6x^cWI_O?2e_VYx`w+CmD%)V*Et3hj-(5 z)r7dogo9&@{zKUVnb{s1`l}!$)t7HC_=0SJ?xnU`XYIjtbZz*@oF}V6&~1yb1AtPa zssUyMvNBqs&OKFSckrt*roD2S{xLuT*=Yz`1OI1SFbkR)XC+d$<-+h6gh}%c`Rqo; zvHSqcUkH=@uQUcobS@M251&y1|KQG2HMHu65mPygN=)iN zho4+XsEHROafk{Lrf|5zQg&Z7-8+^&c*oiPvDLmj|mpotv$n;H5F1%PK zy0O;8BGe}OUfxj0Xk(ngEmuWK#I2JLO77lKQ+R8YyjrKbbJwfcN(?#B0jAZ=TPoe> zTA(VzmV`8^fY-^yYlNO_nM)hm%)&D$Eh1h}KrXU;oPjR2&J&t}Hidaxqn3oFK^SvV zDM^F3^;N3ilP&krWsB7TV2haDq&RKq2r}foObd49~$7BuH9TVQ~it+Hn?LmZaWyJcxK#8LP#5~IK&~KTCi(vk} zp1WjTJ2DJ6^-jtwwzc|wtAPs{Qon-(MNFtyJNI5FhyIp4!`+>D+c7%YtkmcoeY)Y3 zn=@PX?bK`;1Bj7=tTJFLV4 zQws;Unu#vfUvTV6)WXIyYg*nt<{ZaDOP*&stHDR3D#5 zXKB5w)69S8Yw2q)jw)lZqRF`3LWJkpc4O!Da*9AtgXZQPH;Pk3ClSj~d=d35>;Dn; zSVW+sbG89u5IVymXp@6kAOnzp?lm3!;Z`wx6DdUgzCui)3uEBG%3Rv_;~qu6QrHB2vAqt6d#G5`sLEEz5oD~Ly@d^e{>- za2XCEN9LHDr5gagBg0POrLwPKigNeVPOGkTH$M!a9 zPwyF`MBZEA=gv>@bqAxPRazRbpr`^C=rB+-NE8L|LasSFXsF(>&U!j}*mSH{y`hy& z#}38CP18@4r-xNq1x&yYY#=pB&4{b2fI^k6visRx-&C=}GdQAD&p$x9=08ArobH!^ zd7u}>&j)VZSOUtRNUs|F>uU3t9rh(tuzZr^zqCi%q@FXuiCJMN|D?~80CAimu<%d! zsCbPgzwZY6KOG(HKOLREj8c;e846_YKOLQ+aS#dMyv?n(@TSW3o<@$;`boFVo<+t^ zop0+3mgWHwGKj6cr0cWBi_l=D?1mGQt2trX%2;ptsi`G6;Dkwjmz2Ol?QGzXbC0fB zvHX;nVV9bqg`~9+JSAMU(fE8!R;Le7DGHuK80a|AQsLg>{hJYJWh7~(uR1&gfsZ4v z`Q01afnjGde>gUW@|gWl%h)#zqpZ~x-yxffzODkM2v7{@Rv6E?n{V9I$EI#-`B z6R9-^lGyTn73KmL$W||qDzqt)e~*{B<=L04xhILZ?mLrZQeIoS5>jb2szik6L5^_9 zP&U!Y5aEfN#g<(;@|6m_3`;WB@Pe)8yl?^1n(V$EJRk>Jf3E>k#1?tOLVoo4MUwHT z4n1lj6dnMFvkNBz-!UAnC+umJP~He##S=Wh8Ylv;-UlRsL+H}KgceF621O!7=#3k% z(#afn-G(l60696eladMHD(s4*%g471xmh@DqBggzLS*# zRXlczVp>P>T)cJ=pXP(~HbfhHGM3FqMnZCiA|blu4{BXsq28<}WQjc&P!4&G!(78E z)9lO4J_lK3OlUCA!|PvTITUs@bChLC^y*7W0*xyp*tY(x9kr{)q1QY8>3|PtZl_>w zp}?{8At|NKD_XQ8w6OX;gj|5N`@l3g_cn((Bav5)4%1g+lcWXQz9#>4?}`;EO=R4X zq!8C^*3a+jE~|U3Q{cYb)_-&TsBukif4EkAb2IX{@pWdII!F6N2Dbw&dAJO=2c`h8 z)VzB~Zc5wVDgVGJ={qp)pjW*m{#Ebo2E79Nvp{VyiY@~UhE#8;^N+G8nJpFN|BH^S zXNPj&Zi>(*9Q0w9DWFlm$S41IhmV01K?>O=U8#(leo|r^j|)Y$jC7hCMcVtRQ@t0# zWFbRppRRO*`Rk2$T^69(9$2-}AaFZcm}|_1r;_B;Pk(x^lSr?$aQ~TRutw?1VwH?n zp(Em-KF4^qyE)gcg0Mz3g}J z(XgKF{yJ~ZS)#loqEISu%M9pldB*6GPj^@PRx z>+47#I;scu^mP2F&+0u5IJ-we+I%G40z?zzpe}fHN&gUAAg~0DkN8R39ue86P$%wb zbJPr;VxhF8)cjof9Ow6R*?>hr5Dc~T!x;v~;St3?u8Q>q$&>(&N7I4KRTfX{vv{w3 zEqN1sTnz79hzD+|NGP|e)Jb-P>d)yiDxsl?G2ejGk8e|J^}yMJuOT7pe+ERT>!^F2@g|GH85=M;6Q$%_x{%;kFN$e`-BPHgBFZE#9cj|f8%zNTa z*&XmE;OTNBGqa{E&76-OJYg|8_rx95@iHg|6s*wTZ?S z9Ohv7Ulq&e7{W=eHDC=}@6L~ra~*jkbs&Cb$lRfhO>xha4@++8Bv;QE`QW3DR@EV^ z+n!L^+BQWZ&AK9(T0!aVpHnS}IVcHWMlCx-ao+Yrx4h$Ln+&W*ik5QLC8_66?>|5} z!pR#pS>5|vHU=9`6l|LGHHVOgS)6!M@Aj^#QxB(Vdb1~O^iq^DmRzP&ohaY8Ylg;EV3!S2`L2E6xrepC z8))weNwyUgXvO==uoMTo6c=2*D(Xr9J(S>jEF_m;KJpgasAk%xE_k>A_`yJhw&(Af z@^nleP(FTd|C-Y4DaL;dH=WmF$`;=}53&tDSf0|}YC#N$pEDm#dqK6$ZIUt50@2r+ zT>F{wNw`jD4@y|fHr{K}K4+({m@F_a-eTQ9BxlWa#t&Pp_1#jjo$NH~T2{A`^ULnb z{0?61j_#EzOK+T+3+V;{{5q^>%|$#h`i<>NYSKT%Y3!3@<1|YA*%Z64t@KL69#Ivj zW=?O2LYp3VZb9ECmsb(2cam{-X$6qwjAekSEBDvJ*N*5^#j@2r@fwDj| zI&E+J-Ezzgk*BZ)=ZR~w&nRA7Zp^o+oHbS#mr3DY$KG0+&k_{Yww=(c#)9XQVTxIU zSGKeEz{&M9hk!-E8QtaX?E?d$?+ZnHwS_|`#lw;!oy|x^4~Y6!iy3Y~O_kip81N0; zzMJAt8DsEz_4m_F=w@xNiBV=z=2g2UtE@83Y>T|CJzGi$^wyH<8%_NSc4E6j;E_zpeGSiziy7o6u6r|CLSB zjA#88v!`hMI!njUjWvBu^jK*p<2%Ahzv%y-m!ywHgpc~}TtA-i_)mOg*Q@)d60l16 z#w#Q)5U2=Y$A$7NqD;H~hMHXIJx+Tjn<=N=zlelinr@2D%X<@rR%ds_)o`eTih=;N zO_^yj!z`4OJ^n4Nr!(KcAA8Wk!{hn%Z>*&{|nPLzs+G*N=UOzT&5MQcMn%z->nhSqB>nQ;; zkLiqi<8H;iCx$CUS?~})l0MUghXrswpwt^*#i(xx_@=k>wwsqNF}h6cwRT3Uy0K#* zzWP~6z2!2<&fnt;rImPUq6~X^np+N46;-CGr^euTUC#6j%!6>9>#~BQs2O0Z303hF zh}@mXb=*~YX$6cc&n;QRx3o|sakbpl(8qf zB=+(iCY*GhJdhPFt{0-G0_kYZb&0f#`Eg35*Ck&cDl5~I~v&GY{ zOhs)&q<{)gT&tD;V{7y`tHgHA^tZ>6vvEoon)-({a!j&Uf6Xt$J zJgOCI=R*+L5S?>^*5A6;Y6W<4?k`@a3+J9xQl;Jt??XKHS_GPuo)BU2gDkg!kaVzp z6TI-~`V=OyA%!Ze$ZkN7N}%9gk){^7&)RQ$=w-h*$ygKippj^q zE2ThKY*SwJJ7|dq#%U~Khb}(6@U&%A+b&maa5#rmA*dxB#N{Pw*a9Z?yVy5`ytN$C zG$hr+T{Y>eYxNO9t5v!=8>`s%XfNdRGb*dQ(`y!wv|Nv`1g9sV=~pS~*Xw-JY|IO_ zyuyI5P_2>daQVfwmAH~e;uMGsc`CBS*@sTJ{Q6q6v$k)pix<~22mool*EhPSE{>i? zffqYM$yjX;|1m155P%(wk=dvnFb`&@S5WzhLMN?=iA(SkJJ>?pj?Ec4)_FyOq9$MY znme6$J#|7sM zMJco&d<#|fU)PEpf7+;sRB?BV=TO-WgJSOKTtPe7qPVZ0cEwx|@#M8_5}w&Q1&>!R z7quN?OTHj-_q=jh^iiX-SnAlfD!%lyQJ^&!jS}uZFaSm?pM{-m5XqYln?~uMU-RfC zB`kkMGmh6``fd2N}tO1k|hH_3YllEV@&SlC&4c@G5MYixh>~Fc%Ew-dRW_{A);5g zWx#rwoy_Yp!|CHNc_>j=NgJ2!3AQL8J+2diuqv(uW2fhH7l0G|T52;oom_PB>Jtwt z@aK>>Ww-N<=B24=E!Ms??t6fKwlO!6?h7IW3CNmjHu^GYaE;ERr0yLfA-7Kazpp#S zf5>PsPWFFl7g``)B^V6gUKT&ce01-124iHcL9^CKZx|gllA;+d^!<@Q zd@Ok%I1rg+Cf}8^`+7~1-Jb7SG^-_+ukkZc>M^+cOFM8ryt$bGBqo!s0K>SKKyj2! z@t3j@hL82`Keju19Oar$pc6cHp5o2F197$R{@eBVGAi3k<4XY`>%mq~xf`2%GKp_D z|0&toIsLOLP=an3B$zgaRZ65+;(Bm%{gDmV_`n7|QU}eKK22XNgUSBy2_Mhu>m-~` zdR!2Bd|g^ic9B)q(1{l_^G2{JD+L!uEsHbKe0@o>pr4vS@WOz94BG*OlA&%8EtWdU zFIlt+26uzp=S^){rp59eF9&`d^ZEB=zDG`jJ0?MiS02)6D>TSQDcLtG zcgeSd`YIL>mdlS&s3kCBp+zkxh{!-&DSARSMQ8`*1X@^1X2Sti4$myn{H;QQ*Kn1` zF!n=kS4$u(m*o6mlj<<{sGQ+sPdgfU{o-9)-NBW!t|{!q&-cNIZnqvp>qKT%9?JXX>|3ZK=e z^OUB!-S_@4;>X@CGtacm`5m|ek>_jA`eX-26!m2t#wcVFb#b58C;M7U(<}SH zs4|IZtz@zcT=&p*Y6~e9dHqd*^2(B0STEAMUbgi%2>dmvm&0VG5y< ztS>eBKSU{8ie$)zYLu?*)6`^+Wtr%~S>Yt+H|K{$diZ>jy^q5y(5a0ZNP_g{p%NNL z+hf}dXveVcdVF7!nr#d{>>9#lW|IN@yce#FwFN*3Oc&-0l#pYw`_gIr*=Qu2Ev1@1yDiWZh1w89ZhNCpj_GCk-SJ;(bcrvB zEm*D9jzfRFct)>BAPmLX$I{wnNVF6LZse_ZG1`?lQZ9a8UhG|?5yMLCZniorUK}vl z^txV~P4|)pZ=#z=Kk}HI87%?al>cf59J&P$_p4wx#SJm%(j8V%o9B9JiA0ETcy_rH z=k5m*XN-gKsJLdnp^EW81XQhHhCRQDWmK*t;+nvswue7$2JB>xE4Ex0B|POhVTL*k z4Aa_=Un*)uRYzdnLS8@j3{ti2Jk&Q}6U1g_2f3+>Ew!)s(h##?X1W2~(fEWxyp!ly zLN&D|^f9UUCWFXNxV1VfFDa{2HUrQzRPsv7q?J|BTHCt8j1k3BxC5uF0#~@pO$SHs zUdEsUBUcsl^oGkSpTecZ*0W6$iRn`6_sG*TkKl?s%_mNa#?Lyfb?pYbKW!djSWegz zep5YgTGS@Jb}f6mu@E)_J|Yc-~zN8fQVSJ@LURy&)7De9#wgHTX75 z>DHD5)OD3U>wj(^ejZiO*w9$Oh&hM1`M*x|(OMi{LLHO4XL-K&w(5N+%6b8SSXlW8 z{IB=)Wiul{2jgM}_MSk02V7|DeNjiyeZL&0S)^Zg8i!xvI>a_}4BwKCBZBxFLUKo3 z=>~rPkhRA`f4yo)|2|wtKYdaGY4;Epo>w(8?t*m1uNoLM4g%%yz=YcLtvk1~=xTX$ zbADMB0@q5~Yz7Z9(MpU9A#s=5Sl9u%18KUx;mfz<+7?yo$aSKG0Z`y2`st9}b!fVy zCyY!1LHT`ajA}ILd&TOevcuJUmajiJD%1ZvuqPm2{&^+1YY2k06{sU8*$bSz<1q}c zf!5yJw!K0+vb7VD_=cLYkkOf{@JpHn2Z**O&qZf|B6k2N0`~4+oTR^?28*Dm1(3o@ zPhG&;3NE7>0W`6r;}+Ob(hQ;XITe~+_4M@E;S$2FFV#KnmZPPAwMbEE71NeL3mOIh zIKScn+~wa`38gqK?r8@nJ&#n^o<1m48h^pO4%><-v!mgb{dO1(1Pw`@Qw)>WlQ{&AYYSj0 zibs*zfcX#t(`Ti%U2#fRE3IJbp1OdyA*x-x;|}Q z&F8*9Vyxt3`tkyeJTnX!w@;_(p+n`CuC7S)4x{~0%RepT=ocp;>khJ?i1?=bx$_Qs2}TB z1$2+w4fW-9+3neG-}qLe)&6}bnhz<#TTVLk%PTx*JTmg@GA9f{Urq|xT5@lA_fbL2 z($zAqq{TtM=|EK`&NZbT`-BTbUn*;%2@A~FwUHRL9HE{<%2r=`LID+ux)_L+A}I-W z0|*kwCS~7E$cGyTPsqiQW&5EU1x|#UHVnZ z7+(zMW>+Y%Nx}Ei!|ANtB=sEAdT)94i;rr<5MnxO+WNQlkcazK`qxhL+4l(MeUeoU zwQvd55xe_^WS`aCWNl2zOD#0JvC~^LD?lm5;C$mLiGM>B#2s*tfH*K5fivn6rLA(eeR3Om=lZ3Ib!WkQi10O* zpb4wWPL}cLhPx4Gd=PhS!(pv> zS#sqtgv%ydc!gb|>cgyrezh3n4;!4wS1RkPP*%)0Lu3ZS^xTuIL|JC{t?1CChPz&J z&B&SX$3lmJIjyKL6~9Se1PV)(v2{c*t(-H2kJU*`;ZHApaEhqs&gXKO+nt0c63))F zk|`Nz*;*%MnIHLSsDWSuggOe5SpaCAqQN285n*WL!Va3CLJvLr+vmN-l>sdnWvzL8 zYw6mb%y@{CcYX&un`Qwn?c%CBXIStJ6k3|ylVj#5 z>q}DjtOH55eLIFsDf!#7Y3)wzLrn^k#W)KESl94n^6CZsG}+!GW5t(4S#0SG2vX1K z(#h#VPJi}@B==aPI5kU>_r6q7u;q5U8ffk66yD0G@|;7{w2IX{?|7}uK`LCy9uIPQ z`jSP=BWFiXEHZGckX{eq-vB^VF|rMJM;uo*)C9`2&wQoB14Q&4FAYb zCrfiId!3_NWmqx|S4Ph%k?EGe?zS`hje2td_V*(xmL_?nt1enqBEy$=+_9o;x#-Rn z^7Sj7NQy;Ycb_M)tgyg~rNT9)2u1wxZ&P{E+8EN8|1gVj~ zX+_>N<*1@8Bn&WK}z>mmp ziroyhE?8kee>;S(QuA6m{XNE4h(cyZ)Y%wFxM6O~DfJ|YuRHSVcQSnv?RS*-rMj!V zmFC)$*UVMTvwWzyOx>J^4_B~Mg=+%gqwuZp%uP`D^iM2zy)E*a?l71f*z-_^Zy@0Y z+(sSq6e=N#8`&s0^EU5+$8X>q4zf)D=f4RgIRgF4Nx1%h7SQdNf2^)@Da2!cI^chQ zO)&UlSkd1nn&D)H$$uI?{lePFn@qUft*6H8pwdyrfAMTdX2E$uw~0V>ULn(MV7&F; z2eujXPi-)#KJie|3lGyi;-nj^sX29iA(E#YA{ zk2k=4fLkST+;J;;U&{*aOj%3rdT8P>to3_vwFEzfuHUF@fJyZo&mi|?z5cPDR4Ro1 zhm_MVaM4VND*Y4?G~_7Q332}+OoZ)noiIT8_^`@Gx1O=devs*;pA(fujE z?(71M#d~f(DPx_DKNN#CZ9Me`ltSz6wb3tX@`5yZr`Eds<@R|ETX!Q4UlL1ty|S?S z5dpQTSeotPf}0Q;_P;!BpsH6x(nia{jfK;Kfi{M^qdq$_*hN)`VNQ)(wtQAf-e7>~ z)~4wpl;lm5zKZ5flOPC=G-oO) zp!Ecd4PQXB8r)b>+KdX^GJ>CWY_r8JRdjD3=TBnZ-{oOXF#MObK>tla+nJ+^P3x)d88N*kF0-krWT9b0pl6C=vqm}9l zpXXDx6j`(JVJ}%?Bw$@Gc&IXLFB5?SQd!t6^+9qV` zD#K1}xOx)TZv8Y#otyAuO<1B6a3MeHJF{$*Uzb)}9vT%8w|=(@?blS?p1Hy@+5LKQ zZVNF^LGILoH|lE^k!l7d@mv6mEyo1Lp`uZ6glx|YEz5%HvO$$PfN&3|L3JVTk)C6Urviycs&fr0p%E2F3NRuui}6651+yuLYQWl>d)`r>>Zw;&ky>$zgK#+I-H4N)CJBd%w=9)xkm-)yY$2^EG1A& zvU06o(_h-tx4Y~ehwErH{rlX-sn7ye6Sd}_(45g5qL5{CFVo3~IENzcTMwr$!hD*r zK_T#ldsp^}+i7pJ1^gV9_7CxFdQ|T-8?da!E!_a0MMv4{fO)F2CO9#YnrBUqpP zU1#Tu`81sgLv65$8ng|Nq-h0B_^gZ3Of5)pF#tsg@~1|21uyApAX6XuhB>f|LhAw< z2Z7gfzXcc=E9oQs>ozb(ETi(Pk>q(#vI0&VjFqM&W7hY=ZD5E@ws zUjZU7=drY^xKEmAgvP*#G671&-S0{c-!$iVkLJcjn(ye~cU?OG6XU4rCI@22X-I({ zWD&mnSAyC%O*dFRLfO-~#p`}S1YKB_%E!I)L-WgmR><-lLUl=3?y}?IuIZK195d1o zs?m^v$(R$c-e$mnLMnAV5nlun^JqL7q2f(-@e8%G8E!BY1oa?`CHvG)w%Y1@A-C%v zA#f5QN7ngHrWfjD`Y&NVJ|<4?H}``G;L$n6JDJ~dRV!@2RGcW z5cjo1?ed}=6XthO_dW$vFl(!9SD``HN_&a@lpwM{R6e|0rjFIAVlh6cAZ|%!=NQHI zAG$Y&o=1nD`tDvp;RJ9DQ09Lz3>XXd|GBuNYdPR?BKvRM)2{HX3W>RdHqT-@;!#*C zHI!C@eVY?fQn%5lL6p=kp6tG=Nak^OTX7a2ZoDI9Xq83e-sdC_OElDwtKnqtb^8$O zzUv^p2s6LfXSY6V<+RkijnBQqM`y9Y@Q7#UJ%69Q3bIcw+&gb!DCBFyC(P%^B>(^{ zyZF5-4N0p1o5{u7@X1xp(|uMfSuP1I-e3iSCWPzaN~5x29c#^1cYYFUhUs?|T1#K8 zY$YhZ$~niyWO<+GJ?JQ}#tTKH*?<;~ZAOKzGT}T>1`bm4tBQV6$Cv2<*m|`pZ*TIg zC~MAP$yy}bDj}r^UTrs_aMo#ncwMDI$?xq2-qjeIFu--rBvJ%vW%1W|qizF5?+w?u zOu}XM)BHmsam~*z=udQQZ1HYnfw&7~N^wg;OcLYpapW>mHl-LHy$|~|2X%X@f=FZ} z63TxmoWYqh*X1TECPw>VMh0U`*ly)a3R&k{ssh zPUTb(uShsG0;rq2v?HOK1%jJ?D4nP7ZU#&Y>k{At!B+GB00%An;kH1d?{LnxDrhWj zgneI~FA?NYbu}QD?RJ-xsD&jDmpoZ4Op%ZN#LUkgxuVzbA^q{w5p;Z&Yi%@$&}k>L zzxc7I4x`OlLep$iu#vD1xbL8$fzq2Th&*ifH!98y`M?I?kh`dx@me&7$Ig*o_$i12 ze6h@T_p2Ya%XnL0TkG91L$NS6+bpx#@hY?Rzev)GTelw3kwnv*?AkS%&dnNSIluSh z)Jl(Au3Ns~v&m8Al{COama$*M=^T|Tl0o9%6fd?A(fNNIs;UoVF`I!&3kn`h$YHP!lLuuiD%D~Sg>kL6c@`r&l#tuc^#OL4r_Eg?4R|YDx-PYb4Sm%N#Fz+S^Ac$Sp5MIBqI^ks=mz^q% z*t-Il#?4wGs!Is4{9f>5l0__18FuA0Eo}#GSZOe%5$Vffh>C!*j6#$EFAN)|qPv%_M#Re|H_QfWSS+d~(J{J?eO4$^*^pJjvLMZ&l*M74w z{;qQnu@W(~RGpg8f^8m+k)8Ot`lAQOR>$E#qyaQ;1r!KUy@hwL?$V>>qmzGI{3t={ zD#!SDcx9${`6jdxNtZ(4pmck)Hk*~w%2&EH^SSV+Vu&Wj4nOxQWXj)!CI3y^%E|7b zf?2Vp;~LsPO=1;(eICz1)Ykd2S$=$5&eA*n?^_8(v4z0+5@G(wQOsTfhyJhrnSiiB zH@at2i#dYZETwGwzg$C!VvRLkv$CS;tb1!T&sMg{m^U(zV-zZ#RQ&p&_2*>_)vO`v z%(hw>YO2AGpuU6EtKEv%P5gKdYIzH6=$?NNh1_4EuUrG7pUZRk-G*b5g>%~57vwl5 zfpB@F;nC>nU#zhN$V!TG9CC~w{BcXpwq^n8>)BoucU*d|*R(Yg*^ZYQqltV^{K6_xU`0lpsBtaGet9qr zcwm;wi>u3Y;?l6Iz!9RT$8QMsFZyUioJ{19k!hs#n1<8-mroCZ@*iReec|w<1Ld@~4)vqTYUyfu8O{7C+J;V23EhOQQ$$eg zRH$S>=*OoM4>kc2LhLWz_oI8lpn9x-(XxJshlUqZ!(6q&v7Vm|zEiiz2x`r(21-Q}>{#0#mgifOv^%W>oJFXUd}(q9%*rILu;^(CjOS1Tojf$z?|3?Q>QcHSKQ`Q{P^E!EP3=0mQ7c&H*Vd1)2fohRk_AQsJ4D~TjJbNr}yl>UV>ltP=e1$^j)Ub z#OmR+ur#z1cwgj{R4!7GXYCdJ>6XXVAI}K-WUTL0 z6hLUh`%7 zE?Zd{VOz_De=B4C6wNP{$3GNvEKrHpMX=ds4bzbc-_G(FSLay8cLoQCnRpnj^8vrZ zJQMplXaWeLf30in>RF_TS?V{pj)+6lBl+kAjN+Jk^3zsS>YIni*3ftv{kedJ{5D`{ zN>M^C_X2%p%Ao)os&=zM4W-#O`GYfcikVbXDB-BBzXKV&_o3yas6{>-{4=?@Cvxc4 z>#`X3|d*IRO0~N6@3_??LLbo;^kod zUoid$hpIF-S|KL;0HR`0Wq3udx>A++x}^Fbni>OI+SN;aQ?fLaAAEx?V{*9F_+HaP zg?cfbQbz+GGmL3jBgs6dn;WYvWY?~92!y=hpl%d%5otorCcBNPiYQX$5%3(DZlOcZ z&)+iv-X8N?aN@UfVMJrm!Cx%us{UU^^AAfI!J2Shz~ZcuOl0g`A_4SGP11FT(y-7W zyjvl+F7U%uR9K)#b?2G3<@o{uYyc9>G?xWLgKcUvKDg0L#dlx}yX-^HI@G4X-=^Qq z=&@>fl@%Pto)xIguWh!!F9Gd58spjmHEG9x0ok}Zc zWw7~gv@xJ>0Q{X9wSdA4U)@V?CZH26Bo*)w6&w*refsS?U{PD%0iP4T^QwBgwsS(N zfLg{Mg*alTNeB+23CRwDNX0@K0-+;7(Eo1hQMui+bCtR6VI{yv%aQt5!P8Si+M)zQ z1eiEORP4D3<&p?Ksx-0&wloa`di)w&QaoF<5=~VAkE9z(d|``!j%o#hSs8O{kLseu zq73tX5zDVy0BJ{XIMM??jU0LUnPL2&FbMb(#RPwJdE}gfuXmb$q0v*+qQ%oHWAYd} zO~_=_`qwDAiQ3knsb%O))W~8|?Ck}W2#JhT6fi57DS@D!DYjQj3iQ7IKHj;9R(#^p z;xJel+ft^nVR{USRa8z!*i!KXsXR>NAX@3FOReo{K#c{(-{oIaU;y^!S+Vb`v5{j` zhlk=Mjh5fRP^ycdYi2R&K{G0TVSiVu+qRL#QL)SatC4>MZ_8d{k%q1knJd>8lN+!g zNK7%eppIyw_F!pUpasEN0#2e7mJu1o#PuD2IXYhU0jC7(^vi#JXIMfwkr>rk{w>Ib6djH+;P|=F``&wy$PLUbeyH++Z9>BHHTK z^3AOW2~j7&rl9$bSeV7QeFm%WN1*D$z(Buh`_8uWr;zwjq(=3nm;+?w_5MR_`or7p zFkrkJb1!{yG3-Ds5@mXrXgGVQ+2WEpI%TV2K z;R>*!YN8rN&m&uj8s9fwikGPx_fVm|_VUHSQPh&0bi`OoK0UwIXWZjVj&iH!Nt$W< zdR$(+dYVt+P`$$s%yyfW-X%8p6=_2F3(UaB?Ke#jieMO!aUYOM4UjXx*MT2Smw@Y@ zbNg*S^fZ{L?3y-+A*6uM@d}(AKHM;DN=NEjry6~yl2^cQdpw6ODL5p`refwMv5YXD zeEo^`xZykE5sGAjk$hKJuLXh9;f_e~uxG9X1*h#N*Dd*JZ%e~;5D5$L{!$IYn|joJ zD|h--!^jB>xW_Tfh-tt0pM02T5P;v$5Wn?dNVnpMbr`F3svBZMY2}ruCW~Y4WHJ|+ z-R2-Xp+UI6qhpE7rK zl`7`p5W3|r9;hwRAZnpdO?Qhm&XR~9P@!3zYUz+VG_$}8mm|$qAB|i0SiLh_`l!tW zOgr_B65F;YE|PZ+OLCH+`p0+uhPV+wEE2Hhq0zAL*eC6S*UkndzO<;T=^_~*MN?2k zcQA6=pJzGkc*W@MF!6o1fv^RRVZ@&x3cu#s|D9*iflPnE(1H1|kpH^rXa6(_pO@Vt z9yfCf&b_@OsZN_QRMD4v>Pv5SEkA_g_;qaX%cHsqJ3dfgjaqY zP(+8bUIY2d1XHTN^FI>}lpkHXUEW~T_EY9d@;|6WcCe+QqJB^ODiMs@B>G^+Ir8Ee zk8KkP@1MPc{?a4>?s7jLo|1wKyI`@wkbiqsud@BqBxn^cU-_J(6L~`X7BUrq%ge!* z#G=s1d?fN@D~NTl((YS5&i0xwmty)7qXB2Njvk%s*aN{Ze&AatbWRmLv!&`!!Q8&? z&&c8Yz5%RyHGJ`m^elvN%xA?Q;pbH_@zL++tcD_(8{`1IQFUy%vlTj{>~rmZ)Kr7b zk4;B6v_3a(^Q%PMxWtk|gC!SXjl!2p0F(-OWd` z$bZC89qo;Jv3qB{&PMESR{-X&5WFqAGdj)?YAUX}sKxL}ED%Xf15HIv2kCr)^&bw! zoxS4;AJTwUeO>a@dScj*HpA3y%}St!8C*{xr4X1NT?x@?TvfU~e7SoJPTrRPB5Mm} z#f78uC|3$)Mn6|H?)IPC>NV zJ3tNxngag@X{m(bWMb~zCC%$nvD4M>TtNNA-}t3UekIw}zl@wu-le=EM~Swf@jwc( z^82`(5Wh4pXjWJ@?i(t&r#gf^Zk^ooD+h`Wa`6FKB5UmZ7y3^hmN`#c3UfzEI5A=JpDBge z_Lf(l=S_Z0gf9n_Tdy0 z2Y^7Lz5P5o1V}Y6CTg3T(#M!pHj>xYF}Nv`6N^vV`f)UB!->D5TxdR-j>;Ujb zH_W|rZ=TdbgKpd}>A)&1i$xCDPctk35+R+ZZflo7dW3_Ha~8yfAxaLb!6es*r0UFbWk-!DO% zyOx-67||gVyL-p635K6En1ZX-9V^}GkmtBitCGu{Jj`3_hTO0@lM&qGMWS{ALJ3Yo;DgZXd*&s9TPx|6|@`i zf*qIfW^+6V7Z;1-^C{#IreWzn0w3y~2eohJiD6dlQPB047y9$r#O=+*<1G)e#dxSq zX%2L%1uY$4SAgb3Q?^|dLy9XVkLV!l*oJH}u{PI0ls44zu{yfR+~?{upr@>Dh!L_t zqzFPn&nQBch-(gWy990xpAZQsh>P4;nL$*U{|PcQQ2+lh^-ke+wO`zB?4+@cCXH>| zwr$%hPGj44(%4pGr?G82>0W*R-~RSKne$|w&1;S8dB*sS`%VJo{3mr}`UkTCHb)uL zg#Lol0(2bK{}U(dJW-%3${qRtNCey5iU))2h{e>&r$f*#v?XmgiBwfCIst66a6}eM zi8V~2%e@z7aJlff)NVV5BvnCBZs-1^+4vW1iM&65T)c9ql0)H0nK2tsB;$y3$|dhf zHk$Ux`e%N4Bx$Irt1sY~*fvm?s>-!27yyp8`Tm9_jp+W1bg(-$jvL>8ue$ivSa)pE zo4bmX9Ut<~=Kd>KFg?@M$>nK*fm2KP*rN}Vh1=^mY>ONLrL>?$UO(@1lx2M_UMUdb zJDs^htC$*XWb-;UQKCqz=r0Ur()yH3wR!72z&d}3qNGX+)g&@x*e*iqG!SV6h#kQh z=zC$8QSW=+3Cp?rdflU!9iZRHyMFu#pDAS#8b0_=Gx0!uALE;0SLvH#A+w$Px@STA zi~L4rfZXj=Mp`5*H1Sb zJMC+zfkmzQ>_^YRwNXsd1PSILAOObL$I)+@o~VOAdm<9VLmqJPL!=@I^!MzD5pPVV z)ph&#-QSi2)j3l?#Ss>Y+po*~u?u3HAgVi`t^toV`%she2FI3^UeT@6bi{Y%wXIP0 zaSzKv3@K~G6~Fo6rZCU(vza-!UgLUvQFt3CTO97iFuhx~a35M^t61m90qe#p=6P2< z^mk_I0pQKm^VS+rz)#R^6OFW}fc<{Jio>II)?)c6GzRz6vy?`&GJ*ABY=9UB>jyvi z_I1{rBg0Tvv@>-J6Z;XKf&P_xmF@ZYsrhQ|uOC~NYA(lBYAD~$>#Np|R@d9E4)w?x z8b0jUv1jcY&N?)aI!S={Bp2_;k){dN9Q^9&N*6~}^T`2sc6ak#>SH0JNmlglIP>Y0 ziNe}YjW=F4t(pOm+O!_O!UG`W&iDVog)Ukwag=!PsY)V(W2DC4`fiiz)iEp#XU(cW zRpx

    3Iug&JUH!O4DyN#$_*wk&Cd!eQ`ALid!7xfig>a_u$K2l(JToF)?TNWCI> z=fBw%C8?~@1bH#^gLzS08E*fZ4+T4QKc`6#!@tZ`>+QvCdIz0*P_i0XjYZ<}MSb{!3$i>-0%OZ+47d_c`8$V$L#@3sGk=nJx$ z4Z-4$k6%8R>>Rd`wn#M_8@C+@j|Jf`x-Yp?E~Epvw9w$b3wtHKNP&ZF`d55;c8WLI;-hu*+@)bJy8OB-}YZ9;LZ< zpQ%dy8#2ZMeZW33loN%xu(sov1grPnU;-u?Z;(coB&?t|-tx6?T=;sAy;5q?>d+ri z?Nm=}E0n=_2IZ?V=n(B2X)cTfN!;NHTm0eA*~>VNJbID*!3^V$)1QA$Jf(rB_}dSM8EUMF zUqW3?pN%+nvnDNh>5qL9Ls#9myBM54gjdizQne?Q1j19NAZz5G`Jk5lbL&Jiy}A~s zBN2e#W|iyeoF`zw56+JD9WF@U-cE zH{WLi=yp^|wfShjF%n$*yKMZTUd)i@mAcOlUqwLo^^9369Ra>AU$pitQ}MwU--^S6)A9f-@yIN8pTHi4X&YTd&4`8S2z4UW~#ZTm&1 zOAZn)cg1BeSm7`H*3b9KR2$P3Nk=6{Q5*sBqIU+!+obVfF`1#&VdJdT0jQNIc%H)G zHiO=`Gm5JZic=a19z-X?uWbjSn)e$L^1}QT98(@#hxL$*(`ZRHuPcUy=nVZHL9xHk z$kWOQX+|~R7)hW|z=Hr#dH;W6o&T@&-f}yi+WyF2N{z5Vu%Q?j*iJ9Al`i>hQa$in z6xHbdc|CY&c!in03ij6x2yTq{{3O?cU&kitoRer_93R+x>y1DQ*25?NiJhMzbAus< z%A6rOlYJl@kloXFW62oZV~c;NrPkiCcHuJ3A-*72$`LtL7YtC)A%f_3t1IrK8cx&Q zQj=dm(|9%N-W0m_nK2+niQzQq!x-g|B%TyMwYr|rKt;UWqs+!^{oc`r?~Ut}zhP*D zO7QemNy&2$bSX#*TYUFXm#wnm&e81wCRBE>P;S(w44m*c`T1TrJ0U9i840Z9g|yBz zcHTqP1Raf3K>%3P)Viz#TCF{`T+?-DZ>Ol$DI8U2X|*rAk*!&NV+SMeyNnZY=kA%Z z-?tMViuvEO6mdp@_aS$$l$ZwA3f*kXX(IWJ8O|s0vw|WkB@U!#_pP~(jDx|B`d~j( z%#rula}h}=G))XRVQV2*$eooEN|{?S_?x1@Tb1RVQUFp2p^>4a#>+0avPSCd@Ad+s zj%9XVm}pCG7EbnKJ3(AHOe{PoX)|<2iBhjk9d#I!&FWG_NQq#9 zy}|zXetX|00ZvYC{EMrh^}Oe2k5*`(yl0VXzFi=#t8+46#k5KoD7c5qlUSneyg_C# zwF;gS1E|N;&3^jFo;}hNP&TW@`?qQ6|lJzgOs2++ne3nqW zAHN(zXZWFf(=#0lMf$^kln?OU_0sSk@ebnk)+cT-^c;$>h!jTFiZ3Xh7MtQbLId0a z&cqV*APZ>**PLhS`Z4aYrA5r75~+|E-2Etd&l4>c5RRb(2eB!!jrTK_A(x zXG>n0Xrz`=EOt13qMB%Qz6eA1goZ`enGmK37j`kcaQDrYXGT!Y40TY@O*FVJxNoGH zR!RGG{B$@jN}v(0BO>#(5w`FamIn0c79fVR(ONkrb66LcWg zRw6=Uw35T?`M$Z3>egJ2nA}Yk$w5m^!Ag}PXQ(RA6~@6g^N+W{^c(Muc%dz&P0`>mfdR${~Y&_>M``9 zp_LH0VSEkX-2nYVHCc_Ha4B-skh&fqr!G}BaImDw3GndRQAmQHOF-%U_6EaQ=RHc# z4N-hP$kS(>M^j(`++;w-Jf6;@$4mBl=)G{}7v$lFL*oC4W@#2R;NL+1+uH?aW%&>A z$qd+eI{-%Y-YHh#Oe=JXv0LbG13>kRsF-u$+=>^~*B-a8e*@>A^{6~73r%Ceexi}B zF0a#Eq*Ak7q$h6ShFZM+0=#t;jL?-g)ww zP1@~qr|Hgp+qly!*Xz%nsV^EKjW_8?96$-s+WIZHSC79eumzi6?5TU{&>6a~%0`tpsuQH^81 z#?DFjndpP6E7GdGvNK9GzIPqdA&V=FF|1{pTG}^?i$IzI=yG|VE)}brCBnIV4q$fS z+?P%~ZDjxq)Aw;tYH$7nNC?chAPm+{v`m~V1#KE6v+% z^2FSvB1lP*a3RsyoptbR*LFt4A4xSiTg|ekT>#{nzJ1PAEP*h7l z2h5(>DpwLYn1i^D$mKY=BpuSg&K9wwAJ2mw)?_Q_CQru{Q|alYx}F)Q`MP&ER^6`1 ziQLa1s*|F>2N}_b;@yDP_vW0dL>t#=Qo;T*=3M$7*bnSOc2k`qe2Aj*0RFOnA%il1 zHzSFm*QLl;&^H@Ym z0yTIRTluY@oLOW~)44L1h;M2sa7w2j(B?lq@i@L5+AS;^R3QV(E2WM?R100cUD0ap;W5nyjz{nu2oJt}hVj zKHv!TD>sTHVS}8>0`tgwiL+(V4msTF0&E)GA9kd0l-FP&z|zXu5@_X+;ga_MNb z0lo{)ehhsu^x3x7O%wm7LZSZ6I9`uoUiJBq;>UHwQP8#>hxa-~_XBsGgZ|g6%ET}A zg4jGuCn124L$l8-acD6G`}ai>3^s^hT*9*Vk|2{3S;J=;H75k?Oj7sL6ZW)odo=gm z0j!1|$3`vJs}cgWqVU`Cd%xc6-$cPQ`Q#5wl!p*#Raud>rxZAWdGaGtC1YyWgX$YI zwKLL$H#kz|jR^#~5v<2LF5(SrtrLy$>w8miF6w}W!y1Js9QYIh>{tqi&a63Eq@FY% z1)a_6;Bs=|5)5f03Z1&1hre#OYCSO0POKT(Vz;9WtoYuqNbm)S-Kyb(cXqk2`CL=R zH&y3B`@9~oeoo?&w8EPb7&q-TVp%s=o|F#m86_;wHPQD+=eOr)xPQ_@Rnr4i&M?aS z7U8kN;T)$_Pp|yFOfpD>wg2z*3cr_rSg$QERI`u0!7HOK*|D7{X)4U-air8V#4S>Af@SGwGV(@>PxCo=5|2A>|C04$L74679U%P6fk5!*Mavg6vErV}P z`CNwq7~*naTjn*G!JLAIXW zqlMHL*I1m7A8Z59$LQRbLu^k;B6VQzB*#udS$)x4cM-_HdJ;>m&S0bEpz)~V3#=y< z3_fs9-92LpYTGquDRr%fdyoP1(3lSy#JW@*K1(Omqfzv+kp$tEbwq`0q>+`rfQ4r@ zWvraYb64n|5*SOrrzxck@2A|e1d)0~i2ATw<>R+WWO)+J!}k?7lV9_(1*HtXz9veq zC-EMh|4vT_RFM5y478~otP!SmOuXDv*Rq&SZHr+jlhXFo%=Oy%S`*lL3RnlX_vo+5 z57Am5sv$a$ZQG31Aeqg%@gI7<0W^p2Qc-_+Pxh4FqE_)z*Po4hp;9i)L>Saj`cuaK zjhP=~&3V}pQ}uithzma+Oxh*(b$YW_-0n%chB{VI(EldflIQr0Ma?EURw@fhL${Gb z2O+mi9)&sv|NKHCjK!j$QKEy>%M*VmoS0Jl=OS4@ddh=~=*x>8MnNHr60lw`evQLh zY$i&KycQVVlxX>?H&@>P^Tz~2d*o+wDt46)RK#M~ZwxivKJtmA(&$!jb61amz{>z7 z0Z2oL9k9C=5Hj?7bpgd8M)7oHJ2EKRxuv<6fb=I6GFnPZjY5JU7#of>Nke<4x zbY$Y#i+H|Hf|Jj}(eWWT3jj>x5DKuReIwE^r@}TnJSKb?>~|63qb)*{r>H6yU8#OE zo%DiaOZ(@@vbvDN^tk2U&yVHN(Rg!N#b%GkVWsxXnw;9=1qEjB6BN1RhIUah^K)|S9PLsoC5Q&U->5UD3M10oRRMn81QOU0L_j^+syYtnx(&AEl~SP2xWN_5!-ei;L<-Wm=F4HBE&xSYe&Nag(T=%t== zFYlNSN)eBb+i6$Pn#WOV*Wnxj#jkbF&DMq=k%Ui8^IpzL!M;4Xj>^cStaaXr*hBZ6aQB-D-Woe-mF+ z>Q^%NPVVmf&<)y@vAto#OBM&DYmH9yu`;%K?rFu(JFMceI~hAA9g1|@NW@uPe43V` zHgcs^n=c4m$J2xrv$3hcK%~&`vj(DEv$=ei8d5nWD60qlXaSfrrf130WlASCBc(}a z!!H9*k2q!W#vV#!O`TJ)qDB;Gm})8L)l>%MBHPn%YhBjmdY3twXkZ!V5}lc%vgmY{ zYS(_8n6j=FYCHT$D%bC!N0?~vVVQQm#_Q(vQy!?>mB~?GYE`2Nqa@rn{;^%HA!}7w zys1|g#y8mMl?<33DX|A8Z1x_kL6c+1)T0BU(zfJvT68|#^mWk`?Q&ex4MnNjr*PR6 zrrcceDCf$(n8%ai@)EV`=N1?EE_f|k>+jw#i&If**W3X(JJJ<3lvg6T+jPw4EA}Fv z%UvYX=O0fyjr|xsgS;djs_NfZ4J3ch1FX4t{va1Dwy+rPk&In~tU)8Ko&OE`RZ+Ve z3JZHL=}Ls`G->d}5_l&{RO@r_;XZvia$BJFLPR23ng3rE|KEuljG5yA22y6Y6^vd8`! zeTnQcD4L$LDfn3=4=-0pg0e%E7KBY!0f~zEyX^DZzEW=4!bd(l$ot?}AmjUL|MAJ@ zoXr^4mRdFdZn{2URcArUIrm7cUY_C1_Y(aZ_AW$7em2{>4A5o2%X5Lr zDf5+q(M>MMr5UXkzc8I=W?_REq^QcIe}19HK1MlqV7$!Oi5PA!Sr5eN=OhdtjAgwc zCl{z=8waRddNKu(8gR?uAVtf-DJRiVh+MeYxbOpX375Lu#d1^*%jJun8IU@p%Rhy( zN6l>C{IZkld((}P_W}B)jjU1<+w(#hZ--_$-vOihjdL%Py*Z;^+T!(hUskU8k8chJ zpIbEd9Sm7B-etW6z1NRk1S@X4Bl*_H9X-<-aASYbu7%MQ;DAC;gQXcGqlU)v9DGMiYN&0`6oLqI4XHcYa4i%#-qXt30 zQ=bu}QnYDO4LEhV*nc%;pa3?~Q&p_Yh{G(a%Ilw$a2gCl*S$!E??t(((_tskYM4~b zGbod2?Tk03)B6XR#G6>e1>i^WOJRycn4kb`Vs<}_k{ip*=vj^03aVTWVebyLsG=Lh z8tH-5XKDoO73Bd*8AN3=S|fDo=pn>Wc_YForhsp5<$6)Vp}X34lqTfT(G3O9^l%j7 zeexz(!`K^|e=g1z?82H6)c6+pp*$p4dJIx2k|rkXotdOZ+c|6>>iKKnStBUk&r)WH;cx@@FJgWdSq^`PB%8;>;&N*AnrkLF^l)&^;H&57Q=B#^KpuaPIn z69sWr!W&r!={2{ST&Ea|K)sLV9901s&i$8`Jv$zgY0T(bv{1fO6N>lVYvtbUXWiD! zuty90=u&*WtFg6bRd?On3$?*m?-*#z83(OV#Ux>$~67ja>-zo$A z(JK%CFq==6yz3nSYZr5F=`$cN`WF_yP65I2Fu+hvJY1^8*$yv2ZJmq`EBWPUhd!El zaA%C>K^g0Hkm_{JJ)h8icA7f$=o#Nlq@B%29IiVe8iwTL&Y}{!v_>&fd)Cf?P5pA+ zqiJ)_U1HsRjrjru{xL_6Q35jDuG3*CCLdQg&)I3T;@2MRHitK+g$@9}H7qQYdwp+Q zX{6=BHfldp2o58Y67@J{HOG#R&_q$C82+&$tZ@&nKUJSo*a(I90g_Jx|LFSam~ZP6 zHiEl0SdXLdECc^=^Q$vh%`1k8RI((2Kgd;R|E(G#RAwXI(e5d3JdYHlEoD=9@DqAz zY|iHYPgR#q0*3`<1vY2V!I@ZC|CvUp0d@}iZ75&41_fJbZUJm*gC6wmSd!1q;XF+z zY)*4v9^rxshoYLJ<63w2!G(XjMG_JzhMlwJnlAOOgQq;4Ia#v3IMHKjNpbyrL?c|e zK1M%cI|Qa<_5B7-O(WD~#Tvzi+9-%Mi<^nVBpSUQ_75DYs%aMrd2^koDWg8p0jFbc zFUPCTbv-DvxHN%`AiBl4Y6oNCO|F}<@)i=k`0Y@*LPI!Yx=y-6sN=TD8~C3uEHOtb zFMNr^H4*%3dJd%W0eF*iMfXL$-o`xe&fg=7XGxyibJDyL8LC20`S~AIf@DIs->9vz zW_m8|g{+O!V_7W=LmYV=AAzxKfRo82vYA$sd=aEFUz;vNcWdObW-28wQr{GXjPT1o7xOv znvuKi-JY*IGfy`s9{_MScnW#{xZn{xj8Zhj{Ie7|+N>;KM&Qc(JiK@S?42jAM*P9T zgEdBUZ0-GlJ@BLI@v!6?w0a3Lz92^Uvw&t^WMMQaMVXZGGJ?(aMz9_!DhaNT>tUEH zZlaArj-k&2Syu+G`6NvAoeEPRvsoI)I6iGZ7u$?Ap${Oyq`<|b?tX|nE)pcRUgyZN zpN&I7Q9tk|NAWr})g<``K(ye7d~rdf*X(YbEbm>A1NFtSt6~=P(?+Sxq>3-iQfWwY zLny5#!^(+L%lxzwp;G{U!;9t9;1Ef3fQl%JCz?!r_HW*kI&Qe)2z%=yXfl8B!qNu` zd=~$ZwM9Li{C2SziUFkl=;Osc_U?7h*TQMt*oQPI4E38cX13xGU}lEGB7#bXWeLkw zf_@brQK99xwN#63Y*6alTw4DLM1>{c{2Gi@Q{)Ki07y44NB=E30T2I;G!xLv%dc6zFjZ(sMc3I0gxtEP zj&Op8FJ7Rre*gFtz#N_e8&YOV4xpUtz*AhGxbbJ*2~bTfuCrmmpLzds%E4@Xt&}vd z$D?oXLL}6;N4zeDNqG%_sa@h(^dElJAnW8Y(h5Zzee^&DB9+29KaN}YHX4{{v|Ho* z4ro1xC#H-OYJGBR2!D+W*oC?rH<}SbmAa|4PtT74^tapqU1#}Hol+C$zF#E-oAP5; z$tVvdLThK=F;(FkW1-sno93gaT`(a=>|_ih(L}_^lgT$0HLm0m^Fz4NpN$O@QO7bj zIqpo=IZp{#SSrYW(@MZ%p4|EBpfaSTIo**op%*NF6I4p>>3e8FQA z#nWQwxzXbW9HhAH~x362F~FNT$&QMD8Qo_v33M`Ln3C}KjgAk{@V zK`P*k<#=;!79r2sSI#lS`jJC`$KT#5R-YwxR@FcXkll{T+9RkX{4yW?$h4eul}u$i zb70$yBCRu*D7m-kGnE)x8g{MdTQ~;;2GK$bWEqE&73IXdV5GOyadXoGQ+=h}CsMS! zVgme;xH(H8t_k$G&jusP9*2?GUBpAI+Fq_m*m;_y-Ki`XHHA_7i7b90IoUj82?q;K zt?-d_`={+OGtTuo@_-k{I26=j!H1Wt7?C_`#hay%5 z?b^XWC92&OX{=$b6F0KrMVD%xl%_8`GcQCCW2G`L2@E<0Nn% z03+&WxM)n%Z{@ zhez?hUk!#<-Y`w4-X1ce6Wk|ys;ElBhU*i$Xp>M(0-Pt>ms0P^-5<}r@=Hn)0N=%? zB(bh6QW;Tbzb;l9q_mTTe6F${w(k2bxZ(91zZ7MOK~Grr6#b&WYRg>_wY&(p4WMWA z_%^zc?oNOxu4AFSff(d(AekrQw5-U6E6)K9C*o5kzB9zwP!+SLA@GkLRboBC;n_u1 zc25bZW{sk%{+0T!*`<-k+A0pR(&>w z?pQH87EVN_2PYzI#X`}OdVUws9nq|UI$iO#ul=pso3$b2S)Af`_LFEnfY8yo|SndQIB z7!dR$=K{>lcAsnHbNGA@s(%r;aCWq#lr!IxwR=l8=Y)gQ!k@^q=4X!r}46}P=;~y?xOPNZjG-# z803B~4DB75Naia^=hgSSlmwEm7nCxJYzmH6IfjUQV%pU22TjisY^$N5kQ%B?n&}ry zw%W2urw8taEpXw7G{XgFGZ)#sU3^}>Z4hSVhhf-^sxn%&`PFIiDq-;Zsn(-_vB@Nq z=?=HHlJi~-4k9tj@tiILJ%Q&&BLAmzdjqHDMgjcNRWG%#gL_}ctEw!43}dqi)?2rQ zemABkt%TTlQ^n$i>dKtg>pzlLS!ec~R8UUb)jkJX-);f<9W#D4Lr zl6rE#yrQ$5v|pq$u~L>eNh=xw#N%pD{mT6>8`fK@bO8dEU@+%7TAvM)7af0M#+ESc zCdy|In5DS54LP0ftE^JrHQduy)WAHD2-5ZJI3Y_~_d2k?u7UGEXlgM>dy1mT%uCO! zw}Z@MaeB1Hofnyd<*=^r?U%*OGC0*@*39X$J&1`>Tvhpdo}gw#lq?1S{c$_?*a=Lv z^*L8{40!?k9iWMObkC_|L-I5jT}y;r6$p&%VkUSSFPEPK-k0q|m#D9Pn#J4NFl zLoG&=WWj=^ECt`Is68aWM*3UiT>NSBV|2T!B&l4(so>=*5`J$r1m!13D+c}|! z-Fqj?eUT-*5ZG#DbS%~CGGuugAw`M9ChVEH?j;Y0q+8;NkK)Qns5F0}FFKq}DLQ;y z?`Emq_GM3QX2HUS81!X3UhVNrVjyd=Rj+}81i(n&d26US_ESD&7~5N&3=75dPZ&3T0MIvYG{&##x5or zx>U+6d0qKtWr;RmSS1*$%{jV(M%ZD_ETvSu2rrQSBIIr%`bWcM9xdT1 zzJLezoasqfe-PJrw*8HG`*U{3ek0<*+IC0XyaDqOHjMEoAB-u1r{GA;^MCSF#$& z{NpUk%pYfJiuxC{YI^<8zrSfRaVU~5ieSSpj;m|qdUzn*>HU-N2e z{UN(5>`!wXD>%79DE*?XFwdTq1q*|N*m-=GY<7j)MqUg2KEMfy@RDvr(9-&+!Lh(t z|JQR$`@hSsK-USv_76;(z-p-|^v&gA;N*Y?L97(5AU1hiy7TLuKyJJRou-+G#U{&F z@`Y6SfN%8p%9A;Enhd}D;{R$K8G!f+cxuv^rebDXdD3xK(rj^QC-g>3&e*N1&kPGS zGxH_?Jf;?oA5Rr)G|$_J1_WI@rU0{A;-9Esz@?6<$cOHVi(gx}zn%*$i2jepF&G14 zKvm+@?D~=iKW2BAW(9M>>A{Nsf!X-yFKp`t%h~rqyOw(5A~0B4+^lZus7lGGQ(q%r zJfut1e&w$^-Z=HFGKMTtm{8+NQZe+zY#rGDP-e){Ba+s*Dc>{u0JS`6HYpq>RT@U9 zN>gd`j|*1jcV}b%28#6_oP-vy?NxuR%^MFk+D5iDcQSqmm{;72EJTsdOf9nA9n62D zoeH;^y)yZOOR2^@KBACXv?DguTse@2H8Oyw6wOMZln1n&xbn!>?po=aCDF=NR{!3N zR>0CSD_yO29u=3s2b`ue(wOHB0ZC;io|w@hr!hCVGf9N} zj$g~s!+4$KEpIK+hdnUk_!lZ4?Ju62 zSCrs)BrX>@uLeaapPqyRt(L7ILE!{_nEv%ByY+BZ6I zk`~>UR$R4GZU>JOZBHv(4Xf7uEOujIo_xP#)3PlJ)4GiCDE7ydk)>)s5gKl|a0==W z&L(JOp7gI&oq;u`V|&M8Y*J)gIE|YC;R&GHAj~ygq&%=GQ4oTRZ0A&pX4n@D){NzF%ZqS=^6g=qq6`)yR|u zwm*p>D!3!{$zB)9Uk4&}4VJ1ELnSx9`_JL`gZpua?e~*bQjWL*5nA$j&5$5X zR8c^^{_cvcy}UKugw%V%st5_EIOAKymSsq1zx6==ZP#`aNt& z`s7a6J726%{VGN_y&9L?IAn60w^@j0x4-y2;zLXj$WSNxy38EAiJ2~$cgk{G1%Nv| zKxQiRmi>T^FbY}$7?L=7;s7*$@NO36W!Ikzmt6Yx@x(()1R{4&KR&+}gqs-v7D*)H z%I9rRS{&5i;O_0o!O5f3f*(U3!MA_lRKkQlCH$Cv?8;f9?DE)xWIIRD!T4TZoytgy)a z5EPQ92-AFfT>1p9kVU1C(9 zTg#d&COQL7p7K)a&TT%U2mPx;ehQqa#3y-z!lu3ZwXIzev>Dhlmj1bdPrhLQ8w*kX z-|^L88Hi_A?*RHpfI5-|Nn~KhYUw~41 z&=;p5a~~v>HayIalei!bXn+Ex7UoRDAUz5}bdty-^yx03^J}8$IH>L+1wY<}=U<2? zqIQqgVfplthluAD9P=gsIS_pnhn$gB$aTT%J{FSf{iZ|@GlTI37~(-gc7(IL;%+OCMkdz^E9g`nkSbjJn-gcS`QK7gXBqhmthEA+Ix*U!z>O%cFT_lX6D@%(r1VU zGv^qAj0Y$R;X<2qo{gO9cJx#YpP)u34A;`X)y016L_O@cOh=5`xHxB}c6P`xWo_#1 zqAGJjSKuElDttJwN)Z2xP?nZ-T5_I)*x2@atsffeGs%DE>&t5kFFW@^A(C>l>=Cm& z%7U`a8@zhJM`I0F+l-bl=xo;55_HtApc~JaFbKe^8qS%^eZY@UvsJdB79Yhs>=DQ} zk?0!uD94+H$Uv|*==?x;P%qe-945vm2nFRe>*lRazvafo^VzN8xBvkr`}@bXfk-KL$k`4F8DEFiiv$Ct*rg^r{O!#P=ez;uQAWtG?Kjm?J zDNFoOvH8EKOz~c9NoZDDDQ=5C5ZI^Ygh7g-w&0M?5FViBvF+VTza)<`dzqWPBY`CM zBQv6f`>(rgRUC`MtewF0=dVGL+JdyrROd#>NqwafO=(+dHR+5UE5{o+;Y84sw=g)QcoSG6Y0{%cSeoNq>8zWV&c?3(273%6B;E^4T ztGB;NqOK%}8BFW|UZAu;-hQC&Z-=+vnzE1uQQ|4>S1#@vl8KdyRF7OM>(iF}w5!C} z)RcMk@sW0Q`uT7U-JMB~)x%)cZ8JsYX6F6d3lHOYYx?aQb&uDx%>CDW`Zartn6rHh zFkxPUOssB&r>AfM+1VfVH@RsE@U6)&|8m-rCK}|sZ+liqJ#yr`8^@F%MiznG#yy`7 z6$IKwVS4=qe}u#J#ZW2dg%98!ROKzlcl)iB13Ubj?Dh?SiD$$5?x4EV;+&xcVs z`My6hxq1sBoR))stP+cz2=>hfqTMC1KgM81#DkuW%#fqCfJc!7f|CJAin$lVFuG=zegyXe03{$R4i0*`_Ua@ z19hLt2d^~G1E<9Nj$hc+zjI;p6SY-4?BrZ8rwByKmjcXmA95Ff20A|u#@tX*_f0uF zv`>khWP@J30%Tbte%`Jx1ZuY2+q9G28)a4BSS`YivN0&AVTBn5aMG2-LpoEsU%aD1 zVVVbHX~aIWKQT7B1#{GQu=|FY#!H4&`@LOlrYg}Xf!`&4YB~4;%V;G(#HumjvdQZ6 zUD#jl@yTpKUs+70dU?!pF<;aHCrv#;mjDsUOAN?zFTNslb$=r-)4tqt)mCpM+c^R( zx7E~^!U(o6BE)u>FJz93tf_(WVyN8zbU#SLV{~vIM@xSo- z|91ul0%s87MzQKOp-rRyB`#}$iAy`9@`h|2xoUOwbztHWIQuo#i6F=lTRRAryA{1X zB+27R^x)NaHWwB{)4X}M-w_q2385G!I)Qe`kP}JY<8Q9q zJ#WTwH$SO6rIkXu{jv{_uhWC9FmO*8QWiv!EUNCv>VtnQ$~dS0*L}T8*A6HI6@*C4 zVvw=!3USXxm;XdCQ@5|srZ66q0j3xOxM=_hpB{uoPVe|MJFaL!`rhoxML6x$0%x}- z>tx-a5u4d!^1Iow5a0WmmkZ4JFU9meVn(|HY$1{~bryMW@G-?RVwoV=M?gn2S6XeH zwN|I`a%Gj$e!H_D$KY>5-SZ6 zPzj#Z?7mba4os1jj~O=socA}-8E$>>yxaAbbHx^6D!gtrbh zGwk?+^ju;-w2sb?+hNv>L;Dhhzdshf7|gV3i>$KSTD4HyUk&mPO#ws#2~J+V6hv~P zwY(nlUWA8vNAl@CaXrh@Jf~zK60P}$JhfS+N?Q3`I%EZ+BV&qou$NQF@bmEn!JP68 z40Yizh#I;wZ_pYb1P$0}6#c1Jd%=_cmInLUkle^QF_iJocqVs@d)C+)ErEoBfJn zt?Hnq|@V}sTmcEhZ@~+uC4Y4XcRS34q{w*@Z9Oxb#Uoxk2eSB z`{m1_Aw;eMDzIWis40p`hHE)-n!)^Lt;xr5giWSpAQBMu$~A4|?o0XN`6u?E`L(XP zv_xq!C}4mH5T_g++;{J|D-%epS&>Bv8^rsUIjO5Rm zjyF?|7;1vJE5M3;hx+r}3jH0yy1&}*7vpv`gQ*dK{MpS~=wK3LOJM+}fia+Gh8`v; zLy=cA-4DBQeX4^PkF2fEC7Kwos8a69o#U+1oe6rRy=fymSiimZ_VNR5oVmd7RTh#! zC^=B?itZYdTR9%%@emgy(OsbYx}pbix@|u9u_pfw!62BkB769fo4psD=LywwoU81=j#s1x#`}-7cj%-y$b*D^zsRz;}Vf&yx z%Jx+}c$*Ne7p}%8opOx-x>9YYz#78TqdkfraqG_>AKMhMgDi$5==p~DR&nqedzdTl z=uvv8Z@(wlF{TbCS%NA%2iwemC_*u@6@cL5H(TnX3bjnO7V}Bgd?T=#?jiw~ zCY%J02Fj6U`0o&HSPMg)MqL92|39~h6rn*ByWk)5;Yh@D)NfR?n1Ln}6>~%5wk3Lu z7rob1$_?Zbu_`)3SqCDr5rx0^H~Boi{Rk5;Ly6J9RwUiT_}X(5*_`Rlq3m_U(K5!+ zP;x+b`V|68Xhruku$&`$%i}9EdVw{!#77V0Bs!6=mS>?muA4)_AEg@bP-_~(5*BRg zFqPPU%;`4ej^xb)xNd`HHAeZz0gL^|0mIF{?)ocPM8fYIY#hio_ow>Q3nC=2zpC-X z@>qev)=cm}4%mRcY!WLDxy5RqYYO2RMSsD-_5&;RHepY#JaFLL7Rw4bpro4}SoKeC zf`%qY70DMl_ zsLvMD`wjzhXi;ZfH?DLW$uOKr+F;!-tJ*9|@%q`kF9>Mv>gSY)Y-0Cm*{v3-5a})? z9Arlw!iAbX?wCZ*=cSH&U*Rz6T8u3y!;<`4QIS_I^nCPLjhOB*TEm=(U2)ci*iaj> zUgD{iii%kZ^eW>ia$c16(>7L(86v5j@RYy3Tk-xJHP|!EJ$~=O_dQdPA5B`gabHs~ z0Yu~w5dj|cACO`Jevj*cb>~-q@(A#|eQ%$3(l=#WIsR0jmk)(%{zgXMIe=@{?6tkkab+dRY%Dgf}}H*T<|ls>6T$;^gJ@e=K}9=2|;>hC-I*lE0+` z70n;mQ3q9K9$ztPjut#;|Us!U%}P|BR}K^iJ%7IdLFQAfB6NHt^?s6b&2P&>f zth=Gm2Sb}-iN`1`Q+Nq($PN~rqShJqZWab9!)k}f4ECq9y6Fc;RGGn^)i0ZCy``!g z3^Rb0LM+tdz3=|$VvGG=OE;kg41UdgqI27K<*_VVEq{Zxesb${TN$2cl#z>1gx2`W zxAW9NIzwR_8$3FdQ+?p{y2-qFRNL1f$Q!Zs%*QvPr+NP+0qeVpxr}| z$#@bhojMHX8`D#?#QsL|Ap=D#py~L?2J{Ii5L1m(PT3FLP=Vvm41J44RwmgYOJv=3P z)6y_(=tkx%4&*cY6h2ueCjut8PD47Farw`-p~)1L+Z|>%7(@8XK_XhF;l7c%iR+JX#=r+7yb-89FXYTu*hZ=TK-} zpE&y?EL(9x9K_-%_16#ibJ`Xv(9e?gHPo8+M7brrdL%+=C9=%hs@teS*Yr;B0A^toDqjz0EzU9E@d!z9P{BfgMh1@qouJF^ z4;>-;HLbV8uSx1VhMke^LXg$j_WgGn-M^h9_6a;co_vILi#}O0mld4I02=Eye&!oD z11PGaRQDv%= zWKk(lidD%i=N=$OW(|kL0f09%u0kov)A_{#Pq&Cz9@U=xqZtvjxKJ&vC`D#PqGDsz zv|6*Cj=~bBnT1wE?45g-z8=zTaj>dQ*E%z7_a1XQtlT-Pa`^h71MOvbt2sSc6cW@{ z63M*-N>wNR2co$vV?Em$D*Z4;iX;4>+}SySTxa;4oJqM(pr!`*Z=Jh`&R93ye05vQ z;s9v5=F`e%{@uA-S}{?_0-L#VPG7S~^@^$J_eL|OM6(=ziQ?mouibfdt?2`_6W;5x z@!3lT3OOnUHk@L9WuHCJy6D^dpP$GTL}PLP;~?(;I4D&O0hSIZxa!0L1y{ePTBBQ2 zaMpocS|~ezyCqmIni-d6NVp>Z{6F`af7aGyrXH^N8)$UrzT@-P2XqtJCXnY4AK@b* zOHIL&GkZr>2!wp$Y?HnDZg{^2(3_Mm>LuPpIU3Xc6I?k^Oa&+%UIEN|hjV7*eJU`s zxs>4cuO~Yf&w#~wY&1Hve}Zdtm7JOE{TAb$ZTD>3Q+_JI2qJ7J3y!f4QWCe7BI9YR z%gi)_*wDB&2=UL6#u6_ohQzOWc;}_J%46GV(LPKK1ncZ>g+w!8>Skrgsw>ZP-4d^v z4aC%olU%7*qzCjvv}76!EqI%MM;WOo*mC@ z@^fSfm~~2fRyq)_3A@4=Czzj}rV&5Y#+%3P%WBFQcb7)hKrx|bRT<+Wq1={dZ%9x+ zIP^@}Q->o#@2BCL$3s_Y^vLqQhhM2ONzEdu05Z?M#o1^vc58I2#Dm#&s4+ChF z)gF_%MHXw--Uv(byjPcye%hS&M~EdgAQR8_3zgGGOiy=l=!T5PrejlG4b&!Y7`$r# z-p^jJ($Z^HES%%HE78tdIz>glRjM=%2S${!kg;@wHuGAikjgr z3HZ~l3{N~pwxFVnuQ9EaqPu){6vv+XNE&;3Ywq1q)tY3(-1;(z8gu-UM7*}Fa`sG0 zl~Wg+R;>L8wsC9CDVEIGJ@-25!{ehRbtuqwiY&}yO^nCv-oav@B4Z7X(msU<%1FCk zw04rU_*aZ zessY+z(1jT_wQMqD5ezww^&`eCMsY?sKT*&+7B^{OrNArO(0? zr`y0WsT1}fgNp=mIWMN>r@EKA`L0*Ob&YI)q`u1tN8e;AOv^QetUmg_+pq%i2#((} z?f?U)9`Mb)Dm45}7RT6eSaJCb5K$MxhSVCs@|Ouk3YgV&7RDk*U(wuA8ig9gR?=x6 zHK9!OFo1S9j{~0deSPt!5+txN1c+KhAd3xmoFS}Zi~=lwrEwa!+xeCgPN(b#+mOl_ zYf0Vtm9>(8@Una^jZgC)51&MzeZTmLj?_Z$g0V)=^vK)XrE?6U#CbLbC_WPV=5091 z2tKB<{5J(WqNc{Ori;&>yZ%zw=!nWY`eDON$Kw(Ydwx@Ucae6Rv7t8)Lu1a(M;J`> zSGC^FqYXN`@+`|pV_VkPsXnaw#8m#3l>N27`La7HbQ^eiv6J5VrGy*d;bLcOi|gOZ zjqvkP&G@^rLP%taQvW17z;tNFrm;Ca3SvJq#%trw_FE3N2984=?rYGp-KiF z9D2jy?&4Uop3#SMo}XeauSJXJ%P!hNJ&N}J>gpLW*;-p7#OZouqbl_R0#?5#2c@Lv!V2s z|M!Q^lghdQhMtNy2*H?2Ukz;j1(rjSnE(F;DAkewUw}%~7G1v=7Y804{RdEna)pgy zQnhY0@t4@2L)(b1!cT5QU;So4$F81ax9VUY8kGmou?tnO#p1R6V#B92?~!xq3Yy0* z_ti~#7^wd3H~ z_I&b}68Cw*8v?TdCefB2p`t)R0Tc`NvxU3sl0p6D$!IHKyjkVvOyd+9{7?7m4@Lj$+3>axAC#V_&ZAls>1(1B2M}`HClA9AWT-E60KYKrrQj7|&im_atGMB^U|BD} zfZxsg3){s+Y^>7llGI@b`lw7VaG^JqmLs+P@A3dpJn)%?g(?3l+8w z0gz~lwd~r3$1-pM8Ui@_6%Pd&*F`xfqd=oq5gLv|%WM8^mCc0WFQ%TtyU0X0DHH^i z^D34J%ZQ3GF%9qo#%xUr;V;hc1oGepwh6>v99TQX??J4CFpn&#EGcjAA z><0ZmOfJ4e(?=hTc^7_L-u$XO>j!Tkd(3TiVP+_HFCGvSw`ApKDK$9e0)s06cB1H? z-%?`bv}rGG-z*R4h0v_tXiVXyNs=wHwC3aglr-uIy=o_0_Joq7+A1{-P}S6-RvnID zY9HFimVcBfaMpXOyFoXfS^57^2a**<>@bk5RHyb{B-ye@-XgK7_l+$@p0ID8oQdcX zBRzl%vMkKUJcTe%n8nd$k~g5O7tOlnX=a=pCAKHKn0zEbZL`6tJw@Ws-($6{Hx>N0 zKVaX}iWK9VA8DAkn;?2mhq3i9V##P~u%X^dt`!>I@Jpo&S4<>=pO?ny89kyeQ7Lia zuJ3y5taE^ILh=JY+S=(}jD-E`|J_N2e%&jrRgsD46?B zA(;vrfqCdni($seM(lGS45Td`(ytxo47Vmi1EOu(|r;##4 zAuq?J%}aq%FX`61A9YFt`V={K7v%vsx;UHo&d)2j(|F5ulRP41Sr)6SYUp0 zYX(h8D=E~@n1-qbDmgTDforSi=q7MSa}jg9Ry;z5`*+vL?EC;a2A< zjVXe!Q~Sk)d)*mF6tOpAADsFo0s$;oj6M+C(9dc0=G3GPE&!7IQ)q`ADd+dz~SAy{NO-qqWe6w`II=h;Zq1*oOoP5yGQ4L*` zIYT&<3Vr&XSS+e*31A^XOTiEHU&D!ZU+Yd)Re-7DZnkOXCH5ba3c{Xf3fwCee~lL)1egROtTE7P*?tjuw!% z$~PV?tCyVUiY#!N%c{hlG!Nu#{dGBS=$OJ&sGQSoxJT_3fz}#KzJ>&x5(k;eD1H$0 z06Q6D4$vS|od`tj#pa?hTd9hwPVMO{|8KHNX|`{tAh%rNlTc9=9bY-MTfTXnIf~_H zs~EZ?C4=H7-_E`=WxnYPq7|OW?5JWdC!;}56&YVr1k-MMo`XaGvP(kt{R9{;8zuff z!xt3=3!e@4aiZI1C`oMkPX9(-(7V71-`bh=%r6Z@oCc0>PH%X`AU|&8@5xnwBl1TuW7BE9^JkSbRQ?Aw$)40iZ!(M%12_6mY`n9FiMHI{sJwBQ%r>Z0DjVxz@}AXI*bQ-slWI(E}!Y*PmmRIi67<@GM+UN_@SmeVTlx z>L|P7W_3qSNm9lf)BKOjiQi8WectQev15z^;N{4oJG4?kT zDz1l{OvHhg2?n()gxE;y(IJ86n^Lalw{B#zzF0#Foe7O3Xh~^p%RT1CnJDu_HOOCT z(W5+s>ueak(!K?>9=QyYGy3|$}`v;A; z7OU?JOwA+VNWaXS&&5U3l;QP=R`5jRH9)ZKVK<;Pj`dLOAwrbH`@@&>s++!xb%Mx4 zZYZRt7_y-~ZzTFt5$q-*Uo3*HrXu%>eIJI=ow{1dk~B1r{5HOHwEyzH&-0#C>@l?o z(w>PO4X}&LdU{Q>>c<_612&e2>z{m9l54rMI>oVUA;!kV9G5NH^HR=2M`4^-k&DPMDmQt>#a1|1@izTSHEEVpJh80PAQwE2N#iJh zhv~_JXNKEii8sX6P_P;SzjL%RHUDB_iYlEe1*kDY1cYNz*}U#>p@^#~(u8=ELctWc z)(NtPbpLYQzadM{@Mt*}eOe&nO*CPT@Kuy>Bt+5O&zD@xYrChyi3C9;W0FQ3u@`L} zbRzeIJVpIGjuud@=m0Hg}ls;Q})2e2d z3V4g_8_0Ha1qP^A7Z`!^!F4cwkHLc@jPfmq$p`U9)f_Z-adT@AV|SA?Xc(Q4O$p{w zC$^I*muJUzw#dlO&@A{~YuWlJckc041ejj;-rBlz!{6Eq$*So*@OCz96SF~@y5q;~@zrxz zOmK*F9Ma%2XrEf#yaCE#1HvPb^Th)>yo~nj(Zs~r2*^M=tg?_hu;Rra8Br+*K-@zZ zwS#9rp(J)#hEQznnL9w)(VBPKFPT4h*|y`8RYGNu1gUr2D+uF7J0Z5BSYf?*VETM^ zW8~t(BhYmsIOWbjB^e^KiY1PMA+|{)Di`U;A zDFXkF64$r6&`J`=a|V6nz0{hAVeEX7)ravkKgqYGM|rMb!EENM>9^C+^|2L+r|HU> zMSTAOj6eA;W#}@kMe!Rlzs_w#RVQr~g7eOnk3OZrM<0x`yYcEQUe||l?$PxRQH>~_ zRn~HeO}w2&yWhvGsij{Qz$SikrDA=<_}Dg(G;@n)anpbOv;RkFYTB{6sID|2=mA{5 zXjNb>RhOmLMYGq5q%`o$A~nS|tZEst9Ib)h<`dUc{hJBE+P*Cl)(B28t*GZk*BKT8&w!q5#+*S79SzqDW_WYm`xAzV7SP*GTl)wR11|?r zXpp;C@oODFPy`c6&6RjnD?92WdSCqb9e%V*B;kMKgZDpn183!BO=U#{rThQlH%}jn zS*$;6P1^Ow|CQj7Iok4aW@x8ZHNl5`JP}HcrI@Zd;n7=o}B9lWrdz&3Uktz6n3La~7!GK&NmI85W|c?x-`Q7a)<{o+tBSw}h(vje8N#4=~V zbxQ|KdAKp(ToQT+*gl?KcU^>vUdB#P!HyLHAX??J7=3AM=mE3QF}M+?w@1|3Z7F;B zWSPgeWj1(v}FIOYQl-_?}_lO4}$RkUR4<7NdF!1{s9+AIL|pYg-y zqkjOmIDn`{C`WkuV_)?jz=2-+)WC;0juqT?b@t%asqu>_=Nf;MmN?x)ZJxz8av4?p z;ndj4&}h?`L-EhA(BGhgmr&8~zu0jhP;LMj5B#-$v?;wIwD*YGdbXp;5oPGW11fyHHy*L0;1m2e{$KrQ7$$qI~Z!( zyHYc zRwkG6GJYr2FyW%6>4^Hpm3N%Z25-g;uW`o|+P#hZ7;A9#0C-Fpi2gK!iPuCk)|Q8f zUqZ86s3t2i4PN9iX55#cYpVX0;zWi>J=agBl)zDQ=D}+ck|~bRc@>5lVmYg+6pzMR z90VPK!@*lpvrrXeH#=b~Vu{CtSDmKDF0oLw>2)S&gue9Sk6};uwS#G#omP zCzB~KmGR^t)WX%@XpFg$dY7CvdhlK3LfAb;&aNB3z5p_N_%Q&gbOn7a@6ka&!y6g2 zJ517UP{gM_IG7Z4J`KQ%>l#n4$c3-n<6C+|ZFl%(4vCf*@AXYLHJJRqv{NiD2i#H5 z|A8G9E`-gC8?0u!IYg5cFCF^^7oPdwBL>YzFzK@4z-JxQ=(ho{0)_n(Pqy^o&O2!7 zedA*hfcw$SlL;PO;vLV0#Xd#Qr>vR}f7m>`yNp>|Cx*5CJ566a+|v<|10GLlva0TUHm zwv2IWPY>aLTvw+&|a;nB2xYsG%~qip}nrtPl9%Zz8)td$NeEw|fz50I;T$ zVP}qi8!%2ZXdI29S5%;t?Uk8yhi2i;JmFlGcW(bkpP?h#ihzQ z9pwD6#8+jjW%Ce0V0;0VJuzL5ti4V9Z z9n)W=i3FU2W1?lK!IyD3ZK-=5gZ*K9WV10OjQ!*`oVfc%42T6gfOd?H0IzSqB5If1 zi`cwNebIcGnjsMxalGj^b4QKPCfYFj%KbUvK-uGoo+~Tg^F-D*E64o(L}L8UG+Jv0 zq6e~G*(|RLwB|`l8kPzPAR{xAjS;EfUM&J#?K}1o^9Qqqks9nWleAG4A}IxTj_ zx-6QYQFm6x7;h(OliyXQ-xs>Sg7g@d929yotyE%!IBzql=%BQ!`w*{C13LX5v!3KR>-xfzgM+N0g{RehnoV@>?CjOr@B@ujqA+}ZxIGBO$boHtK(iwqXLAGpM z*D7_j4y=LCw-_oQ+hwnWV>ZbO4N@pm=Xi7-T|T4XWkGRxbW4XfalQ||!mUkzbW_)+ zA&{ZbmIQp#7zvP(Xy-MPkRrbh?C2j&pR~~^7@WKF9%ZX`OuJC8f6V~y4w8S30XorO zz(q(KTW>jDOyR~`md~zyw;GWxK|n2{9EVf`D3T;aom-wR!4X5AuMz#QV*7V;anE#q z!(OA8@l1CXO7gKiN|FGDL~_K zsEVziYIlTTSUlo*p(RB=w@^PyDplRy~y| zKNb%>eXI#c*~4)Gtm4bB&y&fcrnV)JYygPqBD8u|>bqCZ=4mK#mc07ssZ?-K=3 zhX{$Q>z?uEJRWcF!GyVu<1{D~aQ?c2Zln}h4RcJy{76QaSii$F@h_EK=i3YPtZs zNcV|KRBoX(UqM9eY?Q922i)F$Frg{3NfAa2vJw?ocS?umIPu*lj}8h7t%f44;kz`j zE}`kN|H)x4+_aGh&a&k2XXH?$!(qrBBqn8Ks#F|2Y@oo6M{!yJDdz4&6m7?fl7n@L zb>6k^z(S|GTk^J~DoH!pYMEGe>anD}OQ*R27G7A{veZF5Stgm+02+R+gQ52pe`9CA z!!_e#Z`t#2+9^!2VwX4IH3Sp1X#&0=FKrL}h1%Fg_N0z1efeX$PrJ5U&d$d_`~Ve_ zPlEQ&2lcnhhvF<}yHzU#$1KQsGbLO#_(No9FzfD-YUyh{c@vwHJiYUw%>k zYJ^jscC)&auk|YY1W@{{8@&FF*vX?Q*`iCXwz5Q34#6!iqXLrvljxG6XpBXScA}g| zc6y3Qt9~dEEqQ0O+uUV@m6_?i{t)Q<7Y=g|Ak?}LEtbiKz^HhU|nbj(k_ z(KHuf_^9@7berU;(K92gKsf`L27F-K_%E44nT0jaiM1+$A01UzL3tn zk)UXGIx4@@R~VQNxmI2Wk=Z`p;zVz20ExM=RB%;4a?yARZcps^_G=x{k)BK`O^vab zjciWBn!6zJbG>wOg5rxy5liLphOEB2)+F~$BmK>FyKi=v zx!ddBK;SI93n1XJj{lppA+6e_0_0A~5?Hqq)CNH}KN#$+N}F!Dlsh76++d~ASNyi_ zUvMjnRPjQ!~dH@8I(L4!-vsSy)3a{b$*CFn-^X-@8>M>L* z)(%$+6Jy!c%^cXEI|ZNNr!ZWlW%OC07#kTcJn)t_V7nbW+zS#oQ8o_ErV5j{L+y6~ zT}jhLss5Ls=wO^I|DhfPD-X~A0wn);FSG@`7n1)L&hYjbkf(+W$LCVIzm^pQQRYlo zDpBMVuHSa*^7UcfZ8PGQ#X;!=X(!BKQ~PA*W}cHia>j@>1xC=d)hDw;{~Ual(qRbA zuWX=-iepNV+-HQLVve%Qp%Otp8PLb#vHj-FH`Ty1`S==DzeTfJSiucgf8+7EJHVt) z?g=1~gHcF$l1n`PnYC)p9~zj=%>M|AB=eg_Qh_Z^lte)hB^zjW3=1R`@BuerEev$< zoWJ`;+Rve<7_gt+n^o5gi;F2^q=x=zl42^Gq;MO4LkFBH5Z_*US9Mgn1- znE&ceoQxq`a`3}h7ywc1L89k61W_WV#q*qFLyMS=EU=A^tsOMH!dKEjwQe%!@&OXF zyU@MHXUY8#nxXFCTHXg7>y^#9n9r56_%r7vp;Im4wHxihO|sW{Bfoa!b1RjjVww9W zai~qQ`~G1#gDDROS1v$kH_YiolNn!ssO)@CuBRld$bbo51Hhyz>jby}w$V{J2*hfD z+E?Y+wpkm}87hl~8lyX!au_ciy-JXWSgB+`)!Rr}788OhGsl0*uk&~Yeol_);InMU z>Xt*!iE%ldndzgq%HPl-N)0lb6<0d&%aF43Tbd5H)Rkd*zrU*7U7&#t(035j}nJiI-`>`T@&&(s}N_QV*9 z@MOhXvEYjfWKcKNnP|*X+Q%bN)PU&%8jh%+EqTXk>A?-Dk`q5{k@T%?;Vkhkpcg*9MV68dS^zt^tqadk+|t{Gj^Lul&c&4^Wm? zD4aikf2VhVA#fw8`U!&$_V?+M63d16`aB+H-ikpI4;E9)TR^Pf-zm zEXN;2A~pduJTh!QXc30$LcuClK*HfDhb{-NJoA~Y$LXKG3MkEAPuTD?NL^9E9cB6m ztG=5VeY4XZF_ccDkU4{7Swvtb5wYMr63 z&AzBQ?#YpcLMfCPop+K4A(p{KgOXZ7zfkjf#U^@ZYN#MmG>2A9e(cXwU0C05bp1(a^a7dfeCh36fYK&UI0=o_%$zv@3Hf2`2(Wniyd0=X8N18!uwv^r!5pjXpGsMc?x1ey{So2FUHVc=d9!tv`H*TW|_x{&UG;4FDeBqLmhuUfM<{lqY%xR$#}sO zs_Suq#!(b0uDo!TV4Ci_3xI#kH4Fa?k1cwb&CeysS}Yl)|L1p14+FizC^$=!+R*^@ zo^!+iUMJcrZP>t8=k(}Zj~fp9Tvs~&^E(=m>3KA0A&%|jbdW#>70d-JWN1572sHiY zcU)f{8TgvSzMI$|*$f1EnQc$pqtU(Wq;`w1GkNn71^{F~thj2!i)8-PY`=uJj3E0; z2)-YIIqRlHC!YKjVy}GO`gtWq-)&ip&iEWo_j~hH^YEAZ@8Iv*fi@z%XJMwOGA(j9 ziaJ>2T@8c~4(#3E@Rw>g&_|j!o6WR6vlV?bQq1VJ8W~KutABy{Vvn0lz2VH#>tL0< z=;mldssiwf`C}mW5Fx!YARAEB;J(c!`j}RD*+!r@D}r$Qf6|^(PWWU>kZbn``1>46bM% z)Ro$RBy;jE8EGz~(RUNolSzn-+WTwMCg+NuaG9#&`6DdZ%v8KWdE9(n7Hn$LVCqPg zAAlEse^^}0aXfj(AeFA0;XGN$=xLCoTRf1uTxClgWuGQ2Q1h7ly0)scF?R;N&zj9s z?zT9|%%N z23G!p>UE`wXA1hl*@}C#S>W{;H#G`VRe+qOG1@>uVVL zb1F2J17~mCeTC7!f2U^53*8Y+U~q;4c%`f3?p7>1MG=po$>*J^JZ{C7t&TWv$HOrl z*t)^6xN0GXUMx9tM2f1m*i3{*V&vruBG)NB&(J8FuEZ_@kT_uyLkDCO2_9qp;IEpW zLvY$_%G@5*kUB?fS+ZD(OLEOtoo3PEY8|pwTk@!J^nVdWVagDa*l#MMO-m&0a2LdK z+oyWrVv4BneIjEVQT$t94Zboy*JJPKWP6|`O2}g<4obn*m3M2BLeWB_N#Z-B#S{k0 z$}F;Em6{O*P=J;TmiYD(=W2H!;A)JKZ%IPmReP`Ggr7N@&hYG1y`tK`)N3oYvY~ZKwcHXubVPtM&6OJ{ob=W zn(}}PhjDrHRxg)6a!tJ8FV=C$mNHfOP(DiQk7@Yh-&+7bGqO4V6t9M20*JNdq4Y zFl5yZV#G0dCX&&f6?uQ)2YPPp zkx5TUsYHAuuywuwgqwQEVh$89}?%-p?zey$oq@Y3{=8?cgD|?z(M&aHe?WI zH&ZwyLNZMM`3-#2!)NjOi95Ne4A!o}{_sizK!`tVCLj~47~a1|x&-c8mBlq(Z%66* z6W@KmsVT9ErkB`R)eEKjvg}czh6U}g;Zeq3u-st9_je77#B)wNSTY0WG@DcHMXxY@ z<8K(6s|DwCu&|@_*3QIA0E;v4nC@^p_0S(h8H#NyR;9hsgKt@S(>jp6I8}MJ(6aWM zfC0vaK>zU@5m&=3qTc+cigGvtEh|3_YH9t6DCWgUagvCJ50fycZ8%Z^=%9##Wvm_& z^#B^oOZfhJ#hO;Kwo#Zq?tlRFT{|LpMGkClFcf;nkspDmN~Wm~swpsA)95_kAT)}Y zY1;WAZ5CPDiZh8jn%^2uO`R8Y2o0oq0mw`R1IMP0o>N7Sz(SCvWW2 z!y{SP{xgjdJ2Vpgnsl1wN?Hr4~nz~1Z03f=B*N~#y#l0@&1zCTe0-h5W zzYQGzzG1igYf(9ZoGa=L#>Z^9M;Jva@{&_mS>1~%a7VDy&JTJh&mejnLo`7oAY|_y z@>Dsjbm{jq-h1Q{U1I|Y_wq~$J!w#|cLTh_-IEWyfPY|3?eF?dL?*?LBxb$ruXXT> zN8-$hu}zMXz%FH}8z)@~BRu~*SHK}00gP4!;^;gB<2;VweZo9ZvCgRw6=@G53=Qbt zNnIns0A@pm&ut;DGW%b?+qEXum-NM07zQ<3xqb=E;R`*;x5*??;rc7y?Rs{lZg1{k znR7%we<&%)6B_ek<(vJbx&zg_g=jW`#

    X4cl{KylFs^^>57o>pcm*1VsenWc^nL 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

    ?v5MvHrVbOPdWlC>rIK3 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

  1. STATUS_CALLBACK_ERROR (in module socket_protocol)
  2. STATUS_CHECKSUM_ERROR (in module socket_protocol) +
  3. +
  4. STATUS_LOG_LVL (in module socket_protocol)
  5. STATUS_OKAY (in module socket_protocol)
  6. 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 e03424d3763232a34ef0f7f87bbff87ca9376704..1d105c9b6fd8984a4fde85ba9081b6033cb27502 100644 GIT binary patch delta 634 zcmV-=0)_qO1@8rrfPZqEFc8P@ehND6)t=^>8v!L@jKM`BZcZ9mYz;L=6p7Ti^)>o> zeUb{W$9CFILHK4%`~U5SmK8|Bx1eZQ2_?A5t@8DDCz3h`>!Xzw3G8R7+U4)Nwdn_I zI+2%(nH`fyiiu4Soug+;B0IqMD2kBVz!IjIb#spT4+A6Q(tikjiV-Gb5M$#YQQQPT zoiGTHL%c9B!om!rebu7pB z{X5&4Q#~ZZXt?|lIddE@4CQ|KK>a6wur8e2&%;Ga6xq$_r9nuj{m#*$=kMgM`>$qiM4vRb9|dzvZ8^@T*Q06rA^8l)@K zd)6cfh04BUoT;%<@f7%$ULf_I-3B@uEs6qoi_@X8*|;RP*KkEe9icFBu_#ys6bLxHCMeK?F|&|iX~NYo3l0K*7U|YuC{iT*ZiEE z%o4#Hqce*YWMh{4Ke7&gxjn*y#N3J delta 626 zcmV-&0*(Fe1?L5jfPa>nFcio4J_SAPR!?U;y9{J1M+KWe?W}TQxD_fAOTyII^)>o> zeUb*yqfXmX2<|kw|KI({+)sL0H#_IA2sT0B&)AJ4OaEuF zjcbCDXXp2*w108BBED_5CuwiD<}r@xxySrolj*2_h#$>N^Mem&u$WW#=GdloEz3po z`2%ui%nZqp^p{VuJEQT!QXbCGQ-9GC6I72-7K9Nqe-?feS(K4t^2v8G3kma3giJAK zLAdHMm}@Jhv@H1sYL&>jQvGC;joE3u)psuFR3?@HmVYIK7z)bgOu%4_=DJdS5c{eG z_EpK^>iwf*E&mixc#`z4=sz$!wP9K^Ug?y5Pcsds=PwE7r(Ak$v za6L3Ck%HK=E2O!5n?MJnWl?}=aOQP^ug!6!kPL)oiXFLwQ6&h-o?$qpjb|`tW7-u; zCU~B&xog-Cz|{uSt3PkbYZcA zT*w_bS~{=d`Ss(ca*UwbnZ9g#^3BM6(fq~d{$+gHXrYVtW2p76fR`e@RUvk MW+IM$1CE%oqj&{9$^ZZW 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 4ab710a67cc3375dc224836d4f103c2a7f09d18c..6d98ce96162dea9f3e9e39416ce14167ecc75c88 100644 GIT binary patch delta 731439 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

    gsvBw#GTo_JZ+y5l~NC!xUh`+(OeL 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

      X4cl{KylFs^^>57o>pcm*1VsenWc^nL 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

      ?v5MvHrVbOPdWlC>rIK3 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

    1. pY{6^~n~is|3`#K1La&Q#2a=z44FC+p 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

      e;uFA!UB4EhU5C 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�$F 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

      +LzlQTZYaU@7#T@Y1nL2_$*wNxYSQEi9 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

      avVQL-sDaysyGj`M@**@-{Lw;lE8W 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%0AWtR%gzI3{ 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

      JAe4u0ohv=NMv>>t$XNoM21o1S#fN^ z`Bb`oB3&Qq-NFOihgMj6VjMks8B+GCJqyNEWHbN%9u^=vWHXX8+^E`s((E1ut5k|ybppXVwvVrzJVz2T@V$LAS$vY zQhOYH7n(@onu!Jh$Oom8HkxktIY@Zi>zy8VbgZ{J8hcC5vCez#D;oFgu}e&;koHKf zxD-vqI(jH=dG=TsPxQ+gfYZYZT)b&D)#m6{&JvftGj6f!ms`+%p{<+fI*n`%@_#CA zVM0t}mP;SBD7Daa)(zMQjRATMMfPa&Fhg>51Oh>rmJ~SHEb5;+Q~!5T^^`?SH4bcSYP$(n{tR1(cvn|0I+iB&!PT6R8Kuuu@Zc+Md#{eM5JhB`@b(a+wmVr<`qS_RTxeaDQa0IR<=U z%35iNNkGHbAr=2Pl&mFEV+be1q&i}=Q zl}TnB`$M@u-L3hGv244HY`(JM1F2^18OF6=A(Ug@_(kNQO8_-)S`O#L5s_wBHhagf~a_l1I09lps8ClFV=O=mgUqf zY9d?wbg5gS-6ny?ZX)<8p-E%!0ZRY4wzST*k6Jt3 z46lw*9iDyR0qa2BBD7+E+*{sxk)Oe{+#Wfjnp^dpu<+~xbPktNnXq;^{ zvh8;)QfzQs(tm_Ibw0Q{h4@FURqwjIyy_`|tbWO)e#yMF`#@E;#d7ko9Eaq#(NX1E zA%4DY|H3B;0CExlM4fR`2qpzz&=G8}y+A}>csaK*`%?O?1AxjMNdS=36k3)0XFIXG zz?3_-+J@$S#AO=$;4e8~oYuP?dE9e&gu%oJ`$WVfA%BaNv4J=9ung&ZO@$UwlcS=g zZs%(--co^!V!xerw8hii8seq)e5!C2#rP^WFa$s;{^q$iK`{A903}`$w zYFYR^z0%0+aozb{B$J#g2#L_|8*asINp0M&KYzcQyUy=oAQSx{P=#PZOl_!E&+l#% z8Tsj4uf zH^}!yAjt`<@EN+gEg9>_j=h#FmM+x(Ux1wq735pfdF;JlIg8B8ydLVbr#ZR0Cs+66 z>YiNP56;ysSy+k2j*)>xCe|NuMW9KZJbzSIH-uci2(Uj6Dz+$0phhiopJ@Pg3Tsn% zB9;_xf{;Ye&(-aXgWSgLW+^;fHa_J+fbeM0r8W>tDLn1|dbYtQ)}Ke`xKcaYC~Lny%DSyyZy060xG<8f@?3m{{l@kgXd zf1Di5lY@DiuXFC_S1|#|Kp6XIa5-%i8}5>KGgJ#E+0o^XmE@B34ku1Kb(3Rva_mly z-N~{0;2gV|EjvGU;72Btd>!|JFn>vthw9di*%0khdgg>Cx>_Ye{7jv?&NW|*O1EXz zaDal1>ZsrSJ-SrVxh~`N*6&4aok$gVJUe%)hGY=O=6DfIXu@HUcJ%3Plfu}i9fLI( z>s=Le<7R7?Z0mcKtT~r&%~iuKYe=(fYXfS&PbLeXPZeug1vVZR*aJC8i5*^JkC0 zMnB6Y2MlEkBJxUNLg0Q4G!^;mQxNFl{IQ52>PVg0e8=j4%x0LE(bohN135T3m(eQ; zUw>FlYh6bS-M?Qk%XTw&Mjta8FoAsFw$MU|vuJC)aFa&~4SvC~A^rC~lARF3P0{9A z_uO+Ojii~8+!tGEr7vDZ6n~|a<^@Fu2~HZ2C~WumtlE@&jUWUaC*S$ z7G4i7y%W16kcPPg3iZGSB&ddjA8rH#PGJdbL0V9?e7VAoP1q0%3_nVNL6y$HU}N;a zU}KEHU}Ltx@H5qIOxTz!FxW7U@p5;~9JB5T35*^;TZZU23Jl?IBQPz5#kn*f#eX`W zfT(rYFoT3#_0?Q5UpW>-yh3V)l>F_2zJWMHg1!-6E$Ex!6&`7ZSNM!9yjly=oCj)1 z1TA<4sY8NSkf?C$fiWZvOi(FKY0YZ}^#Tb+(^p`#FmYf8X~q|;FcZNB($5^4doL`Z z89ywc8EIr~fx(7KV6dSpFfU9F41YF;1qK_F0)ve?-3E$|tvg1rVWU3;n^$wMP(JKs z3kfzNI1M{Nngli=SzxGs6p>3Pf27(a)ISme8+aiIG%)T(5Du3Jk_N^_qy;9BBrw>J z6&P$N2L>Bzfx*TgF9zScW30p3*#lGuMfH=g34=5Q!YQ_u5d)DYC3l73H2Juew&!4Kb~P3Q3Z!8frdAp0lcCHIGqy zdV$g^lV!=sAScr;w5spF9GR&O$!4&PIxVZYw~BKwN5+P%V@a00svkc&vduart9g!! z50d1e)enRmS-FmxEF>1Het#9`$lR*mr#W(8HJLwdRw-Nhv{0bgGNLtWc6DT^PwiRq zs7;f5ie|5>D@&H@?M03}T9q-gWUe-o^@%&aYR_txjxc8zh(p6#Hrw5*-)Si_PQ=RD z%I}kF%hpC$Lo|{}K_gceB`dVctU{7?qgCT%iS~|jAe+J7XKiUW8h>hovY~5Qy(dkP zjVonc#-_?%5ZEQ!zDdaW>E^DSot5nzD`B)|@zFW@5k~9!_~0ElqVo9Uy*GV+$MNpr zGpO8N-k#oE9Pi3y*~gd%O)B{c8Jp`(=B6=^ERWyY&VOQl8bvF_Z|p-l8hi z%zJQj6$;kV2;)WBemcEA6(r$@4_GH|O%#x*c$@+{9J1wbstX_BT*FCPa z+Ga8sV_2QLC+;2@e|h(U-6Kn~EC$PWde8v7Kt#ViGT}6`tiRn4{j9$Y2hvPdry82< zp7dEUMVKa|p=b!0B};!sM=n{Pv9Z~*nnkLQz&Wx{5hJ;y6nm9>vOLvCj;!LCIFc@l zPaIRT9Y95L0Qc{ag1bziccKLWQz|Rnk-OZOjOx}SumX_XI&<%t&gl5{X1>f z9=VUYS~e$yX}cxsNHF=V>}7(!r0Pog%otE8dzs+!!XMcVs zg^8c&N}qea`{T=JpMM2r7DTXMXD?sR0E18(X3lBharW|J_S4Cai>u}G@_u=Ge};%B zuWwJmo!p)N%X8aKPUoV}(#y#Hlg zl=J_)H?wZ@`)1;_ooNxg!Z;S1K1xeiSb)XBRD;N%x>HQ<)NyyMoA!T70|{d5*&NY4XFFRAf7&Cd&rErD|e3kLTL zUNgANcUE|_4{^q8JV@fne+?lqrJ;*I3|zTdf5yGQ`nd3Ih`iM% zBA{<>s*n~y+C7y?n+@@!8*bffO5IA+Vs|0UK@^!Ek-F&yt=6ROVhhwLNWv^;^NQcU z;P>BiYsszi;rzevg3VRswZ|Bd;^1-)5fFaHvhzghnXhKQ<^qyk!(?LZ3F%VlEG!HwD*A zwSFtAtwf5>3g!1ri7p7^U8Y2JloQ4hBQJX|lXB!jT0<_qe<^}X{%tvsaTr-=*?Xe6 z=hVwOTb~C^tcLpY3xg$tD+UV&=M1i^&~313TvtQ5Ij#whDvDt^`5$TIusKq}4CZ1+ zZ*1!i-3ppC=)t#&D*d*+kr>046q82PFy|()?0i{C2lq~$yh;|&->VzW3<|VvWt}=B z(%iv*Mhsc4e~f;FEJ&N|1~TnsAk+B7);)uHam&>}N_TGP(m>k6-o}UPI2956i@|jS z$S>B>gcQN=10PCz@$fYtmt2xHhM5i129AT5zJ@5-)5^F@*Yk8;r0Yex-lpr#z{k-b zq@E@D3m9ky^t~F2lo@*Wx}nH|P)c{!q0*KY;-Gm6G5>QknxjZmhfo+yPY#6;Ot!Ua6v^D!)(Z&kzvULve zD0Pn%BQy&s7?Mp0Ss*2F+phxar~=c9kZzoHE;;bmrn481w?lW~!<6?MtEXdDf7^n=IfFW4KbrJPV9h)QL#$dpSvtTarUh(yTea?L8CR}Y~V%S5s9(Yew4 zq$a6VR5H`Zw#&&+~-@WEKwC@GoLK3 zbbVLHs$$ZblI-`FD!bR~XxgT3AVahPkv3*cCBDes6d;XqS<9A@%;1{s&YJDcntetl ze}8#hfPuQQCT90p4J4J+X%8ixh8RZ`>oyzTB+KzD5TgR5U$qA6>{EpUSd_x;T?i*x zR+-lHt&eKuD7nUOA%RPwl}i&4Cw!Cyu4(C*axM=-0uLm`MVSsA%PlRqo`#}Spn=1E zlN5mPnV`&3s~s;8BsVF`H;O4tF^i{Ge*-T0%j>>C6fcZ4X<9-EqX^9?n(WY>;YESd zO-5#5q**mZSAQgmu6;z&bx)z_n!1WEJ?NeTj4v5fk?XwGm7-XYEuU#?Akc1KiwIqoo%T&4H-VURWeGn%=H8t}+6YD#Gj9D7$yuT5zigp=g94YPH753P|>NN=(@WRLpAsO`xWvJhM7vJeysS;+UxLMSxoG%MiE zxS(816YR?gJ_u>(sk~^$8-bwqe@tM;d*PtfH{3K`btr<}w_;_S6WE$6{0GEJ3=LNs z{2)%x0DPTjB_)AHH_OR)1d<%02m7u=^j#-}{xHqbu|Rxu-&v~0(rXpwwG*c4YRpI0 z`_3#ihBhvfGfVX$hn4S#-G|B=x0z%RoH^WNe=u+5|Id(dF9+*~iZduR+X*yJm1ZlURzsyWFvxFQ+sV+F zBy#i?BN#2-U=Tj212N+`VJzW93N3_2`}zJ9@Z?3jJdc+zH}&5Tl4unFDn`GJQGX?* zaEu2K`0kVz*N<)Uhj@9peb_WQlAT>Kof{jggtoH9XLW4WYS-1we`YeRDy?Q3TCc;X zsvlB9{`>zrRhDK*8InKf)5~~yvAIM5RC17%W7D*>M(Dd; z)`%C<bQKTVF~*?1m5^>7fxXl{WT%L8>xstFs*BVpj;dax(|89)6! zUcPPCh-((@R%=9qe?YH}d}Mb%qHTwd$T&?h@{t%VN|zo!qOB27XQ60I+koHLYtnn^ z@hyF7_OB?8TSW2sR` zOU=h^sd4nUFHg_7=$K6^xE)rGYRw`;g1E6}yhX+zEi(JCf5;$PWZ*-$$OKH;smfZ8 zZgD67$Z~PRK|bD1TW*$p6Bi39w(RMb9^_DiM-~tNF1Bpt09# z_T`#d;Ur2=VvK?`Bn>}Hq2?AVJ=)r2)V7>yZ%tlkzjEt}!93rxA$}R8$C1!y5QNfW zq%V>agpsb?f33gf7k@dll98J#$U`}y+}^!wKzI0D$w536pFt}$tmfSio zew*h!p6zXAmRO0NvR1ECt^UxE#AN}ZC=0rh6y#;yY&OeZ`P^*)hDO;A)q)iGfH$0Y_`44gsKC-VI z)u8$YO+~0a`N>%tJQyK95eaJF6`zI_9gX4>fAOtEN=~V<;!`kdR5@kQ(V;cjNU*u$ zLkN=ff>gY1W3;$~?FdP#3D(K)j9MBnIxCW(AbHrP1-5p zfAqfVW@~4JGOe}A9)*#QP8e}uPX1I_lot79p`<=9xpiLrR)>cmY#p^Ai&(zxqZazj zJVABY?~{osNF9)Oq<<-+LjjA413{r5)L#OlWPKW1i`vipBZ z@BJoSBM$oHMf&`0y6zJFg(RZb4^alNf3om~4v0^OO5V^W$zP`m!m6p7s7)mXlF!Pj z?Q6Be&ChaD^Rre0tbJ2p-iRUtxTn=SEkajOi`@>3;0Tve@(nv zJA&elTfeTpO!c0h{HO%5{^Tn@J>ZrYG5B<(_?RuKqxV#vuf%tB5EA!pi#H%N zwzhb8)CrFU>Z5^rHv=`1lEqNPK;5OvgD_BYaT)Mc2Eb_nVQm2B{N`H* zivl!f%rv(wJ74NS%X&SG-wWlAe@fw24snNdtI&ptVs2rY0~d#+X@t6Ry5le@;CKgU zg2)=c26YJemL-Gc%Sz`i`AxZPv^*4ZHr?SAJJY1#YEs#yhc>O@Bh(uluX)8K{b@b7^_)b0*-T@0OuO@zhi&k84G{+P>3uwDRdt&}K^w$1U}^r5?A` z-L_OBrC5ik#+KTp%0t*ve{Guu(BxOVVQ|IZelu+V8)dGHrj*3pY77+Z@ghd1bjNAl z$^1Z02f>^b@~Zf)x%20pYGUZ1K1gd?n!%38@=f8!ywCp2?k#tW-hfBsG9JAWQXz}ieD z#YhxZ?zTBtJkEDz#H!JYS`ScrHESea;nm)%nfmJ9o31DQ7-Ns~Hv|o%;YqI>U#Z z8?GH=T&`R=@2hIKD5@GZw=AFVd`PrG7*vNNiy@Jo0};@#=w&63UUx*+MpkX**h8_< zp@|Wo`?kGPaC z-K0_vWJcC<+IJKe8Yuwsk){Tx=_=BAn!Vc#(GzpeMVE~}7F|BDqRa0ObTHban#?NIWQIy5 zWl8h?g*S-voJ`Vf-Q>-qsXE(j-97b=GVK{h%1YrNjFL~I-rM|r8bChCA&;DG#GO(; zwN5Are?*}notic(XOb)S7sTF+$J-rB4ZZiR`s~+9)8kq zbSbV+=jw>t@%WGWXNow;!NpO+3Bb|xT(>wt4ys=izg=_RT zJKpTp;ax{bF=I~u8odiD5KilZsfQ3C7WgJ*$8_Qwbtz`Mwc`Za?7`H!>imJLLsr2z zr8RUdssfv%S-T;wI)`e$D#AF+VA!`se=zLDP;mFa%+JNq>t1shf<=_69H%O0OU6T^=e-#IMJlDeQ<(wZ50+%ycLJe`1iv z*z*{(eO5IUds2K={Oz*VQMbPpl4BIuXgOZjG7`|%=}kSG!(L_IfHL;Sg*x)A*Eor3 zh6{zYDxu99$OLtGNgGgwHsIc`4ftx>0QPAEVHa&+v?xNNvUPAUV!NY#J)ZOrF#A(7uuwAe!6+HgkA-UA$LvKHn1eQ@ z*-g_`V?;3fF6#y+2(+y}bu8<)@7Pe9f9+cT@z+tv@Rb~Hsdz(`Q?b~^ruZN(#a4I4 zR(Hh;nqu3T@_n+pvR-&hYtPtGM@T3K#4oU1#)}S8fo1h-Qmv|LA9}$1e;0DOtUCLR z(p3-qjn?v4>~y&;g3I34(Qa*41XEP5%F5Oax84={;1z#4?`UW2m0bOHoByDSoZg&f zfO#9eD3ZhL948&@6y91sYzGw|p2wjESnDXCX7Dv|NjO!D+$;|;%V7jw7vPe?UC~-F z7--rsx>9^Z3_;qTbsuOue>WihXn0~l&bw4oP=eNXK(z~75IHKl!b;|^z~S(k6I*qta~ORzELW-)rep6rM?>DRmA*0EUv8vbSDx zE{9}2SF(FwLK3#*U~d7qscL!yq5!?`(|Q1H3iWK1zwiNhm{9oE@9@d#8PV@2$$t7t z?{saBS1>e^38e8_HNPKvSMRifBD@AxGZ~1)$SDRRAT&n~fGwQ~n}aH4o4WPoDG7-$ zPKl9y6+b;q6`A*m9bFc7`0B>R34?k{!j6}e~B0*T)vH;zHN|H zgw-ZOMw3!l2O&e0V%8A)wiy?B@;64~%n*nFf`>S!*^{F$g>r2;*r(+Z ze&2(Nbf7fntJv{Ye%i{5e?0vrhkvWCt{u1vt31$8 z2a)|~uC3z9M0+>cDHH*-$+w zE?A|#WKbI6N=_qbmAdq9=j?Dw>OLVJt7^A@L?82%g5-;GBvRx)7n?^`W6<`MJW=sL z0joxJg$B`ve>z3WE$$*XQyXD*}j-%-<#kai_>Ub z18I=7h?+-r$A8Zb)%_fQ|31``pfFeW%7rAaca^j)*SJ{XQA^FjzJvpX__sg zqyoNUuw>AaRTNWzT$M42wGq*;O=K?`F;FIU;|%!_f1f5Y6WM=-EYS1W5t?p^J%Tc< zAr$85)++t5Ia*UUN$;-F&v?R0CV$wsAHV|#|?E2Q^n z6?S5Kf5bUG@v5yK(ZlvgxG_2uy`Qi2eZ$6Z9eR^5tV}8GHPEop)#VB_u5wyZLgSuW zefx-4B3M0YK)n?pu}V*ZPQhW_o)C+%rg3B$_7YeoPSd+Vpb`$NOfR4jBsXo0>zEQC zQ*ne;Zsm{^TH5M_w=GN16S4&AD@LYBGKhuUeIOnLk2WtGWbIxgIM@O=F+X! zOu92hg&@ArNxdr>(0;J}Bl^ie1}wXuYQ8~|BOOPMIp`B-6%B-sG*kf(LuwM~;P1!d ze{KKXXyv#erM*#B>Pp@lyIqN!qldwY0uZl^u}l@v0a`4U(AXH+9!=pf!^c=#k1`l_ zpZ%J86d|K@uH0ws4hg(8-oB;%f7`FEC@Fz>NL*ACbIbk@>!y_@AiXa5u(K!;dB(Pn z=;xu{VbS?>_G`c6*rp}7`dAlDrHgt}e+4uwX$VFYX#AF6oX}{T?aNM(xnXm*UOD2M zTY3ySB)NJwX3T+Brn0U^XQP4KT3>Ybi=O0=@NlEM&L4se?F$x zFWkE2)`G!3e|g!1V{pX%tKbMyrMlb&ju*us&AHXb7=RRcGith{xT8T;=}Oe=)Y^PM z#2Nfv7(>Il4u~-T3h7$iCrqmQc$3}-&g{w<&~E>Pe#Q`;*+u8?i$j!p8G{!->Pr<6 zAW_l>QzEb^4j#J68S9&PIGL#%v7&t_@wg}kV$Q8zsep)IyD?K51q(1$x&kp` z!n?972PPIsp9tuHsGr{LRMv@{oYwLYXNO)Gl-rg30nPT0=%;^03Te^(xa=JVM?3S7 zU|_Ybf&eMR#$$=Vg5P}3c-(O70s6P9&Oi|T8}sNu%(?Xd{d)&v<}}hje@27l_^!0{ z-|fnd^k3Qh5u!n7-{%&@unM#}56`I&+x+2;FyW9CEFV(!g=TbNauYJW4WXwBdk=%Q@P3bMYQmEpp)ukyEXV=c9!}|F#b# zqb4N09w%+1_hoR^g|#-d6hfsE}Q0+UKM&e>Iu%fFw^df!}uz zl8xn-^#g&$8+a&VR%K__4}+YDY%S@O{*bf_OUj*Zl?%NevbE84?JJONw>R68ZHUyV zG!ZLZp0}TVjF$(`w zW8n+D5=!aKe`$v)e>K01mv16oFSxlGTp0^8h8hEgF^(U~0sFokq3_zEd%;teX7WsF zy$jzXeG(z+u)9*yrX783Tpdh;Hz{w~ap^jz*HaB^y{4&# z-o(u`VZvNR-f>pEYmR;1NYj4b!%4VX&z7!)H85WUnZsn4f4Q~G+osv9j1mTP)y=BH z==J7bOCl~qI~q31b6n<@&u_3UEkny$^p=aOTF#=koP2CIGI`%Oe~26PowwpDHXWfe zR8Fyv$SG#VoBf{$fA{%UU}ixCODr@pCLfJ5FgwFodb}Awblu3-@iVU^KtEV}o#7&VzNN z()|P-I>}GaVH_BA*l;fn=;+}RD5q|Iy8#`eg%s!*+M#1McPc*Cf{q!Eo{+LMPVSwM z=hx!+?VRp?x5~rAVHE_hh+~k#G6Tbh@_-Kax_^dS7lc~)bs>fpj$Iza@T@ztTVT@z z8yIv9cP=&P7;XkN=$H~1KIVW9c)P$9att~aT#Sy7<4QPY#_f|VAC@_Fwc1p1@fmTiDQDSkE$U!Oc6Nf5W%Sj zrbVN0oUGzmLb$%FyOR)5RgW~GTu?;rae)r=NE0rj=8-0^*v^4LM<291JKJq<$`z7| zQPc0r_UmuI7aMhgCAuo3s1FYxKVI)%ynpzAvT=nEa$K3!y^$j;Rl`+tWFED_O-VCa zRfIN2rd7R1gBu}m00CMDk3yv&TDhf17wpCF$Npk1vojFI=iJZ$? zLA9svC!=~*Caq}5xn$;}vsM~eXAqv0Onr=)>Mbipre)QeYmPi|!I_mjrLLJwP=D$R zHYbBZgOPN}aFb0W9cRs;IxK6mj*9%qn$eJT$#A0!SIoU68O>{D14zBv$da2?rliRW z*UMV5wEBonamRwe$$(5o!X;~Upb2nNE*`#Dq_`aw@_dq<9}oBC?5u3(G3oo`kIpex z1v}8wm+on;Pv0cIeI@!{$B#^i+<)HQ9d9r8_vNZ=Z{M7k?Q;L+zI@eo`S+(i{&4f> zez(1b=KbORvoCWYZMVJKe?C6k-R=X^N9>pV`wus-j$g`^ujp84Dr3K#7@>1rL*LCE zggBob`7aNLBZOW(Zjf%)GwngxZ5I!J+{gEyKOFwrZLf}Z@Ar41gRZw9w|}3u*H`Os1HLPK>aWb8C;n|a^p%bHxlIg5n>R3rXEBauYS;<)I zP_s!gVK?bXGw@=F;!cKJup%uxjoW(?nKi(w22|3^)ZOsH4RUJw&yNj4~$C^nLkX%P}B z$;CjKJxlJGnAuK8m_F8$ZYD$5&@2~Aqh_tZSj#3eVXCPl3y@f98`%Fk9u{ZwIgc0A%{t4VU4#1``4?G?x*w0}}%|GB=ZPpDKS{>vJ5rasRHr zf>o(h$f|G-XuMtJR4KA9cRrsU6cyWb@dt_`B}No^M^d)$zfU)MW)_&ma(8yH4_)O0 z2ZNdA;MaI`HyVwGIQVcN4*u(jXbj!q74Hkr{`2(7H{XIe2u-kH4^A%+K!rwXIB-rk zULBmiKlthJ?akH0!^MC7!_l!)>hSXR2;AY_(ce!0_|3OkCjV<>15#ok@xShG&p%x} z(9fPcKYjAc6M7*I4~=hl4bG(l)NP2f7JfDylDyx56SK+bE~G zzQCERs^Y)6COE8DYE#pwq)m^GLHffBO2Xka=Pt2d1aa6<_Yj9?N5|6m!}pW~Oy=4j zdshR7Q5dHlYkz-ejFyA;Pr*q|b(zz1&jmj)jI%8Fg>yuO6NmpJj5sNMIR`=gIM?6l&26vjeCgs}X9X~wd+&SkyjVO4vUmg5}y-CsNkX|8&!~{4|hqqmB z^+NG;%4i%{qbew^X=fX2bh)PI>QWlh{Srrp9F)2t-Uza>BJ2}yM3Ew-?RcZz5pP5k zAZ-oan9_eUmN!ZP#2f{&L_r*=y?aZSB69>(9zqTH#2l^gIsT`8;St7n1q90D&!Gwe zEgJ1)j^KpKeNLCxEf#tBJ>AV-{DCS`uEQ7&DhfhZVT>-=?mN`X$d#yl1H{(G+(*t` zaPB61cg4BOEO*Yiv(hhbyRU43p-Le{qUorQ0&ZR6a@| z_~bU;|D%1ozTlGBdr<)Fui&!5H$Lcn5?p@*8YQ3;Tz*G_3sI06tAgN4=@~1yJP9r! zaRtO4!Smf)x-1Y}G>@-<9*|3FV*M%nXH@QY1mii~#q1A^1w5nrv1AExjkBf-Dk~b{ z29+AIoDhN&x_il4e{Q`x@9p$UKOk|=mF zAXzkI9;ENJxAQ&Q;L!EGF!+~8>ulp<)nbaT_eiWdnM@qKtR+_GB`6pyJH!G<>9ffv z6t=N)<3CXl!b&&J`J8;zEJh@)IZb1!}3=YBPyiZyJY_%o@}N z6x!I&GHQQckcR?i-XuY%7a4yiRfP&hs-g(-Hm+%6u1(%0?+pLawo99Xd67i6R0SgT zX9t5JaL?sGaB|Bq?lNp2IH8Uoe5;TFun`Gm6|G3f))pgJa`njtC)WjM671XFn;LW} z?AuDnoUWS;)#o0L3bevQ3uJEWh*rTgT1*IXGO0shQ%bGZm6)*3C(05NaE_EwAJ;5>WG*grxq_>lM5Y~xRaC%% zRq9Cqq&UvGm)Dl!ZV5os%CY zLyjj(tm9yE#>q{AB3d4|b>N_8;>`fgU54X4%aO_@EG_=>!@>**XBSS@0Ea3Q`FH2w z-f_uaIJry`+hM#bIfGf`a$!m*04;g$T!Ao+LQeXeu-4DcY=grBme08Bur>rY_gm069VTTyoSY4ZG~= z=u(2o6+b-he*)fh!vkl1Z;p;>N#s}`{-LCb`o_8{xQUa29yG*LD)%iRIHkLi-zm;H zWE}uFOf6Y7QUE7Z>~jL}x`h(6nyclMEGx7Qa_qUL$isgNFNK&u0ex-JTUoI{Fue9J}8ZlGB*Jx*nlK{KWpKe2<2-Tk2x_X5c zo*#BD@IrsK2s16_YwyDCDlHqDjo{uY;<~13S83T6J$rXC)x%uwu^WpCde4l9CSaXt z)9FPOJWJ4E{QQkPX0EEDG87go zLxPm#DvhNgKX!9f6}6#|YeS*ehCRxh5I zdvfgdRUqOggitxe6{HdI2I zBNSp)x|71mj1q(H^g~}Yf9+~zG#drqIH-TZMQNW``<+k3;CZHs$*&U>du&0W_F1oY z5>vHL{L_(5rDLCAC+rg;Xb4r2QR zhaA&fggqGtY0AzHn&2N@ z$q~mD=h|wy$U-f(@9sOq1rKDv;bMQPKsC1Ueo$pAt`!2siu0}t4Cjy^3}7suk|==; z18fZhN?_l?+YG_#Q<9LFd1TSdW3en#rLvS0(KBjTSy=GQ%p;5S6)4bG6*i-SYk+1( zDTtYwN4CZusufUM6f8PK!^<8C7V=}0oxMHC9SIgh;iRr2SW<#k7c3P3bb@~+1+ao( zsZeq!SkjV53zq3Pdcl(7*o0uI0JRe=Dby8bYe4Z#MV%T$!D7Xr##ZpHK*2)hmI?@z zKovXW07g#NmJ1iB8lij@xLEhr!d!)|B3!U@LY2;=DNcmRF$`skWZ42+lr73N&d7a| zEn4FA&3Cc|b|hOg*FX)~k`jNkx@@Tcppz{rfE8p*g_1kjl9oJLwoJ#-%a#dZl2u&|Z)Q%*H5>=$gjFi=7$i#o5JNYpydIjk* zvCK|#%*q@sH>M%zWyTD_CM3p0ke#%cfgC#znFyepgUkSon1M_yyPJK?ie7uEs4OEK zU`Mi(VaAmn7*x?x=@1%ZRa48>Lh>5_tn3}i1&Liw?b8t#M*7IvTFIa{9-oB@v>K+w zXBqv8#qn7(@;4BlWeR__ZG4s*)CP$|Ddf~Pw8S1aQaXw-b?j^u;oh(6vjjMzNY|~;cc%*5)+HNP+}NJ%6;VIf*;;+u6=jK$tAzLN_ZeU56!-EQHsqG z;$F!L#7J6=B9$Perp0l`I4*irEq;Dj*a>MGFrf-6R8&-uIjZ}tI$KolOH5S8_basi_5yjZ50FXwdcPRuEthSk&KG_T55ox$YNIKAjYUjWxjv0aW3rft<{@Xku;U1n=yvp zTto6O`U7PJNrd9j=sh`N1B zObg>KgTEXUc3L{#v;ruy~IRV>KiY)dH zu}>x=P40gPvWrg`?BkO8zF4q6yS?N>K%BJEbV4wwlSP0>I8> zlmT4bWK;t|Yck3ZtZp(=k8g7$gOLDJ11K4c%&;w2*r%aU=`*1U0)z9)VPh3GY9w)j zL%~esLy1jj+C*n34IJ7aO>1oxNYxS*$U$A7v5tQi^@&zzkgQLL?%1%K?A;aTE;+g4 zhv%GYKlaf5`+R+%oRU>YLET82Fvszz+>eanf^+AbD}>WFl8h5oI*~z%jvOY3^C`no zP$Ue+w)1LA?;xiFQ)MI?jZ*?KU>Vy}C6Hl(-ls!^HN|Q)-66ukZC;hY0===5REe>l zctn4dNXg%XDlviDPL-%YZKq14)Yh}FOb6K8S5kl@>?;)zboP}L!AScGEYl}kBikW2 z5iMC)te>l{W$J{XO}bUeHx>nf&H+r&CN|D@HH8<3jayWl$2u{h(ZR22Qo))X|AnGW zg-i$dAsY8{Dp0GuK&C{rDv-=nAjv8aWGa7<%v2y*HmUeHX|6zvw9r_W6Z3O&)T`u> zYjSqRYs}quNx`xb;xS?suz{ecAvOnhnN{iqqk7M|cUk={*4hAjY%pp{Z=!Ql49#CE zkcs1+)|xXix2H8JoH43>I*e5--vr%-1`d9+!NEx^DV(!Dfxe- z63MuhO-WpZj;31R<7a@+#!22?aqg0nHh0d+8UN%Vdw1J?rC_5Z4{=q4Hd+Rz!_70= z?la(Lvz#o>`zUUR5W-GFifeyqHl-A;TRSq$#ETMQHzCCd#Z;B04Jn=xv~Eao zK|5|7PAlx9fZ}A=n+_T$wvCq|2mK67{SHfiis=hXUtszi|Nc}u!yv@X?=_%cQ%I$A zC{*-Qgz#g8P&jASqPpX&6mLT#$j+4(e-evzhp#bxd*os*P`jLRyl9#M3OawAS7A$) z=YJ@OjjGbWlv0h*de~G7n@VFHDXc4ve+ohBQd5yvxlmP_N;!?caKolj2t#92sZvvs zW4TbKM)BlaZnPgZ6;n=)@e0$IZH>H%&yS^D>jZS8QPr;#7*koB9DyzsuWc(n(Ma(* zON!4~QoKg1x`VB1ABrpEv`>G&b+@*~4QKD1sOd(&uVwtF;=@)WiBD^OKE&c9?l&j7&nXR1z^1Y zL9s>lNbPVG=&#c{b`)xeX7j>^8bKmbdRC4SQKS4eQbbz*@=$*fH41LSMWh9fjTcb? zMi(<8g|UI45jBvufg@6+E7?3D+MH|^49-PURElAQ=BdbrUImDfzEL`4K$hs8iUzH& zGH8)WG@$Z9vs~?Tfz(Y&Qv_LTD6)k(TculTGCepqXedc7C2g;~SiU@`OQE?mIn=r; zotKuvy&tw0L$QCPyV$t9Xp5mOl%de9`xNtAS&Af(eawpZ&l1GcR={S0^mg3liT&n=JlWQr|POyc?Ch8>EY?U5Ma!r~+hZ(a% zByHS%Rsjl0Hfu}{W!VamR#<$Mjzgl2d=#_dS6U%jLB4-Uiq2G}!Duxea7s03u(1M; zTs&K1rvgHb9Ne(gb}Hb=y+-d->~Y#vL$lXbz->Nu6BVe8p5i?}`V))2=QHv*;5|Qu z+SYr%2DPpCd`9h3@A)``A604k%i(CPE~WHTlsF+G?Z;mZEpJADM`UHtvCu!xk%B zV3#=aZ!J86QWV;C^hxjEI+-$|%^12=UNtn>~#0tphcyRLN%%I&Qm{go3SzUkLA%LIvPz49Mr-RCI+-2493*-2b zJ-p}Sq2yI3k(anB9f0CD&^DV2^pR(t34?mxp4tT_ZXMnuwF@ZZU8i+zJ|+~EXH}S_ zb&dVRBU)EN{U(&I3B-0vR|R4_r7IzJxz6?YA%PNgT8dm_9mA>lCda2Uo*Z?pcrLrMLfy!HJw9e&No=?X^mTW~9 zwXDtdT<4M$wbN`~=~CF2B}E~FHI*(;YTMW^6qPQD2t{8KUL{Hw2VSu3$z|D9&+^tu z%T9e(l$9>TMh3a**huZNHss)LGE|>CI7NT8i;jG#fdkbp0fS1q%PQiYlb^YgZj&nO z-xWh&Sr(e>_XJXzf~`U(8L_Q{oXm~ySE8dwywN+}uS6#WgO#1CWp}z^34-1;MKsFN zUJ-S>*{?((rfOU5ex;P2b+;>lYC|k8JWY+ZEO}Q2IO?(u_Ja)gNpd{q(?u8n=fHoq zPUQh`)ZaxIUMGjU@xf|u`UsdoMfXjB_$-F)lI6Hv0d+=YtKba^`Iwu-t6A-cbynWM zL=gc^6%0y-MhL$U1J}kYa{8x;81h zK|5k=?;r5&J1*IWTXFzNAi2MR(t>|9+u6b5X|WQ%x*aUPfgZ3SN$nwSrvDloVS^^T zHrHUcwLeG82AtYsKUr|tW^$j_T**g*jzMjeF25tC3sD3xRg|ujptZFwmuL{CtaXKW z*j5GPq;=UrOZ+*Ody-&?OKe386m8ehwh9sjaZf`A<)kf`puCRvZ<8l)I&gnv2aU>C zJke6dKxeYNS{qPpP;~&)c75sQ>&{2mE`soUie%9-25bXR0|}X*=xocms^g$$uC0_; z@&0AJe-W>5;*;l8fo@G5EGSh)0vp$FSR_|4%OeJpD^4Cb*~nJT0PtH>#e$5n=f5&l z?5pSq8K{(mn;iN4`>#!J+G0a(NE#~Ffc}asO`1YoeASkw$_t&ee4@eZ zc%c&%)|=|Ks!6fig-(A-2b%9wz*~xrI#cna+^EZ)w=Nb4Ysb4)Nc`9@lpXHKQz|3= zo>dhZv)*<|Ni8KahgVYwvDhlI1|8PNF!>oBzdt%Qfn2kWbs%QLyhevP9Z^eo#D9Rk`p1QL(yH^v(;)!m3r)uWFD_TO6$9tkwVj1o3xe%LrrNm3qylv?Q$*(IPb_~HnHl+GMP>~gt;o!9j1`$v zs2hoV` z9G#mC)p-ZCcu<2CRk|j48C}Cm;LaGpHRrCA^Jv7}c{IlgWql{l#n|&8m7(}dQ@R$# zvJs(5*HV8tN~Ci0RpNQHdX6#dLzi4|a?bA_ICnMphe9X_8=WF6Al4un>vfK}MRlK{ zI^*OWKfKPM-gEMi-?adlKxV)HUYMwAhjK(s;;nRGIqgrZLA$53esa>cCt*D@cC}AI z0g1&1)t!hT_2wlkxne3mNy3i(#3K?mC4aPpt$?GGuqlpz(Gqq-m39)g0x6w@O-YFo z*0O|UV^%OMVcBy6lY34cvY#xFuqsrkb&{}}n12fO{X8nm^2)H-H7sx2q=$Om;V*b~ zArPp8m^Lhdp6{=LTWd_`8dwPI_M!J1ke~}J5obT6P9uIk-DIjI523&K9i(5`U z@CNJ;Srm*rVm5~TZCHDBEZtmWHk8ny!g)dDOrw{7t1WHOs&Q@(#N&qB@BHhC?;QLT z+K30Wy$evK{vPW_*~qpqAugn%xa@P$hl!Hw?BRX(F8_yH{>sfJFiT;%T?0o&3>-Kn zusc)Ws3?JhDh7502x`<`7A! z&AsDBg?{es2Gt|DP55SBSSdQ3r1zqs*^B0Xqp2~u%s!P*8ij~XSrl7g-ASXMbpkd1 z6NO2mKpmdu;b~QzB^pBLa@VXV{K~m|PD-I2GzBrTRlsTAI1M?tOD_2?0p~eVa~Y1a zF%-{~>h=@}+*P57;wNdBQ^foU0tYYl+=(!`<^%~gs413s)>vdJ8iGfs$n8Pz?1 z0NrspuMdB>9c5a}eN(1M-22|w%a0q_*fz;AkWpb9j_9am0kGE|#6e+VPGSAGHkZFA zR*K#NbDtPFESoiKX(}rn>eRL!P19szl!fi5`bxR#N{(@*+FAUA1V^Je1esKSBKGUz8Aw@ZmWYvyX8KeKu6|J9I9Oh4dXf} zHmD3C-I;E6H`jYe!XWDI-OaG`2Fn{REOcQUAG)B9MGi{K>x7wNqD^9d0@V?nlYgH8 zfNmapm&KU;!0(8^In(h=oaFp3jXNGxhDVc$eOiHwqY!w>WcKcillT4q(O24k?}1s$ zT(Kwr#D3(zYllj1(?;rivR{bLw;ncLG~~3u(eyQU_&5G&!$ricX1uD1#h-KTmXr7V zFmige=5*bNrdD`_p4cxO7vX`E%TZq)R3hGnC3R@yxoquk{Q9%djCYOP36_dlFk6^V zNS-n8ctU~lK#SJ9U4a-aS;b6$Wo}n2ud~(6iy^C0Rt&|&wk9m`K$^YMYjAYT^cs*~ zh1fvMQ#F`QY^3CWMPkF4C^m3jxJYc^+pFE{e_Z6BQ%m4M&$;7jSv?l$@%Gl zb00IWvzzQ)>wI>Z<<2uts`i&flLOl`E70OmPsZMn($acxee8-)p%wgV0lT84PfP{_ z@%$Q{f%%l7__gFT01av`6M6>u!dqXXHbKkiz?BlPvh4+x_IPM2&+=KeXwy$+)t08R z*tMkFrxV~jq#B7{vTUh;q1Qh?@nOjqocwxpY>kY2mK>i>t7a8V+Y+K&X4e(Ntz>l3 zCx++0$4Rld}xz1JVV`5-* zol{i%?us8?Cb`y`%5@*>9lnak-Gg=&XaP(5B4o6*o?T}Q=DGt@aGDPBT(Sx%P>fpX zOEr4KDBhQXP>{6H6^f^D77hhYTKvbX67IVOEkpzJ(GO|;j;WMtWQ~5QltEuI^qI40+~(+t)nZchYhq<{e;fx*{40f zCdAF=tw6GmsV9y?0Gf5Zt2Nmq50KpnYuAz=MmEBj(O)P9?MFRbLq_@;$MPeuOu?>5 znES}N3(nne^1u(TICq)l&N(^DzH-I6+wLocDS(TCbf;5)Mhd(RI-~49gMF6eN}>%_ zCaos46P?E*p+-A_7mdYVq|}i93-a*k5y0VFx}4JGyV8bQ;u^jJ42t>fTwbYf`l6rq zcMHyNMfOz#ghmnRG7PcMlfEL}BtY;|iW)^{gP^`p0gbmP>3jy~8I}5yE-(5^MDnZ$ z_Wcpa?kC%S;I&w1a<9U~X;0xST3+k6ZJc&4_L4x25$KdA!FO-z@}{(V!^BNk$vv_4opZIp9`U{n-ybQK zYD(QTGhJQkN3ubXR;#Bhkt~TXk(6G%Ug*W2o@nLx8-3FEk>CFN<&#go1h+^kdGL#u z7YndS8H7a$sG?oGJX^e4e)sM4Zf_0u0-{^gS|(G32rGYX8M zN%FtCxjOyn{FWbk^2N(1e|y4z&DAjjv3`gSE3H}Zf7h=U^5ywMe}AbE zazRB1i(r8O^NbJwj>#)cXd0ue3ybUX#RcK;_+&$n%m3G}7sKxJ?!}>Bpi0qLrUlYh z?FkC6Y(Sxfg;}Gb;Q7;MCZ^?EX>O!BuSQ(FdS<;| z{^!axtEePL)8!_ka@T#n=~JT=r+<|M&TdBW4S|?ReOi#T1UllUiYhClrq%ClPii7A zn8*|dlPS)<3)*l=FV*@UGDvS(ri<>uEd9^2e1lp|Hx#>d`-0v_kv}%A^#sK*f z!a#@R2X6fGR(fxwcP_p6(%j0Am(shadZ*HyRHIx<@2ZTlMjWs~SshxS27hQ2Cah4q zso*}Tdgmk1_@L0vc~uZV8EEpVAZq35i6K6pK7HnlUw+11{X716$sd0nVcZ54=+puZ zYrJx{rt6D-?$7#fUyMM3%x0TV!y+x*R8u2U;F}(R=RH+k41l7KKaN0_P@%C+AR|^5 zY^ospoTvS^2k)C6l+Sy}zJGcOzC2Qkza24Pqg71)m>4jvQL8&uz*;>`{1Hz!DHWc4 zO#;tjmV(~$4(HwnX}Z6?UloQS0I!t9?<3JdwpzY@#~&|77mDATQuEngOp?HhHImj#}lH!EwEEvjtB7`7eAwtC4Q zBNi2L2U6916F}HvSOw%oH+hDo`!;4$0qH?Lv;c!Waw)95;jek}FL?6r$L+byh8s*y z_8f`qdh$&B=YKs7zTuA--2JkL>UsA_*Zt#u_^qcG=J1&KZ6KxGo5FALL4J$M>!J6G z7+{ugcMYk0KG?h&f?t(zpe=D?`pIQ^=WPC0j?Juf_Dpa^lfkoo7H18Zb;}{1XENpkhtv zh8m#K86*hzvTOd^{x}`+7j4rqaXQj05qp1!Z)IDX&AJ8(8Q9=#fp`*q`gIRiw)u*q`eypPKZ}|8Q7;E|6Vg z;D4C-8@oA7@9vI!^yj)fIc(`$VTZ2SVu*Vjx)^FwoQSvf&Y{b_H`1I-^S=7qr8IXA zUGAMqb5cEdpF=ld6Ksevc(d|iJ2>tfx*b#lhx9!T-4vk(RK#$Ivttd_O;64NRAc%a zl31{_mP>ZVh9=9UcN7g#ne5oL+3babIe&JE<-l<{8Vs#l4}}q>-8*(^!syK`$L`c2 z9&qdq(LV~u?tI*eV|R$!wvOHHUsk_g8z591yF-lFmt_q*5-mG+Ejt(CKF2OP*8~vS zuQ9nAkQe>rpY`AFaqPwvT7Y3`E0Iby0>&3IIei<8iD8`;ngD=_hN$O%$+JH1$$#(- zf6Fj^*#q{xe`EmSu34^2DbxLkSgs}oz4zjwo*Wj6&@*A?D|S`sTf8EJ1H`xBfDI3B zvf#t)>Ggj3ao`T~qM?XkoLq5$T@{DVh!@x>q$R|dIF0lCz)rbtsGca716PwPZn-Oo zaweN%upuqUltPRD>cXHaYN=?kJb&;hd%_)H@s7 z5kAMc&OwEY5nik

      CsrbXBOZw;$8;$APlqMW1m+S-Fwsw0eXZ8$#wA!GDQ5grW}N z^6zqb^j3P8(p*SGY=?w)QPGL>Fh4Pw4?)a)h<%)-Yz4#ohdxj8=llG5mOroZ=Q|m& z>|5Y{%MD1=ZP-ekSJJR)Y>asNO!nv#09VpGlOAIN-T6{p=*n@L1HB9AHcj6ZW*n=4 z8TM`Yvi|>lHPPYWk%q4f^MCT`#$of9bemggE+&m?Yc-d?#xm^xYOP0jB!{o}Q^#p2 z#1&ra#!0b;ta0uRsvSGTT;TT5$sjJ0>DN2N5Pr+aAkLHdV2&vn#07eySh;9-FVcd@ zr8y#P>JSfzv;p>$CE5&3ibQLGNs(v+O#WE}+Fq1UVlctEW7@HNoPXUrrVuCcOR{kT zj%5#^WDnS>*#r5T)%Rx)c*h|z47T<2k_U);dY@_v+?zZ=mR^|3r2vA$7^ed}jCug2 zO%r^RJw$%s>@ z`N^EmJ*lVBKofYPS0=<7pwD^UZ~5b!{v*Tkd4CVuS5N5$c8~0X`C^PDxsNF( z9TVgXL1Dg5w_?7eA-Sy3dYg?5FL}pz&3W&svR1SxmjfT^HD+@v$oNS$@G+4Gx@`YeK5{^{wnkk9i%(IXpAlC%>mu#1LpCGF%= zdbd@^(0@ny@q8DM7!6(O3y67bEAv_w2{rHK$6M)LO7EiTol5Uy?8&P#$}WiMYlY80 zU{nkgzA0;sfY&SQnSSJ04i3o=W~v&5o&#NM-ug~&Wg(;Y3ap<##5(InKK!7s6(hf56wkYZU7L6q z$W9A!j)^yUi2F^v3j1R)@fzS(OuP!W?M%EGFRPe%EfDHVyb7Vor3)JXQc4$AfK04i z*na|yu6AJsMuXyoEkNsv7gnGhVf8|EJ|`+25g&F*x!wor?BT3EKK=NGegx6k$pXKY z-g{{-<;SkazIN*-nSgHBCScr$2?)C}0b`JqLoXR~)a3IEDa__2kI#!aPR+;iWX*U+2o_|{H1OqY9jvWNpDiezJX(Zk|d594UEIJhs zYv%N*1xPldN(Ng1;Iw!TD*(1M0WF{InK_iDUzNoz5Nj#U)@2z_i<eEY=-Wbh^u*nce$@x(BEjmXAvbIHcXYmnvqhW*6cAnki^jwulV zH7X6gJ3Rb))3q5Bn5X}jbnS{L|5WMPWG5%I!Vx#_-QRA`?a`K=#@I@8EJr%txVx)US}@><|3xtFn^3Fjs(oC zj2|gETDnYdUe!N6V{<>!LYkcLYXZr?@O!@R+Gc$;-`7|9zR$dK%Rg}aS(timW%;f; zo$|7e9=9s*8IlUxO&?+`oXX|^<7yLjhdbwk11NEi-2FJBTcJS}=cF76XX#I%D^f3#gO&-H!Ubp_8O#hz20h&VZ|&ka%M1IAj3$34BWCn#_#g- zc;qEp0XEE%ms5v$Kwb{_;!JtDJz~AQoR1g+=gfo}v91hFSAXWcY=5s)=`}1vgC-ZF z{(YCt-DMr4Go_-#UJOdUPa)Vn9Tz2~9nhRf#evUjz6$5|P}w@CQXKlMfNLKbUrv+! zVJ|8q6fcs~|4jz+71DQ|K}^YWMs-!h9ezt}Kr9Bs<^MlHY~vn^UvgE1p)Jf~-o%xD2x zVz*7IL7Npe{(s0CfORgnBdKLr`)FIBWut8{YKw9FqctuUY0Na-x@S|h!Gu;PYzOz*P}7225EbD|7!01TtN-624K4wRX*-U<7W{zYGq;@#G+Fk zeT~>bgFP)7UMUe);-lzM}N5gHj@hZW4O&^K5E@%CKYB| zUS_iWn<{siG(e}j%A~?)TtKCn z)y{`3_h z(JHgOCw~+?Odn$06N<#WD^i?DiR~4oN(@gX@Oe z8SB7#K6_~bn~%gX%sOn|=P>LL_8x`}K4z=sh}dc1swDlnTiACN7w4{yEDbldG>oHN z!+eim4ryizm(Dd%EA;!dAuz7uo}I6*gd23X6x=>Suw3m*_N0sJ=o@Y9RJR1PGQRSB zGJhHBJ4pG4)&`VhR_5KxLOPM_B0flg+FR+3C46{NFIXrxfFoEk`>=-NmooF+y%Vm0 zb1u!>>TfsYkrAdD6@)oNXAPf&6dNFGA=3L>S-wh2?Y@@4lJh>y1hCwRVYR*sXv{o% zC^=GL+^55s$CZMKG;b3G5-mW4_5D}L4S%B{Eni9e-4A=Z=bLXnz=MZFut6JRf8HMt zYXq>i;*TkH5}aoDMMs^qKO2D52%ekf+&XnK*y%&ulR6n)MTs9JzwW~zA+m3})XD1+ zscIAL<~Bf~rPosfbzRMWTJ^fr&5wg0p!R@e~7aFV4XsJOj(IwW3C7+oF%lsM0Q+5j9sj_ z9ak&)G?yM(xrm|E{tqZUiFVcFwf_Uq>LTVvn_Zikxr(0nps7i9Q`z60HU4p6qFZq- zz^EsgUO3koX#gDG92r@!9|G3_z<(k74#p!Z$6gBJLuxxtz8#A1LgBqX70clefdsK@ zLa0PEXGhDBQ13Y0L7WT0j~ypk!zJos3jnxYol7e_?neROg8*_He}%AnVyA#g<1yvX<{Qym$)OE9zVjIJeBR-<_d~kir+*JIem|t+ z^*F@-(Y?hvJ=kXcz$G9;J^yxF3$$0s`ZK2uE;H zh0q2#rmMTFje=PV zGTafbGobuYIZ_Q5J1RD5fPY_u=7>IP{)Gd$am~>PGb8*Ug}GHOxa@mHsxz7SMBunB zy^%Afkgt<$00(G8t0mQNT*}P655P@O5~Wax3yqXSPrKdw=~&hki5)-_Lh*ThsOj`h zUet|yz@)HNk{7ieK4Xn<{iRae4nHFWZuy0IVC< z1ifFMBfAF0t_d6_%HGc{NvKWS+Yc2lj&(aXqvbJU_1F>_&zFQX3;gVU4ImsAVw?N5@VlFxx62gjvfXyWY$@&nQtP9|JR@T(O?NdY`8D8GBK!yF`D+_#M2@yDu zy~*3=GG%LQ?hz4DECyMgCZ|Ls%PCI@@@HNsay3NC?}bB$O6@hg_ullq2pGcGn`1f( zFcFl7{wTm5E`N)hQ@QA6rJOPy6Z6}YOGqSLIM7jD^Rla(K50GvPhP*gigOW!1l{LJ z{(Rm2btjW2DbdswUF%b!Pj+)bin$B$+hqdzUE=+fG}l$8{@G5DbN9F)Ta8bA@JFe( z@L`~f#L`qMN$X`IYcb?1$ieT3fF{Z6z#VNgpD%rYkbg5M!t$4$Wcw!x=Cl%jZKW0> zHD}WNV>hqI?6ibI#Juz(?x+HTaT1;e<&vka=EU`&^n@vY`&d1>-Ade%u=kwLae(Ce zho2g~Rfp65Owe~3ZuEXb+RgGzS{QIwDv*}ZY1O-w-bd-3?}~xF%g3VU`SUh^zR90g z`SWbzJ%3!JjyAl9i*JkIfERux(T8oliXr0kA;!Im8dJSM9<6Zz78D`d1OV$5vOPWo zV7nRz;Ju2$&!TKFIohfPVu6#jU5(g5E@S2-o{cj~cNSl7TpDDN27l1_dakU&)isaE zSR?x%u#|fUVQ&HU=u@5?aohNM%|4xpBaDaF^MAcS6(Lv)j&e0ol;Cyhy_Mcr)Vk%c z#MlBF8cZUKcaU$gSeS>G$AhEb`n?6*LTqVEGw;yyWh8{O!efv1yY+1BB7A z=w3niTb}mor@0auefyqliTzh}WInKQM%jMYJ71J?gQpe`|-iQ7QC4clm z1X!#DSeJ#HDgpLj7B1P*unlF#!n`0?B&_h7CBnF1KQw_2A*z&c9kyD8K^%ILK|HY1 z;~?6V3iNwn_{6aYf@5O%T+tay3Ez-@y_fAVCIMWF%l0aw{8L@FXV_)a*kL$xff~M4 zHgyX$>IZ`p>7U%)7__lQf@EE4DSzr|{me?3oM#nkpf}Y>%!G^ftQ?Yon0Fv-7viYp zkUdvT&;#TwhG}t|(kIGA> zt%|02siJwrjA1>xBid;`@qSZ+0Fvo``6>T$lfQq+pR~liwIxV!!~l3O)_*OUTxH1c zwXWMGrgG_n1ZMgWTcV@bvJ%DB#43y30dClhLj9+6Zq zdgsuNm_%mW&Y^+_@KT8?(mgNT<-rmkE^nG|v$Jz0V)%WEO|%C+Rq{a{Rm~o5kyM1RT4$4So2p)4P2 zyC#(Fj+2H+ZGM_$#r+1IVAfrD*2>*lw3lpZ04vZ7ApNI;^{kryw(kML-V2nH1_MXM zHAph~JHLS2yF8BK(~4qFQgbcM2Wd|Gzi~`HpC<&vrw8338aJoX{KUorY<#0u<`})S4>vM;ozk)QL1v$HU{6Yar-GOA*1p`Sa3js> z;F0WRv>`~PO!2T=@kClLy}%AS?(wb982ekF;c+HmP0G#;z5{e#X}5e802u(owf{Ji z@ZK-~jT*w1kE_T`{X098vNLmXV@q-5U21GdZy(cvH8zaIusDimJZ>5YLUywNUA8i$97`Tvf6cT$((xCRpgF*G%o z(JKikmmQS}3zv!W0V{vaSY2yeM+|-6UonsE%iI}BqtSo~b7DD2Ow#E;svy{-_ z4UPlpzweP8hbDE3mgb=l9If`;Ir_e%r7m1rp)OMJkD5s_^UqfL3PB4KzUiYC8R|kW zvZf1EhL8(fhJ{9oGVLIYqBAsFCIx1esiCoAy}PiA#ev$&YOa6LUY3N0%37h}(i?|L zAX&%RI!f;pI)yX?H%rG~mtZ)lyQHghZUfS6kcR63?z}=r1x|+!9AfU`1jnESjtP!2 zLkAA+%O!BAx-SzPv$-=99CNtNz%e5%1`dn37&y$_Dg(!2w-iKuO$CR+j7FgYq-o&% zfQU|HVYsCRa%z8W>B1ip*LiSgg$_i_p<_tXEnP5NNWkH)iiQrykM171kz<4o9NI#M zk1BUW>IaagWOC@hF)ei9FbW+$+5`uAh*vk)fnycI@F`|z=1h`8WT(TEEQQ#9ft;FugbaLkAcAY$HCzn z-S(uMBkq3#js2`_KmYP;8M7LkvQ-;0c=hh}>xy(lab;wQknB+9H4Rhk2{!dOXyY1Gy=3GQ5VWNmI#8LgQD ztC#fTBzRGUI)|OB(nwoDdH;0wBm5h7gn!!MUozV&c7%hYAK@Td6;7Lh-sEgj$f{-! zWx$yq2w34-qS2_AGiIrAmCW9d~D@odlhW5)wu6cPTYncrdM@a{9 zt*O~kX7!58TEVOO-8l#DFgbm4_lc1VGw!LC(^!Ma$z&6TK(l185*nK|dopJ2v}AuU zaD%MAP2|9swJSSpasNHSX6oqH?8%tSI+Cr8g$Avi>=SHVb!F3yC9!6w5f;VTdomc^ z$9Og;SaXl?&o7E;|3vVbO4d>LYwX}GSnAB0jLI0CwSwdb|9VIMvI)e5$tSS&BNB)S zL)k&MIPV`Wpy~AC{z;U*3*hap^DBREf$Z&MUvVdNcRt?!FPKhRz21%_zO$qyQ z{?D4xr26kcDX=f6Hj^i-!NF|gbhg^FIq`+lnk2z^Yp7)%#KPHJ`pYvZEWN`2_`2}kzrT9+@#kPyQA7uB_3C^DItpcA<-HL>uU?(5epr8h zb#Zrhc6)d9Tz_l5KEFN!zrH#8@zs|fe{NLow^j*I3MWawy1hR6`RtCq_UyA)&whPI zAIOzjX#k;}#u==T5LYLc&wlt(u1@j8FA*#q!|J#6)ytI@N(X%PcJ!kNhbVB0t zl@i+e)y>)J9M?7yh~Bc=znj;qe)nbbaE)6T5rfi%FM}_oLx`Nv-Y~v&@ENMoPrQg8 z@k%H*LQC5|(|$>+H?5?6W&={x*0Td%`p*;bdGArjbCUaxJDqj)nv~ zjh0@#EPvwOcep=AR2oS5#pXO4D#M17QYhRGG&v~u&;|oxjp{a7e+VOtR^x|gF>${L zC4*32<)}EpMOd|dLycS?bMK0KSKK?}-rG$EqKp;+A9D@hjK^=p9Js3ts!Q&j72xnn z_+Vz?*&~T+sIrtGg>wUv`(J4#ac#A}J$eo*5Pw!dMZ{|Ao%3h-Ero9cz5bWO>{BHL zSXk0NRa!V3+kF}z;)vD=Fx{?1N)DDt#z9zra`fE02G@~s9T?X!;X1^%Ae38rQ#odx z*u2gfqI_qFgKBN)2Ou5IfImA<|1Z;j8eaM|U^Hn?FvNrbbea=;7u-t+w_{>R3lo-3 zRey;Oqd`*FWhNA|Euw`%WHsyk=i#~f@JM~c89~Q(GmaQHP9GvX^R+L-voWKx-IHpl zT!!@zEW7CbSA&Q;-hWlfM!xBP#|v$`@8DR`t$#eohH){75Y3V{j6@+$LbG9_9Cxr; zD-3jkB2lRxo@lEdo=0ob_A*5L-pTbpAb%Zu+GL?2_##7#lJqT9bUd>Fc5F*K&OBUK5gXX5VeaqplRjesKyaBsxvBf?BRx)_o_|#S3`mi!F2?mPo1}lBnJY8U%Y(ilOpE5M-gGi^LP7XbFqyAi&5>F8{xqv z@0}Q(6DBN*7+p*}zd?^anCgIMwDVHPsHbWU7KP%`LzFcKgD*2okmi6#!5eOlxgm+& zu>#>F@3}3S0|Mt=72uGa;#0|iyMM}{x@^HIXbynlhOGhzY7pKIkaUwF;+C6V7)jSX zly#pKU<8HY&MZ;@QpZD;RRTEt{$NwEasw<2sKE4%&0B6z7O*Jwenbp4sc|S{+>#`m zDcwZxx}9-@2#1Ql~^%`gco`_bpXH2@ql0DqS)I0e=Z!e~7Q&!8Og{t1t2le|i&0WM0Ld~rl*(jrL> zh3W{X<~+w8jVB*J1rwW9Z%&3k@Fjq4NyYHT-(# zta{LzP~b!kDG)^)jcW!qi4$2VoSZO3VYAcO?0mj_q&DS4A|oH$-d$N11={Qt;6Pba zMVrHM!ZW{NIF2)@uDEx`&D#v028Of*#< zH&`VC=|%meG{P_*wSPU)tYJ;esGzm@V%2^l8Au)!CLe_*%SSyg6SZqwep{ zG#C-!HEA<)qMbfClpS0JGd;2cZ`yJGX~a0IAL8(Ed+__aj*3UPN^C^O#6~plSk3&S zZJ3SdxPH4A5R@vqVD>SU_gh4TO5?kPG4P4r-1@hDOoAM2uYa^NbW%Y?&A{yB6hZ|c zv|s$_=sCXqh{J9(f+a|y9J3VX%#`Cmqo_{~r_n=f9tQ}dK;=4TaA^%LJz?dM6K$-) zNQ;8Gt^t6N5!q$P0r-UhxM2X!xOdLY1;6=!1*lNNlceEI$E-nqA7q_{S+<7u*VPyZ ztZd9j8h7hQ4}Zx0N@vzM)tcdMh5|i!-MQ;`p~$_T;P_Pca(>^>(Q|5Q9tH-^d8pV z9YI{bqJJ;=RdSc(tM3YAMgb23y4cHSz8pz8g^o&Je;pIm^5{WajLV_=?Oz@ahBpL zdWbmToqzv^xBM~puCk^HPuSur4WO%lW%)@B0wIgRwqyZ&34eV=HE+|!lzI=inA8|2SnDm4huYsp zqX4s{=V+X8&z$?E1B&CyRe>!cIp&b1cyX7YY!`WWsW{6+@!2?NmgRC#t$bxi|Y zN$v6hwTf5;xS&MvItQ)+;Ftlp?7(qBa)0&`Oy=}sAue$G`HSv2{qTv*=JXX{V@^MO z9HTh>bR>72e(Vr6Sm9=N)7P8MT*&O z8e#smbM&p{=vx>aefvOAaWbNLzcr}Xs+}cR4IU*}R|CCTMR zogV%3fRCxm5BAY)i_m_K^4x(eUVkP8A>)!vmj-27D?8I=cu2U37Uz!pih(4*#BcP3 z*wPG;s28rt=ar*X;2rPwM?y{qiA(|^5yfIR7h zS<@SiMr|0?-({q#_mWT?le7|3JZU7JyoafrQVWSi_RtE&*Lztg^2Y-P&H{PGgPjmK zdyo^9lAHHZ_GDAqpkTzP@z9n+A&Tx#y*vu@L6x3jYGWFLN`Fkz=oLj4>+wSr1ZPqd zA><2sG%Q$Yq?hQc0H940+kY|uriBGlv>8}43$v7j4s{lW+MEd{U)TZSf&mqcT~!1y zNcj+JEElL~f*b6NSvmrwz+Y7bxPWQ~Zt)DbZ8`$9feX*IQ4c>ImPegxYbfmSbhO&$ zvcI>T95%|;P>^O=l5y3zAligoBjaczN(ep28a>Xp+z{)qvSd-=nty1+JyW)*Ai7Z7 zPe9I$HKS#ke7W;>3~JNPmld6 zTr&SX>z&gF%zsQo1mG55lo^$3xT65kFdK8|Y5_{BIJ$VJQ|ZzVg56H5n1||B@=c8# zp|lxM_D7XH!{bRWCmC9++DS?FAmgsC0Y-$B09*p&4TJG>mWKR}-z>2K@G0VMI(7kt z(sZ=WUKVI4EU~2ivKl6U+xMI|b76-k&H&b~e;{_(Y=7^;Jsrr^WB*Q%Ef;lo=x!`A zJlKzXnlkfn)~r7{QeY`s%z=IsC}WDZhT!?&!8{6$)2a`RrUXD)b`vu+ zobb&?Z-2RI?m0T<=Bgw#Iy_lo4PcBE#^k`3#cVAvMAYjdD;0&;k;Y z^%-bC@x1T2Iqx;Dh47{%F{+fXHT~g}z=+31g;llkVt-Z3yt9nrnvq*9iE*G1Lt<&e zIUX!%N;b6K&76-p6%C6&X4ha|mqH(6vNMNBbbpDj-=+Vlwgv3!S0vfe+4Y}Bd2jqu zLIY!1e@eWU(Puaq*I3pwInvf}+-=+2Q`~Jp_K)bd6fd+FFPvWHH$H> zHJt}5P=(`-YuTpxmOUO4?MOed)0^aJ?^_r6Iro}mvYSyPl|p>}wBc6?YI2EDE5MMv zB7ajZ`jmvvND*)2M<^s>L?ZwtxQydG?&ec?m|9Z<090{>Cn2E^z|;z(9ON?tu_z&k zK8*Qj>H$Ax+-Y$C;wAOEZ3ivc@ih$uV)lm2F602pn1%V%sz|aDPtt zvpeox41Q3s7b76SRe>0FH!{Ix5TEr*@^nxgbMq6w`8ET!Dc}(Y%d=y|*4#fq}+k`MS0T!jQM$rr0sWZ??Y{nR0VIg!ey?-?Wbdu%O z!uqdA&x0%l$sx6%vJ`4e4|HE~KKrL>+OMecMgziU>Ge11^(%($K!O8`$5JiIHZL{q z^42yFy4q!95L_Zz#l~gT+!JX@mjLiBgT`~_yCaX!#jXEbQphPf*e56*%)5R%*mR?I zw%|{3+AnbW7ubG-?KjwdhJSxwm4s!J?)a_%3JJ|2=8(|LFA##S69k*HTg8UW3bR|f z#nw ze=;o0ie%Tpiz<{#VF+gMe0B|EHwyQtw{wtekQqn(X@!+gByMsA_kWjiFnJ6@5Y8^? z7ITP1bgh9H%yQ&0C8RV7K5%xbK!z(CKSW6)i%BKOu$3wo0vmL>u8D`HuE{_mBm1kZ z0tZ#?^yumkWz=_0AIJ8 z1}ZnOTHTehP*I)^Vb;RDOhWBm7@P@8sNgqt+1QKio6?$kk$)H4Q&B7}mt=?ry4Oi| zhG<*w@@mJ?&QYbqH}Y*o*n7jhGwxk+bH{I9aPK_pop5uUjdDh%cI1O*!^%EXaIP(H z{)9eMpwN)e>HqFYov2_bK6X*$Y$M7H9Xb1hIZ-L4o+b}AOm(7CrSs84l)b1)^68_3 zj5t!US0(K>kbmu!PlJeOh4ZT_aA+%HgdC0rfcHIcBy)Mi4xkRkpL%bWGr%dbSNbZT z1`3u6IjAQYI1LE|&ewnq(pA4Y2kx9_zR7@l;2IGP z={DRM*rw^dk5yKbVhv)xqTSOx0K-5$zrh}G=cZfE7G<-hTcAQ~v(~b@&AP092d;vy z^wyg#Iv3Q4;3cOLEzz1N(Q{&IH)X1h9-^Gvt%evLTZVrk(s3B8fD@yT-sj+qEJKlg zOLE$LZ~&q}p=%6wcC16;wU|c(WOZ@QRas>KT;%}i<5^QlJgsf6Kpy0*d1`Zo;<%rN z8*P+-5>(rhc}aR%NUnl3P{Wb_afbmO{xp?wjO+hOr7myM|7)@(r9zl)BMyJk1l~xp zYP(dF*9CvR29f9<|NorczfG^-rT>>tYr~PqV_{Jz7z#8b4L39c^-Pj`xl0Dx-nhGD z4wH}?_LGq6k)ORhLMs37>Z5=BIm)twWF^y;-1yf*It`T~hl!b-lkzb zzfZE>MOzXa8`r*hy07}WNegEKj^xTN658gNo7aE**?vm=S~l*tC!g9=GPKg&W%YH5 z8fDnulK&BRc}RYwkQ@|2?J1dBNurmSBAD2x!S0So#zcDmHobnA{$Gwv8%B*=?BymR zsn%apd|84Q8W?ZW>*MtQb@S;yCO7FBfzq6btC`Ege(GaKWamFoX~v0*+0TisLPSlw zuGfF10=^0t--MLFKzBB(_C|mUzNYJSFIJB|ww4dq`Tl<0WdAKo)X^_4n703 zq_9O*Wntuz(ca|?d(zZ;y4&5TCAlEd74d)2>3#a3Wq-HoWlAekNrhB&83_z;YMZDo z2EIsGkkwG zaXs&{K%hQwO!@brKNsBV2MNhikWly8bvw%D!9w{eCRABl@F_|(Tib00&T+QHJc6mc zKx}KUV?Z`nJJ?aDh-o{1`TZec^3_zppr&gNqS>Ghq#90m1rA(EB}_qb)n1v*FVwr^ z-Uav0xw+ssPq=qn`sQ^zN-<1gJ`Bw@x0W7h_VCFnR zt6Z&3U{O$$aj?vm!tKyEOe;IgwI6iVgNyNC_kB`jM!FM%+(iioue0Y^2+xf+c~9v_ zTF$C`i0nFQmrsA2P2UjJ`yQof-Xc&8w9+<>Q~@@nqX1F~`@l5-oRTdbwp@QjlVqeK z`5+VZNu6x3sCFgvQktuaP-6|0i9t0#vNfDC0LLu=O|R%^hgjt~lXo0+*uW*tOt=JF zP)gun{wGQ>QvRv^Pn0cgyNr5m7vX<$(X3xk%n^r12NnqeTTcV$EVAXX_t^zEB=rQ@ z_D;AtE`9U59i;-qF$9h!VUd3fn_sy}c~v~6mxHgIKB-@e90$%U$*)ECMo8QFwcKc( znCg=~l1&(;-o_@q$xb0%tW1E^u1N$#P{Gd3#-m_Um9Ki%IYb_952^-m9UGg2Sz-B$zYMec$y*UWb2kA1qz&*^SnuM zin_|KMMaScZ)YnZ=7CF~cpc5wd2A@cu}LruFjQiZ{~Ri#iteLBB3%-j2bXk>hRyq@ zyOMXO@P(!aAHo;@K;eH2WQu5J+*J^jB|%g@E{Mu4f@qy5nXX~KXwQMYOwh#hl|^5< zlj!@X@6zncS8vt&OU_?Q0hWrxEr+(_TC)L1ofy;Br*BHppK^1-%|7eXN5kaW-b^c* zIkN55F%4TTyotT{?Kcl{QsJ3Ir}VTou_|pjuY!~AHS;P`D9mQ9k>6dyk-MnL|Qu|t%vZZQ;b(0>Sz`}mRaoK-adpfr})tfd2BqK}`v z>N3p1ELp^4sIxGmQk~pvVNdJhrzB&)D6gnQwIg(1(eQ|%Yn|%}y2?d%<#U!o(`$}Z zm(l`AO8bP;Pw9UKUqzKbltOW(ef2&4D;6iD>WVsDKuVeNv&;mXbDFL6MKgH=#uo($ z40#n@6$lI>PC^dBOPcpHg5cW@5r3ub{Re+O2u-50h$vbRNk$M3;c6%{K0=X5XZ>7% z#iR%D%xp+=52S(<-d*aKBHf16c2KN}v*8l|y^ z-4gpEWfu}TEQgd)(6H@I^2VqSR)h~$gb!AP4_1UHu_Ank_#C$rbWsTJ-WB%+3T zkb}@e_Un(i3X_WE(uTM#{vQoeY;u?3xCRpfGclLYD+xB2_tyg{mvFiX4S&VgvSe9? zC6EucEwm7leQ3Mv!*(;2&@dA=yO93-9%;HEDMQiI)je0EBTKR@Pw%3omEL6*8UD1g z;(Zlj2SzJ2mkZ>u3%ztT7q~F73sQIlGKw_bLC_)+2<)!Vu`)Q2RfajDt!Q^dspt%( zmr2tFE)y>hq*x1N6dN6uRey`EKxSDII&j(41^C?9y`ONpO?Q7%AtLvGc1Y?A02lQZ zm_QnV4M=N&U@BHFflWvjdR9m{FmOo3!@w~jAO?=1fq_FQFmUJy3>>os297Dt0e2D9 zz`$V~df+e%3>+&WgH+I(zQ~2>w}{QcYg12#$Ca9|+)Ys=XkpQ`6n`AcKZr*o!et(f z1*04hTA*Z)5I4L^Z!W=rXkg$N6c{+h2n-zB0>i7y*g*n^uE4-CJwn{TF{cxGh^@mE zyD3BFAc13rWx|IQvG3qm;TkC_>hueg6p9fXWQEz{7pt&z7+|=|687-Qg97W2MqsE* zZGpjxN?-%h3Je^R1Am*4jKG0lv-QBhVUtc_;zf=zIF<(1QQs{vhBN{bNGmW@KS^LH zf3m<(|A+)QQ2f#(;z+mnvN|I@!YFn~gbmXI1BZ;jz#*PIFGm?(?2Jt+!vX_`a$w-l zsk@7d-S(q3Gs~S?CQl0Lw^_BIa*Up-?+)#5_%VO0}l$FESV6}i6Tn6 zOp_{SgF)T~vcnE}8(7I*LfF||vX*f^SUMVL`j`lk%4h?m$##p|R=yjd>1#G}NOsEx z4zs|@PKjs%oSkb?7A?E^Fi@`SjEJJ}Tk|)%m&e0Hxwt6XrQcJQo_=&Ge({)3FMely zvUiEzM1S6{|NUnE?MahE^JD}B+w1$|-P`>`xh~u5SC?hG+JAm1U%0RS{<+WRE zH}2LQ7UWa$^1mu3=3SrF1>3^!kQEm`Xg!ahzAf7i$E#yOO1}Gubz%qW_a2$AGUZp# zFPXyq&&H_h+=%&&;!~;M2@ueb$MmNY)Li{-;$=Sut0wtYw_x}ZM zE-wbl)u7P;`rQq^c(>4tUq92z@e_U0^T>CgjTx7IG-emsM)ygU2m)o;G|5>4;lI-|fC8YKU#`;QmzuO9ek z&z`?}_P1yJ2fZ*03!tpGG=fta(&FOg+3Rog;*$RO8v@IwxcGbi>CM6_VJUv(+U|5qiNy#yOaL?6~)qsBY3r#l+Wt<<<6f`B9p8MZ;_5ktj3$ z67xTBI`4}Rm$%Zqn74m~=AB(v z4s`4-7sGEuyIlW1?M3}{2L(i;9!h064nGkRP`)%KPPP=yb;tb95f2+U!i!ZJ1 z&E3+0?Qr;ipCU%sf(a>0|FHSNpS9L|fT&mvA|X12-IfExr1fBa32yn5eJr7m_}v9Q zK_upNZiw(PdjY+CXnT_Ygk%QNNUa0n&GJWQgt2KTrd64WV?+PsM>B{ND)4KF)KJ`0 zI(G8XY51)PQnm zI;E!fieLz1IQAjWaTE6_pDpUYovAQ<{vtVi0r79BxQm>*LY^*Ftk@%e@DnolDgxaSmcxB?T4^v1) zctU%BnBra!lOeH@2Mp2gc9^u<;RRzy36)NvoIDHM=(4~~&4`VI6lG;BQ~@9X+ct{v zZ;J8ndyUWBlX@M9s|Sh%FpO1@Lr0vpC6vJ3%E%2IH|ybWQ2~ZIs|+3#I$LEbJ}8Y? zPNg~6G7X#cUz^n}AT5{`tblFrN}4fym*zKrRsqtIY8h-QfxIsOVCqUr`M1)$mgYjf z99aa5Q6*CaHfM<_4X8vj{w3?8u!c^ahqxBM81hCAve$zj!!H8u=j3b50Ra_~K3>e> zQUG|<0?_nU;XtBVy2_bHM;Zy56lz2pQyw1SBx{Dpkq1xd?<_@3O&kzNItO+s{p_Xg&W}iUI2Iy0N(U^ zX8Bo~`!QM0(rc@r1%UQu7@*}=MsC2l5#UBy52!%Pv_9d8Ap(Y}BVc!I*_Gq&HS1B_yBj)UAlRq34Txyy#9Zt~B^J;|0k1V7 zR0lI_Z)>Nt8(`y7Mt;)*(DrD%b`wZLzE*XIAP}oQx^V)Xa>lhg#B6jF5EF=h;n65M z`1PT@EuM6T;7-Wd;#mW6txoD-+9_i*33l!m7FOxVyd9paMB8!(5oWuN2h5-{nr7N{ zT#V(ccP7Fz%^`}i|1V`$Y9KqBsCjq-uNg~GoRES3?GS@RwO-TT2zf8h2#>G$E*xxpw!1DhHz+{)-(CUI+u_5p2Jefq(u%~pO z090&`ldUCVPxoEYf-V2fjsW2k0GSC=?^c@YUN5_%!MdJ9^JyEqn`C2Oye5Hin&m(4 z%TWjHsMGs*)EPP~fcCUpbw-60+Y$f!>^$Wdg_LP?^O+TZls83M2~Vhhvj~xd*1rmA zs5y@o^=7nc@asNH` zK1(yzO^JK*0{ZCo>aQPl|FLWzSxY*nV<40^38jrfX;W#<*gMzKQE9suG4OG$kcc%A z$ELTExW0>u9!X|)Vfq_?R;7oSlm^IeLbThu(@6C(32KaQbW+$%r2}9$cbc(DMND(> zYDiS@P-kLn=nScx*cvnOc6)zd1@j7{n=@I^bTpHzFGAz7{NPxeVm9| z^)F4#(YR%jcO$LXFv48;K;Oa<)p0sl2vUn2XIs z9S}Q$gqa}O-JIH}jnd4O=1%~#oHSUjSx#+4g21OLz|rY{cHm0j4&l{yM9Pw@vO}D4 zISRX&!?s>+N9@9JU|R(^(5O{Rick9>JR>?~!R&))tWGw>93SRlQ~~0+VB7J|gUp_2 zG=oAT-WyP2+$qVPGnN22378 zC_vjt;nwFiX)^QsSujr}(pf7_|{r+}6Zrh6c#WxmC`C^7`26 zrq0u_#LV>)>O8A)F9+pN zVIYowG+<6uIU!lnlDb56y+Lo97;VMyr>BHTqcKZlhD67#H`#2ZX&cPOnjrq_fbvUA zTw|@gL^6?YndAL%G)}_)JslFwyc}~thSQnZudg6vKS%7U1GO*{~mf8EPy*6>EBE&FjVuTS~lnIxu6 z!5lZ&^5wns9;CUFFYkIiSg|lwfy-#p&9`L;9qV{MHIxBY-1>DQFRUgJk2Zy1m59`> z^e&~jmZtgg-A*9vi7#oFy^%nf2XVdF8miwJF*}v1oyhzP| z4r;z_f4Psv$B<8mh!ou1OY=#ZkJ8*0f4iDmE5JMO?F??#a{Q|yK(qe#F8Wvh(N)_1nC^oQRuB|EThBFsW-@G8`q7km5S z;E)~F(vArgdUHZzGbVz}x2bd9Y!;h;*;~|;n#V))=rDGnd0FK98R;jGh@%*{e064U z`E&kw#oe#@>E)We4Fp{z1jTuY$VmkpO!OB#?AHvym;97Jo^$sFKYhg?zvu3+$1Kl` zxH_Oko@6RP`??$azdBUq?yvaicO9g^8Vd!9%9v0CG>f!xNPaFrd(jR4#|D3YP4}g& z=RrD`#5!f`_M05T;HoSyR>K-1{7E;re>Muv|<}6jhsR530gs*k zgd7Ir+TtwUPR@`EfOAU~9?D{do{nZrr?jKJB~7(;zj~a8{gO*G?BPzDf3Bb%^?@u_ zh$L~_Q>q4t4iwss^=_;NXslO%UWW}9t6mV+4i+n)b-R>Be)=TsH0A*Nq{S5ur)8h| z&R4oKfc*knr(vIhT(PAY@j3e}HOct7xsv8Wn$OZaNW(fQiZuZBj@E#ubW&$pqxqY{ zjM5lYHk#KfXL*Fv*sC!}el+O)Sk@BBb)O_+<4$rnKT7XHdRNlBZ<~F8fZ%29Ahx>J zPG;NQwKU%rUtXS&H3~_K@s*RJ_hXHUDv(f(XoxDoM&Wc?!V)dWP6E5aa$x%BwCyTX-}vAZ~-&#ssO-+%xpRSj#eAaWC56iSFYyZQk8je z{F-*AoY=a|A8@<)U3;c~^MUy)D2%i45KXSjR09u@l%P1+V7C%m^hTPSHtuL7zAWZy zgfpgM4dk%U3RAI$@Y+DrU(y3v-M}k?;FLsvNLfW~M1TL3=&#ZD&2A_@JCuB!$KGdY zIK#s?$3sfzg7^_kYDI=@WXP7eVEj%eh<0atC~e}62tJc@pA`mwuu{2aP=MB;&s3tB z%YQUKDaBrIJ16Pp1eVqJTb--Ybg!q`jSganaz6fUyBrt*IN+8wv{6neyaG*B)^|36 zFx@8LeQ|pPX$=36=0ck0%TLlgti)@RfKcir7d_Ra`FEvGBEBljhBIpp6&i!ulB#}E zh6Wv!?hKUiDPm)P9!o@z7!j~AB3LmZI4OA}Uq(5wZ6lRpq{oplTN)AuC!5437wm5J z^$WF{7AJPL!MD5D>31p_?Bj{FpijGlm6Yvf_io>seo{n0+tCgbkb^`%zBA^Ii^A&h zY0TWwk(RxfJB0s4Npp@8&Jrb@B?_sG(;`>c*6Qqj!bM_#G90-}NBpn(lfa8P`X%nk z2*Xi77lmB%p%7jEQphuVGY1WJFspXyaYxOfEg_kH4lqhCFUp-hZ6gzX{9E(O_hTu8 zkpv#hoB;H!YL5=+++Zk}%54G0jWk!g6GN~nMz@X}?uTt#t|*2lXRF!Oq7$tmWs7D- zf|r9%nhu_S7mGeG_j6N65G%tTgHHe4lHs%)e^~N!IB_0q@0%>c#hk zt<&W}n$Ml|#J&A+5$_~WOsJ$6^7uG*Bf#xv-oeR@QX)JC+)s(9944Pr*t{gWIZ1u< zk}T;Ygx*PhnIBD-^pIMW{&sAW1-bn3a z0mSyGoh*QVdI7j(f`JubieYE!Mon*(TvxUe@!oQb< zfA7Z<{u!}cJ)_22rI>4a4A+WBzTCT@hWY-XDmq|@{a_w1^;o>yfJH7r5nZT(MJ_=R z%zP|=uIQp{tKDJ4udrzh+ub&W`5qtL=G3lDi-II<1#%iQH+Rz9Nb^RT72^@u&=@Ph zr$=r5T;ir3IOJn z&YOYPwsc;Ni8ZD3iixdpptY*>K*O}HqPeYqh6y@y1bYSO+5Hzame8-!FwZe&A4ZyL z4!})Lz#IERm1I zT&D-ra~}3Z_wfgLI>@#}I+f;>0xv8H^8jsKi?F$_h2`w$xJ!CbuZ+k((~B&BL5S|y z^_DnMjx%=~oSMn?1!pH0&Bi03BDwk4cm&dvbW1Y>oMeeF4r2^xkButhm2qtlPOv9Y z;wy5(D{x#@W=iz*Km7Cue)>IsyyWilDs{eca&24P>z7?&udlef?>b*r(_+VC7sRu< z$bU!4@jG4T3lhl^a7tN=K-fWl+ZNFa?uR;GHI_L<<-;izEa0LJY}{;?*;lLcHKHkc zQl}t~2qErd)MY!MGt*x&cGs@UdO$IM-fl^*W}@b8(OgM$H+F9b@uE-#D!wtEFfO%mgGw|Amk<^%26Gl=@tU@04HX#@!B{&`CAc8MP z^ag7nf-gq|l6VS4Y@3J;Nar%zSyORFrBr1mj&HrRD@%G9pC4GO08c4161c1qcE*JC zRPDC(s3z=?e?*MJcRAB>+ni}qZOmgB<+_yVFe_ym{smH|xrS)qV zx2>ICE+}}G+`*uKA|AbyG!>0vd2H$%#$$yzM8Ck|ledI%VIJ?H1^|4;bR_mw08rze zFqS0@8zn2i==dfzSHigMO<@ouCS}HQbNL^zb!Y$dmB2l5xhe@b--yY7kmK4#z-q#3p}1AMj1qLC zVYR4tA{}dTbX;25(^~}zq9=JhbA$PC1f4G&9Ab1skf04Qqtb~@RU(OWHXBOEhC{{G znv~RjDmabC)iUKJgoZGw)Va&K2-yF5(EXnm@qlbK+PizkL~0Ej**(Kb$HYw{&6@asJE;znp z1vtsbASt(v_>Xv?I3hxU(&?1cSw2-xw=uwRVv&2k8#&;Zai*#8VK*CRrle7G{l{3R z+({^ZuWwno675^*T}$txy;yBpnJJq4Pxs@wbrU_e7$*5O^TkwdMWU@#5Cyj;1ppye z2H-6k^t|j*Yg8~$?)Duj1Tbod3ZKZjPV>kQkCW-!(>InS2>D+3=9fP{JNMvw;UoJJ z*_~D4*a20BfZ-}%4RzdjH$`CogWJy7H&W7nn`03%4`^|x3*OmJ$u%7(zhcbgiS(+$ z^zWs7W#;aqRytDXNWBSF00=f~N(BJ70>B#q;6{3*vK}9DQv;5y{%TvoaakbZLV9DC zIDlM+cgC7>h^mWqrjqY}4&_wX4y46BW+nI3a?ROuKy2;JT0aK=Wx1{|ZKhV(yXeP% z2M$6W)zmeV=lALUR6*MqOjv=k0!3i3gGVX32MJ6?V&Vn*U_J~zx z(o*E!Ob$qpD@>pz$h`@S(Bon8J({(BtU8vR%J0S_Ex1Oj?nUR2rmn|O1cD;l6}OTo zN0iJ4l*|Sk&1_%_?OY9PFo6b-E7+iMFZm_{zmYq&m&2KYJLyf_2}0by+L|+e3QZL{ zfX*ox9KcblinvlTAJVn?5FH&2?$~_DvTd`?WQ<{BC;;DhYm41n6(J@m?~k2OE|%!d zm=ure;LuUoQ%c!0#^f@E4R+GO{2P|}6%C$D*ww)ioSpuPaR-NIa@$8m_CgEY%LPM5 z92_)v<}(!l01h675`cRFpy#N6YFj$Fh0U9{~wuI&Z$Y`eQe8UljyOvh+ny4_;@G2~mmroLf+EQpQ|TPn`T zy(D2hNb{!Glf52bjL?(Pp#r8FFh$I9jD47H3t(>AG_jFdQ>3WGSOE%atk_3;P+ZEm z*V0^cn32R3Qn)}AE*RBGS>c*;A=~6@kN9r+;49D%OOi}?Fh28k=LH~j>wWL}V}Aa7 ze%{NK1kuOsqNBc-)GL8%3Nda?z1$=9T3=r=;8gYc5CTQy%R>DD!}&N#P}?cdd|h~6 zQ6bUoKV&bU0()$QHU#Cd6R^w^g$~?8-n{*HUwld2k}b60rSxpd@vZ01W&c|qmxOa( zjj;TJd9tOxABBUE`2TXciHVotxCRpgGdVVw(JKixmrLCPDSwSu%Zgk#5Z(7zXqjwu zRjP+17z}~4kv&_;;XIVuQ z|Jur2{!fKiTHAY6K97XaIIK?_qLR#*cWMH=tAKZyhay{kj8R+NVeRCJOHy;wIF zxY!6p%Ai2B41Wv6%4~s*GL@himgfp&l_ky@t*q$?bWr1f;B*^-aUtq~2_y?l3!uOZ zk_I*qZ*v1{X(wCQ;>ETa~=#K|AE2A8i5J=n*viv7MK-@DhL!HzQEA_ zu+3>p7*0Y+4t1pif8OyH@&L*RAJ{j03D%vCIMb9S#J6i2YkFn?0)v_L| z)-|#&>#Dx<=E$Pemqe00>(s2zJgTf@XK=Slob{Qcj+xB{I>UFi6uG0?&63&ZV^%-c zbAM#ChDy@sZlhY8SvROQ%KD7nFwJU4xp9ss$!v8=HXEJcb5=8YL$XV-Q?D|!*&wYr zd~;-s5tXt#IicJ$yT_1PRZf$!Z*bNPKTw)w$*cNwkt6f0O|zPjXU;Z1#?HEC(v8*N zMNe|E5oj`TV^zgpiaR?BlJwUaPM&XkIDbDL?#tO(+0K2~T8|%{BVRsuK0f&1i>d7K z$w%J)^p4}*(`Oj4Xz+|D7}#Fl9&g_6@5^P`UcWjo+r|FVefih+#or(Icyaybez(1Z zAN#}oolm9Bzu#?d_IJmJ+nfEJPs8&w_RId=`|B6SPvz1{y0mtTESS5ol&)a!`hONm zFjixO4*v7Q;RvOdr9Xx9jrAbxwzm&|+{g3J?+<_Nwin0Scl+D0L08+4+fUoeOV`-0 z+^rh~gewqs9L)Tq`jtafs?YpP6%#O6&m*aC%l5-{Vidph|&&=1A!leJD zQuev3e&qI3?eZV;W4mCT@yS``B!78eu%RRw+p1r;a%7*}TGnTu+$ifap>ajbsRED&4%@U`j9zA_C-8Ll8iCEXUlEgBO~jxU`}sYH!zMVX_CxRaam51iK?8O zkWY|x;?mM*l02|sTUPV%)tclQPA|$T#_~5!wzKlWZk1euDqQ^{ozzTqNq<&z!$qVg zeU^oPOLnMC3@c5tWXvCw^jR=&`jtOPR&;3A4P)Gtvzl?oegJr^!CT#iH`e2H0@pTgd>s z4|>_d*e`K5l0J8gdTk`L;SiTNCdse)GcL)>#HA;9lc?L#h^>}D@JcQ-S+s;gY8*74XAS7tmD+xggk ze*n?lZc4O9Qd5>@qX#$DQkw)o5ClK~t!J-idiLihS~>niSNdG}?%!WN`Q%G8ydkWjcIoN_Q|*3>Dep#@vj7yNpbdT ze)R3kC@_&ey_vmu^4|h%F`z-GoQ49}_c!nE-kraDlLywT=1OGp_5_hr;6dnS6P6^)uyb$u1NDRRqDqQOo}4BUc|0Q^GXgRrAT!c`H!1%+ zRA&T9+Bt(Q5D7_X@XIp-G9w@}0+~P103!+XDVq7G3qo;6f({uWe@KE3jf&d#g3c6V zSRk*X`5A3uM7WNUMAtWRM{Hq|o~xQnpji&I?$9btvSAzPhDk+;n|D!@D~6s(CHl<8 zHqGBr<8I$|O#zwD@w5gYL4@+8uG({d-U|^_=ynijCuu{~2K8lRhvz4areiRO zzeN=GF8+KX`zGQci9a%bR5VGYPW-veY-tjR76*ZN#nfChqG#WprWl1clJG`c!5gV+ z7TQQAtINP*jFTjR1ChdGydU5VL1U2wjF1Ql)V33SBV=R3`7^S=G^?tjDAH$UG=xVo zWIXAOv<41{%X~~Kn89P?S8cLnaC+m`+hj?AyKMA&lPv>kUKdS&mY8;ab8;HApZ|#) zBmbb~A3&beeRCzv_3)b^`M?9wzw;x;=02&p-2L%%7g}r{@(|49P6p1QbIi zV%OCG$}=AJGX~&)Z~W;gQOJx;|2)SsJ5Kx*E@jeF^SLxEQ(Vk5=Q4|M^NKeo5SlNc zWXaMenX)-f<1Q?1;jRT)EYh-d3uIviB<18x8Wu?gYpyCw^30)|go@)8hfPo+i`ltU zqVjLD+LdFMxF!kJNsi%G_LVr6(n$Yqdl~SDMW6WUjtYQ(6uaDYukdZu&ln(fg84c; zi{eWW{<_EfG?2dZVMAf(J3=5i?87d0gk>fOL;_8VD@0{NXMBEfLSppk39aNW`O{~7 z`G#-5=1&y~2w)Yk1f*VEnCANcuPkl#1wfzkxPM^?GAz&d)3XjpAgGoBA`LtFHUK$K zvSR_DXB}OCG|9mX#%aWgV!F@*L&mctAD*xJrOFuIDZn-D@rMVSsvh{5*H@<=gpHL@ zeSe^nJ>jwqP;)EI#iEvGXpjGNC1rQE6bW2Ra7fCTi^>!GcGQnY0}v{voTpVR?a4WpwcU64N&QovoR{aXXWfsG%rhP zgRzgKdGW*&yV;D2$n~?Y=9aYHVw0^WupTHIj%YMJz*@bpwbHL_Z)Pj9d_GTBP$hwwi z#RegN&<0#TZ35Q>07DycEXRK@Lw}{ zDi7`fB7SJLf#gTBA37xhE%y4b=%OsTwBk%1EuZk2%#BWmts?cT&qs0_cTqbz)yje? z*T%YWOT=3W3^aiw(kyx`;aE3r2@@F_n5K}_XhY&Dwm^lzSKt>&N@gcIoPTw48Z|9{ z#OhJ9@u|u9q!Bp><@lfHfxo6JbU-}KpP%K=FISu!>adP~YNM6O`=PfVk$8g+Yb~VE zS;U7l|7GFJ&BU97-HEpy*&lh8n0?zH+AACSZ5;P%ez-(Di0**297iCq_oX9`c@*;_ z@iAP?V@HGASsz9v`eoxTYSu?k)+|tef_E|0^B-$w2boT^l3I++#wb8_2X`*h4Yu@y(j{oT*f&?DBz{0}KepRwO%ZshJ4X|CkU z^Zt?Lz2DPP3#J9;Nc)oQ7-2yDN=BxY;B4$sd^N%?2yTJyDsJ~kJ^B{F88WAT_|$6& zI2!pCle5d6$e{LaGh(~D;f^)f$2J081XAk`$vfksBc);R&e%sa0&^Ue%`?=;OPc=w z&T8kkG}qc>m~EKm%k-q@+YaSI*m7#`w{MXS}d<@3@Vs^&;oljpd6vSJ^IF2*5M(B`G4@2tUlBAe=A_em``6? zfSvd(21~HN$OC_tuP?jL%Yp}74rXZpgn>xUrxJ*-^1xpRK|UP`#ZU-Jj36{W^BY436fY96MxupdB1LepilvozCf-c{s;CL1ygA zZsJsA?Tg^D7N+ecq$}~79i#Y405}r>?uI+GdT>a%6%Gkk_!lH(gm$O#o|*bBYlVM- z6c0xe-vCPlOXi#_v3%ISu!btld2fA>Q-NbY3Z!M=3SBx{Hfc|ZwrBbJHeWB~u?L+C zt%a4>qHB$Qlj(+u126YX zHe-~&_uj`f$o6~tb(u}>x#VvoC$cD$s8xwpb@{9|2dPe_WIu3$A1$#_k{(UXxqNvg zcbC#!$(QF%Ms|>oMYL?(I>RwEqWja`>;91s4@sSJVz=6j;Dkt~DehZxlC9}eFF4a~ zFx6hAb&oT5hbie?W;ntGecU6~*dx+?eEX+sE*P5^zRw;5pS?*wYuNP7+m-@GyFL)? zM(%zY1&IxRkz+N7RRE5?T900pc(g4gxMSzRDOp~$d0S|- z+mLniLL#Luq`8si7iq4fIqx4?M_nyk7C9d?-Mb{T-dyGN`6xjT?%M$KFWPLiG4HX& z(U(m)SIc=GhMa|fq0t=q@HqS4mPi}spp;KEQzIpRC}GwoAn87S>`d-%`)INTgAncV zsVZuT!_*;bE!12|b1lDhcX!2a@8q{@xoZWF#6cv;Y?P!94K+8#msdiHYq@*fMzsp_ zUxj6_MxGPSrkUFNLI4^UN94%(ZZ-d%>{mzE@hDT(5u2QH>xK`kQb#sNwwkHLQAIXI z`s)6FU@ZC^Q0Y5CR)$4c1q8lLNx>%PU+aK2o(cxZLkZg7`B)5PLYCZZ3hqnb>_%s{ zkwc;OtVr4zl!xBg0B}?!ccMrdEeCrB=l|daSgquy%?=W*XpvnyffFs#ix%nnRD<(g z(X5;-x@^=iH^hl2i$NV&0IaP=`ZijBWa>7MD7DriF6LKk*{#hvTF@6BpS~AD zPN_%HLD5N?lGAO#B}J*R>gVMoJqcM8_M7$XZscS@72Up1-fZv+eJ>~RC?`KogFE)| z7EX@Oy&SFkhk^?Oggo_p_BJuN(1lQN(UlCmu23|-m1zyxw9Z8-Ew52IujyQOMhxR1h2bC8^<%K03veByL92gV#y=pl~%=W1YV2`WzH)M`I2e@0y*rEyhet!daQt!Mw2ts3} zcrp5f<2u)5fBYuRxisCE@1?naTS`SC@;?=~vDiG!-1_cvcPbt@gDG(V>Tgk4DT!Gs= z*GrZBUau*|M9`_2DK`~#s5uI3#CLMM9=^Jak&r!NOUcj_f zExo{1AI#=m)WQYHoI@ns6nu#c zuGc`$|Ed25xW=L_^d zEFOFkc5VOw*R|211YlkH0Gw=Knh*jtsu)s*5bFpCLVX1Kh(Flqam z&Y+MrkTHsHW#n6dqgvBh(@tZX06;X>CX@i&_3<$k_p6ol++buEN%vY9xugBhLV*sB zA8IEwnl$l$Hd7FZLHxoL{3-zaAOKty;9N-aM!vj~yW9Se$`(TMpZE0XptAh8VS!}p zm(QMB4cpL8su5dY!tZ(1-jqjw(U-7B?trGHI#F z1Vv4zp+ZxmnoM2%sHr8^bn&BRlf;@ea(Q&ysf{~HIZDCEYt53JD9J0obX+TemHyw+ zmi@;z%%QW|qjL;5Hy6^}^mk37DGi%=w1u~slO&o!k~bqH(a};aeZzMba(7+)b|rV0 z#of7o+?~~)eAoBVrg(?zj}9AE0|AsbMoGjsH9tv{m1sF&4SL~`b#rSh>?lH;-|ptj zzRPU#i{a96FmCj2Q1zbQd9!CseNry=HncewtN6WFJ!6IlF|??9R`Axb>e;dC*|F-` zvFh2e>e*pdJwtxWSc?pw0Ixt$zlK%M&_#u2lcHz*e;;;}ZfD}C|80%n*o;6y^1_|fAn}o(G2ZQl@tlRQCs>{W5 zAHcS#%T=(^u`t)MFxRm#*9`fs-)`UaClE4*faQQ#-Xz{dr=7fj1qGN5z2${<`nnSf2ifM#Bu?@S5Dul>jwj*h?Xe?}}Q6~ga-yX_yTyxE>WjA;th4bbur zEs*7)aJ#r{A1B2RVpNb0Dbbjdx%p+Jo$Lxb&EhfE44@qp>$pmQ(4sQ{+X@h3WsQ=dV7E#W z2cs23vT+xcb!%+)su$R=Ek7KmtEVP#c%bQo5{{PgLwnLO!W60_AL9AY0$T)5`Aa3X zP2>m7h>5ldj5H(s>hS``d--8amLG^*f1>r&K=wW)!>*0)nmutThjS*BNP)go5{9^T zvY|0j7_9+HhEGV7UqWdyZ{tw}peJ)F9#WA6@SGCS%fGZz{;|;L#UF>5cnN~_5~1y_ zG!kFyxq|YkF^(ApJ;#=kHI$h{&%e)Ck~A^#|BxyxERqLTE@r!)j6K0)xLuBnfAF3R z5Yxl-hlM%(Kt~1NlO8kl^RFB9Gy8TavS#J;>-L%tFFqqWFcvJ4vaAKmKnls3a~ zh|`&bxsL&k3mNWQ;Ik^37UinaaZoFBexqKaveeGEDiZgkwC-Z7x*sbf+K;TLlx8c( zO0+7tuz3&5dO}P&jg@aCgEDt#rSWF@%eDPtDR>hIE0!3#EPSqBRZf7 zaNa8P3!HFW!0}dqtHBYYe==s0u;9#FXPaP>f&v3Io?fg78zrGW6$$lG66#Ymq25s6 zsRfi=lMT&+Oj|dfzHXOA&Q0)5fa7Fr^vl34<~(wmq3g)~3ay=TG17U&_++%iinqUQw@pULbrX5gY^Zv@FT z4ie5q&HK9R3sVyiJ&@E*l^KwXUxJ1~1eZYsnGYQ#@XXifM;n2%IAap>c_e7)`hAWxBg$W_2)TM|8sn_Fq#*JM6dAcQ7(M5iiP zfaEGs^LBs_$Xtrd0*zK|CKU5s86B-OTjlFd-6e{K2HC{)yU$1c!I&P!>o zq`5ABYcr=LRlX^dy&#s&4#}!lH#||h6gTo z=3y`C@HtTje|MA)0GjKz?%m|nPMINu%G#Zvnl$@e_KRpTDh-hy_83C_vF5cUDQpzI zShrQvi(~B^F*WCf+sPRZT#t0jJ-0IMl{D+-J-9=zX+p-O>>uK^q=vUxQq6uYzPy#@ zuFb~bc3Vb;R7$0d*-M7qPB)H_NL$%=LQ15S)5ne2f8)DYKguLBCtj@RR*6#Ul|{?* z9b%e#4rpz`Is28QDd{4EY*&f>KIDUr{jS%*M?rm-j}6BK`?0D&p)YN8Ax-xJ@b~q! zelCYYQ*S38;d@%Tso)B9mrsKK>2x7x zaldaHf7&G#!(c+kqip>sm7!DZ{4hEmlu@e6yq}98bOwan?eexx`8NYyxbZDMBpt&Qh<`lhheGLjo$mbVf{s|`? z7`m^&Er~es{{hN_&i@K!Ze(+Ga%Ev{3T19&mv46n1_CxXm(eQ;C;>K?I#mibe^^ax zoJS14@2{9+dzp76jWilCfqdY$&_alPXls0Mou!0^-LSDC{r7z|c0&@}qKj9feOBMn zXv|$(X@$E|=^CG0<~mCuS&Uw2%ph>$9)uOP#Ti9talD8w&Mdw49d~P`_uv@h&cGNK z6%Rs+x&+aS@#1K)u{c%+EzT$de?MTEUc5nHA5^BakUR@DT`ZVL9`FGhnM2)BP$TpW zg9Eg91C%YE7wT>CASGPm?hVuoo>L+1VZAdbUp(kASvcsh6$popu_EEnF;*xXI()?f z29d8|Kmg4aJVcac4@)O>%qh?@;a*z-nQ*;9C9goi{GbqQg3qAfDpUA7fAIy|;^Akq z!V-oHa>v?Qgv){oNT(erelQXgbf~nTphFQRQ21lKc#+YFkT&QT5g~2RF?8{89HB@F zVDG^r=x}%FAn2G9;t78yLJX=GX}ov}$`;R1ECE)EvO(>DLfvp%ya}oY4+aTGaFnTt zh(QN4C=V|oR62)8NPt9De}ICH5DyAE)WRbKQ7jx(RG6499&}g)HUc4|2T!15IC8E6 z9Ue8La7H|8NRfD%w0O`lSA@h+;t?E`0ZLb39n@SrGywJBL404;sU0oAf}Cq-P%A=! zbXgHXIJ;PQj{Za1!t)LttIZT4=_{d%^6BvfDCp2=QiWS+r;rlue`{mx&dzq*t8#@( zm}u)aW&8EF-;0jwtE#*3AzU=j_>ZTB zd=LT!+w0Tu_F{imuFCfM)p^-2_n+>{XWf^7f7s)Tn?Luv?IrBkAMQTJrNr_3-S%ex z@pyl_-7j8y;Qg|H`|jq&@l&}9hE6mbZaD8$eO^P~%?Uzce-J#%cz!q>A@r)O8#B!M zM*9Nnwu}2e?$-I|cZa`r+l%Ar?f$fM(DnA?_S5$Aig0MxVb(1i!q}@5gMmgBbf#*r z?lIe|umbgb1@)qAKO8TQ1u6ON1N^Ks?fZz#7nzFb{W(*hUA0brqGZ1UKBjbZsi>DM z*s4BNSWkjQe=Av5GV0rLrRKoIwRcN`8`b8?XxOkC7kv_pX*QEKoBhW<@U-MsV>ioz zF`#12OoAN~IGGef292_22!;b^&ESFAr%5njs&W<^pUDcf)@!WLNig~~nLiBFYLYZr z2iGQ9EOIR)2{y*K$Xa1>4`lsQuA)5)#sz9wGdgmef1Lx^Fl+1CXfRbv`iF->og-PE zc(b5Ol2+h3RXN#Fc-YmMtqe?n8k=tp+)){x?2^t1M$eidQ5jjm4IPyg+^{WWCF8kU z<9(0=V*_d;S+L{kNn+8gG_xiTuhx=Xf_F~kY_bLY=hQlRe|TKimThclQcaWd1#i46*<`b$O|r>mMdc^+hmE%S$bzv8 z#D5`jV5EdJS#nJ9kFsW97sy_$@#vkF6ddnZYf1kIDdC>^@7QPahYTbp9ou2c5$Gl9B8SedsFJnrq8)%+j?LgW-k)t*}vQ{ z{sAv@+LzJS1QP->HJ5;;0u%!_I5n4X1p+F6J==04w{q|M6)ab!LM0XqbmQv84;y=( z_*BKGyjnl`xa!Ed?5eygttIN%{`)l0gW-T2N*oeHa!>f6X@VR9ja%Q*kdwC)Ir;Aw zQkeLOp7goryZ?Ig;)`#=Oo9j&?Bvb$1TYAtVd9(?9w%=uCqGSpyuF#tt{!G5r-(Rz zy}mmEH@!dk`OROx_*SdV{~9GgDQYDB*Tdb#uUE79+KX3jUi|hV{vao6f&c<7QVT{% z2$PEsFMj%2PA=)kzYtm&{N(ra>W2vmg`PgWpPaq;fsrj5L@>fgRUrHE{%&@6arZto zET0;OMJR$H^b)v#JLwi*ulrWfQR9Sv2RCsDgs_eMjNj{Eg{1B)CD6FZ{ng}}`Zf@W zPPg*k{o6^m__~=~Z6{g;uP~06rjODRMpmHHJYL4ga;OsSv9|Pq>PeM25gd(loMj_4 zw6lD3ata93>!OayPp3*6ON-=Gc{{yg@Z0iQP^g6RDq&q3d+Wid#97hLKgY7jtpZ?~FnS~AAi8eKt&LV75>^5p_W9EsY2 z5>|#oqIR_Qq_UaXsbUxw298*gqQ)EAM!Q^DjB7E1w-IOtY1Kw>A9GoeE! zd%%GIoxg;jr+<@~-U<_0o1{@|deat}=K2m^HZBRsc>U`lZ+p6;Vv!4fprzH+^DhJH znfw%J8?OKUy0xALfazHrOwVH)(zp@$2Y-3Pr3(gEqo6=D_&e24VohufJnirV-i^_k zcXImrBr?d&m7(rxkE z)#lS4NDgwxX@6?ki4Mo%R*(jtz-*L>M;TX_mr;t~r;8MfKMxrR;xTIa`8cG{Pk)KT zE+H1d1%q=2k4y+3@++I5Fp{95qyPg|1&s=0x-5*jK;j39@d|~1HK7%Km0^ZwLZbgv zdgRg-mmV05vofvPcssAZw4`IX*^DDNC`k>RvrzV)L6RJpgHq|7OP5^wbCf;?mi7Xq zMhQgmFt9F3r3VHx{<3+c`wzn?+=5g{;*kKvez9;-YbS*uzxesdDSgc%fB;9W@uxLO8U8i5h3oW7SSkhXE9?AGg(Gqbk zts>=$J=bgF!Jq}AuYy~kkqQfw{=f*_w7cDq{PcMgqom}2y(aTsdtmT!8A+`T)mQ^Z zt%Gn%E#sJ}LfrDFq@nXr?m{QGG;BWTL(<755G{eMlfy6zBx&i|wq!3&F>`{z3LJqn z;C4Y^VWz>_mu0ggt(f1q^jNIpW>L);obi`89fo43uekI_@!JEJW}TAZH*MZ2_guPb zOW^#vW`Wp$1Nx`WhDndgsnln-Uy@pw`m9*u$X~L=p+=H80wimxa>=x(9I^vp1eu`W zwm`~z$%#i{|Bly2C~Oy=Z5Lq|whK~{R5nlUM$Bqfu->Vd#j@R8hI-53rbE};iEoH~ zDVGgYxIpWLU6!_<-67HTP8f6tM6_+73U%u?!ohBTqiEf3h<22XH2YC>+9yD=MUNB7 zxnkmTvr1XI) zyAr*B9cY-zA=7`%D)?jJ9-+}Dm1|jj0JS4`lyz1pe@H~s1!6WX6H$HiMjgFTM{m^8 zEphZl9lcRUZ`3F2jj~n~{1m)Vp5(ZQuNMGaZxkCzjbz7@O!R=j9fRBAw^8_>H*j=H z{S!E)9Fn%GcIA``v9*xavwk|5c(qfC6fO&Y!>j0vy926XVRx6 zqg#qrn6~DSlyhT+cdc8>?943{9SO-R#T3}`qOdHLTNVs0OXU{wZ&wV?_#bY#bjjd< z6@xz*+!S@ridvdC?>j){_L6f-kL;YX+;znU3pS5N@R7kCgWKY_aTISb?4!c5eN>p4 z@BVyLyR>NR+ec;cZ#(f(wL(T+s5%DuX=ZK<`k!nu&CwH@q#kCM)G{87p$UrYoK43@|=TDfSq-q9g4i&4fn zC_^?{VZF(t@18MaTWrUA=us+~W<;GD^j>cwh$^Fmlp9ph=NdGmEi82ZS@)N6QYdGu zAmBKhsz9KM|0@Qx$tpNTAECDkIIew^N(1doyUlz52hCic;B?pQ3|*MLvJL z5l9!VgoblMlVrNM?26Nk38|k?P91T>uLz*-bDqmSO@lU=09$49X>kfnBx?cHW#{?G zG?P|gfI}jgU{Y8?Lo)qf^&+n6XU^S*CSpSJx|FW>*sb>IJZMD7fZL89#?#!U?AtB3 ze9m}$;L_C-5fj?4u*&tmZOoH@2J>i3BqjU%lT#hy8*IMRY*gBv=ULHmuy{zzPa#cP zUVY&yh8+ww9X4gy)(TBa$SO^&awE%;a*<(gP(>fVjK@EV&OfjZJkia5cI`u|wMO#+ z=?yH}zvcGNx&04Z>gC9umXfW321LVPT9tD&E{kEf;L-|)jIpSOY~wDL}%~%3Dd8$EAlR1VZPK(qLE#!m1{1 zh_P}McI?^S!Y+*n9vJimFd8BiRwul?g6+6+jQ4}Gi?`hJIfD-wtJPfDszF@2bYtT( zS9T#puFPIV;>Wk?^G>;cvhf7MlmScn3m~Ghd;3`(K<)Zg%^W_@t zH+;E3U?^j*fJbJ`1s+2=^A=N@IdhG!G@QBUN@C4sZ9Np6PZ>*UpyNSkG|Nk@^mq|+ z9Uk4dK-MAGNcyezPy8{@yYx|vPd|;zUQ&fY7b%E4?QSn^* zZo;p$kBvpKS_&C|+$I8u_Cy=)@EUqTTtXZYQ!V(_SPYI!32qYY01^!QOLCWd_IJqN9rm|jI^FO0>fqe;eA^deIF zkZiI>lm2gi@)>ihhuLIN3!KOFL@SEsP%GVMnnfnHMEEZ`*H)j!iRd(GI0-LfwmVb~ zl32PayZFEe%ou_5qSWLAiz1nmEkWk9c%J)3;5`G9C=8k;#u<(?)vS+bu6AB}WI(TI z%dAf)F&9&q96djzXBsw__a~95FUQ@SG3ykV(n7=uZZ~zc>Sf1JyB&^ z0MVFc1%8%JSACXFT7A|#d|MA2pwPkWd)Ocv5nE4+U1Qw-zx}$rPUg$xe`)U~(S`Ru zJ>RA0U3y+_J(}s*r(^3x^u5%m4|SuWU-qf!n^o#uq*XO4LfcExYII!Nr-Q^dtk#)2 zUH7bi#7EoLj6tOS^kq|eWbm*?TQT5OXID~n!lfWx?yzUVr3`WH*7@ef>8g~Za_l== z+DI*wZ%yd_NTb)F(E(c`{pET)26Q?)Ym?N)R%zaY^v#D_l%li2o#ev}Ve<|CWfioH zn!X{CGM#DBP>I+!**G*Gn9=N-otGXNtlL+ArI(1=Mre_!6VVDuNDjJAUt{Kxi}@*p z!1LN1MhJ4PPCna+lBhWln@y1fqA5}~;g^o1#9c1Uir?;vS8Cy7i<2>m56r1-vX~V% zgWG(trp9<1+vmM;i{6{f=!h?JCt&yICRST*lU?=@W+HcAC2K?#A_&Do- zG16NlT(l(<2SC4xA-ESk<}}@o>S)^y3#{hv(YgcN;Uy!eQ1hFF#*s6$kAuH&y;8^P zVOsqt9C`03yce6~p9s@GBVh9=s!9YJeUD^aGF~Tl&Ugdyh8wm4-7=Vsvyq&qon!aC zk-QSx<(=f@aVLG6QmoTzLk&G*C+z`$3$51S^!t<8vDmFzW(R4W&Y!$FO>4!T1nQ7V z5*o*q+bhvDYlU0)va<1LT09)uUQp)Lk*0lu(t(%y00>$LKI@A!2KVD^9Ai>4zCCXo z<4Li}CM^fYjZ@n_wJS$-ynX}BAsx%m+6!y5W!T}9adfm9I`b8Rpq);2z zdsst}?(INV!GqSN#f8Oj$q3vqxM)WQ(WcW6$dRRU7t9KKZ3;r4A4M?Eufb3%lXZ;A zE%qHEqtOczgYwqX`=w0r_Si#zx`jc5Ck?n|dS=WBnP#yDl~!ps$I6_x>Z)Uvm4&HR zCS_$_x+rYBvo`%*69FbU8+kXd1$zQpkT(r-wFKg(M-FF14uwQU6}b^><4&Ug271~Y z%hDrkRo+I5rpmc}Z=;yH-{(*&XAeJ^B_>j|YVYcpbV5Ro&~xr6Rj#prPK<7krAA)_ zAlno83?pD2Z;{8u=Uv+IE^Tp_Og9_{?NpsGlpqt?1DTF~MKELVj=@#&1q*v7o)`>C#yKaS^W${Y%XDUW&t3H-OR1bJ)*YRCpK3r2 zxvd7O;L>^Dn|HaED&yNdoBr&kYS>u5=7Vqtq4pAmI!iP(amy=jzg#W#jTIG$XoPlqH!q?WM3ypNItDk5#FxPG{g>=d zArPfMWBLBewIldqHFYBRv`wlLvIsT@@5fo|poLQVK8B0ngn=Av<#C*@DiChp=NC{} zp=^%c@cOu`pWW3)p!f4bVy6JU(lJh-Qcy?t^c{nL8H20!eR*FpK6Qjpl7C;4&{Ii} zLYt+vN0!eHUGyW_0;B8)3OF+!OI-<6F~+4dfH5CqGUFx}cP#x`=lE`8FyQM~&@2JYKkx(=igTH?XD4y@6H zlNMfeE_g`%0?_BujKK|mdCsNx#g`9UI`8|3yIkjb+h2{9iv@xdQtw+didT7SlaF?K zGfr2X7uN4v-i@j0WymMK{4rnFQ3~ubXPAC}9r+yF;vJ_xb)13KIX02nT0BrT-0!wt z8ZU48#$m$_PQ!*@D*b~?S6r$S|IwuA2CjAvq8Ac$rMOcs>n2ZgeCz`_7c12AF?l;i zEDVv&h^9>m-z-MQmBm^Z%WiCCBksAdfw(tnY$aGH5chrD5u6kbTid}gF#VG~?g#{b z0T1a^5m*|-HW8lpgYVMT^F%(Y?m|=2`_&f=th)SJ3GfL$uQxj!sZBbJGq{SrTh*jc z)|7+wP-N3;g6HpxFK2x>St$~^!&V*h@di3Oyo%-NTyfG-yRxerTn2|LuV_7h%iw^P zhCif3$DjkP_BPZfjC-d#x2L_^_)2wuV}@7Jf2BHTD0_d-Tjwz!I7y{dnZ0tZ4t zmB|7h34$s+6pt&ToW4Av{r+Qoyorzh>A7G)Y2mD{fe0$%p>hF{v$pY@ypokj}d`*vZQaHf((Lx)c6_*fC8Z-b?+eXIyU<%BJe|lN-Am|l{c&r#+wOf zaKDN6^EguU{HE{1NSlH+YGCR@%6+jgRMhT|>G>u-`>2{k+JRMYKuJQKDRDSU?Y_#- zkcK3vd}~qfJ@?8&PXzT?`x`LH#Rs&%AzrxHZty2B)ph(Y%?7_<%gJqjKA3uHolN{K z*s0vjXwtZOc~D}hA^}ZhgH(1MXNTN_okJN7Mf%h#X?86#%pD|UNL#oX4a7?m&4Es z`Ya)|on`2b(`wz+6^Rmhb<*0Z+Z zm+hxMrPOOep~h&?($~s&QAlmRZb#v)g9kl&#A*#%XuCZwnglTq1(o?aHu=~1_`ZE4 zG`?=IQY7uqUrB*~ExTcxinfHqL%I$xl0l_gId)*OFH$^75^c%vet(98)9=MB=K zhj*%Ea397yX|EB>P1pu+HsYRytMhtz6@3SXX%ZZiW4Bj->#j$V;9Zrzc_#pL*|(uw zRK>H|Tg_H9g?eLZ^azPwlYm|JXwFN$i9F0jF5)7ocD=mR5-(Mu3Odp8u1$%~S=;!_ z_ER4}4Je$mRnVaAprk6%NMrDQi^1!5T+TXJ(W8&M#&ow(WqWDugjpD%uVb@+ZPEL_ zMdj-jv+tUJS1fZ_y((6mrxo7FY=XDk4Kt1WUErvIKvk|C*ON2)u5KzUHoAsXRSKDr*l zz@QCHilpun4mAsh_?&PUvm|}Xrn~dPkoVAM&#N7Ol%)U!sC{P-i0Qj+b4t@nx!15F z74OtsH($waR%oP;`9ftY)yT<;FFNUoWlm4reEDl%>UA17uM(CH>~?w6l?dp|4xe+& zk41juE^_jT+{v=Yoh%n}CpW*{)d1`J4IBh z^%weoZCCe;D@jTb?E8!ZX>&p&=KTPNpOZNdB6i>BC4wf=!Q@fHW8mw-WMl@pliSO! z>=RHL>lOA3C>tN-94DisHR-BOsrr&itDHExC#kgRODe4v-n?T_X9S3(q}#igqHE6E zKQC2Eh{egJRH(EPiShixIZ^I7UrGbs=R_%g^CT*@Qf|^NYL2ud@s~Z2hR<6YSU+{d zScyzrNcYn0mv(y~9mQwbtw-soCCX>^tqC}4&Z^u|b7WHE!BQZU2-B#GqON zG3?7C0j$PwutneuPV)>Cd(I*uRo{(OO{o(5Qc~%a=OH#@Cdp@!a-^Pe-c)-2x$ZK5 zu9XJaa=szMG7y1x46Yd5Gx(js4TFdLN|ij!uz^WwTmE6JFk#=ip_M66x8WbhGvUX4 zU!z>yDFF9=!;%+Pw?@I^Io2JVV>J_=p7p=`;#)A2AcBo1ziYnJ48r6TtgzY9NKBjK zC%@o(4%Jdf1VdVh{|5re|JVv;Ze(+p=C}q90XCQM^#c?EHkV+01}lHZrtm(Lm$nJ6}~UvG1I!Bz5-sljEw;5~bx?D{dsN?fm;R(76gk(f(TaG$=j=m(m?>KiE}8t zp1i%Bd^i2}cClK`?^l0k=UVIO)$&Za>D}4)Z~yq|mk6!j8W0MAUXp%wzr6TyzKXZK z`Qq)HzrTrJ$O%leQbJozZ!kitFu8dD=DY9ZRS9A%<4{Wy>E-Pt)HXQc zA~27@Pj9$&MN@w)$f?+#HDEzli3xY(^kcI|34_qgn)V~8+i|w+`iMfvH4VT?fj)F8 z8G9sM>Jfp92yCQ5>tfGxP?9DBVY5fa=siNZ-Jh^M)Z0B(VCjG8_H+?@W2nO$1M7pD z{`u@2!*qFeZX}I-{C}Qr+k9F40bslp3PWi>EO`C!B=LWtZ<46sg$u9`Ew$7%vaZG? z(b5U)uuHlbPlS&=J67C!$E`d`Zp&Or7Z=>R>a;Ex%sNk5aBEqfvdwvY5Kf0GeG6Iy zWqTJuMts(3&9~7(2*O*n&uF1SVN8|LLSoZiZA|pf&p=uF?8=gnDmrr&9#8EA@rcS+J2RnqSWTx|(yW1}zv=aL+ENqRNFr{6hOZdox{Z2Vw* zK^Y~`rG7;9exLPZtU#r^B*{qKcaWMf!as29rh{p|^BsdZ-$|5Fq=x)e8W{~EU}eR# zvJ!t-S@B6(q3`G}i1+L1XQQr9>xr>zci{DD1I=hG1_r?91QeG3<0+W_?KLu#Y>bS5 zIXm|R(XvL$!LFe%y0>;7<^=qzq@5nrDs7i2UN`7lxxhj z{dy9jc0$kdY~T5WbOFpmsdd3%#bB}VgG${?+#3ohXC1;;>1^;>QureFE?QE=^XMgk z5kdFP>lz4$daVf?HRe)&;j_eRnR)Q)RqG3<4F@3pa}%sD2$&CTrsrP+Z))LH?Z;14eUps z_E{AcVC0vE$M~S=7`RIkU~`yCW(A&u_R4h$blk-*Ix~NM^G8N!)k01dO@g#D1uo%Z+9vq!6s(fR?-FBTI0qiuC&o~>t+9n}aIzbkJ7Di0_tog+vb#jVK7I3^*< zCi;9&pC*0UI1_(Dl2Reb&5&eNNO1@u?FR;%uP@V;Iy>O>xUZt{{~{{N`K6DYufS8~NJ8XCH9Td(Z@y)4&mayY zNBy?G%NWmh7hT#CM>V@pZYR1%mh8&YYdXdS!_I$1z;+g}!`~W2Rsp`;vT9v)gCsn? z0%au!tza2R!=q=|QOU6NNZ^ja&kPm}?#nGzh^3}qvJ=FN!3~3Z218vUJjT;arNUS$ zj5NYSIJ8_RdqAmXx9Q|}ee%;8VXk99fff!t*U9b@-j;9*b@EAjwVpcYwE%fc5$Ncx zFwlRPg7&p!7y@M69l-N43>l%l+5Hhcr*hF#2sS8r!AH_dcG7vzt@nNB=Oj#tE7!my z1YxY{;;|_1y$O$dZuR9hf*6gi_93ZKAe@65T_M3v3~z&^Pr7U=GBC8NGNy`F2YA0d zrnP;x#yLnuM?-;!&MkmsE`cez1(Z81=e2({1AI6p&TF-Bq0wOdm<|e-&)rI#5ub0Y zTR9@>CvHVH9Ew|@3OQ1#iNCpNB5pW1<~#&8ggo0yo^2%`_<3wAdA9O==u0m}_NG9u z5=BDTD=UwR#{^1uiJK81A{q1vV`G_Q9E**v1e?uzkTdj7g;kI2o+E$p ziin&}SqtK+&w@b|ADVr+G_bAgOCUJg2I@AMmNfF zIDU5x)SPYZz;r_p(iazPEl)L4^OmnJQF8YkFyrs8OFUf_KM9T< zB~khVga0c&0ts9cZ-Ocw1MCLiIHiAu!wpyLXOq8H$SB!$mz~~6Y%L3{;zZGWS0|=f zvK%bok-Bfh6_2>C<-%h7J>j1{X>D@FPxA|uKNbQnv0cr&N0Z|dI4Fz8jdGC*g2&b|QcgvC6O9pi~9b!p`6s>=S(6koZ zx@jdj!o+yj7w467H*jEq51d4Rm2c0H(dpp0%Gr({C!q#%RJSi1J-bJB4|oY{28x~B zRr2MFV9DSkgVjJj7TieZQV68j9@^am!3%9m)PWu+P#&cgRvz5&l1|97ajZ`%5XU)y zQz+wEn@u|vtg+kVm|=^zLxq3keb2&f-U^R2k(D%g%uNZMocHBaCPOmM2PMOPp|VCm z+?8)lt^EGWp~+}mCC?!vqlt$}rx~cG4Y2IO^c&s-o-?>(@DqatgNt&@kgW{ek=l_3 zHYVy{rIgR{^wptx#8+qM4ss^#3c0e{Mvbl{TD2d?f8ABKH{xP;x>A3tBzosJ$v2*m z3s^~;P^xUw-mC*IljB!*1FNEMX-v^)>j3OjFu|9C3Ae2h3BFS>!L17>r0;6s!=B?M zuoOy|>0RgIg263=>pDuIP3}bNe5%bnuHfL+_8(I|I?d~~0~xWm4L7oVbrKzvP-u?E zctPTeIvDD}a zDSUHL^vxdE4kLmxX*OWMeJei^ckfQDjKJma)P|qcN^Q8{G=zUm`od9`vJJuGtBOB%3pVrqn>kIW@A6z{+ z0R!q|7UL#&i(Pje$D*uT3kE-RE>ygRE;j=3{>m<0n1k60L}$r zxCn=-n1X-g#axorIL@$1Z$tI}#Tho}n6B=e4CrMYhY{7DvWhj})T;7yj0e!!N^!M( z{Qcndt#(=8iL;rpv|3QY;lX#*zzQ&pPhB`k-Csvi3kSRjm$Ojnbxz9O*mvtOO%-kS zJ7+P%DCkbQ`_}t&ybEh6Yuv8;Q)5_s;{0z`3PG`FV^BOqD)NvYR>Q!?qLYSY(djA`Xs;%s!@l zD+Vm8r^xJ~omft}QvN(1&N|8TwNv>r)U-}$IHoKy%1Pl=QA|+po+YLs@6Rl1-?6A& zbTWUP&9@R40PDXwMkkwWE&aErfK5zxP^}t{v-m^-C4{XRlic{UZp&Itbi{@~{zspu zpCS(0oWwu5x1YDgWO-dT)h#i-#@q8ZeJ_*3uhD_{q%e)yNwnWoX~vr4#?ZI+nC7?% zLfewA1aY@H?qc;CXb)cwuO{%1%}EpM*1UfZnW=Lo9F_b-pTb2lnayL2IT!)!aE2%3 zpR+KaIMqht5fT!h5>86mXJtK-R-pB}KcXi+2(3zl4GP7j?{ZlIn@@kbeNZ%Q4OBru z$IRTJi@*lid$FQnse)}2P>=c{ChrSNeU{jt8~oK9btpAF`rcS=~?sE7;k@o zSnA@)CiiVSu}wai3r{Du(ORWl^a@?j+6rU3J=n}^!*ZuPrN}%k>n9GH3_ORn9gqZpP-2bC0%=hvR(K&3?hy-kl!DjguzfBIeYu9wsABgoZ@ z&vk&5Bo$S(`CXE!E*);sA}pD@)*^p#J7L#Y>^iPMRL8`wY2H~Z>2=WVEEOd*sfANi zGE9GAaKRv7{J>zfr2!K8zvAQ)DXRo;;amP4wSHmn1z)`5RtC%FVk~a?LIRhTocBki zyDL&nLP_+4uA0C-sKH4b%P4nDWCoqKA~Tu&V`O&xlLrk>;yk}Si$V2~%4C0mybSY+ z2_)gDNJ{Ei^aRf&4Ns8NqiO5kzyeya`INOn=KJx4G#6^RX&p{9hp-*Y?`}u#4^AVpqMk zzpi5YgBQj(mi>SB7M}6zLyUjVfN`o17Jw;^X|B}0LX$6XpX6DIk+IaEuzvq zx;IOzjnxgqdAxFVDrj=U$0y6yDM|z8O_F4-IemXXjt%Bx7sWmk)Vgiun^UEA9hXqf zFq=@0PStU<-mBdGrnwy)3=)K0NBsZW#@Ijcq>i;A)H)gTzwYpy$#;KS)kPk?f9O-s zo%GYUXBgvt(M<nn`crY;_*+IfcGaxZwr3E8%(IvN; z)vnfp)V$U0d8^xZwz_?Ht9$q&!L2GxyQpTdbeVZTGutvD8vy^CS8)xf4;MPTrnqsSn8!Re|e04FO9}FjWvxv8sCa{U7-Kcl`c2 zx2_m0_~I{pDdc0|q}qqDF?Br3I{mVccz>s38^tM-(Ej8RI~#P_WS#RS>xZ(}x?v;7 zAn1Hjfb3VM<*%Z69$UjK4Wmx0eKtq zmcezMI6~0FW9qrM%i7ktWpFVxw+QyuS65aG@cYzPCw7Xy?Ulf$Hh|$HblX?KQU?;{ z(YPhH7+|l=Z#uXXcGKao3x4x0<8jZe6}M)c?=pYJLt{w28+U&t~Irwn`B1yJ}gJ+TivJ#t68FNbV@oK}cyh;AI z$78+tAf#-J7yp{79uw+{i+?<~=<%*kc(~?qn~b}bJg$I6u6W$WV%LJl&!=Xocf5Z; zO1XdIc0Z!i2z2$bM(J91?A@%MZR%yI(oWvi#V~%&VTY-<>0t$ibHZXHFv3B3UW|b7 z#}pE2tx&$$tyYe?VdFJ#r*ko3nW|JpuwZb{V8tNc(i24j(FegL%+c?cR2VhQ4Cv6{ zg5Nu1aMJ?mD6sWizVpYpCZ8ybtUHB~U8jFAa_Gd599jqT8gG(N8!bGRaeLqG6Mkc>M;0;1| z$y0_}*9`8tR7BaR)K6?wMwY+~V)(UBza-lth+vgX)(FX1LiU`Ph*o)cARxOye;W5q zHMMOo8Z=}63Gv5x*_YwC1``7{H8Yn%K?5k4`t}410W+6@b^A`V`TLxznFPn_CI!wSo2Kr$=c-EelB!up zE3I(vR)|8-!eTDWA~s!EMM)r7E7~0~D!m25rE4Hk`U*sg$=pHc#bzK@0K-5$zXk_q zlraLCWl|ukOmhTAtmep|f3kWYT-FLi3N>Yy6w(}6dvq8pfw|dZxHJke2R0#DV5^Xj zW3xf(zO6}xw2?~;NxMtXq04tap`%NOjtL$986@a1R+pf|U^FD?7!(+EjP4i~pxGQ- z&@nYI=$I=o=vWdMbgZe+v7o$hU@)zX;K6XBz_5L?!0^ZoKh|Ine|w0`x4zd&rt^-#uh)+=l~_lPNG?sypUsFnm!X=omU4C}~y(4pp*BEh8le+CWil-{ug6X@vS`;KodRu-&0;tPS^8NQNUv~hzDY)hN@E@dF+ zV?BJP)C2Q6@IaZO5Lg|o5% z4Sg?fv552ef1dyN=H`G!ukJgPoAsIYAndjmAAY%u=kMR#{I=Vk9ByClZ$k%NZ{Kd; zZBMTV5AE8`dW8*j8Fi@_aTSyaR<9EQ6{^A=tjFQT7iIhAaCs=(dHL!c_F0h#U%O`> zY&b7h(L=*~KmPP{=~gGaIeV`QDS7kZ?c3|qurk_9j!aUm zXKij=1x7_fn0kw*ot7M z8@ZygHCwDI$oy=BQT8K3vt(qxW;aN)%FM3Z2K<~%eZk@Gx8@vqa9!CBBSy7nI}GlJ zm6Q7uRO_6{JQ5zrqpZoOz?lpQFR9v-Ma7eAe_P3-Vw|l$edNdpNy{Gb7$mA?+YzIv zcqZe=eo@Oh17*^)?TFDqIon~lNu51e+Jp|8T$j*5Ns|^64$CoCvSdc$=gGKgXB!vcW+d4|4QEsx$-YIcSImDo@=`cCnHVVRK{I=EuV{(c ze|sN_`ZIg~%c&7hf+vj6Uou0Q=s#vi6aLZ}(x?CbOc(LG% zzdhp2#BcOT-*;U5_h*m3_(qyVV8Keec=pRes=$Pn3+FWRYVquR@ze6h>&x}}VzqvJ zf1;FH{&MqJy5;TTe?9x|i*K~({jCv93PCSPf3>|p$*`wbc#UJ=WER>W? zSw(L!jLWb%d;RFAfAPgR{rDXw!Q3tzM|4VTOyUvA^El ztZ&Y4uF{M7edBPa6pQ%p_Qe8Uez@qF)!W1DM<~pu|M&;4wiB1rVvaSx46An z{6c;B@XPv5F8^;|Ec(?S^2BMo&@6bN;#g?<$}P3RGUYVJ!dg)e1O2(BZ}EBgD?KYc z$g$vPB;zbVB9{nU$@tZf6<|= zlV^`lgjCCyC@xW~Mvvm+rxUN_@-?kLzPzAMv0SImm+A8+eV(^?O%Rc&ok$+ydnEVE z7pPsLwnA-qPW1t>n1OuZSX5SPq{SU%EmPli&I>D zjoJlj>#COT9J0FTO^VhdYtm%nmVd)YTw)~NR<&!?UW|Sh5ftAeC`u6t*1k}bpNaDr z`rMm=1?EM^zrKHbq7$9aGB%vPUkrOb3&So*${yP zos+;p1Y}x~R9v)qtX{r}&D2rY62hcqPsRCAl4rLVU>ovdgJ;ybxm6TSiZho*MNvl; z<%24UVM_Eif)t+Q(?U=jxjIHQi$!K=t5Rz+CwiBp-PIaN+8>@$B111hbmNMDc z3|?6!$iLO`l%Ai*!jQe=~zf??lmPyq+g5sttd(5JYLX{tw$G*UnJ9L9s@We>)$lyoRZG zw|6A2yP0{n4V(qtnPv4fU3Hd`nmTh&qk80B>8UwNDFY0tL3IX;Cj*6D%_Fz7$v9v` zB;Gb@Hgx568|#>a&C|fxX<_U%kq5-uC2D7=U2LE82qzfNe+$BSd*3;aWJZfS=RB2V z#2H%Hre0gQ0YeFlbAyI<03YVj*iA~$%faTP4?k3fX;pnvD}xPV)k+mYPnvd7t85}L z$p>UL_SSt^VwaHE)u30#-AtWsW4ony(n1Pp(~@Z4NV1k`>G_aEqOAS zG;LFqb`w% z{Vpz998AdGI&N%omtHe#)O{xR(L#yUR33`y)-z3X(OS=>%%)q~E~K%2n?AqVW@AA! zVSV}&eZRLt&BcZ^tv?mP6NMIa(|(Q?N{I=%%Mt|>f3mY}Oe8uR#k4hZ3zWt(?>e)W zJqnbQ2$YJLR#M&M^7mK>7*kpqXPkyKX+hi#q)7{D(twUzNRwu#G-(YBl0-mSo7{yB4esGs2Xu?2cRcVd{poYoe$| zdosyHf7T|-VQsdF*BjTw<0zNr-U&Tw<62r^&ehB45^o;5ag}YQ28yHxCX05f6EH^) zYI2Hb0^>o9SNHr;-5a9r?R7x&9(At~omZT>*(EkbGPCJSfc{A4AELwtbsSWEL*vbE z8ZVetnE1HR#?W|U7%kg+4b4R3JK;=1I1^I|e`g}l7^%5;t(44{JsYO!DEEx3*~t^V zPwN~mU>!e_ry+h6-fxTzCsMZZHT5CwEeT;j!cRaBHk>LF!=9i$ZMHmj6Ik~RA5PO% z5{`(9zd>=0;%unsukot8)}=sVf!)~oK1LdJoj{p=15Qy~RmJn_w|wWT{e5m#Ad(UG ze`)c4&bCBzTzPsvN@`>`ro|H(aR{(+a6F!;1-^B0g^L%cwTWcNPCTZW3%i`e?LuRz zI}beohYM7@sxH1m?Gm+X)Y_QYEnZ?^(l^j)4FvskaoCn6YV~9ic4>$|S~vTFKIe@4 zVzhB$nyz|cF;dLjRpUK#vIs%$7zB1ue-eqW&$E^2==bLna0kvicK25h)5Ow1rHn7d zb6h+{?F_Y7sI6MLHNFGc?H>mE28V&^=?+>RsGb#xBwGoU3wqDyw>IpFq@fS_I_NOM z*Ma_w>CNIeEbEu^$;;5C!)j;S45_2XwXqv&W}KeIO(Y4gaw4;saf$^yw}x$;e~UtA z<}OG7{UdkzlXI8o*48FW!pe$G$%;*hicQHzY)Vh;l84i*@CmW0fMAT)fs%0zw~D>< zVf2KIioHu=Y?E<8E1BhUBa|3RuN9s7RUg^lkqsW%;Gwd?_{t{4RcOPMvPX7z__zRp zCkU`VFCUCRWqNMJDPyAVbwQkRf5$+nPnZvGQ1gC_2OO}wIXD?P949%@^@7+0n(wkJ zRaZM}bucm|J5D|te5%bI4-UiZCka|H8M>1MJ55)mXGYBpOJS5?L5tGWqf_tEo#Nq7vPQf8sk8Dp680BP!7;imOuWAw_OWO(FaewL+fY;; zXp2}mGey;bT4QrCxAlCQu6o4;pIZym-ZCRfl(rW~=JBaovp6lkJ}i7&OV~UB>h=S8dyrUopW!NAMz&DLMQv-Sz^PM;N?RqGNe~+1pB-+Tu=B9{NF&B!r zxj%ZFA1UGt6w%w{7_dPr{~ZwK?@+rzaf^#>9M+5+eC8o1CBk9Kv{FJ(N`w`Nu--+4 zRk?Eq5mq3=`T&Tq4veeWEr3QctvUI)0$!sGTy_%TAR!}KcokU)OBOPn)#bPAR{3oE@*{*L zsx_4#e>vPbh5VQtaHC}ju9)TOU{WqP9;i)@@f;+OR#3!4Yq4*&Y?m9i2$x^Ta-C;_@+_vwI zBhi$gt8u&=-^R4G`%L~I1cm0=7UDy1D^YuegPLDayFqc?OI6$|F2^`b4!rY_oTJnn zf5+ssayKI_^Pk-Cp_>P)j>eeiRvotfz%s}=99#Ka8RT5E_SlDvJ9>-B5(YOQVVU8t+Yey9a`W0wo^oo zhs-|h8X%#6yo5}WvG&#eJICu!du~v6AhuQQNFQZ#$Q)zg%-LQExOY0JEr z+mS&T&ZI0h*Dy`a3PrNCHnZDYm1o`-)P``3d^y4|^~^4u82U*tDN;2Z?a=4%tq@b| z{<1 z6^drqRQ+=Rb;r2g)NO$t^tNZnSLGo2P1S%^EAQ6{(U3>srHp3Ul5|`ye-6esLPlep zbj)zy9ol5D<%BiR%2mKyTcvX~_oeKXhIu7ZyBr^-bqg672_9WW1!xUY{`;$Cy<|!vdrTrk@e4Zu9NMF3WlaI6=|Y2)gOl5wR1gj$+R43 zU>?|rk!vdg%c*W{)!|1wf5hSq4)F>u#nEIV0_2+LV0@xN0q)%*86^GE3#rd)IK}9n zOwe>IxAzlv&>W?ibH46;#Iph#V$8F7g<3A2SHI;uU!hp-=&Kh@Xfvj--Y^$*i@pZI zWC(R%qe=s_rc2q~vQfo*90Z>z4q4K}@z~=SoN8}TT;k$cxntwL6JFfSQ=e&X1+(J--K-FDk_8dXg!EVhkU=|=## zo@lS&lY95rfv5!!)v?2tE!nD0eLaPOd5hu&idA%#a62DQyNqv;XM3?<+reGhb-`V) zfZYEMMFQEuqM_Q0e}d|t4)97$A;o+nx~ zO=?;yv{vr6ttN>)wKPC4=SlfTMWsN5li>XO{hz4l{GU#oS^nGOh%fr|adK;*k1xA# zKgN%z+x?9P{Up{m=&rJyG=xxf_wVto|Jk+Ve*hg2d!^6;1(zNwURUOun;sB33?kN1 z?@nj|%Ji9Ne`oSPdNM5uB_1c+b^12lQ@2cm|Ws5)8Thwx>{TXVz6eSn)e%h=`xKWByME&%p zUR${Ve?w0foNE-KV)z89j^xBis9i)IX^?|DOpuh*ds(?_se^Xc@}$i5Wf8RtnL5iN zgB?PoQ;j@R=$%iK_s2y-F>i*&eppdG9|fX=NL3 z4q)KuL0@(5g30^Ts)6xql@@3M$t+^L7U+*!;1Dfvulz*s(E{7h`RG0r?A*!HMKDa+ z&NO)RfP9c5TRwX#4#t_to83fSkamQLe>ZlV3D6iu%eG!aGZFbtIzwIoFD8=Cgy(JW z{l@KDuNfDj>{@-?wGUJ}lkg-G;Ui*hV*>*}WEm;=e(!RycB(azY~3LTe@CnD8c|TU zn_wu9Ls*~F2qGrhyTZctpeN{f01573Oj^cuBaQJnT14G@8*duj499oo^Qq-8PeWQ-2MgGSCZW zfM%c@VM@51XaTTnGz7n)cvD?m^$a+Tz)*uW1*Gm}g{Aoh#TAM+s8n93mvES(aBL_# zZ?uMf5{g)Zm-aqCi9v*tL_;Gs5T3h2T@>FH>Y}}2+PcJ>bQpD9qP=6zf0>%iZ3VmR zkBz5NbUQx?7X_hh8%Wx5f`ksl7ef&wj%l_YroH>aF>H?i;Zj5hys|-0LD$SswO1J7p zN=No676=oQ*o7jrG7+~uD~XBRGUDF~#TvyaF#evSc7@`ycc*O>tmo3A20DR`Iqe&r z#+?C(y2i-9E*ROVc2+@FU-m$??a#1aN(h&UYe@T9Ybc{AqktB|( zs~)6bJnTeZ$YKQl2%g$fj1ZjL#D9YWRl<%9K=24|DoI_)lrr3#N_~%6X zOPN-Xr1@!WBxvHfBtZjd%%=>;-nYu7g-9?ZTjjqFQ;L=Z1H-lfIs?{3ELP=~CQD5& zzu5)#mR%kOgYUbkL@6GV%FGSyBe-UU7xSh#Mqo`u>ZQe!hvH*QlBf()>=-kAHMa78 z)zG;VcIl?Lnq;l}Z~)l7As%kXveJ(MN)Hyg*9E4fJ|GB1e=j$fqfV&(AQYod{N^Za zr*xDg9a#WjkzC*&z~2*P1#&3h{5HT&8Gt=O#j9OFA1bB*^onsDxqW;DreoH+YD`Y? z+BdzJdw!>7*FDdq9FGrQ*L*~>Y5ZyRl>FOGdCCs>TWXJ14SFVHTC=KOwL4YaFzQ!4 zC&HXX+@_xSf9CFr$O(krmmPll?r5I72FTaVF08L4fQ5Z=p_SDvF6@1Ws{aJqn$9&C z?3nY?DtUJqNuJzbBrFrL_7cSfE?%RyM(q-{Ur=1);u&hEyY9RxPuV`ZHwjd7e8)(; zXG)u@W4Bcwe(QC!Yju6g`E~;hiIY;w5tC;kbh5V%fBI+y5m;6Caoa{e5qGej*nyjZ zJM2tUD~*mY(Awz@P55Z6ZXsyZOBEkz-8igq5y`NrnzoHg>&)<2Un>%HP=lsf!=&A6 z8FF4o=L)o{G#{XuF#+99nwcqN=9j`%@B}pmRt-o_6cL8No3tnz_SDYC|bZZuT`DOR*$N25(E>^`;ZYKJBg%pw> z&#LGSQ@13&|Ht_LXYt#AyeBz2$x#j7uRPP}N%#IA;# zmhAyRzlUG@;u~oe#EvYZ1G488BK(6PN}BvBM8zzC2JxGm5ELF_{t z!w1J%6hVXCz_Ee!-}jMgH%%~8@Up9U`-Y^bCraElc%+irU`f5(wijj)etFZG()7OA&#^p)qfF6G92ki zizA$r&9V#x=!m4*$p)IHstpixA%he_7coq0sHC`);N;3@MQW3`*lu{it%?!sN znpPZRjMyS*10$pfBS}QPzz0%Hq>jx*-4r930(Fy&AWg*8G5Fx&7=L_>;uw4kpC!SE zB^D$2knR|Kh)(#x(vp&6@S&!6>F_a4@Y3O94#yhw?a6`idNJjgsa|aeT1Jh{cJ{}}QnH;>F)~kxE~wDf zHJ1{NnMNKxxKUbTC^RT%+;gDNXw0Q$927Bfoi*dC5hM@Ic9g})j2hFUT*)LpVXe7ek1?w=`}d5c5SpL zI9Oia9d9r8_vtDvuV0;~<#PY!KK<+a^6yW3{BZN&9W{pZtN8}ILyH~Y`W zhr8RoW95YXwtxTO=Ed<#x-x)qgf(k@dd)ho;qT@SMo^OY(Z=(`;RvHwryIS6^__Po z?3Rm%clZAM>xaW%yXD34?*0DGebnpa=jE5>6iC-ovNKOHZR2}|G--*<54Y~XIt53-;$psFfy&_ zaGfmK+JhJw1(?=q&MFx-)f(g&88sFCP>hVG61fhBftDI~gkTuM@-5LYQ2MxXkc@JM zDjX!YmNiI4G3%XzWE7~P!H8KkTU!|;Z!}J;+<&dcX_btPWdFXz$Xi|3DtW8RS|xjz z6_ng&m$gRTY@Alf-U|iwx!K;VlD%UIuHa_JvPwoVE*g#5+nb<5dl3jJ#yxd6LD8KW zmY|Nd8kSY=R>QJN-s(YC$*8uX(PZG1sv5Oi&{m8n7xi-l4O_obdz1^|_nZ(O-? zzx%IPTv2q@Ry@w|+h_tLZ7yhvqUfCuXmN2-oh17l+ma*6N%P-#hV$Or#}%dBw~zbb z3k)xpyDProkeu%s>c!iIUi|ijR*v7%E4{CL_Ul(KzWxT?BB|ujFJ8S_ph*fWE<&&> zn#HTD#ShExZ{9sTT;D&Of1Mj+mTzv)Ff8xRUcdU?*WXwe{jCFq0Q8XjSNFG<@2?;D zXD@#9>ct;l@E3Xk3xlYPH}nLjG^WMn#}_}m){86p@^=K5NpbP#{L_yMqrgOZ_hIqf zi~kg0iw7EX%4sNo{d9NxaC>?CAwO6@hljNm7X0t-?Lyvs``kChe}r665yK)FB)~k+ zhd;N;D^1e`P{xJD-Sy%P&0+Jy#vu3q@7^xP-EX^vvwmS!ieMNQmfmVlPx z>u6wfYJ#^LbLi5TG+%Xu24wh6=vVXarVZpr1EE3!s2k^RCycZBAuaDG{C?X} z&x6*>S7**F|Eu}ve_wxN%xLaL)8zZP|C5{p-#>?pv+^j>=gWIQVFY0LmFVeTaVcBZ5Y9L`bQe zex8G0-f|O`Z!2?1K-@Yt0f3epySWSid=dce1b}Ply^-dfeE5Hlp+fYEWt$n8MMJwT zHJKQaED_z>f5!T~cAAKl)BFx-kA%?rG!ctJhsQomV3emL(w(NT*V6>a<_AWibvvCV zt#%loc9yKtDU_3cOUrE?&xf0eL=Ta427^riNXU|W@%)d)^Y2HE&+L?ov##uU=0s3MV!BU4CCioC|2LdLyPNM0F!AglX3Qpl*o^dagr zGU!-Nf1e3ZfP7+tuF}XvPjR*h04(&nHT>TT01pDd#i$3%&(hr2PDX2f%8#-t5Qc)f%eCY6-GK6q)arKif7r-lv5Gvh*7AcPh(VfJ!(Enb1%Q#+xd@y zq~~zt^Y3X(Cp(y$QmMsdczLw^=Gz)YuxX$Of6QaNoFA`Qc;?<+F(T``!Sw53Ak%!5 z1prw9>G5|N^G#76NJ@*x#&}4i4TlcnsGp;_Or>I2S(euD@ff1y2-e(Wh*sTixBXQW zZ=OKkl2dI7!%Q6dsEmz04q@7^C0!HNcCD3NYlH+?Apy4k?q+=tg9f1wkc0t7VSp(! ze?StcY78)fvH>#e&W4>BU?eShhY>35hopULp+qE$gEq0g&6?py>3ysadZ1%Oa#sU5 z2xTh9RKoF2o_r&4+)MAFrWS;(+RnfzS|nY`HJOSf-nBLp#Vo|wdhS;`OjFhwsizvqeZhgX#u(R!LT&{(#g zgc6!J^87n_{)O~DO0T8@`9#pn!*3wTOt+a)h#e^&&8U&GXMx6!z6F>TQ6-Fz&vU8l zxvX6Q^|H<#GTF7ErtDeoh7soiM=RAs)#P`ITogs0;?1MQ!#vpA%Pak;aRZ1hFgv8^FnHYtGlJLfOHNr)V$b{6~ z%7>q&$G&L4`~}lN@tp{bfRO)+de_q2O7mG7`lZ#Dp9Y%7VmgU=WF*P4Y9tQIf+e6c zeV#+%H4w#h#q_(!|4ACAZJ4Lze}&MI9DFNs@LTD1%{ysshVKmFL-7P*`7dYm(QnS^ z>tFM`@A=(t>FmH}0dTf}OzhCuW7{OWB{9cAFWuoZ>CQQ&gX^WcYoU4{q`4o{z>z#> z2*oeksv3q)RXlbefj5?Rc(2`|S;wUE^iFV@-&SO0%ma1U{F^NXc>Y`Ve=jDx{1q>R z7&W4pIH>tanrmrpitpY@lXY2L|)UGFU$e<+0+|4xEDGGO#d6eeXQir!!3*SFob`#5E^CSP#Kf7WE+D-Cct#_at>_(yUWcp`!s}D|#$jKO+fAq|l|#6#r+ID}-oLlcfw?e%Q-4Byr+L zQkLC*=t~SXQ(u><7&qCHDk8BHVaH|4$IVodOngO6JS}L~a0BtiYDe1^^gPR$~dkj&W%DTm&BRFa z)M(3z)#KK7*+mATLJV^z%Q+C%G}%T5J#C0`t{Wq^*vL(~Mw920ju!nI0JB22NN`sU zn(PD*g>lX@Td>N;CTO;#lylsEWlzsHf8sli-)jS=Cry1F%xxpK ze9egOh~g%I7Qi`L&=Bx3aGN8x_9gYW6qGi2AQL=^F3kS4R(;q;#c}v-B$no!EuV+* zChg>i)&vD_wy8r@Jkem3VO}_z(B?oaj4DObnh%tebJNXln?HNY_~2F~2(l7|!Lnv=*1=hyY9 z#$GWONCGg&_T{)h&{)&2fv-+^_Ed@W>u~H4IY;Erf5tuu3d2!7Db9h4jg1;J(c_## zJD?{{JB=*Pnjweoa^)XQ!s^EjKnKS|0o7&E`@o{V>v>TU zjuoPae;G;4=dl`XO$w|g02|B%Ns-mMg3%zWO#s|VuYysIpfk{9W$D=pLwbzS6(Tw~ z9*W*&(fc5H?D%#x>z3Nq6w|V&_{j8^y3IC2W4RA2x$2 zyZ?@iHWK~4>#%0@>_~zAef!8`pX& zCsrWm8a+hY3_FN!1K4KR7{nlfK`;{@35mN6i#hhs=gIfmiiD{&zYtCE+y;>dvQ?SKOzSJG_$A$O4kfL@C-?I=3MqKGK}V z^z9Gw;4WzcOHiw8-u6FfLW6uy>aV4_ z5e@sT^d6-7sR`jvQ9@Mg+L4_tT>!Pw&6h4(v+>7gB$6^la*#t%m~iDjlqE-5a%oy% z+=&^JcO#(=b&e=+*J zM{L4*iXISYOyzdlmNTHGKhm}d9MI3=Its+johAv{xRn>dNL(q2URR^MBAr(g zljI!ftu{$V^wnOB9X2_lx<|Hk*c6ouea5tb{mhh=2ROD_$CBQGy|2pP7i88UuITMb zFF8kyZPb$#Q=iUoE6s!CI9zXeI2_Ah8J?H>**SsBA|2a~YJr8<(n?qZ^3L0)-}=@d1F_7Xj*PQNpm*}t@BcMVfe{KAMiK+u#KeS z(nx#?tp*ik(sT@0R2h>RiKDdcW1Z48(kYWYU70ThaUeQLU2_7C6SI#Kh@B*>xmJb& zZAJ-hn|{q9GhL9(Z7aife~v4a=qihHOvD#z#f@q~4h^=^o>IpNt#~%9YjYS<$_5D3 z;)c{o$ce<}>CA((-_3LOGS(fRs-=Cces}qY>%4Gy%BN7{Zkh%=)e|>7PA?>c7oQ|s} z-RJ4g^yHBCmvx>4+v`kF9`a@k+RZbQ0qti~?(411b#y>kgKq(cXNL)ta2&{7XSJEK zev?+0iPhle+rh~4jGc;!@p;Hmj=?b^==C;#@-e@c*X#VrO@4nheB!n>Ss<~kJ((;l zR}X+=t7Fb67^=J(fBOY#^3%d;4i(C1O{4>iCltzP>4+!Y7w9$<1Be?wzMcn>auNSIQz0b! z)MhGHD-E%nN*~#1g{jN>L==Y4%XIFH7f;I?^*7=q>Q?vff2)3cZ-!%bA?Aj=p=yU1 zAI>d=`tW>*3ao}d4^Vvwt&a^u6^i%lFx9zy2#9-8i!cCE+Xiptf;Fz5{gun1O^0-xKFvkKe2dBEOzdFG$&QJi?|TpRdp3-oHx&a! zeA`ULc$&i6y8U$%zkP;XTW~~U+_5E8NXo!K;f|ZAVl{E{ZSSr-3<0uPMT=a}2Hx~oRe`W&yml4aU^SqqG;+p_xBdK{< z0{3RbYdYYfq?^{k37+_gnT761@;D3R4Q9j@vTZ15v@I1rPbl@fx-`;0J`SZGX*S1m zF_T`hvj>vwOftmiPALP;5C~zorOc!al3lRlTSK_)@58A2@6h`!4YMsTbv;s8mF(Q5 zC<0&ef01bB3~vHA@5YdnuhJ~0KC37Kr(FeN!VQ4SSB@EY44f222s(02+JM~&7%I`- z6-DkYhws?m&+!L7FG|Y77`=YVuWW(NPD^_KUOX9F7Drsa_b-s}wcFjKMVUZU=;AJA z0@s6a6|52?|CMIu!m8Q%c0=HM*S5dia20!ae;&Q9kt1V=%6_C0aeXrm$Uwg}#%j0dF3s$D)Mj)9Lw3@0~q2n2U}Y zFYc!#?x!T~rz9!t$w|1R)VfZ-s$&Kq1r_p4+}s=DXozm80V(hLCueZp^x!QVa+9%3!*nI})xx!?4LwVRL$TDrWhqX{SYr6rKHV3+wy@z^ zm}m>hxN-^Yx%VbxKc#HPSXE27mF9-`X2^RJLtjwgwy3gjHT)efStmzfNtH|?BuUD@|i^<5{w z?ZB<9Z0AaJ5S>i?zUoSR>2BseJvHc zfBOKZ(;0Vc`+)Hz;`!b_V2@JC{!r!zL&_w;DOIg8j$Por`N5hmnxqmfWs+)Kf2Mxa zFi9n~wN6r<@;+@OscbD8kyIM=wG4VVL6L}maPgEjjn%oTVz+7R#3Rc$liFITBP*Jq znRm6=Q+I3XTwaf1H{R}KgW)UQz)l~cR=g}`16+a0k8+gW*Y8F1F*bQJ$+Hkm^~v|r z)T*&+Cem||m)#iNw3q_&ZMhE1e<^fS!t1H#lQ^%YBqmVNH<=dS9jl?7)~tJ>jEOWN zwgAppR37|e;L3ZUy5iwAzQF3>{zV!jtqsz#MH()>h`s60x}&;04A@*T=!Dn@5L+E? z_q6_SE)U}OCMUl8T_akww$q2GxjfiX3MDFjlvvx(a^2p>s{lDF1u!-Ne}@PK>mUU< z6Ym1#dYrV(bMPB9iCb;(%hsE?Hlgi(9KB6F_8P^V^u|mujYdR^#E3Lz|4|TP05^Zqbm$XRwc3v|)n-%&yWpHyHH2 zbGx}}f~3pnE-pjT<+PS6O}L}Y3-})PRmF>+w~xke?V}kLh#(4}cXVo232-W;@+tx5 z^NA#;nw+CQuS63MMdAm$4%2K>tf7Rx!YS$T$k{fb*W(@TNlK{;9!><0m<12W5iB+vglrDDruU!n`+K>| zrWZWmsXI)ca6{~CF*!vAPAP;6P0VUdx0vSiSRVoC5oWQzsY5)?`o`Fr%=+eoF|fW0 z9J{i<-SIoHf4&A2>sjA;Vl!FazRobMfp;gRHe$#{@VYa6@bC*RG5UNc&R#_lAi)cc zef<&wX?(VoQUcT-Z!YM@vp|+&5_8xF|I2SL*{Ol0ju1Rgg$fgfbPio7iyD=uV zWg$Q(JcK4-7*Jk^Di{+vNWO3pW}!D|6NKpv$ai$C1#zsoT^(zzZStm}nFOiEy}PRDa#Trylu3>?OkcQX4V=sQ%O|u$ z`KEW*%b)&P3xDET0naiIDQW1ltILP9{GT%nf8trQ18LijvcrW8+_BBCU?d$4i9y+7zFs&eXN@)-fsT{K}H>)~kaaIRqUfntN%-cM5SM8uD6 z%IB~^+gtMeaqH80;+W}_6e*vS)`K2(f4J&&q;AloQSWTVw*oxs*;afyO$8eARWw<) z=H^G%XWC3t%`)OWOjNH}c#&X)dJs*n?Ivmazfav;f9O;(`+plbd^KKKF1| zoaY=?6=y6y0;x=?#T5A}Py?=*j9l8%w16VfFZj~j$52cSQ^7!@)g0WiuPyKN*|X}) z6_01NeT<5es&m#<%a3qo{F0nV8SsY+ zG<^RFZZ0q7S7~J+A@VP!dA*&`G&G_VLLj#P?CWpPEfVRjoL0}tXi-^O-E*$u61%m5 zgD+wqKHVQ9HWo~D5Xdp2%Hp~RrWBr%RCg?kWB z&f(vN4u^P9(6Lu|xS?a4K}Rr;3CssX4MYwUwF&2f!Us$UD#AVz<48baP&r``D1QWL zEe#4^EKdwE<*5fy(7_g1m@5%lC%j5T$U~8aC@1JpNi1`lSh&TB=|kv1h4Pgcbhrt0 z5OnN_kjKZ4;_yjrjZp4z5J^aEf!c|2lucq$K%N*XXs*NzlqKeEt%;ob+@PZ5Liyq_ z(ie2FBnBNa5`zxm#5gK4G3d~h7=LuACk7oh6N3)3&;gc}&N!T2o_;WN?DT`7W2YYs z9XtJi3n=!)1XTLL+BnaRBT<|O#~Ei~rXMg3iHXo5*t{a_E(A&v0DwS$zeAmKW?B}g z%rsQu97P6EW-KeRAkZNx83n>RQwnsb+Tr5jaD3LTaFhtg`b9hb_|wl#tVdX<%uat0 zbNlh#yX(WFNB_?}cZY8^Uh+P0-fGN4yUn5%w520wMP}zdfY+F9c9o*dq|{N`MP}Z8 zqnc{W%e#2h=4m}zaE+OyyH;%;++`GP-lIpKt?_b?1770Q(b3QU$$NRey>Ay6?RXiz z0x8HJUFN~G&o3I;|g%wd3<=m+koK^y$9+rR~-4 z?@##R=GW8V_!OE?xAz}n2*rqeaX7v>eK>!-dwohwAFv-zZ{FTKIe%(b1Aw4jG4mQa zNB4aVeK&Uyf}@ASo&1k)Z_f~V^)TDQtbb`whQsmY$6xOA{rk7Kza5TG&Ub%rPIsw; zu8-dyzdJs?iU^MDFzYoOl4X6P!H{)yv?jvcG36HZH3eLcGmJ0W@tgCjb3+oodJjK4 zZT&hT^JQ+#{>}}i2U<_x^S_e#CF7q-G}ayismN^I78RKnBpVl*r=S;9&7g%|P<3$3 zzQ(LEE6&R1qRncGF5^|^-EDtJky#d)smg2}yH=5zrJGbGqZp}d^Fm9aYMjUD)i8_0 zZk)m07!vs(V6xOI5POd@W`~81r>hC6AbbMajG|1+7?e>@fw4 zyc%<@*aom@b+5Jo>|%XtSu%1ms*+>MYq5@ajjqL%FlisNDwweURa<{Emft?CC>c|{ zTeUSW9M;&5Ys`ktq}nntO0aGebAr1>=dy!3F?y?lsY^8{n5*5b8aW<)dQ~#Ur7o*7 z?>?&Cc3~e;uS&+|8Mh9e#lt-(mWO|`gJ@pl)uhnuQg#scnOz;PGww59luR3~d=}G9j?LbRp(8XT zp`y*Wn&ZM|Rc7oZ)n%A4xV7vcqnB3)H_8*^rz#muW)(|=DCSz#Kf+?-#hmPzYgPBK z>&IU|C1!VQbVb3Nu+SCj0=I%K#ZvZxb#7JfCfMe*y889?{y1)M)3KDrG1|egRAy6D-k~vu?HGBf@Puxe~w^7 z8ITP?(#Z3K5X4o4vWI znIo9zKVJdVMl=8x9v&|GzuW;r)GBWWMBnQ0vVYD9o_yb1T~+T zqoXY^6O)UJ3!{Ox10%@Zl%Iwkf8b*7Xa-OOIsomRfyRJeB?Dv)tbzZO#t2UVP&PAn z_*r&3nR)e`5S}J-`?C6pv4RxKNbM3}E9 z7-VDR_S^igBW4m;Qd3Zpr2D7jf0e?*AXk6~11AfBft7<9z{A4>f8gTa0eJm)7#u1mO8QTX38HldK{I97R@bAr) z0UDb-S^uwA!qEV{e+)u4rdIzp(%eDZ+!bgnZ|-Ph_V>K}Em!%qX;$VoKzWdZ`LDYL zz`(-H{69MIdKp=Q?+*v?Q2wO?g16_tDaCAzK*qn;jFp2EU|?@=;0DhOo+VZe4uA&> zcpr^{u78a&fQiut zH{t;>iT#VXn8EY+8?gYGKKw?k0H%+>5gUL>;x_`bOZ`S*cIn>;%r5gAf!Sq$BQU$% zzla;mF8>>W`4oR6FrU(I#13Fm{*A!wD!&n!UG+Bt^Qr%fc)+6=Q=gegM2L$&E_&WkPkH3fP-(LUH+c|-^<3AEMa8=+# zwKA~&BMP`~liv{RWAX?5r8NJ|!S)L}|3Ugo4|1~qBOKVo^bZKG!t8fV;Le%3*_r`u z{;&Yc%>RJkGA#ap;0{{;0l{su`U8S{_(v(=`-|y!e`F4@s||P=epe4>vT?FD{B;kR z{*l42nnAyF1jhvZ;l=W+2e!Y}U=CaG@5FC?f>fp*uW{+0`0+%xj#%f z|B{)5{y0hS8v&EuZ!d7q?3_T3Kx0Fz|B1)*kLJI{EG%G;KhA&!T&TnEKKw#J=RbPR z0XBC4e?KVxO$nT)gO!1U*&iXmS^g#f-@r_cX7<284j$YFM;Fi^4&WG0e?ag-IsXB{ ziM#wURbX$|KOi`~+wW|^uI@nlzhnQ`rDfz~4{ovJUk?`WjrJe>*NXxW=n6D~pPL35 zy$i6Y3TVEq6e4h8*cyUaS!)fA(&!1{aHO2cfAlbuev|xR+)h~ExD0n7L4LLJySkH#=DMMEO-9?8fkjNN>Z#u%25W0bO60JapqOS#|MHQnq z{TRsA$+lCzo%_`4u%pRy0I&w+U!#)56F5c)rMDiu4$~kZUvvDap^X}eZm*T-q%5H_ zfAaJ?%slc&xH%l}&TT_0GU?~iQeSFsPXgO{wp3RIXIT&i9;Uk_N&3LoA9z^NsgiXL z5R}3k*CItRY$ual5Sar%Va5*;y$lt)E)~)eoFPLY-!vGhL*gH(evdsSmaY$n#pmV) ziPN~eH)MQ9VeV*xD(szWjI4@B8+^y!e>F=))vAlK^ z{l?_Y+urM-d^XNR!m2pLw>YA2ciXs+_lvSzc_w|tvMwDVJr3ZVJm1*z60$Td8-2fZ z|IBfPAETRk|FQp5IBTe(D|TgV|3QwR-iBbJJDh1C_Ojoc&hiB`GbKIZnBl9%X2tSF z(qzDDi$Swb&&|CSDP3DT&0b+;e-*{`8h|o{y9vV+E_i`mj%p~UxBz)J5q}Ayb}YD} zmgbn?nTLEmWz%#&E40ox+tmCr!^YD2>zSevL$j#`e0lbYYX`d#`kv~i$q;BS+hd_v z8VY?n-#*|w78ewC*!mr-1C!X6CZk1Zl71fPBROQKRewE#LRh0CV5_ZJf5IuDwutnP zJ`1_Imu{NvAv3o(_I`9}&30K!3=LxD$lH~C4c`(5_NFaH!~=yA>F#U?RcC2Wsyp;s zlmhuZMU4(Mu=fv~k%nG>-e90>by=UA-*u|S>M_oA_~<--n_-+m8AVB>cY@#06|{BuE^a!++p zgPYJI38mNFMc}GAXP?>Yq|;~dlEM)uei2GJCcyWZBKci{Evtf%npA)t*EJ_*jYWnD z-n@Wl>KochPWLaJ!0(sV$;Scwu^V=$IgV%`Hr}%N3%^BB*wRmdjGO9`|XU-Qky7#y~sAkA2ry_@Z457=V zM<3+`I?7L)E3h0De_?DzpO--obGn9nwzm6XCM>aUR`57f88rZ57r>TgkC;*oLqe= z4Klg8qE{-6rl^H%YJcYGyNm;A;&m)ZDb>Z~h1S~UBjWorU2}8G$;I&stFE*+hZ< zVf!|4xnu>xe^Ro4-v|eF-1{U>32P%e4tsbQySQ2?R<8gvg^|QAw%C%FRsIpK-866D zzLkIqULV+4F`n*nWSMU_VFP^m5>ITo@(4XI?tM z#S0Pv+o|pr@xM=*o3zC6>2WPGUkI5eBM{>r81|ztR3|3oeYe3I(OGEc;g=7@O-wg# zs~E>CsSzHKv`n6%f6DdNB3pYc#D;mhYIAgtd3%-i1)yyfUgAa!qwz}Vg0E$ZACI|S+*B&`s%lUY$CDL1*y{DZAN1j)xhX$!<~lO3ev0pow=L0f zHUA}MzFk|Fh}$b@s~WE40e$!M>K<8)%em_lZ=K6KpP-=&951Wfb>(Qn_DYgki4*Ne zvFign_^nODf5YfX=_@FPVG#EBtb5~0Wi?QN$!44> zKG;FJi;U-kg)w2?`zW0^kwOT;Skdfe^PF_;;|(*zt;PTFy5G#K^>m%e{uM5gYgm@_%%8Y%f3HSSak^a*;?P8Kktg0Kvik*(*?H&*V~d| zFG$rxhQUlY-J4ry-z@tP!l=V6a_-1uTrIaK4hJQ9LDhp^pKJ*&Yg)zQ)m{Ij6=Q9p zSL;We0_qXaCp!@#Q4R!}q8i0WH4{RWe|rPuJykz*k7vWCk=mE*xB>5JyEbkaf=Xy& z^kjE`^sUNKS%^ionV`s~?!zSIYiF;=c(DzZ=k-k%bSZa4m%I4S=^HOz;W<@#K$O~7 zs3lD3vd{_9QjelC(X6T=*z~B68O}=cUu-G3b)(+VRp>}+iWPPZa*wFCf;5hTfAG5^ zSs-96JJid(5svPuM5<%TI4|8@tFHns&~4qu#FvbpxiSJHO#96S+~Fw~C$^@;NtrAS@kfA<0!;{trs#}?0e{WR?&EX7-ahM-o^zY%dd}}&{*UPqnZWugGiL5@X zq9~b$0D8&va}rL(vS}n%I1_$;_t4##azoaE^CeQPS-m#+{G(q{hQtJY)-*r$q2UcH z4%O@Kq#C`_9j_z&+IL)%;_%t;0i_6p7sy3bPkCbu;dhXzG+*+JL5(+wNy$i-Mb z4JN@Fdv+GXVr5?M;Poqdgt;(1JweMTZ3HEvl+y@6GH9;%KOq`qum-)nuqw-BM`Ae7 zvb`)V{GXv(Cl{Jlah+7we*k`%z(w#2`DZ+9&GFq1P*AObqp;v#H3)L#{aGf94gngsM5|tywbf zblP}_E*+QbrQ_1tTf{KmJ3o>T2P}?+>x>7o zES~lJW}?r9O#!WV8mZ_uKP^)9OzE^534gF4qbu3a)Cf1XTWY-B19e244)~U!h<)f` z&T(ho4Rzq&Ygt>V+byadFwH_oOzvku13#53t8+n8S^Cnee}LO2r0HwcoXZb_fx;{F zmaC6HK8Rrg;KOl0Hx+UR)^WV@rVR@1H1Tsq%WsH!Mhe@)=5hW>Ik|V&cS8Q5)#ssh zZe9GKI;}rJNoycN8X&xH-56<=fg7>ECNfjrM7{%!JbgRHw4Sc7ONxQ0NyMp5=_~$B zzQ)vzHI*QMe;@unX#kYaS*^{L`ub4&OwlCh$=bc-QoqdhzSKrJI`_7Xe3I1WRqc*y zBY#msYxImLdL;C5Rv6Hulg0Zj*VgWu8j>nM(M?ixd)U;d|1%rx+FHcfcU{M8X};;7 zq|kP@r=I!a)tE%Z)h!V)TBF~2g#;uzKsvFK<3D0$e+&~n9d~5p)k&Y~X=XdqIiIl& zAOl9P0VHYq>qzg*?Yd!XJGu zVwENpFRb0n@s6BpPILCc4wqT2IuluwuiOh$cL5a^73tCJD9e&5&=D2_1LT8uTb7k9 zT8hhy9kun?YLdTi&hPt0yqW?32*MZN*HdnGe^`HYg=|%ePR9^tYRhw!zx`x8DB`1G z=>ajw^Lwg9@)CP;{_ai?#yb|R=yC^9X`OtMm}j=lw$63Jh0`%Df-vfhSb*J+n0SMC3 z8(y&R?vSNj^|U2tVN7C{K886DZP4hJ(J=o$-TlbL7TvE2+F<`-A7L5dT;#<5lrLT< znr9pFRNiYBUOMBsF#UHlc}UTp%U~52e*ZfD3_w9W~{ibmLndn(}_Z=7**d-eZec z2%FjG<`|LoNIdCTpCD=T#Oj(bhO2_*w0AwFjJ71-GPhWhqfahF__3zm)7>&RfA>qs zxsSf?b<{}5pNaW61;wb7se+DAyp~(vCDG&*FXj8~-7>Sq#WH^@SCh)DavOzZ+)S;X zUq0rgrj?!tHLhCanZJ3K+90C9TK!v1jjhCfF@9muDIJ0S1D+H=)@5na>IA(=bPS|5 zt03xrZame9BYxsA>8uEAfnyDTe|Tbv!s8Qve{@i)-=Qqwdr^-ro7#6GXv}1>vx92< zHBmz41x$@mdTvIyAwRp{egx4i(YCq0hkk4+OfpwUVZ-gA7`&!s<3;HJnAxvpxdo^^ zG0V=)n6G?H^kRsNuF7>j_pyxeF1S*BPU+5Y@lVo6M6U~veLUd9p0$`ef6@sllE0X{ zsbG3VO@k+Ou$|OrOV)|mcHv+XdgdZwjm}{Ey2gQ{mk+-nhAh0z%s!Y(VHIDsLJIFv zUS{{b0td0LF)TyHn2U28$(_JvAR-6;s*0NFyOXxhBj*qF3tG#Jol{Nx2MMLArfCxN zapB^1Oth-LtTVu8;&&FBe-JBETOykju6)-LytA0j&#*G_v9;lV_8!YJ!A`|nlTW}j zNhi5hW28fk?t?R^^>Z`JbE{IZ*Rqfd(s=c=to6or2hYjrB2}67WDohazSuwi- z3^Sf?G1}zsG}blLp*IfnB(-0W7b@mUNkqlrRm6{DGj?yXe;&8DXCLU0Omxfq?J9_w z4pJf*-_~<}ApmjSL!3hGx%F$gjPEx?=p^8gMmC80w2zCH#<+godP8j>if!@3Om5{o zp1D6MVTwn6enTjf;^lI;T9%?PyNR^6j4SLF)dk!(g96Re!@}yyY!Qn=;X+&^zo>m7 zOY}CnwPdgif7t~D^Ebb6>iaR#9)?|(Q5@zrqQiq~rR$xkH+e5aQy;0MCErQGYhWj{ zrjgEYqD@s87!S7z4h+?K&`&r`X5tP830*bp_XMyxs3Fh3;6ge?@NXM`#X zNUNs}j560Nja~?nRvcf0;$HDtt`W!ROA~_^%3?YRe@*t=uYf`wK-5h+xO<;cRN^haq` z`ZKr2s~P!GHgY}aCuiC-p~cRNli~_Oh)A57Nn(p*hc2@IMvAf&WWq0T7*4~!6m^tm zuto#we^L*T(?m{NXj8D=!};7u=h2nLr=LrLqGfgaHkrjJ@RHWWhSk`vs?7OHdF$i~ znPqDwCJ|R2v`B@8ttI#_>rXYI);enLhpIbO#Jy*)atL}OMJ!Fe^IRa%oe}X<=fkwY?UKv?vtehng=nC%n(I+ z;lm8*?TJh9FKnG;O~RNtQ!7{ZE}`(MIm5#>{Mw>@vCFh!5CB(=)rZ%(-hA8OFlM?z z?Gx?D3YC1cd)Pu%PlcXL&(qwu=xLalfBn+4H~Tofc{=tc^!y@Bo+Nu8NK%UE-Qbr+ z{Sig%BKc=VPf&5!sZ#FWPq=SiJ`+6kNm>=Xb|}p87iVdZ6-Wf& zbV<2-Lc^MFzsELJ8VvZxo}`y3f5_zXCCdZTOgp8d(>rU^Wh%SI>}C|L%&XnIbFlQG zNAK;yX_L~kP6gLn&5p_0-Fw{u2}F!uly>J(VqbEOy%Z{A;%f5FzESJQ=- zM38LGv=ITVuCy{%@J^EQyQn)J19f!cSn=&xl)Vw7UK=WQ3DGnPF&5J^j)#WWdShS*OViG}534MpQCCwL*oVu7OTaF<| z?54S_ab1@8$o_+k!cu`~qc9;H(<$N#=2CCsr4J87i7^R7yr=JZp6p%U+UnpBR9czz z6eJeb8!n@-3X(?YW9)Sw41U6~>L&fHW7_e7xP=={(NzF~e=>R`tQ=AE9XgdEd~s_I zf6&(>f-OmEl#KHP70rloTpOfL5A>Jj_w4ha*f7qO)pz*|zDOGDLmE-hf%O-9exfIzL+ zS!#cQrS?VF4?a6fh+v8K8wW~sDMAKw7t7CYq=aeVe|J3oh|=ECE#Z}+N8usNTRNOs zCIoXdjI6K5qMNLu(oF2^?Y63xRE%DJ=35NEc8@wk`f?P8B;X3)-C{YdW>~Z|%W5`S z&@fr_-nsFzxeJq$#f$%emZAD-0DCJkC~@OyqhAx7Oz)K)$?o0taJ;1gLaFOFe{)Qe z0RzKMe_65?V|`>TWp9y`B=l8MXoo`9`IOp5qK<5cL$6JY(^a^FC}9t(>jyH1AKCQ0 zSgtbNB-GIs*>>5IQ3kRvEuRpud|LTu*o!x*9Z;RKa% zf0`TfkpLEUi{buI>U;QW?zryxC}_I2awDeH#f}#5gW*nkAkNV_%HCUI)Xj6F_fP<{fC&mw6yH*d!!(e?UGV{i6ipWa5+fOXG|_~wUx%5u`G~^10B0Tttct>Lo*limPk0B zIWUg@ZcgBqXAD10sUw{IX~03mf1fTs*xmy{yb7ulAe+RazoYx0y448Ll#$Gs7naS3 z2?w)a!zj128A>`9$`scQ*Am3PV8^nOZv2LC)mgs6QxgDs#oOB z`SwA4lq-1+X{c~f!N;oBpRRP&y$6?O9S4l9OoB7>P~4b;co=(M5+C2(e@5CkK|pgp z3r%CEo{k@(pXH;PS(ZWE@we~CMlW$2d|`n`Ad{-x@p2xM%U6*1H08NB3ZB(|Qxl&l zB&@V)6m}O_-7~F~fyPEG{{(9$Geq}80S7@8q=t~MNuW>*$~8HcQ6l~+wfQkj)4zQN z0uSD}__%;R!Vcy+qBZXhe>+XHhCgdjyZi9dD;(S{<^cRfDLt`3aoW52{3fD1`}Dm~ zSv(}ESN!f;TIcgxa{@m(I!10XJT3X;v@JhfZM~rVK=Ip*SBT#~@o!XVSS^bGq==7Y z9T2?PXR{vO{e(45GOv44vb>Fif~~xG5&Gyi+f!{VrKe$CSf|dbe`hs+?rVy;pqq6w zf$v?ad`15@frp5g^bMJ%({tbS|MA}EYO>U33f zb48I{3flsGvwc_)e+d*?BUHIA`Jc>)Ujhf|8@{ zvY#>8+43-M7L+3JFK$>J$LrLRGEJ)Gd*cjhqoo)^r>w6Vyw17|l$~V&Q)riM#UH(! zuo>I7L!UO5cuObV&Dj!Y^w1TGP*j|^pMQ^k7`NQeYR$_b-?qkzDpOIOT~HwpovUKh zsobXRwX%Doe?aWzoa~vSQUROm1^B9-?G}R<~z_OR>vHrz3ZGUmA+~pS7E~~EAV=(@!L?ijxAvxuRvQ5ee3VG=*;YO zDWUMC8SV`OLR3>J{0qO##b@Vh+1bx>hofs>u~zGQw9=-hbFc!);=MF~8p;dx!)jLG zEXaE5xD&i*C*uy$yww%KF&swkKrAefZI_Upe-vQmzPr~Sbp!fn&Y*0!L~Q8kv^m98 zbh}y}GBvcLgam>pUX3x+Ei> zn`f}-o&QHesBrh!??d799XZ%^V33lyZ4Q%28lR4CNBd(>ZH#O5tT81n7jU8pH;EXM zIA2Kl3-YEK;|mpC3gRNIvme)5&*;1qe{`ji-|%Z-exc+~;7~~CZ`+RT5HHuciZY#a zd+Tk*Fr8}HjQTt*Lb8uQhu@H*IB6P&fee2_OXB}nKM~?xu9<{PTYL8;oOQlu1;5W9 zi7)Qk+mdTh4BR7psVV(7k7!C&e0C~BS<1GqZ^=$P9YDCfB)OdDhAiB1tZjE&f9!RW zuv1?Ou=?J&j;In`2hv4XfoNjTFrZCrQ~Ktp$c5EYKx6a61UB9kFK{r)4esueoLVj< zVR%l)RnepPR;**%yheBQyeeU%LYO|flqW0VP;FR0RSsB~Tr(LnwJ0FOjEHS@#`!!i z`rwR^WnoR5;m^t?p{Xgcr6=|df71zCX!Kj13LDY|*=t)DsJ9vph3cO7ZN-&=1>>`v zOt|EnlUq7!7=2c4-R+wnwvvg83Rkg4cWL%#xN4P_wPF&G`6AjjejH#=@IkP_W;{(v zU+Hu*5M?+MzQe@*zg!b+n_uBDmfoUh}S+Il#L*GE}eMriRhQ3Pqz`w=8 z(K%h)`;@xZdM!e6fDym-{GQ0(he#n$`AfeEV3^U8AB6QnAn!u4PEq@l z5oPqr@lc{K+bR0+QQa=lRd;Y<6d|~Q!fNYj7R_^!Rr4@9bGs01e@51{q*|NLS%TRo zKO+;k^ediJ=oLNEI&8-xP7gt4RA~Gnt+JXH?i|R>PtP({`r^tD+t|*moTK>~ta|bS)Jx zuw3X{o10g(x9S5wpu$0tR=B)bE3~-jFfsI;R&$dlF&|MFcDeE}e?$Qfq@!%f^kL=S zvKq3(Ep(B}8Z;+oIZ?Ag?lrfSbz>Jf1MdZ!iT9J&;<%zj1sUCY31Z;4owZ+#U>#4m*>C|V30KbT<|_HRHZRa6a|7W0;zR;18p z8)fFR1MC6*e?Q{$aK34knAJB~OQp>lH8rU8?%LEK7;T)6(k~qom88D1tj_*Pwk6O0vjPsK>ntW6`z8mcaRIF(URj-B+ctgpe*f3b#&zu9xo^a?@v;n#n_p zGB1?rT9@B!2k#iZy2jHH{kX5665vO4;#w$$+H)3fmeo+(ES=jbKp5piG)NlHNvn=` zs&U{Zb`{>5%@C?8|8Rc%nl6|0)}yRMcIpW#fBBqyI;x`WP{q&*)>-wGq##)+v1@^m zGBR_zYkM)?MAz|tIFNRon$1Yn?}ILH&LCe=`?Rg@CJ%OqN+u97jFsBOZ%OVAeVT% zfB4Kv70Ep0k+9KT726S=hVj+gArsyGfUqr;-7^i=btBCX9)h0edPVVMtf668t}nc% zBBEr_`T>db3qtGq@CbZ6GC4C`MZ&Agti>#`Exgh=feJL}HAhC}QaIdkBI1mGx2iCg zkhi8AyF|wBEFxBRhRI|}oUA|II=q59@ zh%V(-`FH`cd=AwoFt8Ll_)0Vn0nAaAp+Q=Ygz;Ssthr-tPE4Y61>v74cY}6`vd06uF`3Z zry7OzlVIR*YF)21prkGWjt__xfB6cqw@`iEfD_*KP*$)c8IahHRfbje{#Na^D8Vi_ z`Mf6%;pPfgy{&4WX>=mmG5PAe+i-cF00>WTdwwAg-iWMsT-pkHm-oX&**q!#(zXt1 zeb(mmdYV}&e~{7B9#ujUw&gzd(6#z`B@QYmieBXo-4ti-0m4_Hc`;lye^02nFqmtw zST)7W49UB`%8h)rca^qC_Y-VF8E-rE2UQzo5|>dM$@rEEgb8D}IfOfMU0!6!pjFt5 zWzl0cf}7M+^wy9w+kB*UoP)H|SfLN7+JXg0yk%}l8zrKpCXohgs9^{S@-+*+DuaiG z32#aKmZn-Vb{fSfx|?7(e}HqeY$Nq2Gl}%&;>Qaiyym6Gr&I*bNTQ~lZ7*)l5GNf- za0nn%l{BI~yaDWhm@zXUi*QK~N|%W--#WT9*RL9c9<%s_*q#Rc#1QW|uP_SY^#ckS zP?;h1?-{FsPW6UICqZYSvN<$BgQMsH$lZc zdPL?_Eo_UXpxtSIf-8j~W=lw;t2R7Bb=~tf<}01HsswI5Dl5zjx`Sj1e5KoFRAL zVet^qxvFkU?z#7`1QhJPp5YbO+Ylb4^L<`35mc{uR?0Mbcp2$fmylo`3Dv1cXcwfq z?8aG8l6wEBIK>0;?KxF%P)a$DmO@Su+MJUk^uVl1XOKSB+0A_gvFlSHGg725CTVg_ zCt@ZnFqGk;e{^=HX%}HF+ygJpD3o41)?_58XsBkXAE!7vBbJm_XzOvK;GGjYw}muq zS~lA!47WsMYDB#$J$DR%$obac1xhfzl!Rp!S!BbCi<*cBzh9wumv@f7a`nKIxhdCMiBMOkQ-NdgN+N`Z92 z%-(#Sf8^Hc(?Zs;dkoJTKc{Eh!NLQ1rIyjH19Z`hPcN60XkR9Ehiuy)3TTx^9|Nfm z^9ZIycK2NR+M;;b9wv{cnW6TT%WwNJ4&NEG1*3X|b?Q5LSt zNhkA4jfbAVMAA(2r60}QrI&gah|@a4(vNt5qRFVE%N9Q~XzhSJ{==K7^;j|= z<_0O>6ywpWyn?u%X-Sqe{_t&upNPf%gv1S!B|raEj^jgQB*MO0e|nAQLjZt*S@_l{8}M3g=D$FO?}yX7E^z zR>1lTAxq!V*wFb5DQ1+bFw1*CH4&9Ay^xykWRMtAl0HK+HtPK7hx%j_2v4za!RNx4 zhfU8_?uH=~=@l-TV);`Rx{r`&A+^%FecLBlGOMfWO=0B@L%Si`I(BO3n4{I|&@`cU3355$RT zc9b1&gyGco4{L*pBSst&wToSjf$#*KqLP<(8cT7~%oorU*StB3m+{;xxb`^+H&+PN0(F5$Z#OU{{`dA4%R2iIFLO|$m z=eyZ`zX%n@I+Se^&(QDGJu~6#uRb-!>Us9la$}fzlkizjED<~2ix&ynq`fu6tc8OK zS5rlV4f=vYX$(AfdrT_ae-~0V_ZaAv*5Ci?WG!>d1~s}7!)7aR_U%=iEM#r1?~!p& zhi`t0K|_Z&@!ss(&-_MeH$-v+y*YV3lDp${_pjGoE|eGv3zkw4SHg(OXPt7NOMH+( zUt>mbjiola5h%+1Vj0S=A6P9jC+A*7my1&a$dgi>TLz*{24&3$e{*WAOvGqql6}!3+fXAM+XJPgxIt5Q8M#1+kUf)Hi&LtePIO|E>aDh8?z1s=?6G&ht|&lOs*zWe`E>xN?(eiDw&6W==n+L zAILjA5+n9~7Zx~!RWV93#fUvx?j)ogrh;I!>$slgF+WM?_NZ>X*;lmG+8!2-+TAzo z$Ia{9xb22Jv%$DTo{NfGQuY}o4}^RA+_v1?s={Wwaxq7bLYXjYKlt$=(C<@#F`}Ik1?H#;eJjP+iF!a&g zmvX9G&h7COY)n_v;x=~EJLdd)1FjlHi;pXtb$s%Df4{DcXlHa}MQHRY9v8qw1A1Xz zy(2IDe85!=g&#Yv1&t@}EQ1Ct3Nfv1`({KzcW~AsP@iHN?VxEL*5nnMW22m)oMMp3 z4hti!cAlku9&X53GG`7n&!Y-a>Z`rBmTLVz`@xhrN-;3jBjyWdWy3eoOI3w`1&LIy;pb>K0j^;d2jm|9al2MnoSu zWTEhvX90NBko_|PW{#Z%3@Hzj$S1vdESAR6C3rZJ%$o;lIB zd*e8OduMW~^5Qesiw;YEB{|8??iO#gNGn?3M6K-$&GpzmdD<(>BJ7KkZ#aFMA1)P3>%D`{5z13Zl4tK zN`@n4yy~n3+$K{UGzbaCZYfX$cX5;Q*k>jaR=ER0Zjt9MV{A&d%9B_ukjd_v^m*VQ1FT<&(8WSV9yLa5SGF zKTrYyQrFcL6aoN&!u&v>5D`1O9t`aO`Abj4ZU8}|U(aD3+7@#@= z4p4P*00;^L1VtqT#Uy}0fDjNU{udB|lmN(sU18P$b$);<0uDhDv4ap!9!QvtEgF;O zuSWov6*oXoTwILzw>v=A5rTwSf#CpkFxnR4h{;r{gg6$l3Z z?F_cELO42s;T|x!4FC#rfB-ZVpYWsI(YydK-1-*~?0|nlVEnn{lkgIhy?wPEezB%lw6IlDkqrfx(IXiH=c2pnu4i^GCwm0RWvqV!tLp4E+QFz+a!gpUf}}vqr!jJpO_IK4Jki zeLZz~_4|Le{I^j~4&e^);u94D@Ck_s0>s500>nff0=)l!9YzZb`?Cz-KdvfpC;}k< zN41zS{Z+B+pA_Kwb3eEN|Bj`Bzz`P#;QEK>ra%#(73NFu|IGH^F8@E0|BCXz^8CLm zQgm@}_-*I<1MvUY!HzHok3SI@;<}(QOQ4RxtOESMp-&-yY_2-Q8s_5o-&Peg7_$tr za2toe2MI%eDZ<<#)><&MmF*vV`9rV&YttNHaEKNH1^ack0Qdxf!2hyg*2~HsbAO;P zr2K7yV7BMqDHY&W2ieoNwF00Hpd(gTbQv&W8q|7ZjSfdB#cKLBxn0Oor84>QIC z`L`&7kx&>O|1D#j(Qb(UfMe3R{38kp0t7t%3H}fu;0Zzg0smLeRxU^+X7zvb5;Ks$ z!Nzj_i4;mVOPS3M@*6(iGl>rIla9@)o+ z*G^#Kr}yZMZoBX=EQRif8YifD6B;$oqq?B%d z!2JuB2)S4Zu5uBtfKTB3HT-l<4fD9An}n1A;yfww~`{HIaJ6p4zXb zne9fo#=;t$r~h#sTkQD;muQd5kr_1pJC?D+ ztOYZdYl9H?BB(!ZeQ@PiUh~@aXm0j@b~jbe4{&!>6xUax8}XEU<(S1YN2F4d?pnC0 z)m)x}c6ZPwyL&ot$0lNuZ)99k?3rYAM4ZFC+l>bMHiKuvd`)|WUg(xgU=P2$j5rBft-<~Y)j(-|>+?^B(uFi3hI`of|%9!IpEx@P-bLbIYe z4%6$fEWJpQgffKCiLLH=8l7LZ*(L){dI@qEe`Y?~03563m|q)iSadY5YF`eI`KhlhpNUxbqMCbrx1W-c zTq!>ZaQCy(h^?SL9=ZdO^DgS;ZsNu=M1L{;YF@|piq&@WeqyWf&Scmvwz!kqN4A8W z?OXNk1}6}Bq!p~G?oPzc5E{a~@Iyy_^11l68WV^Y{Z(2M&Jp<8F)FnT15~PtIZRW{V zT<&J}e0$}Rmzd-XwPn#o{$FcQNNU# z!N}-`ZMq)e&7Os4x*5V-KjZrCNa~~68rnY4e>QofKmL)JVdr6tE4HG|Qh41swnDo7 z*Zy^EI$i|+;474?r>{c)VFp3dcMQvI0BVVyt?$K-H zyOlPYiTEPjjgr@W}20yx?A_ zEtt6a&i%>a6m>7(eOW~K2}O?pk(}1|*Ix47={Bl=>mmq4JGLtdXPgAdWTqCfn2t{M zwh><$wZ5aDfc8_(tH}n&b%l+$?LP_Qn6Mr`*zP1~o3gw~>>z)R{XV#N4>ye0P?hDS zmc6=$fB9#M+bn>p&JS!vPwM*b7K^%8NN81?`}c(meL7?WW^mq>1CxJXo&Re5AhK(= zceT!ctP&()+{FHsocp?9VNx)Kn>!J{X^=0OaWV6a`iMX$Yc|4}?*x4})e(YlS<<2L zBrxF&VYBH~FN;*(wM%TLZ+iy6pndq`J&o^um*AQw(Ufi*b+ac6_n+DPl$e@)F2pcZ zPtqq^(^_wF&wfm2^V4FNOuq!nQL`365yd5Wl1Tg|gk`QQlfby9bql<|=|D)-BzhyVa+9@aCP;xeu50)RG$VsqN*7 zxD4I+Y?JiLGCxhM8j)0Z9&wbkFI2as^qsu^niquqCiLft()mnf zSc(1P2Bl}}-NUl!+H+(?jees<^EBCQq`IHc@5WC%7kCUHAB$<`N<0W1N0rVRgxaIu zCG0=La-P~K-DUTBGaA;A1dxrQ?%e0x*l<}%kG!A_StEN=*VKJvu<53MRp3n4c*pLb z7M8E%x*`HWeF#M6WpMLaIZ=Vij;O$NxA9(oz-7yzK)cr>l88E53e~I9T$)*`sE<%> z%%g1Z*BXgWOO1xUwOEr^flyN47rSsm_ijJCm18C`#GkNcMIva9OqVKUStwdAC~X>j zGoWEyuhKmCj6-d0izBgr^vEK#a*kJbhJk6I@m}aC-Rrqw_x_5vo#sO`;Q`&{TVid3 z8+C!u9s6(#_DCra1CG9I384V>&bJqLRxcfGN!xD|==^0-7uB;Ij<2B6xPeq0#dygOPE zk_-~;g@lzPSt{6?BuJ;yD9AoE@GWV64Zb;Db^~}J-k3Pj9UA%Sg*hPP(4kf{+~kgl zH7HnDm|VD=K*vd-+41dYS4@-C%HZrK>o||Uotoy5g_F7H!!J2R!lXGzs^i$|0SK^xps1&t-XM`y z5I=_7c$&nX#5dIQdL+GqzPR1=q~=+P_u@;nV?6=9kEJpUCq6AJ@SOBnQ30s~w{j21 zTo;KvoHe!~B;y=?4+(icfzcvzILoO8h73Bpl|~VEmA;E@i+85f032cr551??;aN%d zyztb%Tn(RpO3KHNX(jGb?fC&1k4_`RGjv$ytBeAXILNAd2d zNmH|UsvK@krDkmn5UbeaMfzpgeNjX8G1SPh^xFh~9qc`~#y#Jm-8n|pvC+}#ld+o7 zCX_?@o$*U_v#47t(KHB$HIJQeGm@m-jRjE3RRc_H_yD7ziX|ATnAlP94L_|4l1(+e zEnR5R6+k*KsiJPFv5p^p@}2qqc-k?vCX)i!YY6X?^1i{Wo@&H52R(Z_^&Yj%)cq~> zzEn1UokM11>5(M&#tZVv{Sopq$*EN_ul-KO5Y2lYGthNPO)|$Tc8_9?_PDmHXo*() z{c$cbq0!OWEfx?JU3n4lG*920x)DjtVT!QX*>~@@xY;j$7Y4C1T+4UqT7yhfhRRMJ zKU;@Rc{)=w5SAs&mn{q6sHmsqK9&mozJ_dnWY5+2xf7eT5t>wsdpCZ^*EsvAZXRpW z&$(+kDXgFW#lCYGm$mlD-VJI)oK<+aBnCre+NJJoywsxGS0+x#shqM!| zaW8h5n6yfGNLxBrJ#^`1azksan;;0=Tut#z7`tI=%H+Di65dQ+J`fB@@*jD#^>cOq5h-(n-`z^zbL_T*T+VG+u9XK zqANr{rF`Pk4zZLmd9Ns-l@|?TiR_u@sAj(%^I<+Jz9^%6F73h;wfA;R5s#H}RG~Lk z`+lb2X)Ep|iaYi-vIdq00`{Q7RTdAo(06q$x!Mexq( zJ83j<`;}{ky=H&gyzOig-F!@guGrE_Wy)TWf8y#6uTNWSkcb><`D-12?Kn;fR>yuW zY~G*~Y4TFWst1F_5ucLo2eaz=xi#3bro9$^j0uiN@Oo#RrZ8c2x<}CU! zw7d{WzlRrIP-wqK4x*fmY=%`Ch$Ji`C*`VlCth0{Gx!=EE^QPFKWQ4A$j*D zg8;#X>s6-bv3Bp?4we|AWqhH@V!xhNPkkx0v41Za-)Dk9a0jcX^2B_E1Y-Q)MkmnlZ2PD34~wd-*`U@WYf1|2c&O{PkC=iCYoYGO z)UE|v@@JUtnq$8p>l{aTg9;mYBV?jwHD@KD#gB$3nzj;uztpi$U-y3KOFqUoH|SY5 z=BEac4c?=F3V3ec3_l9zX~w$T=OFsQ-_|WHOTGtPzv{yCF7kypZPMi}? zcU|$si*OE_X4v?+#&_c#}`?!gVKSdFd}|AZ5HEaSLDf*$Kiac@SRP{^qqfnYqrHdk_AroyE7;YjN~OKETPT`-FD!MN zx6IN>z_6D%l8?}*o-_L0Wc(sgKjXFnu;*-lWyPjyCe_Gszh(51-2^GHT6p(cZ1dK5 zu)$yxoC&L{7@OWK9rYeoDaDt$)>U2H{$2aC`f*DtR9-Z;W!AEufX4()j0w`Hc7%QVeEdVUtD-jLMa{gVe7 z@JN9rktsurqTt8b0rNM~0)$u!ZwPvS;7~GpdktT2_2n}iV;M25e23GsJM@Q@0YOV| zWF`d|Ct+9%OE^b6`f`Ll(>&lDYeqHksR&ch=u-pbLHkel9n@9#LEGT+=YWXykH->T zJ&lH8(i9m16Uj<4a;!K$1K9_2tSI@_&;xK?%IC+${9Ncbt(j!>m$Xo|`aBbV|25pD zB=>MOYaVY>(kUqR0NsjTT4VR8M7H!<2Ao?5tu+FNl3(qAMk&z_jS*>Qf%6-k!rL7luUE2qrj1`xtAmRXmf{Qg-c zJ{oV`fH#S6uyb?4E+b>)b~uQC$-|fBB+VKhk}u1| z47*QIF&d5D;-b;S!cje_Kh553!0PV+v5%Zee6Pl3&gVysCqG%*a|Ww_O2myO8HjJt zCn!G%>d1>eM`Lex-p+p?R|m_Zc->U817D_AXP@Tq$AWl3rg-e_vg=Yfc{FXTTAeQ! zQr3Zc1vJW&0M{;)tKF!@omN^+GV;l~*WoZ3Te?lH)=YBS(pG{&+Tz1Z5*IuH#j8po z=;ynU8Fw;d;;)kv-X)cPi0u(3s~56%i#ksNw8NEgZ^`tWr)5>1pTXKENE424Y7VA_ zRj%)hxe*aoV12BST68aNt_&{PEI9r;e$<6SUCuG%gdYBA+IW)zJ0jYZgp^KPUJ~9L zG3G^8$5-2B$OP35Q#_6-AnrZB6kphY+5lYo;3;(THJY2-5LFz1T_&xp1R@U5w%Q3% z;P*IA+&h|uS@q784_V(sHRGQ@8p*VO5nd2A6D%$m5IAwTQ!X@U!RjLzq4tvWqyT8I z=j@a1T6OC>E}N?J&<4`vh2G6vv z<_vm|6*p`>P5SD8{d0Sde#XYBRifRqo_0#?7gJbP4`9fDhQaYk$jgrXXVa~BRTe!Oe*KT*G`%H@)toQ zVIiDlo+@vv!cOczWQqEhy(8E)-{vhYjlIxmyj8;6&=%i+1C4GB;IP}=qN|l|DCK&v z)G(Z6khbd1#4bN%t>tXnmd*Lfuy)f!zn4c6{>gpPMddC5$O7kuQj$xkx$bTklU{{f zft<`y{ao8T^?NO~^C?E~f^+8ewm^TK49-p59{|?XSJ|WA$(+xIaz+;CHD6RVxrmVO ziRDC*Z52^}V3~43-P>?O2tald0xjYJ1aV_%1>pg0^oOwe_0PeqgWJKnMYOLA=e~tw zUe&hc1{M<-zRk}?K3Sup1b!9jP5QF#M6Vq8Kv#!*X5?H%=-{n_Sy$T#&F#IC$Ac}t zy!VVrQ3uH>p(04oHIDZ%P1$>`mE+a}&uVCBX!RC+8qZ{3*wSH2p+zTyyKw zHct23*xG!dl>QP~Bt?PSRZgi|bFlS08qn1T>kc{F>nJ8#!!(9uu7LU@lSPu( zTtKLQKfZvi=vfaPsUFnQM_oB9&BM<2#&c1}_vI3!kJL)LJjdq+z0g0~S(dwKVfY{2 zPaVhXLqopteiU@_Cw|K0-K~HpF|th>>oa^4i|k&eNq`tDw9|dEP5YAjaiwm(;@d>t zPYuMmm#wdMm{!NZ2|NfsCm?uwdU?c9@3RV< z=;v(&`1Z#Hr;+2I5b5`}bVs}~;4?cNQ5duNbfci&on)8FC;*TvEGb-53x%6UnC7E@ ztR65~@jY!J1wKC8t3=h-6u3S%xW3*nE0V!3K*e&Nrn|bql5H&!WO1TBLvCk3qcV8l zc%Jnkj|A!E{Eal~8LeeMWtN|1Y#q{wMzrO*D?KJ6oxLm@a13fe9Qeq}1Ywouc`o0B zuoG8E#%vD&=(*iq{K#9s+)omc9P37Z<~F<-5ue1LDihRE@C)3{q!Ga_So353Kz0zH z#Haz0E-ozFdNFIa>F7?v_~cpPk$~befcrQ0@<IvLlM5aE60Af z28i8h3a}ihjgp3KTra;Us7&C*Mo~5{Hi$`q_QH34yE-;wO6hTIh^%ApGRLoCB6860BxW0PM6`h1``7~IWU*82@4drb14gq z9|AHsml1^q6Sove3(-9SGB}rUbq5o-`i2XVIs`H}IX0KE2@4drq`?af9Ro5rIhU{r z3l*18`U?-Y*xn0Z8w4^rFff;~2@4drQ2Glw8v-&pmjO!z6PIu)3k0{K6$~RC1Tr}= zG?%dn3lkDDG&wQ~FHB`_XLM*XATc*IIG14h3l#-1I5{&olff=0moGC61%KJv1`6Zu z8oVL6ySuv++-cn1-QC?SxDzb61ef3hg1ZF>PT+QC=A6v={=e$p>ZT zV-PWOFab(B*t;^YFf#K3#1z!kS(pLL%xsLz%&Z6$6zW#4w!r_;5hy+Yon5RP?0Nqs zA?6G;b_LPIja@;43J&%FS${WM01F#{g_DtGLbL7)(GaP)Gvvaoao`T5TyfZCJ>z{11BMgNyNK*SE{Y-MU}4^S|6wFKIMJenHY z0@NH#t$?mx|6_uh-_q69k(Y_d!^4Bo*v^H~!P!EPh92NyS62*1b_&(R;ECE7m$jZy&2FM0P+q{laU7~IRfqf z7MA~8fFAHqaR4lgEdMq4kM?gvR`!1>8=IOs*f|>8ds*3A0L-myfdC~*c}7=HS9*Z4 zz1eR;V_O#okiN0Iv454Vu?a}vuh5MFk|HVqV^D_ww8O;9zEE=4N9B0G$9pPg6^#-wxEh9D#o^S$}?$K{@#OI6622%t2`Y z{jAJ^pdSPu7h`uIz}49e=;!lq#{VJ&78Zb+m8mPh1ZZJpkMPGjhzvCU8-x1qY~=~i zWd@BO3xN6e=f6+-pb0Z`u($R4BmP&5nKVS?v}I)J{z>`2Oi@t>Pk;{tJAi?ejSaxT z#s%Qy;RN{ouYVO~W2=9n_?M=Py}1K`=kH)aRr*iB?*B{x^*`%D1NdKCiVmQ;1p=u5 zjJX~&2eT>Yi{=0Gu>Ym<|8K^BTls$-^Zy%>q?@hnUwrDn1^$2d#&%Y=UjImd=GM&> zv;ztbpiQvL45fM{0#f}r57{{=y1w)qzX z6@TYX5}cqa*!~{(KYUOr|CJHwTx0s2|7j{a%Rkir?I}Ab4M$L)9sboN(Dl#c^rr)$$~d_>xB|^g{$%u*$Zw*H)nA9g zA6=02zskx2D%zj4IY5EC0PU>)cWgL*%YOjf|5a-akP#QqJ@Lm3D9S%EgU(wfS4(H$ zzgiAT+1110UkacSy8RhkkcYos09;HRoc|pxs7vnuf}rp`{WdR8E1ezkOE;*R;g<3a-etu{WA@E?>pMMsZ zr`Xrbq+#$`b?$b1LV-=Asm~4GbiNZw8yi4d-<6=g6<#Cx<#XE60vpkpqSE#3`(l`+ zI=A12uriA?GE;gg(mYHAPspGyeBk@b$@fE$4P*y+uPjBOlN&dRaxvzE$B>j~^KjL- z$?&Cpm4kXtImDN$uMBY-v3fxt7k?;lREA!FWVvT=X^xmjZXLaerBgfNuM+A9`F*!%+BYKoBi@WSoQ69S~u$<3K!w9xH zIZWa^(Mx*Ht1B;qfy->`yvidrN$%Ix%oL*L(*aVF!D?O>{&2SA>%v zmI4gn&jap0-%{(GO7cdZLF<__$9c~KPqprmYKaRs6a?7Pv@BFK%+l;nTohwTw~d(W zdhqo;T_#}gdi^xIV|Z(l8h_syovsdE+0Tn6buzi-p1nOh2wS~uQ)kL$I7~3wNUTkh z&ULVBAW*WR=~K80N|(l}ykVJpHhf8yze)xDtb0Ue{Vt8^mHoF zb|iQj4YidTj{45h(Z;+jQc<@ymjXxhWo-PqUUERlLN!aSvROZBDv@7pUOBkE z?+rDfrcB_rYDagHa4=<6zu~=q=A_Pizs`!+xaVknY*R$zmmp0_aowc(W3U`bjMn|m zMLsef!mco7zem5Gq<_uc!8zmGC2K~*U(<1gYZKBWtsC|SaRw(3BOVE3^9pVAw4QeD zi#P|`bs1Qbf@kZK)z@gZ(2{_)FBatMFpvYIHbC8L*MZGSOqj4e@8&R+&6yo^g2 zN1aP#UEx_t86}#LFMcC2R(hPyDqO2EpUsDgft(xR>3CEW%$8U+E zGM~%0i=x#4I4_ljT#hQ;aqP^d;L=$Oi|jw#bkC4Iw7Un>v-9`!SU>B!&VC&mPhTsE zZOIj~{FxQqZhw-y{Ytw^1VJ8%U^Y@_6ip6L4nqpdiQ)}HBMUCPs-%gp^wpTV9H~5w zHOGZ{ti}{?Ep>fBTQJKQ_*f`VlatFab@MrZj^I=2g*8_{#i^C>TL#V!<|sN19{613 zggO)0tWzYu#`>(}apQer2TQ7}#7ywlwvA$8w$77 zoKRSUT+-)Q2wD~kkNZQ`z9M#}^1_04wqD`t9lZuF?{CK5Cvz->$23uGj9XbhZh~SY zJcG5VI!CMSPdFkaO#=k%t$SE^x)))VOtFpp82h=NR)`FseCFE7MmteJgQ&S4%C1-RNUfk zR}*stJI$;!(|rei#P^c5fuf5Q4)bxHN#~dbP$B&p7dqtyFo>tCZ&YcCwc#k>Nk9OrOI|93!`*}AC||xH-E-Ul5=!@tn`QiE(niJvVCf<+Knp6k$kP%?7 zqQg>ENO%m+$&>0u;c1IF+E#&3sG*|tHhGX0hm>dm)727WIc`^7tJ+&nl}49>=yL`} z#D8Ed)M>TzR4{f~Peh1vRH$-0^Tx1-WZDA-u4{Q;vb zO9PkzBz5%!nQD9KD4^}$r(*Q(spRYU`@upZjE%dc-Js0CyX6f4RRytQ}xnW*Lu`{bFIiBKPPw8O>O!pm$mwyFz zPeTsk$o+)E)y|jb>>>J}`5(=8Y&ob*CQLS*=+mX|7y(Kt4M*I=+wh8t_V+qNQrFP1 zPHt1gZC@If6jC92e)d~DA1|0OK|(OXI-L8{4t1wvY zCz5`Ex(Tu25I7m3%+W47vm##gxCx)|#jSXk7w#@rAEONP-j#%E{2q5~BpI?J3#&xh zSN-ZeQuJl8M1qlqyF?_{)rc-*+TmpNBo(f%7CA7)8_Vc`)b}-@)|j?#%75%o12GW_ zmWI()hS1U}Y56shn3fr`(CH$uvoWw<@Gw*n`-=wrFxv>pXu=j3>QEq$lItg3Hs81( z9L~&;Hyw^6E3eNh+_0Nznwf-7;_}1YpW}Vj&yAX}Qbx@@QVD#QLy@Iq-@KXHa*w2` zdUVJ`qgKJPRura7x#LQ=;(rrHbkHUvg653qYvJHprOFT*gmouUuO#m zJOs@rx;V&_>C+%j^&bLyF53NGFD zKSuG~Nl#D<^UXEqAz7{w>eISnbQ=}*G?y}wcwzL=n$A2vomAA2xYxRNU zF^99Tc%cWkJ@&1p{7ew|^&N`Bs4;EH0{LAOQLp>^^-qFlTpDMl#{pA=pJ1!OsM;W~ zBJA50QD?KJSz@yf%Qe4`RKLPjtiF9%N2<(Jbc3Ped0Rte=R%M1l0v1P8+hH^M6L)z z9_WiEtMwk=L2*zTFn>(-tufVkCG-|8JqQtQ(+LzI+30!P5;iUYdZzCamE7b3&Zb<`g~T!S8WoVJWz=`Wn_ zORl&I*MQ&-oLNlqE;{_)BOfl*9QXv0g8RZtEEmI9cl%VN`F}<+sg)Xf3q`&X!Ha7$ z#^bo#B57cjEjmrSB&$jd&Z*0wPJ7Nynj1Igr4438rO^6|8WOPaH^>Hz}$6BvCa8$v2U(;TW(mG`z=~Kx@g@1DLQiASwO+*W3rbl0vxqa8a zNzLSc-?-G{>y$=9upilmF=dV1toJ0*nuftDWFZye-NN2R??~TA!*P92Jh+7;MA0#K zpJovnt=0?F_0BE;PJxB_0me5iX)>O~&yXOk8J@!6LWjO^g-t@>V}{|a zJX=ghHh+wqzhO{1_Z<=?}kE zMX94xZ`DshoPZiZgJW+``ZXVeterVmH}x> ze6vnFLHgW}GezdnC6pyqqC>T#wPp)Pz#W*=) z;ELX+pSrR?J_mD1`A-F`47BG10Vk|6L#+xp7Bmqh5$Db6(9c=xP2`^z>1A2?j_QBzb zvLvl1uQ4;%S-%P;Yi(+p5SyW|dz7quGk?1A>o(U8=vrVkf%uEFE|m(4A2MQSsva`a zZ~C`jt7NaVKU_`ZaJQWGvGo6fF?%m7&w?X_sn9Yigh@7>WAbrQr5}axvZuq`v~702 zz`3Qn9+BU|)<5ntBZ))1UT#JpNNxX0|I`dYII=X*5SC+6+GQ*F`F0(9&Zr++hM z(&huWSoEavcL<1;qF9tK`sdt{p z<^)CElO#_VT(X;UOIHt}%kzErEoym{yHo}E1l~S)9j7L(W%H&s$|i9BBSBy*2+T!| z1A`CcQ{Du-GV`^hp~&hX?J=rV%n`zamcNieFLwCbQQcKBzb8?r@zC~mpHD}-qwV1HLVCQBf~ zDQ%i5H6b$uh~!8i{0U?sYCr3dNM054?iY+5HZbVrZiY`Fdpip853@t zbd6WPUW=R0>w-%G>rPBdrocZ5L!9Y#yu4%0qbQ>XojJl0XSuk6%Al7L{kSJjY_fpe zPhW4LWKYG7J@ztMRa-}ji+?Y%5KhHM^cu#31BloS&m9k-!n-ln83EWH5?0LD+;KgU z6-}E2s(%$uCsQFv^>CcF&cRMuwA5m`Z|0-At(b*wF(`LJ<)5Lxya{;f=aA|{3(nUHby_JhS$QPeb~52k-G^3>SsihTm||3PZNE^l5UEKBnmIMY5%2B%RsKgy zs#Z%Q^4j-D@l<0)n16ji;~)&@&+N-7i^6!1W<6CI{i%oU^&D8u5GS3v96;Tg;}+(fV03$u21F@f3N_#|rUvL=3o z8nWC_m{eWitxT&jQJJB(th#STOLAzdc#gZ0V1j8q7Ey@>;nD48IQ$Xv9U=4PJGL^z zUb{g7NT#FB0DqOMpUrOOKX-}|uBc?-6`_i|c7(<-ovf>_vS<*-<4?2ao9OaC6^USc znIoEYF5c;?x=vU7&^9prLu!nl!oq~MLXmUVvp#Q&YT+Cs`;V5p_pzur^% z7{(w_Zs+>~9&Z1Z_LFv)_(TfXLwhPYmXLWH7jec~_J5`ydPlO>#Gb=Z(;-(^MOaQCwU2GJOz-3<%TeMnVD*}3ug(2z@zAjjz^Rn#uMD-W@UQdGPNfg z=z(CWtr}D;viDB zAgJ`rqL1Vrf4caw#^U*?h|qZ8%bvKxYHh`1Td}#ts$#G~sOLCwB$@aU`=34~^B=Q5 z_i^Ewi1>vC6=dO;$!jeraUMQ1p;18?@si9eTz_>#wDh(lRSJv4xD7<+%J@uNF96Bl8JK%>{i-R7Slmc5%V|8erH)g3?x41Dz(M|##>cwR8z zCuJySA#dQ2PyMcdjxNI>_=>ZbDsutG5@Gf}7ekikf-*}c0W$1;BVcCOB7XCeDQ%Z1 zIyhZLE%v&kroCCXg5Qj)wp*5oGGtqDt$X&NsgR+Cf(?g`!;r%U)*fL+L37Ag^MAr{ zNPpbTbEyHrg_o7q)2T@M0<^-K%v}qcF?|RLZp=0z$jpKjBjZR#CL>3fkEn;!JIAc7 zR*)4>t`qRoOu9qDyS{v4<(pvo#?G9(i(0qHp_=XV5TC_jqQStFaPFd1&Z4x9Dh`cg z4Mpp>h%G-ZI9(lMawC!QjWJ%&e19S6r5);(SGceFa(S3z(wkbYAcvP>>|^2}mm_mv zKc^Au&`#j7XhC$%mfXJ>=bNP3<3uEc{-c`esS@=7TL#vaKgHh*Hn(u`U)yVZVyz2ND5dw310VDgy?ayP{{WAs>{lN?SB;Ga!(w- z8EvF^qh>p#`^M=JVBGcPWhI%3%a)asApH=&j{P{%U_}nw!9XlYqhMAmHkh|Vh zC$gL{e)1bz`ZC{dI`>lVvscZ}pW}XZzuvxyGwHqbGlKsKaSH4zeRQ^D1B_?V8Rq-D z)*!N6lVI0RS>u`HUdOXlOGO{f0Q#Eg?*^8>E(n%v>@q{)Hy;Ns8Ykd(22U^bb;9hcg*I|br`JL}za53^(t=*5NrTB~eSkA>!L-VsP$~V0}&~=CRu4*fc>G|D|}}L_$pE zAwPhO48Bi~(PT}Qc7F_}>E7(6Fl}P)p3_nKNJvS)7%mN47aoE(_vy2gZm@aS`4Bc` zN~Ln2XL}2!492_cthdwB1St$Ur9^3T;5 zv)FlEV#r`u^iJQrDu?RDV(ak48Y1A=bp~AQRYP4w72=)RCvF&I zxpa>478qnG_Ht8PNJ+FTId^9 z)=sl!jeq)roEs9W`u4${XYihL{CiNli=e2Cg>^^C)7Kn9{HgkOW|7v};P(WXUKenM zzvebSr7I*-Mhtr;WN;hA2i5tJetZ;pDTN2eqQfO76yCW$0KDDUo?56vtJz`$_48QTLsHGk5n_@>dwE3Dm@#J})_P|nf>xX@b) z%kVxvu%>l~I(ukj=vcs$%8W8w4GLkdjmK(1hBvDv?c0Udmv!6LL5DVFIuW+vI-T22 zCSjb|PnEiOS{phreud2{+=@mEJ?2tvY)uVYvXZ z{30fyOa0m;Q~wNk>S-0u2Z#74L@iUnWpjJxIFDX+6!RF&9^SUY;e)@(nkF43xVj(i zA>kA*7%O|!m(A0@Yk}FiwIh-lZGY*!Lcwc^>W}FBH`%U31;v(q<*k=H!lxEran{Qi zWcIidqsnq-=ud-I7H8lZ8NZ@M?xv-?ADfpdtK&qzYd|j|qN_zWIUh-}0*7nzW2|+; z`Ls#4hEEXm<$2>v4YO)Md$2kml3-jH37H`kTot{MN0SOT!FV zEDZuDxOt_|gA7w(eRtkD2W`W)nK-psa=Jm%k4D=JFA*-tYU^GfzJPb5^nNgT>9GnI z#deimEP^Bn?G}ww$fU!9-+vZgVT_l;tF-}&nzyNjTlAvt%f?%D1XtIS+d%Gpe|AKt zvoPQKy58mBizp{$XOYNMi#`6-tQwzex;?ww-j0p8nrEcWUNo9`>nKt4^K0YrmY0_5D6_FMZ14v*%AQH3ahmA2iWH z{qXwSgD?NteA{-AsB!d$oZWmxSlFBCyYhr7I{&AsUdnXxp^VJ9sPVfV(I`H)u7RPI zH;dO}n)R2O81}Vo0sgeB#2dUt4|9vYa8bM-9O&#ZX%zx-8VgIT0RSTVA2Q*H1zM6} z$O>?JYa!x57cM7c-1CrTbpUl434A6HSEG)b(I7;= z*?GI3_zNH5b`^;JYo9tFJ?e8Y_ohpO`3Z>xedLD>U5Zd*^thpTcqP72E7AB;Ht)7I z8?ODP(oijN zK(-#zo*HJJE$@>b45OeIoOh58G=JaVv_v~Q&p>!ku*IFv+$|*xVk8nu?7~bP)@P%C z&j=*^c2+Q7N&iE@S6fC1RmO>1s!JFej)9t**~b1uM^pOZ6W|bY${-~#TjKPLO1HJO zRNYdz#GKT0_Bp*>IO?T3bu`Q3zi9eav#ihz)dRJc_Toh=3-elT@yUd`;B^VMsJWg) zE`uB;aT&6<35P%9Mt8q0`CZfy<2Tz+)sY_+comBOIg3Q7>%|w~PmU%Bi(|y_We?#W z)vRm2x@+s!0CJrGj(z9{q3L`hW!w+hpKD58S+!R{)?0B!;dlhG$7g6xj?*+ayp!94 zvoM`IUeSlmV^FrupNoCP^`_XlxPd`s^j@nSUX?bo;J~Uv7LlS+P0r#VEvcRBe>*)` z&BSML11;NFBgQeo2XmpYWYkFC-ShC7e7z#xo?T2uAgu7pG9CJ}K@Ad}Wv8_!keM00T4Xy$QX$n3{1TE!}{DDEeu_mCE>S#+( zyWVbo;Jwvl7@I_~fFlDB<$w7eHCqXMMy~ZkUfal&TE3+$+IdktptL>6I>?vpBh*Sa zaReU#DH+U33k9?E!7Se_gbe^fg=E_@#Fyh1$OC#6u+Sa@VHk?qn*0zL>fj%LcW zlfoGPIk-?4`ow=WnmKDo;^fqukjAa>nc1yQek^h}B8a3GF!+&6;o(2$G#Pbn;S@P3FtALqzhpCTYa1Apbs zVguLmm^eQs-%l_Tx8RgWK8dA zC8_jwnk-3#2$nmc4TLSsQK~b5K=mHv*4TT2<(HM8?Tx@7Stdirn4CuIM#ZOL+>;f^jw#^>-AOR$ehzM=%Fi04bH;UhCvNA^nzoVG}9%{n) z7moeL^q!#&^eTG|!;=b}sa=BI-N-f%lr_Xk@>81f#M<66q^_ zkD?5ty)#C}d-vE(`P?3OCTYDN7VVxhq({{C!RTDxwD!_rnvE7_O<8;mC2cQn&} zmM!9N&^Hi4$s4bMCUS(YiW(|jm+ZRAi(JPXZd|EC*5#R?yj*E zohgtO3+au`u3~IYy*1XATklR)XE*pdbk}WIQO(~KEOZt_d$|#)n;MeRBijCl3As$N5M6Ma&`-rv zPuDBA1@y{UCLDXFV`pMjB04f*ukg5DuF|<{T@kM@yj$aISCsS)ClV8iQNIzLm_jPm z0N?p#GH+Camv%Y}J~}baH7v$q=&?J7D4FHx-Uej{zWmDL1pNij0b}JfU7LD(Jag~N zv(2P#jRX9%bKU>oMU#(R;PpUIPGg?>EPB~_)90>fu+~`7iuHtM*CWg}z3QP}=HHNX z)J7v+r>N@Zi7E<|8E-1oPs!^q@gk2+UMF#oFc)#Fuedi%3mrvo8*Yj-a(J3O=f7vY zDVl`;2{F}+);$IgE)sbK5gi}lQQ*~Mf9A4!HqI*R&6~So`~U4!D>t`(3z3quXK&fK zd_WhE0$urqc1P-l`t=qOrH6hlhPcCiPt6c2Qx}COHbfpzm56YLNmKsEq(b8o#aU_P zcWWI9QcG{@~nk92^Q!I6|nVWmwv{$|_X zEB`-EYAysQD<~6r)vx_c&03e>rTD0WUSkTHXi28cN%9vdLq&5ruNAGX<2FT8do)fB z=cD~O&)R;#EJrI2I-_#GHJRFATZHMiEyb2I8x7KDEd{RR3DQ;m?~Q59jPdrRMZ=7U z$Qhc(F&|&dVmlwuc4`yYnWFctSjh|~c>U>I`<0m(OG-mjG$-F%{b{KdYiPW*lu6d$ z`}J11gpj9haE1j(mx?MFht^~YD+A&P_}-sdknZDwOa?Yz;>&sSiiQiA#U=PCT*0pq zpW$!dK2l1|R{ZA^YIEcPH*cr*p-y6Qsc+gGC&J}!BTwX|B2StV8rLrurw8=w9+@cS z)@ovjhD7$up{{1i&~b+p+_cw>uD_$&wO=u`2eykNsuX6iHDop%+0%~)q8$XrnKXj@ zDva;|=S{DxPa|^IB`b7=ev=5d*E~=(NTDZUGBKiaJLo1)_7ndRlpL-puL?yyrbv)rMw)_JPYpotx5${*B!3o5>Tf^Mw7kKl4~S zv{Qp%_kLKWNFPnJEYg;I=9EME%aM?XRzqvQOhbff)!E~c$~P1rSWy`SHpE6Zobba$ z33Q94ipz^9G|JR9le5nsb}nEg_wotkcEmGesN*QJu1XP_?1XkI-()dRxW7|uu>Qyf zD3EFRss0!RY@Csb9YvI*4BNF1{EDL!!Q<}czkG<5Nt$pN89b2!hW1ukLI zs*kcHt3c6aa(hIPWZX7aK7N!zM~S8~_6>Q`$e9}7Aw5Vv1Z>in2}Qe8<~LLq zFV5Qx(eEelyKuKX9Y%hT-_)M%5VoHHN^SD4Ng+i=EI)*c2*LIms>8TWvu5v)$u*dK zm9Zf7w~kq@g*R|tzBo$K-Cb_0h~dM;Q|7_c9{Bo>%_YbaSf}pApI|~NYPfuQ1GQ+J z#zbaTRmK+}?l|Cq2b9eB z5?%kGuvZm4ILMNzC!vk3A2Y@w&b9V7Ojz_)x%89YM}J+32+gMGJt}H$=$>i?vAqg^ zCk%J&1M#Ax=>8jtGU~-Ibq>$-!zdxo{nW^f9mTrbO02CahSAVp9&B znRGpFO9r3q1%LZtb@Qrl(?tymkkQuqDsyIP{L=8Dpnl(G8IEwXv0@3uHjTf~*y5Dg zy7;a*homElh#bLJCzXw8&9#2Zf`(My?#e)TpJ$QLwZ`fy^nODA6VVo_N`#c;_kP=+ zqm{fQG++D)bOyT6k`;a~_K4E+uF{@DI{x6OV=i8LSU0MsnGIZG&i>L*;5b*S;hJzP zIevU?q3rDOcVYshQSzTVVbth-wDgbY{K}yJ$<1;?xFn zG;|R<%u_o>BCI){@h|;Y6K@(lc_tV*5uQ+jfeNq_^J6i9Xn9{5FzigN(1w%My3!GP zWt~8<)I_tsmT=@3&9WgEM{e;%q+uQ~ou!Rs3wBAG34`0Sw2DF<88`8=^Q%f4(wx$BnG&zL2m&jFlhPhzImf6QNuNOQQZ zW6JK2s53VV`xjCd&|G(gi#AXlMa&)kRL~zw=VvH4 zuKRwrk0A48LUPGViM;}w8Lc816Y$xYzMu!Op`H85){gA_)Iqz)J39$ISo`}bWPf?i zvDm0WzSH0I*crPiCnYIFq0?hz-%**A)8{BP07{Rlo+{pmi_|$r5sv6Z z8K*n8O>gfb-Bt;64Pkee{y07V+w*XU0<_TiD|88_!ZwF97mQ2%E%OS^!#ny>MTNExE?q75 zPD`KXt3p!Q6w0nZyuY-*0}E$dR4HFr&WoE`G z(o9HtOc?fk`}`23D(x`K+zgE>w95*yHZpY5sir(ycY@^dJ|n)Hqk8k-2}O1_$f=Qn z;kGa|aDQfp%U@!_AVQc7xiu0$Su3Ssu9=3-tE#cyrl*v*)DIn1x-*W0Qd!lcxDxQxbmLSnqFAhR5URGm1d3NNE7IbuT?cRuX1braKzv}%& zQ}}60=oKYNr4V{J=eUyNFHnBJ#F$f>LLagL^ze{qRAn^04Ma{AFxy&oMYWP?Kx9Tm zJFRQX!y5Ty9Vri|>TVA=V07Klg$d0%1?Z`G+{e|k+Re0mcW#K7S$pc4-lsz`H&?Zy z6G@%#S{!G23P`@;?KN#UBkYnjM;WO8A@FOv`DM(m30{DTX#gt1+IVkQD&guw%w+8h zsJBSJSD;1oTQ%nGCi9X>9q_;N7r}|W%%nO!>BHTh++gd-70;Tsc3}R~=fzkAM>1Z2 z((K!yXIB3$;+tImfs;8Mwy6&OByqX7lyuOF(W;UQ51iLuy4IqDmv1&E_UQEOxNHJ% z6yoQNDf|S_5A%?am5P$?=sf3N9>YV=fQv)78iO8QYFZsxI|$P0T&X|hd}&C_%0w{M ze8i9akj9l*a+;=zF{|H627;ab>(tN@NN$&y59c7tnmrO1$_Y1>YDASt+$?pZy(eZb zyi);Jj%u17kMEDdVhl8fXesCQjcFjhfVE{SS(ydf;F9{A$qhsvu6XHzDehv{Z+7+3w#P3WtYfu3$P!QMXl z2hK)+$pVY`l%GiVmOtuP803TqD9z>d^Wl7!3Noogz3+24loq)Dsjbb|V>X{yh#+ji zc+vNubXO?AdUa3VA@2e$%68bd^v!iv_Eh>dR+K%T5ucp2jM)??1A}bSia4yGmmsOu zs$T+P=)z09LdQVNHjR-3pEB48e_ePhOz?Bej=I?|I&(|A22g5?^#W9n)X8hfl<+$)Jrm>a!gaXM@(DC+JT z3I`#Bc_=^FC@m!=z8>L|l;)+t#iN3j&ahhMUjqa)uZ}uv{bohI~z_6xCQ0R3skUGO_6Qi+!xWI z=yqNV$7XFRIx?3&Q70gjGq5%n$ADzNeRP{9bwBWAm2=_2V*%Ov_FJVlWWfln)nrJS zetknYE#cd5^G%bR&B4XJPtpxMKa8Jn4$aRUsyQS8<8Rw%Y)1l{wehtLK!5rW6CNu? z$wFK|HMdD3)i?>xG(sIQzd*+oA@fG<7Mk!Ia=GKFFTN*MQ)b-y` z9BTCOybc;6bdWe#f@j)laCOUD8LBj*{1jms40?x?Mts{8ls5@YJ>vS5aEyQO zBrVU0Y34FcW4$RPWFl%8v&=Ry9FonrA{gVljG6C)=-NpPhZM$#(d6%vNs46e7i>wO z3etp~6dUnzd+dcd`v$yL^hw8xxL>&hvi|V8OE2*Rw@(_*zZ-J^SDgF?J&eZK%L-;; zhI*Xj;JHh!8Va6EYFw(Dm1&n_L6sB-xm!^-*JraV_zi0MV!S15SjbPy&=E{z?P;$7 z&AnSiw=b8ww(W4ZHD|iOmRCK|)KCI&iB9Z_%F9C7Gunbnam?1RXaLc34OSQ^Kk4|I zdt-yg0&QYT=vH|@yqz(^7_2<5ZYWT(Aio=bQ?AZpr%4U(RC!dy$0A+Hi)x|ul+E6` zLn?$Ljz+=B8)($`s=;q?)-<5tb_{}TO^?WrjYu8qGw8u2gTKiW#XGIDF*OGkTH>Ub zoOzk&PWqXT+KmaKRWRbC#2+mSX9|()Z7$hZoe5*~kQk8-!NmM*b);&m_So6?l~Q@D zlQyw9j5!rb_?qim%4#0lIdrECGU6FxwUT#pigbQ>a6`pbQ8vI9dz`w>>T9;b2>dJa z_hAJ@&(R}Qwr1n5%oNhMq3Qwc2<0ibcgZK)76RSj>*hB76~k!J&LY&L_P_C4!g%+# zKEkuIIQ{?_$3EV^nd~YpuhI%D@#j~M%Fa@@n^qxlF+Dh@Jtb&$mvuGbBvy-9@a9NR zhCG&GMT$0(aTt>x!}+F-`(4Y=);q>9ro~+I+8LayCxPNtbcMhSZDl~PGAadU`!Fwf zDx!JW5Zz!{73%;FhPyH)v+7KF>o?1=jqarBtCZ*x$`JIAdhbmX+Fc`BNo`vw znSk*e8yUaTlqw&RtLrRz9Ob2KpgSuQS~%{4vYrjX?u(o(xObpL?%12e=-aD}+0*c@ zQE6lExLEX$O+JkNW(%MqfjSHR@0gMqB_3J zh<^&v$5ndyl@CQ_8{G;zV^7gZdmRi%1Y_Q4Sr6w-ArdGnS$`MKsP8qddO%%#^Xu1? zQ+sL%07dt|;nT;Ct_M*N2fWAQI~_t`II(1-Lif*aG7-U(?1TV{u7z8LJZ%SddiWO4 z#q3`P*wLQNFz%d2GcSJANecS?jN%h5kA3qsXC_`+x51JkHs6vq6*R~lIlM%)t_WYZ zZGNL%=#D*P*n2_|O*jhH8_h<@t=*XLE|O!8259%HGT?(Bx}is|IT5NqtuQ@1>TSdj zuUwLrQ-5H3ilhK$4}%JC8ohJ2kTq69uKkahtrLVtWIYLG-E8^1io4AhcaXHM_RisY zNkp)a6peb`-mWFyKF?P1o$^&wfh620hXa*IPX|}zhIO{gM2FRvxAu+%pu@ZIN_s$$%r=waD9@pny z`L$u3lM*UtA+@|aj4jx7mSGqw{%QwjIJ!byR5BIjS?4r2GdGQjq1*aBNeDq=7aqY; z=V;oTallieOz6re!#2z8~@)cCn1fByq^X+=S|lg_AT zh64_e6wKm0DjnOIxo8@$!mqsc>Z>!X5OMLh19aK#xlB5EW7K|0eL#H0dd+i0gjs`^ zOy+%rlrRy4nfx)~Ao4u4!gMNg7zCTNdgaAL)5pj~$wRE(b<)UtaeXTIgWP_(#-F(etg_9`us+uG)P*E7}kKEKjMS?{0I^M3q)?F+u?TfeTyW?-Od(Z z2#Mx4UBKHE`}K(=V{J3mFHFqKv{_Ut7?{6C z;@@R9NyU($JqA%$VGLZ9hVlFD58&;^~RUE7@ye)bGhBEL^#{Rv)#@h zUD%HMd$jb3qDRwB+B9SLbrOA4rtSsol-@k}l-m&K8A%JNK>Q{&_uJHiSQNbtvyI|R zF1x=tNU?VI)$S`m`dqq*MpBjHgA0mbcdEJp6@op1)|KR}+fforR>Z%QD@A?jzT^x- z%~$8duVIdi8#$O<)#R=XC+4eCh*vFpR7NUkQh`>yFs^MNmq~HnT<&r6lw|~dTYen- z2E2^P*QrD5C3TL)v2#uZq(RtgC}d(=(X1d**SUVNW4o^1lyRdMccbFghPd>jeI{Q2 zlvM^(uZ)$4H=s|-uKsf*$mjM(P{Gud>ave6Yv=*n2#Zx|&_vl&4v^B_kmeNpiPD%V zhOQ7tj37Y2WDiE!;DkvXLpsVe+s;-K0)?cB=xnBAGDXiz3{rr^Jb7V|p62g|bf1RmD zuqfC#1fw<8Ekg=XzKFKo%`R@~6?mlZz-?4&fLDIx1pO^mLGuOB2G)}_tNUjaX$Dyg zB?W2KzBp)Ap0aOFhNb(#>u()ANpL;vS4$l3+84$yg=J6)zM=kTuISeKnq0fZJSW^J zGbazP=$6;8sZub;qKpo^CuPuV@dzK_uAU~Y1PXM+9>nF>A%$5b%L9Z80XKgj#+sx3 zq8ZvrP4hcT&oNL@8y(PPO>fqxzqWYUn~vUtgZ(}EW0I4~sR&VPzr&G=-g(qAsT$Aa z$bM+;o`!h_9_0-Qzgkdx2rI{UYLH+2ZY$%-u#q&(4{oj#KPJAO;n$NgBKDAXh+_uz zAUKPhug=f=?SqUaZ~x--0n`x|qulX#LgL|doOoem<}v_Ixd`uvi8aX;QN>>Sq?H|m z?q0zy0k!uln3uCAaYv1p&Sz2Z_sodawkNX~^Tl&;OO<gzqUWo-7Qj==d(8N2&+uVa$TTA=*qZyveJ%x4-7#rAK_5Y`hw{***&i+QuNLp zza{X*3sV94cec{>L41#e8-B_uf`w?0_VX!OD+oXt@DyVg5#_pW9vkV$Z_(9pcqPi0 z@<<(1WN&tO-1it)U+LD0{ZSDS#(*CUPUCxO1d8p2oBMjx^q1vfNdsJVB1=&(*o7-x zFS$kG_`J(J`cj3_D%o(K&sW5ULfx#HIjcWbO$NaH{$hW9{!=$1i*IWM%?;!ZoHuzG z6Q4IZhxvB6l}(q&$^pe{@wzNVYn>Eq=1l=y8%O zR$Bn5fAF9`+lb-}6f73-O1!}PN&QZEpOP#1*G3gK*8T7x(EIu8oZ0rQh(|MbpKcq% za$88+_x3{ES)q>T-Zxluf|_CfB(j#`zH)_pG<lPxH5~7qNZL@Z!SsE#5wr|KIj0p)?K>TGc_;kLJ>gTms_U^L!`N( zY$-{^tooLvuQ6Q0>tlFS8C^y@(fKUtc*>w-l3(DBGiPt2Y2UxMP!H;RjpznRfBFa?!KjzPqg9L9Sl~rtRrqH{;~)8wx%< zEp$s^2e0;dAjbj1_XltboQ8UN#O7N7|C^73I_y7R-j~s?VlN1b76DtEmB9T$(kxA) zAn23bO^DD&YO~5o3Um#!SlwxZ*cW>LXr)6TXDk-oGVzkHJoziXD)*OFi69nDH|5Fk zM(KP6KgMu;BV?BJ0D8_2jjneV))=JNW2KVwc<(foBnc09EVF%13ythw9P&PZvtBTl z4~144Q-zmW>_z7dFu=S?R8XAYf^~`A;*Y7@DhTZX*Upa3u1p2CSK4@QP z92Sjd(EhV^i~OnaN$1Cano|^`PzF>YT|{nSg4O#`h)@K3!BSK3G%O6>fT!UU(!gAl zLc6pJU!QV#F|u{z-f{y6r-M6iy;vEgEFt2EE}43ftM~FiQRg!5Nt;UAQbCZ?NPO`Y zG23bE+gY5IVcMtVGj*1AIS5x^G?bmM=O2cUP-(jZWbup;mHR!n!7SdP{9-^)s=!;j{^g8sSuR_t3G z6B324AcBI?$3CPJkMN8#l^oA=Vy&>#gJzQpb0l6M7=idgOyNQT$QnavS)$Inbi|3| zld|=RS??`MX$@q+9Op)gr8mT<_dJ|wA#u^Y9GcHC=Tu?%uE^VNyTRjpXR_9xUL6net zBczWfAS0JpMFsl+4>A<(1R(kBb$hm(63%{HQL|A&XkJN{rdmX=G?ha}=%f4u2r^c0 zn>A?r*FX79c>dbN#5xa)x%qNPHDAzuDphA0?3CXMXGRfB)Llvz{VJK#>vX&?=iX63 z9GmlZ*1i6-G8GSv2P=^v%PLfYOB3MXJIn!y~cTNC|m1&Vu`()HW;&AEwa>V z38iltvl7?6uEq(D3tMm z^cBL6Ft_!90oL86b#EkkFpew!`qY7+>pq3C!Jz4&D%`kYgdhf+A(SCC{h>2s|CDRs zqbl0-AOZjWJnj8j^_85b6eCuaHK3*=WKL?yP%)rVmWWzrMl(1=@$^bApi*qCH^_DB z#Gul9b0o?Hgr9ST1qD$>nDjN^+~KX?KBS;^0>0IdVSnEM`TBvbuvXk}!EXs&UKPy< zQk4x>1P(*#PRtOn``VB8rYZTA!vVmF9HMJOB6~U$icthB2U^8ovr9u>!(+OJ(}Bfd z+CkX92D*jQfP-UtJ;J58VVbGt%i8>a9s-#vwC@(V2!01oHp&?xz=UX$UgJ}WlkgWo z|6Sl1Hf!bhd@W2UKjPx_TpKSH03)Ctu{sBOeri;L_FMTolau!@VPia%TmiN|Xc({S8cwC}5K0BjUyDVKq$>SrgpL_tQ&3 zAHNy=)!1_x8GP#LVb7QMjZ&}@JX8m?@YVqq*jEn=L(?J?zRE|G#u7H@wKq??IFn%` z8-JG*?8VLH3fo7Mab(Y&IR>7YeyYxm3Jc<;DtrTfy*PFCXE{KJ1w%Rc5^1YjKFoKeIM0{mnTYd=2ex&l_2_>9l?2pOKeAY49&bwf-lrH6p;WVIQ90g_FTN zAKb9juIp8!d~)^;osizZRZ@*|8X zWO6LwK|5WD((HUlgGRo9B5+HH^ks;uVDdsKe$YZHI%wOM!vy%EIp@e*9XH_!+_eB) z5UOk__IYh_B-6cq)jfb1TqNpP9#k2uf; zq?f$H6&M!Bm9QDugZ_Z1-xTdKQ2+82st!nmeF~VC55d$N3IV>9nOU+)c?Es4?%Eek z`=_-U%+EUL=&)x=G0kCHhVOL>gc(7DheH^C<2tKqz{cRkx#klG7-5%UZVpI! z-fKv>^(pRGDgc_FHV)W%_BsSCNm}aub`h8JBwaXBFdQ8N$w6wxa5nR~fEUjTayqTG zT6aMTFA3%ttZ>+UR2e5T;n)Qzda!aGI%A+K2#m9^5o==tJInc;1Q;YdDacba6(;kO zi?K>-Bj_uvb{oTaW@`y6H1}3!t0mD@YCM&F!IxBSIlxg&KiFhY^C1zX$D`7KMCdgc z&V!*&C*76MALhX zWY+MnQRUCy5Db)bPa33MU>~prY4t=YB|7SsI%>+Jba3AWrkEo=nZ zR;cg&>A`DC5 zEwXFu$~=4n$-9A>o;4Y^ToVJFvG+lyxXk(2VSI2q;sk`5t$FTOPr+{doK3tuLr!Ke z@X?3kbAtAB;a;Y$?B$Pas65b5v0TNhe^%HNljfZ7R1Z$xhj7K962t$J~6o$5DdK2Uz|2b|1_;>btZVTQq1-)>XEW!tQ&0iHRo2 zUYmT$i6+bLGkh5h$I|Xod>P`7@Ln}~lWvZb{8Op!O`Umg#C+U1lFJ$sfDkoKKo5z@ z?BVLr*^^@S5a)wv;BQ?Ff0mx&QAc+?7U0)mIpR$ImjOsiyO)hU@?^I^e0e)}Vath` z8FeP5V!oB|$5F^)=|mD!CA}-jC`^Ch$;_S*IwV?6@^X25O)RSz-Bp`8tbT?BBgL}PR4)3x&$k%_$q4^5n^ye!5xwIQWZwns-sB+RjN-$FTMD_eZ znvm*<>CFf4D)47W`AN?%WD)u-xUpoczxwX zLm!`9sL}n6?3vwv#UWd}$oskTWXNfTPFPnx?7rN#X%ZO#2}*b~;8nu3adk}OzUetY zh^js3vc=eLHpJ>{aW`&EorQo`n{1H7jlkzEHr)c31E&Ou#yV!6)<6$)TQqj_b$HZP zXuD(9Mm&hvHuYss%AkWPOQ!}7)drDGOTD2?y4IOP7RN=xNWX1}vjhKHr_7_bFPzlb zxaqp>Or17hmtttx8}j1YpSq=#zrSXF*M%KsSa#{4-8bJz^#eie0wTFxr^&2^BN_88ZB->C3rZs1o*`K++P zUEkpb!s*k70E@${@XdLnC@>6KvsE4t?|$2#^5zv9ia{l=YS$RJK?3E&aR>)~XHG!9 zVcu^)D_mEvTaf2a?7(;E5&p{nc7-hN#`S6JWaizh;|i3|^GBVQ4oTmBU?mzzrM!O_ z%;hS;NcTr`s}2vex5mFu0Q{58Jv7j>=*x%Zhdj)G7HVwVQdFy+v`G0v!))o>C=^qQ zQe`i=Ib{#uwR!{hRrsvUhP{nsPH4=f~uc6>t=i(VF4m3=AF1K56lVadeOmlwMt)y#K`iE?oe! zob2C4pg{3_naYb2!_j&TX{g<2&U&6QZ?xjdbIpcaT7 zt&$XXhzEIzJguc{;ZkQi&e!h(kluwqPDCmn=WK-Z9Uu)0(Qf3+3Dr*|>KK-lVDjTU zO8@x1mBLMFU@;Z{m5^R<=RL9mAX{DFwOE z7DAZ7sTRzONTs(BHboSX8Sg?G<2Pj=Qia}~x?9INQSC9ACWVJN5oBj2*S|XTs)+IB zp+n!2v*&~f^_~tTnx&yb<2&IrT0Y&8l(WQ2r=ye#;euTo^WSgjn|sN5S~-9ZEkuHa)v+Cf|LNoLts z4PF)`vQt$3M>!mV$c7`{q$Tf2Pb>v+EEkb1H*L$&pQJ?Gb%oVkNgwd0)hCks z%6Rr}lUffLLPYG;z1!y}MuwH>fTY3+x$F^F%ASQKbtM%rb>S!)Br~6B8c>R!wKNt$ww{_U+%oEdZ_*sOQdVW4|9nnhu>ER8Z9B@qX-e5eIxTr^j5TbKYQH z0H{-G;OBgV1QXeR- zubem8b-L8r(5v+q7%(~K+lz0LyHx-W}{*C1hy8F zX}s|mqUt(8`U>ulP?TadG$Os^xFH6QQ%pVFkMmV7iHT#y!U1Nxn=Vh*NNY0lDhfrD zY8j%lQQ3^c4?7ZEkn{t&T9o8{i*Q(pQ@;e(W{eyc8=TVE?RSx-G#0pVfEk-wVrKmc zqtrS=Qt}U`mD=AoKcy=_?E~2B5ofYgY?Fq*I2#!N$TD9R=8>!v`zvx>{S}4E<)(_( z23z6TaA{J zw!=rsJvs6hxZV0|aN4v!td&nw^J9%uSK|{+Q=C6bDt*ke;@xI#iO+M_EUSFXO$x3v zHW0o6KJz0`q0|imnc+r?_Cv~JcK7OePn0W1T{nz7Uk{I0i{G;tTS5N%zdk`nt$yA) z%o-X9_PsW)?eukj%&wOAeg3&0&2m!(-oM_n^z^>ZmQ3n7jY&|a{n2ZlP(PQiEt;Uw z^qf_{XHEOoK{}?cGK-Pcamu;c@-KZN$kYMMdX0s)&*r>$9}13=VC@TfTt6hfvpeRY zJa@R{rEZo5zDKt!=Dar_3Lak>!S(ZYWiCVG|v? zRA}bIRy{5XT7wO$+nUducs%95$SNfYI@D2LpJZlIZ_qp3QovC&^ni7>o)EhR`r39e z(GGV7yy#Il$4AFm5&Sv2y=+E+p#us0IpkmDr{zopbq(u8#QPi;x;>6z?*cjWxeUU9 zMSuzC(&92>$Jh@D5O8iekF#PSb%0G^_|(=^1Ip{Qpi`#s7EG2(IgTP&U@rRwAwj=iC8!AEqN~ zqvk*Ii8I~BDGnq5;OPdR-}*;=fx%Xp1;|7hVv)I$C}b&=*i3gst)H3V_BOoR*GuSK z+)k(`(p^ZX^T|>A+1MIAURrP{43O7Bj=wr;dz2|QJIo9mIWAwJub^F|Quth?M(JFf z2pg)z7EyVi*22g`Qh9I4C%1t?R3mo9@+x7Y6gmXj{!UR%l47%35j4@vklJzEp&|rO zJCQB#3*-AZpS5PxU-hW9n*`qH+y)*eaHtu zYz0z*6E1Ep{M>BIx;g9-%N+1ZxO3l`hSz{zl*rv+;9{aC{J>nZ^Vk5I^F8Zz4x6_u z(Mo^&kQ!dKRz~qK9PDF1mAmqlT(pZVJJnxzC0$K0=s<#WohYR8{lULZf;+v&`mfmdhXrH(S?asUWRGkdmvtF5GsO-8j zZN>jNt9#0)`$}bMHn050o^;R* z+gAOxJ3c@9)LZXpKDuTen9a4{Dc^^lLvUL*!e|O#SxR0m;P=}3c`=v=ydND1ZRhrN z3)ng3t!#vy>;S;)$IYrx@9W-p`NU!z;LW;V_I4+A(L1|vH3*c|Ipi7i_4fFG&2kZ) zRcy&(Lx@IQ3f?v?zr9^tY^cp{ew}nYvDm}%z~D#nlT!~d6qny43qYVnhW!wIRLXS9 zu@-Ri0by$ChSf+CfT*G&l%-Y^P!k@L*q9}78Isu+co*#a<9gjHDOIZ^>6S>BY{XHk z6o{ND+6&%5(S3^-65<0^_e;v*Pi?-zo@WyPc?y%co)_3Lf=jFP6Lz^C9(`c zxoM5_iVa+XrV|NPN7d7} zaYZUl5rp;+ptOH|ytmbhc?1!^jDQa`%f4i`8eA&OKgS;>!{S-8P2p zY7L8Bbgcc)h(7Iw9x*gwB!fIe;T1DQ5i}d?!;pEM5ItT$pJ(9rN z|8A#V`*0$&XjD8kdo4POTPwFq|BJ7;4vTYV{)dqQ#i7{ZP^7pNE$;5_w#A*|wzx}i z3dMcV#a)UOcXw@ZD_-DT&N%r*JdM=WM=Z2Nv>NGJTW&gJLln^w zb#1!d5T#4_3D8W*mujR<0}5z9oViX3s)k7xi;5^*8LGzQ=bF6I;~dk|VE#Ox&z?iq zfzlDX58ZBQ2IO>}HV+cb1T+^|W{g~MRF%w>Ss1{BDN`nz2~<>jI7!b|nSOCBFC4lb z9aL>1Z137!e+NBhhEKoX%C`JtmMD0?s z%_^19bE2V36JvU4PhPG7#{R4PJxy@<dmxS8@3xE;U{RVFP`IIlkQ=KlA>);Z`+tV@c&P#*!sYJWKQ~qj)%ln}zhdMa%~MU>Fi*9uZ>)&dWhTh%YOuB2 zPJhbqx_{blwkSV+`o2Ii!oj(~<>6Mn->H>NR!w6G;;MyQHXMifYcjQX>5yAk5ID3g zH|V?TqgrgV)b1W<)nsWmM%)!(Co)m`TgMbm3E=K9lr#vWW|@vUwniJyr&N>}p19z4 z1uyNl7jN|Z7@@Iz<~y!U%(L%E5shlR)=EukY`StZB(@z$!3^C^o7X>CX;GNhH>`ZB zkw2;g(OgZiR5ocbtGiow5bCb>c-xk{ARSef43Sne8OdLaoB-|aNNX{hQl2pO)yb@( z@oR277+pthfvex#1K_&sK{(r2{s z$>XSSSaF8d1hzyKM72On<;(A%;vD>5nITSj1RrpjSd|%I0urN70`e+Bh?@bFE%_LU z?UsP-$A__FMNhVRO;4P#WR4j^J(sUzXw+xF&?+n7a`3GBrcUC|ESz2IoQ)-WUBk2z z*3l>$xW|#Hd%uKfrSPnZ2%=3uHG?1CWFj+FV^Ru6_v}$opJE2s*z6gzQG0xoO!N`B z>Qoe{^Tr{0Gel}5`gIkQhyTW{|BhB44l;SE(dR{&*wKwnbws{V@#AOva&24G^;k5s zcwh3B-UybcTMqFL@kmmAoI@$og-mI7eoJ+XWdQmr zT0;@%Ex=jr;%*#26s1bPD^&9o%lfmszN9idq%7c{8nxdie3=r8bFYgoxtY!e+) z85bYI8uy@6g-KSx)(lUi&p+IC8&LH#iiJOsOX5M}*!AG(zM1BZA?Hz#2U*`reJopQ92# zq_np$2+NJc5G!A)099<()K&B+?iR~5U$0j~ryS)GDE3{g$>*|D=Q^7%ro=o3lX;bH7*-K32Bw!jF5V~qD!t46NH&45+o=;Ehh ztL3Cj25I~Vmp)~j19ijO+n1;7uIC5gc;Vgf_?7#E%}dO}0M|g3r_`^NPX??)#AP-9 z+Xo;~H_l%V>v^WQ9y#1Q69CNtxp%;}$9hfBfR2Z7>z;ANn=wWa~!j#%sgnp(Rep+E5! zF@2c1*v?S}tUN(E6vUuANJaV0bCz8&R+@ z^Ml-T-;Ls814w44$@I#Kz62g9U|1Wv6QDH-jRA+P$tE$pWq6b`E-R^|O`HBw#%_e8 z1Mj;5%2_T#Yy-h1-$9r$7a>E&O_Ov7?~+F-*963dX}VC`%4sTJgi|@mB=+(Fb!wp>lv?PN>;`x9)L9tJ8#k_2 z>C@aqWIdLUl3f@6a34F$FWZxZpV*sJfKBcC-zw+-rAY#vmEute#6aKlQvsCkKt<={ z8r~@|&<5Ph_?VM~+Y<|6=GF31rXZQ^X{=~NzyX#TEh+FQnJ1r7Gb>3|N+ZfI($0o? z(K5JemXxb{EreSzGM{$&?7(uJI^TKQqoHL~g-doVx9MCIi+Z1= z?L~0oKt9cj;UmcKAZf&K6!&BC5D9l+o)?tM*0>K#vt~=GGTpH)`utCqj<)c?!#izq z0lkbvI#Ym68lTMUXOB?p2Kay<^?cm{KmNoa-OYS4CkZpSD#-WUWxgxzhr%r!OU1Ia zRQ#tV0~5Up8XNp09Xuc^+w>ZE7{vYyTyB09wkYtom0-(e^{gM6 zij;+sYDrQFv{4KmndnM|k@>@G76rK0`Lj+IUB21_rjzx7ikj@fKZ?QWqNa6K(Bac` zTC;O{uekULq?^kv_?1?!BIbWKF`%J&Om`@yI{b+)hJLSoX;m_VPL9}-`w2>=3`Nr5 z+}%Gi*?)m|D=77DTcQ?SqXXw7hC+le=wiyeiIZI!_f}O4Bj0K7u>NDXV;Hls`Slmi z%^N)`D@ms9p?TaT4p&5)g>;IfAlzb2JWP}ss_zS|6DiIBmnL%rXu(wHO1mf?y<9y~ zsI_K)@Q-@%cH5XOb!`6O9|w2>*@C{5|Cp%5)GRF3YlEr`j~<+X2vwOPRAt_y3-(s; ztruIAa=E1vIESNp{k^MWc4|7%W6Eq=S181w#71QCk8b%OY7%npX%&U2#J{AH?DSwP z#Ly^GGGU`ms3);n?%o$_j$=^M=to1z1S=thDr%Nt5`UK=lAMFyD znUYBNlTV1uM3Q)AiT2VQR{XgL8bzb~f>5HZFJJ$KzJ)MYMiY;tltU}ULCDT1FG`~b z6oZ+$RQg^sB`deEZ5LjyRi5{!@v8&1vkhiYn;XH&WhPw2{Sr7uo(cCL9f}X<3H!fttp6(l6k0ztFovu*I4iq zU$Y|;POepxS*Sd(uq~Y9@t?jO<`D;yThUQ~VEmjl6@dEO4b+vVd*dKLVPH*^>>7Xm z_VOPUDMO74Y?FO7r6L4|7UK>i-#}}Dz`F=EYjT80G;5HL&;RO@7@*E|y$Wq*x^rR2 z-%Ec;VZ?$ID*rGKo!z*#Ly|%c`FYZ4*3@HpZA74?eVq^2<6O z2u1rqnxfL@XrljzLv(2ItnDk4yilZSJBgSofaZ2av=BZ=gV(?6a(_x-2LB~JfV%yE zrW@Sitpxw-{V za=hYPLXAQ@;ZtMdQWww1BQU~-ArgSgog&e057HFLuzIz1MX0Td zN&e5m8*6eMI5i#lqgtnCk4B**1$I^eFhZUBA%!BRW~^f-LS~@ai(&m5@sMTR982+*Y#HF@rpo@;l38fGHa5};sQs5<@)duN zw!*=u0xn2U+Gly>R%smYUF?s#(i!$7)$Sl@LuH_77O`G6%6NsBU_NPg?cCwZ^t z@=?C@?cUb^>|kGO%~Bj>s*YP8+H_%}-hQU?R}kY(H0`=aGxUs?5?2u(t9tF1ez-`t$wO z8RC)Q4!BG~_R6tELd>) zO*SAwYBap_jMw2=RH73)gU#eEm{&s&J|_;1;@dzl>|(J}{>Q5otMo^ou#=7zL^FWe zb!J~9d~LXyZg24oXP0ogEe)Pbvi zipAt@klgv7!+;(V?E_E`rKgLDg|4R*QYv!`^;0VQH{dDPs7QAIoeL^MeiQl84M64j z2362l1xQsQQfLG^0oReKObhn9{r$(OG}^y0EGYMGUsMXHn$qkyv=bFg{>=#OUmcH! z?!agdx;$tm19|=D(kqMGa&AAcKf;DWxL&oc*C}**R#d8&w=5QFGS$0K40@=F>CG*# zoV6k|gdQ>n{wJb&G?$9Q35u@*yQwVVR@<&ZJ)j;LE`$4@@|@SfeD%QlQ*)-U$?^Q) zUO2iOD~0=j%M>Y1==S5}{DRcD2d0Jp+W%Sae&+XsZop-)N_ePEIUV%BL4a;!K|#OZ zC#JaO1Jt&DHJO4c2Xp>ebPmj#!s7lL^f`jq9B~IU5Rl|ruPF0=Vp9EUSAT`<03%2P zU&+JxtY)79KQRkRMTO8pA^B?D=rn6Z(D64MSgGln-%*CL=?Gn{KKaFj= zi$Lduom>^{g`K7|=t_TSrMn2~Mz+*6cgEt3A~410R>ru^`@$(T&Zb9=`@*L*-pDHGd{!wZs;okFk9gz+9 zZ4L?Ov4>0lEXN*C0F3>;XC#;M}~x3Vk6!N^{OY#)aeL{O8dl z7CRdk`~Tg=;^s`dSVv_5>5o-$enMXZDXYq}yiftW;Fz*>b!nIZO}oyGfs z%N-sEWb0ZO_WDRyJ_t7^>8qDZ^V!%u(ZwDENfe{}CPg)mgE6;E$)UR*m-}D4?heo{ zTqTsHo3Kjb+uUfztI0hV8!Lj`Y8npC)WeQ>qtJeWb!5NJu~b5j<&iE-z8-0n;aEzD zPc2%}{-kG1%YT?BtiU&51$N?Enu^aRtljxtnHw7?^w!?jwZ}?4E}{Ghr3g6dpl6*n zl_!`2#F8rTR$&kyR0)vdAy*MDg*>6e2Gi}x3%c3J`8rwr9PTMWJftP-9Z;FmNsJxY z`-=9PQ5nvSqM7YE`M~)RHd3f_(0rQFasbVSJbbexeN|SyHa?EqBJYJ?_tg7Zh zIImqc+R~e+cAca*4JkY*`AVOgYC$tnPe5AvT`oFKt5rlnn(@s}KW)Gw7I-cpFVg?e zs)4TOp{!s|E71=cCl>#7V3p$P|GOkkizXVHGj_b7ObV(reb_53Xh_Y3=2T`T+NAj> zDk(nAPGzL$%=U>ZQq723YMmBok}8^iaUAmJIkM{Th&ZsydiQW>m4)OlDospZP#wp8 zS-!JNRf4th+tI?lZF0>v}{QypSP^!v4@*5UF-BwlknfIm9v*W3pxIG zdv_y_&-WwM!Y{WaT~FsZgJ*I{gQeFybisBEO-9 zyIyV{g`e+c;=8Kq<3pgSH4mRU1b7(%U-_^@mz>FGfQ_p~mLf;0#z*m5rb)PZ78RAA zlgg<}Y!t^>De{^jKX!q|U5H2z?F<}3<|rzzT`iM}3Z=E>O_3k<-}z$C+fwO9O#9vqD7xKe#%z{meAch@KjyeE{nL_}g4IG*UvaK2toLV%u z4fEH1f)bsLAp-4t0Kt$(lb9YIeYOFU3TFI>?lt=@hd}6CIkxWgMME!;A`mjb7IolF zOhW{_7H&*~6|xl_rAY-6OI<8Upweby-e6)t)U$ik$O8HaeLI);?=sX7j{BHlb$(LjV6mDt5ToXH}upaT9B3q~I z>*?qxR9m+e!4QZEQ!oVdPxus<+HT{kkrxUFEHgCC$eG2;CG6$^b8` z3LAbAkw}kDvJFgVTT8!HV4GK4o*}eHpSsK&SfJ`h_SSq8COLut=vW$X<01f6IWcih zThR zRZS-6ZGuYuWf#}bpN`!rdGo81VKRW%k*Z$)-)3PmRq-WS-Bryt>0~JlL0PXvVK4~5 zEdw?vv(s3)PPannEl|+kTG*09Ys!hsXk*Bsk zd2|r3o;auWaGkv!()D5)14ydVjjro zvz|FfUbnd34oBwQCk~4#xSbaePIjTvE&er>;f?mq&lCVSwbHG~PeILRC)Yd{Eg+F= znw)Q5#;=A{BM|HmBE^GLRBdyQThrQbBA>T|yFyg*XxxK|1P1%z>9BE~Od{edh^)al zY2#GtfL2li5Kd=th@F4=UuO|b1nF~J{~X98to$hW1wx2uTPBF|8^s2C>L9=sLGpVl zIa+Iwt|LHT-Q!kKIn=TzE2UBZ5Q1P^aFG1QG=cu4hr(`DU+M@G(Ny%LAQmaOCbx0w zchC72&})fd{*ZXLoQlWq_^1;QXH9KMctA}q#nhF!h>jES%82-;^Rk{7 zg8=Gj#c`{809!`o@d+gb6P?MQXDlpyTsky(Q&F${cxa`~jM^C}^}6Jxa;#-f<+q9p zL;&g`h9T}7)*hN|PYsg5o<0)Uy>49<7l5wlSNv7-xO|FL7Jc;`J*0eoU^s#{1xU#P zD6Kx3o|OBYtu^QkTa6XnPZ;=U8Br?bpo#^N5T8Vkwy7cyidL?L*3W;vD+tVlkgL#O zwE}R1(J2N^kO0j(*5bz>R#1E7&qQ2ptK49vMe_w+8K@AGDJBr##szU^lHpw#)C?t# ze+h|rM;#2a^;GLK?rcpOaT-HoC<%(-ppmJD4eF#wr8NBTmVoAM84NT5ejnW~YK$e6 zz(W2eR?TDI$QvnN|4Sw6Z&Wz4fLvA?W3;{&Dp6jE)(S|pEEZ-0i>(T4BC&SYCpb1q3i;*fducTz22=7f=Rz} zyvYj@d;2%|5j_;^9!WGz?Clf1G*-|M#lWVtxK(Y(1+QCHU*rCPSeVee&uTF2_Q9T0 zBEP9cpI|78?XeW$`s&e7FJa7<9jY%`I^d@~_PG^SHpwtw3)x|yg$@@ww=rSX#0E2v zQyp{`43?=y23(NS#aEtvf960T$)^3o?bA)V412_&0;^6!sP2#=V0u)sF5p6zUVY9!NvtKvIcC@c~X491Top7G;6*!{h7T~GM=ji$jJz++ZgtAp6tS1Aps(=~0dQ^dqwpm-<6KKjXT75rrQNRIER+6b2-Pm{5U6 z&p@M3E^h>(vg;8z;qH=~HE25F3IOrfXwSzP5R^eMK?SdM2#^loMVgzBp(~+RC~CKD zCTO92#F`Q$bgWl%nxJU?u;ZtR;_?QXF;TAel?n!`F%oDm22HlNW&eT~3I}*tXy-v? zzsDn*)ahj?ByK+oWP#+g#ZX2ViSrE>ilem<-$Ln1brz|t= zpY}40CmMseHzvljTt00sSqv&(EEi0xTDS>w-5ocp&BTRX_9M9ur)LbU8Fe5KFaIYy%T zD>GIZU5LMGmilkVi|&=aeViQbdm9fUHCw(D^w%68I# z(Yr`Qu&-B16gC3!u_R0It%23wdAXK5RK16H7`x@@YB<$=U+*=y6@jwc(1i4U=Exs~LYR2S zi^O{ATpea<5gN!YrlU^f5c#?rlzlqKS$F-iQflNTm3e0AKs;7fm2XV#OeMG+bb8?> zFn#IS*AKcruY2n;UeLxB-?q>0D||P0hTg1C=5MsAbbk*DuFLoXB}{ZN5ZrhvxU~!3 z_{-UCc!Bjx{^X`VshNnji)T|V{W8euL4eH5OJIBd?wP#Yk{DdvPaj!sWcG_k$WhX_ zi{s?R=6%Rs|4?tvAQfx8G&NOAn|TyT;av+@5!8!B^pnQMJqo(9&CqS#Xx@}r#xB; zgsG?aFw1BnkvL#<)K7$Ke4MH8q-zE19r#fPf18aNvzQMZT=H`J#XKmJ^jz1Ej`Zf<9HLf4! zRiy^^%N(x)DUsR)3cvXnaW#1U^6ztM{A}yxmfp|TzWC>`y@<^4(V-eMQ5&LL{Okfdb18Nc9CIOd z6SKa^Rr^%Nb!%^TXA~Us4YqV)|GQhaA4_JZ&iB#%?Ax^j(Pn*nEcm@|2QwwR;JZ4b z9_@HsB=r7Ju)J;jEopEbv`Evkh>$1mqRaR`&GNuO?L_E#kYQQ;Ymz~0a4yX!Z|ph{ zH9_I~&$2A4qJ4=5+4(Ml{XIj?z3p?Y5_U<;M_3V>iP4%^U}_Hq3N_id&uz3Qari2yPCNFS$l7U+H-UQxY*k-1Y(vYWTK;h}!Fyy|hYPYjeK}e8k%Wr?0ej6=w-ZJ}k8uzzz>QlQEiL;L3$NfQv zElxb^n%WS1dE~w;S`x#}*8HeEQjzHOAm?eE;XJ&1Kj=)I*2oQ8eUjBZ@P;vM{J7wA zhQ)&_x1zb;>a_smL(-9#oicX;ZN@+tl5lMP2T4}CxF_}&aQ5K69qG7hHmH&x^Cl7{ zSw2Ytbxf|hX^aDhu63WUk`&kIs$D@v5t=S7-T#E}C&Mc+ zi?CTRqe&L`vwT+g;1CZvD&1)6y}|GOOY4WcZM|g+#dISh6X2Vu2J>|Rl^SLs8Cla8 z;5J<7%Et-$WZ+1;7OGq=D0F%mZDthpcr;+bnv6`S#LM&U`-i&ld*6o?=k;yHXaug6 zj~}#*SXpb>;po-BDRb;9ny-IO5J>S#lho4KZ-|{O9knICS50W;2HvRv?ZnY{wInUv zoUhVo-Izx*2zaJTGH9v3iqCNp21OSg&4IcvEo zFGIeUXD{VQY+UeZLP6kq8|A47``~KHvmxoj*!ESj~744pWX9dm2{M2LcY00~tS{4R&)@h=c zS}S?B!$h#pvKoVcwV@s!pf*B-Q{EJN%&0WFFyeupMUB(wTS|p`+4&yLPjJofJF&5v z!*^ykAbfk|rHry&H)PGJ_r#M#lkdYNd-Y6~loY zE>&xiy8>{zo61y)*JL-k(9mKX+==KsBju-QSUp;AYP?gHqFBzAm4U}`Ri?{Tmz}}I z0m=j}IYNdV%z`3$I3gwC5a}cGWczsEuybaHjZG>zLcVR`p^YIj_AsUAr_=V(<^oK4 z(8tU^7KyRdJ7wtiOp4XWS{3IZ2zsG2OT<$G^kj;N^w{dZGV-B@;YZ=1gyAz-q>b6@ zV;@BUg7V5tFp#L|Z0bmh^U4&B(scycK`=V#W3*uHh|XfW?jWL!)F7t{nR;#>bmpq6 zU`5?XT1Ex&XbKbFF#NfWsYx?V!7(&8`^F4wD|X3hV$*%k>;1906HE{CGxF4&=S!!T zksauVp3mMuoIgY+i`35z1`kP(Gn*5q6Tw~0U1-lJAd*MN)7xiIXY14R)8K792>97A zIH!8OGi$PDJrTJc*19|xt%uwB1gLn1qc<0$*_+&AI$3%X>;n%BS-wSO`#(2 zi`zuRdBi-JJn9!W9n0afsB`2g`D3`dc^0cpe1)TvNN>KJbvif78Jht1x~bE<_TX9W zM0!j&)OKew@8(lm@;63Pb8MH31(#Yr{f8?9`8qOQ{3KEIYGD|;YGqfT<|8*_AF?K~ zlCSPMG$__9Dhq{UN1K)B<2+;%Gjl?3+w;mRqp+tPkc6vB`8*NUPa-6f zxJOj9x3ZLRPi}n61>^apT)DbwJ)3q&6qiXF%jm`QNYlmjNa4ce_%H?Bk$K4WR^C`Q zL8xWQ^|_I!F;)zN>U+IGiqQV5kr|4-R@Vm7}XkiS4PjsbB7{k zT6;pW5Vby84F1* z%tGtMxqDi2(UMSprF^7T`>r+o72Zj!?C7sZb##VJy%{f zdO#OWCKa~&xv9O7dvbT-$?LG6`Lj_mu9S|bUXTv-9mTzw?qmJ&o7?Ny92jZtjb;Yr z4;{aP9J4H9kbGT7knG*>T@UkiJh6R@BRE{X;cb`cT7>$uEV2H9Oz<&Eyl3^12ygZv z?vhz5QA;2ca9^_C>|7d0fv_v+nu6%+#8znC9p2w;uiO7c8E&*&2}xn4)OFK}LN{fu zQ)6-jCFs&?g()~g1PVJw+YHZ|{1ZG}ZA{1_BIHnk({_H=L6pP7nM-yrWZ4BzfL4R zZNz?l?LGY$;d0}9T2<8%XIR8GFS8O|HqNLgMkWpu-S~{zPEiTXr(en#k0-`dBJjhY zWXb^wMe)ArIkvs{qH?~yc-eBk6Ov3DfAlB!j*Y)~#}JNR^j>zOUc(rVF5eP+{q>4h zYqI7KDtaCCc1A{buKkY)B0xTR&BKo{1CRkR5oHesShRu@O#DjIHXcp?wlru)Xb=*N1#`*K5LDv&2nt<9e&A26WeDBu2 zV}y0(;qGs7WhSPi9l6dY9-?L7+~Hy6)3yMR{o1>X%r5TP@m)y`yOFq`Ul$8n+9{F8U)w zf5mxp+N#T=Wpvv0g%BmR_Htx<;r6?B-zz4*)gJ>67u%O??xoFFMAfG`%ffTsL3b;U z#+6c5zxqkfy{49|EO-9W*@jI5KsN1!_ zdh|A3hAu(neV&9HPB0PcR_m#GaGG1+NMVxfha{zayP+8R5-NfAhXWFO%M6R!q0dP} zwCdYG(xXVWwu}IA%Em&SZ7;pF2^Fc-9<(-;1!7X6F({fWG3CdKnU-$_!VdAZ9od?x zSia$XEdQ)k=5B7Mi3xIso#Jk$)DK%DoRM=+Ic8YW1RD|R+eCMWp{wYHx<{3mOvR^-IvoYX(QUD~wRS((PyUbwo7 zCzPX_mf`#u+v~N52Ek9%FsRX@F zzw3>e*tzgllf1ufHXY-E%wh9Yk+G;WWhZPuX4y z>=*;FIkYcha|zuDa$R%0mvm0M*=%UFJ7qY7x7oRddj`X6-O1N<=CGrY zHPcljWdjbr<`9;~gfB*qw<(`dpMic3QZp#z`wo@8qo-5PjTu~s9zWW>y8l2OHeOF3 zsrK;zIVn44aDGVpl)ptko$g+0{-x24n~r+sJBhFI253uf9y_v3HJyki2^J@l4I-<= z>ifWbKe~?`L!FLElk^5BgDp=sLE8_N12m#}R{Fb8dQ}_$3$-tnI~LD4`@*LG21z%EjDl-~B(#F2 z(>q8o&lAmcJx+RlV`HPJA8ht`-aO~D)=_f8p%-Dl97lS)Um}l&2i~)>kze+{c_COI z`g*OL<4dbt8Yr8%!E*{+DlIz)DR_>7&-3V&s8(z#oL{w&;8hmDcVgz-he zWO&8} z@Ek1;|MsWT6aBo4x=^Rb_>D7Rzmq-!K^iBC8{sU*nO|vvTgZ5@Txqz=XaR58xIcd6 z{KUnR_I(+R`2SK}%V^2)A33?xthdl8KpY=Ac??ll)vdkFDPH3!tlAX%>=Yan?9f~_ zM@QG!Tuur$3N;i~SqBTp*Cf|}NeK#l0ZFM(TpVJ&A352?q}X^rN^weXaj;8BaC38s ze&YSeBPm4j|4V}X4-K>{1#<^WS1Sr0&a^E!BnA-8ie(Lztx>vjN8A?i&U0d z)fL0Anrp~>EUvnK++dw3-O!$vc@kiDYf?&+E1DkMQ!6uo{`_|$;T)H_#K_;nK&9}7e7Uhn1({e2FCRakjrC8+1v-V zZFGRg6_6SHg&%ytUoly=&1BqwHv8j3P=9RAkWNJ~4n9wBs!N%`r;$bHXnoU6$lgGl z?kWa<%n7Ia?6%UP`EfFY3g5P7WswvZ&U_l!F<>T0UfYa$6F;B_slw0`fI*7wZ;k42 zzA^Hx&?&4(I}3 zY}gC95PMP!5Mw3sv0_?>-eO!@v<31rNy%u(cCh1@v%Dvn)72GRSmchzK1T;$#q`^B zAveX0@ig{t+cyL4A|Wd71hldJe2bqi$X0n8$8>)C!(hgqa5VO8Q+e7Qw?kz1kOjEh zCl>jlCrs**HHj`B-q#U)C5#3sE$H|nSH~D~<41Oe@eCLd>6^2MPtj^rR(-_x>LSkL zSYG_)Z#X2;{u6J&?l`L!;+fDG9~ax9&gH(b_%WLMX1o~^G152(fp|y}`?!Ja>>?$J zeJoQUp9bvGNTIPfh~fagZau_fpOD{SlzR{**5DyIEx@=oV=H*3x=~&$f zE_64j_&Wo>-3#kFP-&!yAMZX7r9bmQHDC=KiRq}d0-k;6YFtTo=Z9u_0YAi=4wM1 zK7Y!;VS~(oWn2ivGS0!lGS2uy*$MY6n6>kkgOaZ!Qx3-m*x(o_Nb8$5>)wpFvAw6U z46?<^nKQI=ro03Dl1Fz^Y_K92N1vqyv-aLH_GoWD&TU4YJ?Wjh-TDjOCHkD{pFH6& zqO6$k_c1Oax8))}Zo!a*h}RI`{P?b+_waa;vEyeKGUfz`>sIAO9Nc>IJw)A!XuMmO z7n5M?ok19*6JAvhk`t*zw_-Cw(-y{RC`h&$3Dd-wq4J*B=)jK`iC`1EJtVxWe$Qle zkG(z2>6szL{mDV09U@Kj4w#~hxcsB{BR7Byok%VnXA04 zByqi6<6)o$JNSAP*h;`Jsc`%Ah*_rS%Ld*AiH{V7vCoUuJ%IPD-vRSi$KsM{D~O!8V*4MWF$k|)!J z;I>cSE$^B0`cC_xSNtwngCL6!NSPu$VORM{Nnk|X6LEqPp7f6q?4w{CHP^-M`VtkR z=$&7tT+VZXj)F><9K+LP0)RLiIUP3Igej%-{s`z!I~w+hjbOjWR|f{w6qzZsp@ui5 zvyw=;22HD5P6wgf6ulxG9m@wyb@8%W;JGNZ_$HI`Mz^U~XfZ=>qmJbiM8IDKDbWjF z6kdaeXnVsPdnhfJeP7Ly6TUmSs1Y~$_2n|60p9}>|H%uEr5mF0pluw(zcTf`-tveP6V`DWUJvw z=U8MtuY#V04FGcrr$L}j{3fGrc~6AuE%e=U{Pm)G&*3b6J}b>!l)sH?41O0m1IGZm ze44;{rb*H0C;Ug|8~qVe2L?BS{@%VxJ+vq*`g}a&sd-O%IA-Mf-wp@4k}kHA41U)3 z0)b3=Ml=O|h!~az|IB(qUw5?D197_7YcE?%N!ngw=tl2Q@ z>i3Gin&$_3u!zbXWIhWxXquu~h|v^jqMDhJ(3&8QhMBW57NPU(uzWFrWeSn3S&Xi) zGh8uurmqNytq~|9P4PVbZ-9fZYhby>(YcH2Z$~a_m}~GFdodP~FS?ON>u!4lI}eMO43p z=_r&L2$D7ZnVysaCd)m204fNfr*K;INXX^fU!?6u4s|M(*jD5**wrwKHoynw}pO!zA%Nn2?a)rz`f1P$@ zjzj*&mAu%DqG#*7xtHxEZ;BquB^CN~OLg%!lnZyh8L8k$=bw0>m?=8+sClxUC+O?Z zEVT9Wo^Xja0!jxUkcUEP)z(bO1yOd%>`QEVggTOQ6@|wrOW{DKhEh(u#T?iAw}?8} zxP03W>Mam<{GFe|7}tzt0#~T)+=v+0<#8wFIA!f7Mhc^E25&TxuI84?+W+_|j3OXi zX-c2X-IujLWCG17dA+OoKnB$;N_(*%%*^O{4XXK0t5}qw8%g2eFq(4l%2e~=sPpfo z0xu3NbaIA$IsqQ*Z!vzB>znf1$?o|Hlh&=6e3&(nW+1=6N?%0q*`zpD+M7WInz0^- z!$aqQ-aL)Yzwz5F(wlUzP=g}va_)u5!+F07A85Jt{=4j+J_tlu_lmc$awqzf4==nH z)!j%=@Kr^ZNxJOLqz*l#&EJNrg}nOg(?i0Ycv6HJ%(lq{0tU}<$%-zuUo=Mf5DfTt z=D&C%OsL%-`SV*CLtP2HbI^es!%MLL=wA104K?$riT?bm;_dHK zIt(CgwQm^#AYMz{4H)DqY!KJF!h3mW0Uc2I(f8MtK?Go#Y~|BL00jT2M3qjp|GzIEj1TS9sRw+ zNkC=UU-=O;EmQT&Z_DWX>h}vm1UMIYk|)Vw#hjcCA3!NDD;u#(ez^_wvWlcKdmH{( zIN>6S>S7suiNjr8JhXjWZg3%-cxQj1n>ron15=yIt|+R?zLfoy9s!DJtG8xMPtKN> z3wMy>v}UyKOAhq*aTOJp9hLn}A&+ibedDZ%Y<=j?@Upj+-i&IK(TbUvkvKcc0ie0o z-gtNG0|)w;nK+T`Tbx~TX$)ep;P6CGm?+mM^93o;*$pGjQq+28GSq!gK!ZaezLOv- zwWi1s^&K*lN$C=%I^D*xrU>jg*3iYS_M#{Z{DF8Sss=BMjxYXQ*#P6nR2N)fOoSPY z6Om7N_m-&7ORNlS`#6^yF$!QOlT!IYMTT7hzXST46Q3Jsg~&iy`Z+hTXI!JKKYXS8 z*Q5vqd?4CQ;c$;2JLT6v5ybD97=^=;rV4LAZ*o}XCI&JgD&fyZkl&e*M3_2#)Ew`M zlm2a<+ZPBxv{c_av;+p-_0X7roY*xTUVIgPn{R%xazan$ICtj2`YD1PoLP3cX}7vG zIMxjs91}qcZY#TlO8oY7?)N}$L`=0k%?R>7fAzmz%YeIPLIK&7`0T-oFhpqTEm6Bn zit>|@!cWWpua_$iYU*0!gnbW!5`?hW7Er;+5+E$Hh>Da|0YM=qVT;HXRF<+`76~p0 zsDmINiwg=O1d)P3AqgZ>MWBWyR4@ss$Rd)m2a>$dnb+5j_UUVG}eSJdeD|~F_FP9Pm4DH0K48+GPElf4)jWMR(2lFCV z6SJPDJvPvMd;2NYdW%v|{UEHRK|#4A%@bJ7cH=Sj6E+VLuXwJ`N*LDtd*N0OOKGV5 zrT1aed^}y$7adTwZfmJyYF})fJx}rVc$3Ksb`Hx#prE?v9FSc45OrT7$1m#H(XpIj zW!{O+LvB4e!%56Xa}GTs0Q|zVKofR`3QwfkSco_regm1Mb{Zl;x~$DWG5$0TbO6bH z%D7-zn(3rai|!wYT;J>5$!QTEVx6oygQD)6F+xU9>x|&lDu0m}E%-q!mIWGd%(GGL z?EGdV(_s#(QSr1iGHdwBoM;KzxQn?ZtC@2#G^#y+PW%=5-hCFBdbXxwv=HVCjb3E; z_+%j~LMu7%quN8FTyg+=Z7*z+QANY#R;|j(^PWhYu8ybK9*KR%dn~>3?-aO?KANh4 zq;yy06HoaRSA`~9%<9&MAYGhJ9&@4T9gZGtKX)|4rB=+urPgs^S35*$y7eu1C_&t?C{Og2qSaV@^soGfM zS&_>4DR2M1-ZTfTWcR+lg*wkY%k_r$?}wPUlxBET#=imkk7W(%=Ls4^ojqL{zt-q~ zB${@mFuO5&hnFVzsPnyuW5F~tTWi{o$Ko4^;IpU2+M3fEJr+lGLl0tT%gk+ESdLv4 z@BMd%_X#1}Tta~p9LK8U=cxsK183GnH}Q*_DhA+OBQO3d-5ykjuZ@>vh=tog>nTz8zP(YV&LGPY%9_Z<%?2}uHyWBYPGgtzHs^Y!9+4KyAkab|WSMgkp zb+U<3=SpuLh;rdaI2WgQD6~6J!0yZzo z!5?w~fQS0Cko)u3hM-EZf(p@bz=n&MHIf1|H;uRrw9_?}z?cP)$*Y{kMT8gs1J-|R zM<6qH^jI~)JAzUh5_EB+Zd8b>{E@d3XOp_NsOP?DV9hx>rB`hOYMzp*++D*9%k@Or zCm|On(hE5} zAm6&{W^KA4AZOc!TwDHDt4v7QIi8>_R($7FwmY>=l=GpLtN6`!`(IOw0mvAw)15YK zAn}%LRRESjZ_`hs5Jaz$jeO+w(Aw2$0|fCwvV{*=4gGak+H-=~_heJLyd_$9CQWq) zzlQ)>A|)e)B(^CcWPx87=W(2{D|rV(4$IUpPM^ntU}WtkS??G0JaEAK>@#kU#%-Ff zQDgX?S;$N^oKgfSyh$V$qc}@SiW35}Hd*0y=Qfv+PRD_^wx0E#Q+;JCADNnzkfjv9 z^m3+gII^A*-2Obdh-4(q&<|+<6+aVGsnZq=+O1(QLThbxZ#nf(18=4b8 z6(^(E^`JQMk;m#Y#+F8U?+;n6R{$!H<pq4DToV_%9Q&L|3|) z;FX$xnE`+5w%WDYeVt7>^pyWLtU5vJwPKfcu9H^2EiBbf__64zKOx%ZQP;HWw(fM# zFjU#tC>vvxf4@WCq>tAoY`#W1-`F~lV(1`C45S}z zHk0}T0ld@!LP%yZ4WOyFaI)DQQV6NLOn7l>Jx;!-L#(NQ%3IN^vvBCa2D3Ght^p`N zg#d4sYNF5(OMK+4FHUXNw$ngrnQ3j6k~t@-(V-M4-ODs@O_4oL){B#i)XHoGh;3IL zjg6Q7Ijc_!NgQOHUv^3~KF&ymFXhD=R-`*iT$eXe547k4&g4#N(d>T5Y!EGy`AnmI zvNPDfY?jcH;lTDEldp1h)?Ai~X3T~oA2L27{0abSC_|ywdEFplm+Sa^JGAjkU%#D) zgo`>n`hNwqyS6my@WPJ1EEW2vI{T>i4FdS@1N>ynZy}7~pync~P4!iyK;T`FtcNOt zAC+|;vmIZqg7;Us@M(~fR_+r1?iN~Q|3UQjRG?fGuc-2^0R5lA*X(+02!9oL4^Iva zlI$b7OW3Q+MjP~h0Z5$SFM1P8o!s%#o)}pwMmU)0Tp(7Dk?+p<&OlR{xYtMY;)WI# zM1cM#LS;k~G)##b@)JfTEF+wt9nffxOad$baA4OJ(Y8t zU0bLW@PvsdPPvMccJ0`TkeOgw`K4UMNx?d{G)WIJMVjQzm^veAFBJ?&G6Xu}G7DsN z)?rSigt(zFvBU!B6pxca<3!9`#gmvyUmO|#^vDhqpH=g&<2Zm;A;F9K#d%`8r*N%`Jf?$I^g!? zL39YUMf0NXG%ZV$q0(q->sLQER!}IozZp!V1T+9E<>tJ=dB;Nbw5y!pSV#wf;bZ*j zA&@@7P3+|Du)6cpC05TeqofM4t9|u}D&CINpvzI}fqpA0-m4U^Ls4?qXbYNDuai+n zkNGiFAaG7hP5z6ln)cB`&?3!&DPpX z*I@3q%+<~APM)qYsH#oLW8SRbob(al-L9HlCUN2kuG4BHM(!Ze#WVIt$5Aok=%L>J z#&i#O^pJLcY-(xobaL6fHL1I^ibc(O&!^T%l)S}sCfH^g=1{ek@PTs(AzFMsuD*d>0>fX_Mn!_R@wj?gaAP|;?Bb8wwMZ)Z9YpJwD) zCLLfPuVf$+Ox7=uJB@~Qr>_!(l*wQD$U32S=%>FS2p=Ku^pOii@2XB;B!EoGI&@iI zv|d>HdxA&|8Fr5pK^IBDXl{s93diM17=*9`O9h&#gi~}Sg&;(*ENF423~m#Q6x1aA z$JLyOEI6Bh)6^i^$BE{!q^vTqbI{|q;=5T}TJdJN9lmk-!97pE4S74Gxt$A;=*2Jd XL6UM%ITLduGjoKrw)TFv1JeHjYFIdd

      Jx2>H7$O4UnA& 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

  7. pY{6^~n~is|3`#K1La&Q#2a=z44FC+p z_eEz)lUID8!*UIN$EQ3QZt}40J$M>_L(PW7e;`j!{XU$nU0X*!g5e zJGiNy5n&>$owO@v z35l!2Qg@E%LO8t#t)*JYxkE)e2boa|k9L*=JXD&Z#Awe8gARDYEs=nQMyyc8{&2#t zAq42w)tQW)wZJ6|0Eve!O>S~P5!WPa_{oo#< zbUGF(s!o+yeW%4Lk9d*FX!=qMfnXx%)Y$2g0^M8npjh9yaE)=jbYk@A=@R8$NTIqV{Do&-O7 z!#ZG&3dz40ddwsSb%@U@1`n2IP;=7T+24B z=dW0|ZrL2%_Z6*Q1-S36ykvc;Ha-W7S>LTpF`5abW6za!36(~5x3S*B=#86=U{#VXX0a~H-(?F$>qUEO*Q!B`}W zEGBe)Sfr}#^miN`_zIsNk$@(X_haxdIUx$-uBr*B*br(T!t0Ee=DcEEAYNL;rLJFc zmIV!b0)4@Ta<7OiE@O}B#XS4Y(J4Z7QC=SzXuix!K0p#z7s2qJ2CGa*#eWQ_ddE8l zC7^y!A?TMJ62woGZJhpPT{X>b*}4hw?|*yqMJj#NbI&qWK^M08J+|0SGd&h7`8Vrr z^OJX}sJ3yMq$MUq==4efF_VP}1x`Oz0u8^Fo(yvi=Kw_e3zURS~Fau!G~(t)NKM25heK?@?Dt3?#Ipe@w+)~$#S)T0ttQ?aTg z_(@PH7590EJujnJqUeZmJ1_J}%E+G)rm0tbaPEJ9UqMVG5>)xU9C;IjedYzI;%TD( z3itX~G}7a<=m$R8j7{uQPo=Br7XaK2&zqolKw#~^X7pc*(Nwqlvq>t=n>#sAt!kY; zNTHa8A(B6s|HW$J$~S|fIk0=jUH=JJPD-wwVgD7Qvv6H}oS?6z{U=;i4*H}W7-#Lz zc^G&Rz>kyqmA-GC6Khsvby$ZJqRuLdh9Qx_m6DXKw#GvG>-`h1SnB^`0#r9RGwH9S zSijl?hC;MTUq@LQHD2y~bmePZ85-@AOfafkK1LIn)0gkVFS2!`hg}wjwzUq1ZlyuP z$qY1n%7D?@s@}JTe9cIV$lngD$3Uj4hDELm#3F%ymg0`4#0jC?XiT8 zvrJ=;oHkb>o906|gcul60774XCqJx{H$5kq241{Jd0xQwi{N6(sFO+%km#kb1>LMa z5IW_;0Pi0r-OZVJc(!~N`~YS4eIRcXkxF;Ie+s4zd+s~CvZb-xK|O8XEbl(5Vhj6r zLPouZ^sOR!1-EFXzBw3hCw6#5rAunAnrkL(#X6)`n6uS5fX8s?1Ar6HB2I%{k{iM~ zku?Js>5M~|8d2st8+5ZvYy$HnP>|J|`w#~NTQb!zQB>&=$>wqm#E4+yJSx>GLyPC` zI9jb5qz3Gkg;wC>Q!B&5OoIE%g3q|8O!?NiJU)=OhGZW4&)R6M)+tlOg3jbI9SC^^ zo5P8$o@F6N=?DWz0KX9Np@pb?d+(bFGnV&ne}k!63n60*!o~zL8-b)=FT!H+#Q+5( z4C{@mEJZf$3jYacXbdc! z7bBfGi7g^;mnBut+i%icoOUE^xd?I`M-uk6ffQFha8(hvWxwTECJcWR5a&j#a^%h! z30XX45q?sZV}vMJqKp^{`uqveM{xf9o!l?QFKnBgiLZM__-usylg^0ZoVZoWHAdUwCE+F3+)$g;t;@T=SRX8sNJZjQlJQNMZ^+dWcrZy~ zi#=Ygafxup)rPW5Ma;D$1xXpO0#~)H82o2qy4KER=`MnJB3!mWZ?t84hUIk12ZuZ1p4lz=gCtf?)R>8 zNQiXApl+aR#sammGzj#^4dJs-)pf4cu}0)B&uX1>UvQK6w|hcvM*`wWwbSmX0y?wt zZFf|`;37#_D!~1D0!1}iU6n+a&Z`=E+RL$fS31WhI#^Y zWfaZ`20*h>s!BjTj_@-tN4$opLdMI>24E^4S>Qp!emWR`Egde}!X5!Q~~Hb^x=_r#HccBA~R-OETWYlUbJWi#MB~yhz6dA9OOg zhULCjdj5=7!C9a{qT ze&>$1_k(ZEhPG;iUe+3;d*r(jdz1bO{`<+WN^aip^ws61vZg2t-;0DCllVlbjvGMq zU=b4g=1sh?36mVeY@%9)V78+x|1y^S--ricXZ?>OmYgmMP7S!w`d8tI>HSo_{h9#8 z*#Abl3~f}dRe{+=_xBI5j(!PKJXUSxylUIS)>XXdN}Sb-J%)+Kd2j$mEU`OZ)>RC# z%nU2>u}rXD>hL!Iz|y`qfwQbGb0|$y7$vF>(GYFXH)#!=4ObNO{`0tblwo|GhWpZC zD!OXcuqe7{7(kHMTwD!aIiHBiER`GUUa66`-aGrZd_Wesp@33~YAz;d8u3#C!z}iU5>6U} z@}6_sE!fK~4XRjLhXzgvJu+&LWmj04&Z6>m3U(~3yH*>V$=FzgpZmq*0Fj0J$>KOR&tie~R&c!$~WtZXlFD6I^`2-kB)$ z1^Wmci)sFTX{b!5KTD1eL&|<6l0JPgcE9+@j^oogEMGjSHEUCFKB`K6bCziq$TRL- zUlOVT{x&@*5_oG-k1co>#(9)LXn_|enk_tD4L2Qn9)h>EcOTiSQ~xpOO;XT?224nG zXApo||0di=2oB}eYFh}!K?{}SaVbpybUHFw8C4X0>+fBun;)Hp+nV(9@jwBTDqpwK z`^b`Cis}LH6Uqbx_9a_Rq?+|NKQ&8V)&(+=-k9Ap%G!h}cV7Wt9+f=sR($x}ut;}0 z$j*UzopA+b(CfKC*bcu)0yChT0`{mO2*$??SEzg@jX!yhj?URKC)NR+g0B53l;QgM zi0ZAqsRl&WYbN>^Nm9!59`4H+s+}*}qvg+17}n~nTWH9Q3WMpL%ZsbL^B*rIPjs_= znEmD1P53EIzoe{MEZ&goT%rLv7rsppt4*^>0uT}Ao`}9Cg?RZRePzvGBUxF&3hK;|WWskMJsp38?`nn(Va>v7a{2b;<8--~ z=cJ_wX(EEU=1uQlfP%Tbqh0re{zR4QsU_5SkqvvN1IlaYs&DqdiO^<(bLrG-_^1VP zRS8^6XT^&Lr!hFJ0v4TNAYh*mB&qlF{=Z(qSPhH@!p8PLhV6l-mhJx!mJ3nE>R)1j zCALY22~a0l*PD?F#GY}G5{I@o_4jpeF=yEuaLcAAV1_;BW|kk_W;%9p9#L?#K-*pK zLjKgZye2rM_3nm`#?Mwj!ZadD?6pIdH$nU-R{Wgw+u?9qdb4DlyyF;;ev7ExB;hP7 zOU4HPFuOdwh9nQP{;fUOD7(huj+HXj%*Fk8{_=~v{D0%t`L{`cEaXu9if>yF*1vjN zed2g~%ixqpFN6WEQNzyuzL?v}T38GmIb|N+Gn336nY7-(&dUJb7m zMHf`u-)m-fvv!i+8`Adq85+ougNY^O$M(Yb18jo_me>pa-WU_xAn$H=CA-_9bd4k0M$G{ zMV9oT@b!GVO9hYB?kfr;-+eN1Txe1dos4(>6E(9RRccG;;gmdfGJp04pV|5%ZT(k~ zpP^6OGmLiZT`fF(?aa6*L5q_hSSe>4K2q^10led zb6502A1mwSDPRW$HP5^*D%SQ9zQUh1a+lmvRcC;CNj>1M#pvXmOT*|U{{e?9Eh@XB zm{)V|n(6LiwD{Wc0CekZ+qo`;!0F>%9|Rxy0$Ps-Nx=c9&!67DVM0w#33bXOS^s{t zQS2we%}5^`l`mf8x?R?DGqVh_-cl2Lot>VGZ#5hyJODVJ45t*+c%BMP$xlUkh(XC$ z&@Vd5y$4OW&rQ^`HHBoV$3l|qht0_8hF4}wha$Q-8_&_0{eq1^Lzo%&WLUn;Ma zMh56YMdHbR(_m$OU=tPc9IirJHvG9zZ#oW?zldolt4U+jh@yMl0gWzqdLh%wi<2008DOO;!xsVw!FXtqagD;rX>Bvbu?B+`h}TN0yY6h1G(&q_79LxdUE(W-8J=K<2@F2?!{)qfe!kiz}=a=J`xb6UYw>IhL!C z9syLu@~}&&2~mmQpA2?WR$#R-p&EgP&9Nz65F}z)f_|k}f(D4ar&a6BQUZopUt;i% z(2n$+5oZ1kNO-;Cu;K$L!gk9)g7`!FLp~OUd_nApq2k`awx?-%Yrj*Pa;p3IfIOC| z`n5X*5y+UK=E2Q@EOD0uf8?-mg6VZ7f(CTM`nY~A5UZxh?#RM2f)oGKjpKC0pn0Fx zM($a50Y6E#6&cX6Hrkf1_9v%k5DQVHOPVZIhp|hwCfb#dcY1a&znwPk}cg4Nu+Sy9s9I zP1Y#cpST~3{SqzI&%tM`&fQTS(Fmm>uuO4dW-O5u%prEzl!LJ*f6b6PPrf=+&;lpJ zJAn-=_+_3-PE9?p0Akhn1P+Qg)R1`rJ;VnkJTiRCea>fa;+@gFOaGsDqWaHKOlsQ6 zer3nvJETU4&dl}NeC~n%k9Sh;?zH|k4zs5I-(m(%fBL)DD&FZgT}1V)Fa=H@)VGZ| zmKYanYPF6sKdH|CCsNRGNr7X&eL|+#=Pm^WAUQRyBaSH2y?{Zm#xMElnOM>)i+#Xa zpIE?7in8%NDd+vj#Uee4h z9NZ_1E^H?L2|*{=ElX<)pPsDCr=i&WYy4#sDDA>wb{19w53P)q_}Wcyle|lMFBDY~ zu&#_3=bmxo(-lm9a9;YA&9BYOovepif&FH+wtwveR*9|Oqk-*P65GC`or*PzOb?V)k3v~dB`|n#Y{8XQ@C~P&%wC>5DKQ9(Oo#F9%TtdZzZe=SNX(X zBbcLo@|3pr$>gB9)s`Br2XzUV2Xf3U;7KH-;AA~c_`QDFvw^e-V|8R|_h!AT$AwR}1xaUR(O?-WpszFX)+{&t~xB@FNfEwit# z%N^Vjn0@9XB!f_y6OQ;4Vvxu#V8|{3SrzJrTXK4;YUroXB;%}Jo?090fQi|W^l>hvalwF8UNCu&f74yu$ETIrA698c%(JP-CB zZ+}fnx`LqWBa1i>B1+|wG>^q#L#y2dxJ;n@knAtJYBf*OYp$;wi({#`hO<2!-#>g7 zV!sppg!R&&9bH)9!%{+(?7O7UC9KjL;v$1Z!Ihl!fgE~AMGErO1`J%?Irn0QFyM~2 zk7AaAC*)ZU354uOtq-TH8NepWr&VogQVd`k+~XO;q9E$E`?%&J8kWpIF&;j;EK({U zF1C9_=Oz#uj>vMKHb%CZ1Ia?*?v}AsdgHA%z8FR%98;ky!B(FOT{Zw-cr8NBg6_-W zTZm|po?d_pUFW`#0fI5xIs`_@fkXq9R@}>jM(NXyYY7)#&x%W?Y}0#lITtNyo#`S) z>(6h#xJ^DV;ckQYdbZ({@ z#>tdx?{OGu^}M)8NxK+Ut^rQhd2#$oN&zMg#%Xq6siRShrs%)

    e;uFA!UB4EhU5C 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�$F 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

    +LzlQTZYaU@7#T@Y1nL2_$*wNxYSQEi9 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

    avVQL-sDaysyGj`M@**@-{Lw;lE8W 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%0AWtR%gzI3{ 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

    JAe4u0ohv=NMv>>t$XNoM21o1S#fN^ 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 XL6UM%ITLduGjoKrw)TFv1JeHjYFIdd 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 @@

    Jx2>H7$O4UnA& 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