本文整理汇总了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]