merging with geni-api branch
[sfa.git] / sfa / methods / SliverStatus.py
1 from sfa.util.faults import *
2 from sfa.util.namespace import *
3 from sfa.util.method import Method
4 from sfa.util.parameter import Parameter
5
6 class SliverStatus(Method):
7     """
8     Get the status of a sliver
9     
10     @param slice_urn (string) URN of slice to allocate to
11     
12     """
13     interfaces = ['geni_am']
14     accepts = [
15         Parameter(str, "Slice URN"),
16         ]
17     returns = Parameter(bool, "Success or Failure")
18
19     def call(self, slice_xrn, creds):
20         hrn, type = urn_to_hrn(slice_xrn)
21         
22         ValidCreds = self.api.auth.checkCredentials(creds, 'sliverstatus', hrn)
23
24         self.api.logger.info("interface: %s\ttarget-hrn: %s\tmethod-name: %s"%(self.api.interface, hrn, self.name))
25
26         manager_base = 'sfa.managers'
27
28         if self.api.interface in ['geni_am']:
29             mgr_type = self.api.config.SFA_GENI_AGGREGATE_TYPE
30             manager_module = manager_base + ".geni_am_%s" % mgr_type
31             manager = __import__(manager_module, fromlist=[manager_base])
32             return manager.SliverStatus(self.api, slice_xrn, ValidCreds)
33
34         return ''
35