X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Futil%2Fxrn.py;h=b0db4c1de5ef10df0e1d130c0e6ba4b437d389d5;hb=49aeb133ab3b334a2785886efedf5b9f2a3da23b;hp=e548fa5623ab33593e7ae302f8f87289f8c52baa;hpb=031e5c50de5860921dfada9a3d54a9242339836e;p=sfa.git diff --git a/sfa/util/xrn.py b/sfa/util/xrn.py index e548fa56..b0db4c1d 100644 --- a/sfa/util/xrn.py +++ b/sfa/util/xrn.py @@ -109,6 +109,18 @@ class Xrn: def urn_split (urn): return Xrn.urn_meaningful(urn).split('+') + @staticmethod + def filter_type(urns=[], type=None): + urn_list = [] + if not type: + return urns + + for urn in urns: + xrn = Xrn(xrn=urn) + if (xrn.type == type): + # Xrn is probably a urn so we can just compare types + urn_list.append(urn) + return urn_list #################### # the local fields that are kept consistent # self.urn @@ -116,7 +128,7 @@ class Xrn: # self.type # self.path # provide either urn, or (hrn + type) - def __init__ (self, xrn, type=None, id=None): + def __init__ (self, xrn="", type=None, id=None): if not xrn: xrn = "" # user has specified xrn : guess if urn or hrn self.id = id @@ -181,6 +193,15 @@ class Xrn: self.hrn = hrn self.hrn_to_urn() self._normalize() + + # sliver_id_parts is list that contains the sliver's + # slice id and node id + def get_sliver_id_parts(self): + sliver_id_parts = [] + if self.type == 'sliver' or '-' in self.leaf: + sliver_id_parts = self.leaf.split('-') + return sliver_id_parts + def urn_to_hrn(self): """