本文整理汇总了Python中rucio.client.Client.list_dids方法的典型用法代码示例。如果您正苦于以下问题:Python Client.list_dids方法的具体用法?Python Client.list_dids怎么用?Python Client.list_dids使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类rucio.client.Client
的用法示例。
在下文中一共展示了Client.list_dids方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: listDatasets
# 需要导入模块: from rucio.client import Client [as 别名]
# 或者: from rucio.client.Client import list_dids [as 别名]
def listDatasets(self,datasetName,old=False):
result = {}
# extract scope from dataset
scope,dsn = self.extract_scope(datasetName)
if dsn.endswith('/'):
dsn = dsn[:-1]
collection = 'container'
else:
collection = 'dataset'
filters = {'name': dsn}
try:
# get dids
client = RucioClient()
for name in client.list_dids(scope, filters, type=collection):
vuid = hashlib.md5(scope + ':' + name).hexdigest()
vuid = '%s-%s-%s-%s-%s' % (vuid[0:8], vuid[8:12], vuid[12:16], vuid[16:20], vuid[20:32])
duid = vuid
# add /
if datasetName.endswith('/') and not name.endswith('/'):
name += '/'
if old or not ':' in datasetName:
keyName = name
else:
keyName = str('%s:%s' % (scope, name))
if keyName not in result:
result[keyName] = {'duid': duid, 'vuids': [vuid]}
return result,''
except:
errType,errVale = sys.exc_info()[:2]
return None,'%s %s' % (errType,errVale)