use interface managers
[sfa.git] / sfa / methods / get_slices.py
1 ### $Id$
2 ### $URL$
3
4 from sfa.util.faults import *
5 from sfa.util.misc import *
6 from sfa.util.method import Method
7 from sfa.util.parameter import Parameter, Mixed
8 from sfa.trust.auth import Auth
9 from sfa.plc.slices import Slices
10 from sfa.trust.credential import Credential
11
12 class get_slices(Method):
13     """
14     Get a list of instantiated slices at this authority.      
15
16     @param cred credential string specifying the rights of the caller
17     @return list of human readable slice names (hrn).  
18     """
19
20     interfaces = ['aggregate', 'slicemgr', 'component']
21     
22     accepts = [
23         Parameter(str, "Credential string"),
24         Mixed(Parameter(str, "Request hash"),
25               Parameter(None, "Request hash not specified")),
26         Parameter(str, "Callers credential string")
27         ]
28
29     returns = [Parameter(str, "Human readable slice name (hrn)")]
30     
31     def call(self, cred, request_hash=None, caller_cred=None):
32         self.api.auth.authenticateCred(cred, [cred], request_hash) 
33         self.api.auth.check(cred, 'listslices')
34         if caller_cred==None:
35             caller_cred=cred
36         
37         #log the call
38         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(), None, self.name))
39
40         slices = []
41         # send the call to the right manager 
42         if self.api.interface in ['component']:
43             mgr_type = self.api.config.SFA_CM_TYPE
44             manager_module = manger_base + ".component_manager_%s" % mgr_type
45             manager = __import__(manager_module, manager_base)
46             slices = manager.get_slices(self.api)
47         elif self.api.interface in ['aggregate']:
48             mgr_type = self.api.config.SFA_AGGREGATE_TYPE
49             manager_module = manger_base + ".agregate_manager_%s" % mgr_type
50             manager = __import__(manager_module, manager_base)
51             slices = manager.get_slices(self.api)
52         elif self.api.interface in ['slicemngr']:
53             mgr_type = self.api.config.SFA_SM_TYPE
54             manager_module = manger_base + ".slice_manager_%s" % mgr_type
55             manager = __import__(manager_module, manager_base)
56             slices = manager.get_slices(self.api)
57
58         return slices