Another typo
[sfa.git] / sfa / methods / get_resources.py
1 ### $Id$
2 ### $URL$
3
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.config import Config
9 from sfa.plc.nodes import Nodes
10 # RSpecManager_pl is not used. This is just to resolve issues with the dynamic __import__ that comes later.
11 import sfa.rspecs.aggregates.rspec_manager_pl
12
13 class get_resources(Method):
14     """
15     Get an resource specification (rspec). The rspec may describe the resources
16     available at an authority or the resources being used by a slice.      
17
18     @param cred credential string specifying the rights of the caller
19     @param hrn human readable name of the slice we are interesed in or None 
20            for an authority.  
21     """
22
23     interfaces = ['aggregate', 'slicemgr']
24     
25     accepts = [
26         Parameter(str, "Credential string"),
27         Mixed(Parameter(str, "Human readable name (hrn)"),
28               Parameter(None, "hrn not specified"))
29         ]
30
31     returns = Parameter(str, "String representatin of an rspec")
32     
33     def call(self, cred, hrn=None):
34         sfa_aggregate_type = Config().get_aggregate_rspec_type()
35         if (sfa_aggregate_type == 'pl'):
36             self.api.auth.check(cred, 'listnodes')
37             nodes = Nodes(self.api)
38             if hrn:
39                 rspec = nodes.get_rspec(hrn)
40             else:
41                 nodes.refresh()
42                 rspec = nodes['rspec']
43         else:
44             # To clean up after July 21 - SB    
45             rspec_manager = __import__("sfa.rspecs.aggregates.rspec_manager_"+sfa_aggregate_type)
46             rspec = rspec_manager.get_rspec(hrn)
47         
48         return rspec