本文整理匯總了Python中Mgmt.bn_name_to_parts方法的典型用法代碼示例。如果您正苦於以下問題:Python Mgmt.bn_name_to_parts方法的具體用法?Python Mgmt.bn_name_to_parts怎麽用?Python Mgmt.bn_name_to_parts使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Mgmt
的用法示例。
在下文中一共展示了Mgmt.bn_name_to_parts方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __get_top_talkers_list
# 需要導入模塊: import Mgmt [as 別名]
# 或者: from Mgmt import bn_name_to_parts [as 別名]
def __get_top_talkers_list(self, node_path, value_type):
"""
Internal function to support top talkers queries.
Iterate subtree on node_path and use the results to generate
a result list of value_type instances.
"""
temp_result = {}
bindings = Mgmt.iterate(node_path, subtree=True)
for b in bindings:
if Mgmt.bn_name_pattern_match(b[0], node_path + '/*/*'):
parts = Mgmt.bn_name_to_parts(b[0])
idx = int(parts[3]) - 1 # iterate results are 1-based
attr_name = parts[4]
curr_val = temp_result.setdefault(idx, value_type())
setattr(curr_val, attr_name, b[2])
return [temp_result[i] for i in xrange(len(temp_result))]