本文整理匯總了Python中common.packet_builder.Data.children方法的典型用法代碼示例。如果您正苦於以下問題:Python Data.children方法的具體用法?Python Data.children怎麽用?Python Data.children使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類common.packet_builder.Data
的用法示例。
在下文中一共展示了Data.children方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: unpack
# 需要導入模塊: from common.packet_builder import Data [as 別名]
# 或者: from common.packet_builder.Data import children [as 別名]
def unpack(self,reader):
(oid,num_blocks,version,size,type,parent,block_size,path,) = struct.unpack(self.format_str, reader.read(struct.calcsize(self.format_str)))
path = self._short_string(path)
data = Data(params={'oid':oid,'num_blocks':num_blocks,'path':path,'version':version,'size':size,'file_type':type,'parent':parent,'block_size':block_size})
if data.file_type == 0:
(children_len,) = struct.unpack(self.child_format_str, reader.read(struct.calcsize(self.child_format_str)))
childs = []
for i in range(children_len):
(oid,num_blocks,version,size,type,parent,block_size,path,) = struct.unpack(self.format_str, reader.read(struct.calcsize(self.format_str)))
path = self._short_string(path)
child = Data(params={'oid':oid,'num_blocks':num_blocks,'path':path,'version':version,'size':size,'file_type':type,'parent':parent,'block_size':block_size})
childs.append(child)
data.children = childs
data.type = packet_types.FS_FILE_INFO
return data