當前位置: 首頁>>代碼示例>>Python>>正文


Python Data.children方法代碼示例

本文整理匯總了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
開發者ID:gkthiruvathukal,項目名稱:st-hec,代碼行數:24,代碼來源:packets.py


注:本文中的common.packet_builder.Data.children方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。