X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fmethods%2FResolve.py;h=05bffcbbee8d2bd9801c1361b013830fbf1e03f5;hb=3e6097e2d50ff322b45f53fcb22d07fc16adbdb6;hp=ec47e41b1000c2cb16542a97c259bdd0e4a7b983;hpb=8a47ee165cb347ffe148b26b85213cfabe389387;p=sfa.git diff --git a/sfa/methods/Resolve.py b/sfa/methods/Resolve.py index ec47e41b..05bffcbb 100644 --- a/sfa/methods/Resolve.py +++ b/sfa/methods/Resolve.py @@ -1,14 +1,10 @@ -### $Id: resolve.py 17157 2010-02-21 04:19:34Z tmack $ -### $URL: https://svn.planet-lab.org/svn/sfa/trunk/sfa/methods/resolve.py $ -import traceback -import types -from sfa.util.faults import * -from sfa.util.namespace import * +from sfa.util.xrn import Xrn, urn_to_hrn from sfa.util.method import Method -from sfa.util.parameter import Parameter, Mixed -from sfa.util.debug import log + from sfa.trust.credential import Credential -from sfa.util.record import SfaRecord + +from sfa.storage.parameter import Parameter, Mixed + class Resolve(Method): """ @@ -20,31 +16,41 @@ class Resolve(Method): """ interfaces = ['registry'] - + + # should we not accept an optional 'details' argument ? accepts = [ Mixed(Parameter(str, "Human readable name (hrn or urn)"), Parameter(list, "List of Human readable names ([hrn])")), Mixed(Parameter(str, "Credential string"), - Parameter(list, "List of credentials)")) - ] - - returns = [SfaRecord] - - def call(self, xrns, creds): - if not isinstance(xrns, types.ListType): - xrns=[xrns] + Parameter(list, "List of credentials)")), + Parameter(dict, "options"), + ] + + # xxx used to be [SfaRecord] + returns = [Parameter(dict, "registry record")] + + def call(self, xrns, creds, options=None): + if options is None: + options = {} + # use details=False by default, only when explicitly specified do we want + # to mess with the testbed details + if 'details' in options: + details = options['details'] + else: + details = False + type = None + if not isinstance(xrns, list): + type = Xrn(xrns).get_type() + xrns = [xrns] hrns = [urn_to_hrn(xrn)[0] for xrn in xrns] - - #find valid credentials + # find valid credentials valid_creds = self.api.auth.checkCredentials(creds, 'resolve') - #log the call - origin_hrn = Credential(string=valid_creds[0]).get_gid_caller().get_hrn() - self.api.logger.info("interface: %s\tcaller-hrn: %s\ttarget-hrn: %s\tmethod-name: %s"%(self.api.interface, origin_hrn, hrns, self.name)) - - # send the call to the right manager - manager = self.api.get_interface_manager() - return manager.resolve(self.api, xrns) - + # log the call + origin_hrn = Credential( + string=valid_creds[0]).get_gid_caller().get_hrn() + self.api.logger.info("interface: %s\tcaller-hrn: %s\ttarget-hrn: %s\tmethod-name: %s" % + (self.api.interface, origin_hrn, hrns, self.name)) - + # send the call to the right manager + return self.api.manager.Resolve(self.api, xrns, type, details=details)