当前位置: 首页>>代码示例>>Python>>正文


Python ServerProxy.upload_chunk方法代码示例

本文整理汇总了Python中xmlrpc.client.ServerProxy.upload_chunk方法的典型用法代码示例。如果您正苦于以下问题:Python ServerProxy.upload_chunk方法的具体用法?Python ServerProxy.upload_chunk怎么用?Python ServerProxy.upload_chunk使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在xmlrpc.client.ServerProxy的用法示例。


在下文中一共展示了ServerProxy.upload_chunk方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: replicate_chunk

# 需要导入模块: from xmlrpc.client import ServerProxy [as 别名]
# 或者: from xmlrpc.client.ServerProxy import upload_chunk [as 别名]
 def replicate_chunk(self, chunk_path, cs_addr):
     try:
         cs = ServerProxy(cs_addr)
         print("Replicate", chunk_path, 'to', cs_addr)
         chunk = self.get_chunk(chunk_path)
         cs.upload_chunk(chunk_path, chunk)
         print("File", chunk_path, "has replicated to", cs_addr)
         return "ok"
     except:
         print("Replication of", chunk_path, 'failed')
开发者ID:osteotek,项目名称:yadfs,代码行数:12,代码来源:chunk_server.py

示例2: _save_file_to_dfs

# 需要导入模块: from xmlrpc.client import ServerProxy [as 别名]
# 或者: from xmlrpc.client.ServerProxy import upload_chunk [as 别名]
    def _save_file_to_dfs(self, content, remote_filepath):
        r = self._get_cs(remote_filepath)
        if not r['status'] == Status.ok:
            return r
        cs_addr = r['cs']
        cs = ServerProxy(cs_addr)

        chunks = self.split_file(content)
        data = {}
        data['path'] = remote_filepath
        data['size'] = len(content)
        data['chunks'] = {}
        for count, chunk in enumerate(chunks):
            cs.upload_chunk(remote_filepath + '_{0}'.format(str(count)), chunk)
            data['chunks'][remote_filepath + '_' + str(count)] = cs_addr

        return self.ns.create_file(data)
开发者ID:osteotek,项目名称:yadfs,代码行数:19,代码来源:client.py


注:本文中的xmlrpc.client.ServerProxy.upload_chunk方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。