本文整理匯總了Python中protocol.Protocol.checkPackage方法的典型用法代碼示例。如果您正苦於以下問題:Python Protocol.checkPackage方法的具體用法?Python Protocol.checkPackage怎麽用?Python Protocol.checkPackage使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類protocol.Protocol
的用法示例。
在下文中一共展示了Protocol.checkPackage方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: add
# 需要導入模塊: from protocol import Protocol [as 別名]
# 或者: from protocol.Protocol import checkPackage [as 別名]
def add(self, data):
#組包
if len(self.datas) == 0:
self.datas = data
else:
self.datas = "%s%s" % (self.datas, data)
#拆包
length = -1
length_index = self.datas.find('length\" :')
if length_index != -1:
length_end = self.datas.find(',', length_index + 9, length_index + 9 + 10)
if length_end == -1:
length_end = self.datas.find('}', length_index + 9, length_index + 9 + 10)
if length_end != -1:
length = self.datas[length_index + 9:length_end]
if length != -1:
length = int(length.strip())
if length != -1 and length <= len(self.datas):
package = self.datas[0:length]
package = Protocol.checkPackage(package)
if self._package_decode_callback:
self._package_decode_callback(package)
if len(self.datas) == length:
self.datas = ''
else:
self.datas = self.datas[length]