namespace module is gone, plxrn provides PL-specific translations
[sfa.git] / sfa / methods / CreateSliver.py
1 from sfa.util.faults import *
2 from sfa.util.xrn import urn_to_hrn
3 from sfa.util.method import Method
4 from sfa.util.parameter import Parameter, Mixed
5 from sfa.util.sfatablesRuntime import run_sfatables
6 from sfa.trust.credential import Credential
7
8 class CreateSliver(Method):
9     """
10     Allocate resources to a slice.  This operation is expected to
11     start the allocated resources asynchornously after the operation
12     has successfully completed.  Callers can check on the status of
13     the resources using SliverStatus.
14
15     @param slice_urn (string) URN of slice to allocate to
16     @param credentials ([string]) of credentials
17     @param rspec (string) rspec to allocate
18     
19     """
20     interfaces = ['aggregate', 'slicemgr']
21     accepts = [
22         Parameter(str, "Slice URN"),
23         Mixed(Parameter(str, "Credential string"),
24               Parameter(type([str]), "List of credentials")),
25         Parameter(str, "RSpec"),
26         Parameter(type([]), "List of user information")
27         ]
28     returns = Parameter(str, "Allocated RSpec")
29
30     def call(self, slice_xrn, creds, rspec, users):
31         hrn, type = urn_to_hrn(slice_xrn)
32
33         self.api.logger.info("interface: %s\ttarget-hrn: %s\tmethod-name: %s"%(self.api.interface, hrn, self.name))
34
35         # Find the valid credentials
36         valid_creds = self.api.auth.checkCredentials(creds, 'createsliver', hrn)
37         origin_hrn = Credential(string=valid_creds[0]).get_gid_caller().get_hrn()
38
39         manager = self.api.get_interface_manager()
40         
41         # flter rspec through sfatables
42         if self.api.interface in ['aggregate']:
43             chain_name = 'INCOMING'
44         elif self.api.interface in ['slicemgr']:
45             chain_name = 'FORWARD-INCOMING'
46         rspec = run_sfatables(chain_name, hrn, origin_hrn, rspec)
47         allocated = manager.create_slice(self.api, slice_xrn, creds, rspec, users)
48
49         return rspec