本文整理汇总了Python中common.packet_builder.Data.file_size方法的典型用法代码示例。如果您正苦于以下问题:Python Data.file_size方法的具体用法?Python Data.file_size怎么用?Python Data.file_size使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类common.packet_builder.Data
的用法示例。
在下文中一共展示了Data.file_size方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: unpack
# 需要导入模块: from common.packet_builder import Data [as 别名]
# 或者: from common.packet_builder.Data import file_size [as 别名]
def unpack(self,reader):
data = Data()
(oid,file_size,block_size, version,file_type,num_blocks) = struct.unpack(self.format_str,reader.read(struct.calcsize(self.format_str)))
blocks = []
for i in range(num_blocks):
(block_id, version, offset, length, serverid, ip, port) = struct.unpack(self.child_format_str, reader.read(struct.calcsize(self.child_format_str)))
ip = socket.inet_ntoa(ip)
block_data = Data(params={'block_id':block_id,'version':version,'offset':offset,'length':length,'serverid':serverid,'ip':ip,'port':port})
blocks.append(block_data)
data.oid = oid
data.file_size = file_size
data.version = version
data.block_size = block_size
data.file_type = file_type
data.blocks = blocks
data.type = packet_types.FS_GET_OK
return data