fix tabs
[sfa.git] / sfa / methods / resolve.py
1 ### $Id$
2 ### $URL$
3 import traceback
4 from sfa.util.faults import *
5 from sfa.util.method import Method
6 from sfa.util.parameter import Parameter, Mixed
7 from sfa.trust.auth import Auth
8 from sfa.util.record import GeniRecord
9 from sfa.util.genitable import GeniTable
10 from sfa.util.debug import log
11 from sfa.server.registry import Registries
12 from sfa.util.prefixTree import prefixTree
13 from sfa.trust.credential import Credential
14
15 class resolve(Method):
16     """
17     Resolve a record.
18
19     @param cred credential string authorizing the caller
20     @param hrn human readable name to resolve
21     @return a list of record dictionaries or empty list     
22     """
23
24     interfaces = ['registry']
25     
26     accepts = [
27         Parameter(str, "Credential string"),
28         Parameter(str, "Human readable name (hrn)")
29         ]
30
31     returns = [GeniRecord]
32     
33     def call(self, cred, hrn, caller_cred=None):
34         
35         self.api.auth.check(cred, 'resolve')
36         if caller_cred==None:
37             caller_cred=cred
38
39         #log the call
40         self.api.logger.info("interface: %s\tcaller-hrn: %s\ttarget-hrn: %s\tmethod-name: %s"%(self.api.interface, Credential(string=caller_cred).get_gid_caller().get_hrn(), hrn, self.name))
41         good_records = [] 
42
43         # load all know registry names into a prefix tree and attempt to find
44         # the longest matching prefix
45         registries = Registries(self.api)
46         hrns = registries.keys()
47         tree = prefixTree()
48         tree.load(hrns)
49         registry_hrn = tree.best_match(hrn)
50
51         #if there was no match then this record belongs to an unknow registry
52         if not registry_hrn:
53             raise MissingAuthority(hrn)
54
55         # if the best match (longest matching hrn) is not the local registry,
56         # forward the request
57         if registry_hrn != self.api.hrn:
58             credential = self.api.getCredential()
59             try:
60                 records = registries[registry_hrn].resolve(credential, hrn, caller_cred=caller_cred)
61                 good_records = [record.as_dict() for record in records]
62                 if good_records:
63                     return good_records
64             except:
65                 traceback.print_exc()
66
67         # if we still havnt found the record yet, try the local registry
68         table = GeniTable()
69         records = table.find(hrn)
70         if not records:
71             raise RecordNotFound(hrn) 
72         for record in records:
73             try:
74                 self.api.fill_record_info(record)
75                 good_records.append(dict(record))
76             except PlanetLabRecordDoesNotExist:
77                 # silently drop the ones that are missing in PL
78                 print >> log, "ignoring geni record ", record.get_name(), \
79                               " because pl record does not exist"
80                 table.remove(record)
81
82
83         return good_records    
84