Merge branch 'master' into eucalyptus-devel
[sfa.git] / sfa / rspecs / pg_rspec.py
1 #!/usr/bin/python 
2 from lxml import etree
3 from StringIO import StringIO
4 from sfa.rspecs.rspec import RSpec 
5 from sfa.util.xrn import *
6 from sfa.util.plxrn import hostname_to_urn, xrn_to_hostname
7 from sfa.util.config import Config 
8 from sfa.rspecs.rspec_version import RSpecVersion 
9
10 _ad_version = {'type':  'ProtoGENI',
11             'version': '2',
12             'schema': 'http://www.protogeni.net/resources/rspec/2/ad.xsd',
13             'namespace': 'http://www.protogeni.net/resources/rspec/2',
14             'extensions':  [
15                 'http://www.protogeni.net/resources/rspec/ext/gre-tunnel/1',
16                 'http://www.protogeni.net/resources/rspec/ext/other-ext/3'
17             ]
18 }
19
20 _request_version = {'type':  'ProtoGENI',
21             'version': '2',
22             'schema': 'http://www.protogeni.net/resources/rspec/2/request.xsd',
23             'namespace': 'http://www.protogeni.net/resources/rspec/2',
24             'extensions':  [
25                 'http://www.protogeni.net/resources/rspec/ext/gre-tunnel/1',
26                 'http://www.protogeni.net/resources/rspec/ext/other-ext/3'
27             ]
28 }
29 pg_rspec_ad_version = RSpecVersion(_ad_version)
30 pg_rspec_request_version = RSpecVersion(_request_version)
31
32 class PGRSpec(RSpec):
33     xml = None
34     header = '<?xml version="1.0"?>\n'
35     template = '<rspec xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.protogeni.net/resources/rspec/2" xsi:schemaLocation="http://www.protogeni.net/resources/rspec/2 http://www.protogeni.net/resources/rspec/2/%(rspec_type)s.xsd"/>'
36
37     def __init__(self, rspec="", namespaces={}, type=None):
38         if not type:
39             type = 'advertisement'
40         self.type = type
41
42         if type == 'advertisement':
43             self.version = pg_rspec_ad_version
44             rspec_type = 'ad'
45         else:
46             self.version = pg_rspec_request_version
47             rspec_type = type
48         
49         self.template = self.template % {'rspec_type': rspec_type}
50
51         if not namespaces:
52             self.namespaces = {'rspecv2': self.version['namespace']}
53         else:
54             self.namespaces = namespaces 
55
56         if rspec:
57             self.parse_rspec(rspec, self.namespaces)
58         else: 
59             self.create()
60
61     def create(self):
62         RSpec.create(self)
63         if self.type:
64             self.xml.set('type', self.type) 
65        
66     def get_network(self):
67         network = None 
68         nodes = self.xml.xpath('//rspecv2:node[@component_manager_uuid][1]', namespaces=self.namespaces)
69         if nodes:
70             network  = nodes[0].get('component_manager_uuid')
71         return network
72
73     def get_networks(self):
74         networks = self.xml.xpath('//rspecv2:node[@component_manager_uuid]/@component_manager_uuid', namespaces=self.namespaces)
75         return set(networks)
76
77     def get_node_elements(self):
78         nodes = self.xml.xpath('//rspecv2:node | //node', namespaces=self.namespaces)
79         return nodes
80
81     def get_nodes(self, network=None):
82         xpath = '//rspecv2:node[@component_name]/@component_id | //node[@component_name]/@component_id'
83         nodes = self.xml.xpath(xpath, namespaces=self.namespaces)
84         nodes = [xrn_to_hostname(node) for node in nodes]
85         return nodes 
86
87     def get_nodes_with_slivers(self, network=None):
88         if network:
89             nodes = self.xml.xpath('//rspecv2:node[@component_manager_id="%s"][sliver_type]/@component_id' % network, namespaces=self.namespaces)
90         else:
91             nodes = self.xml.xpath('//rspecv2:node[rspecv2:sliver_type]/@component_id', namespaces=self.namespaces)
92         nodes = [xrn_to_hostname(node) for node in nodes]
93         return nodes
94
95     def get_nodes_without_slivers(self, network=None):
96         return []
97    
98     def get_slice_attributes(self, network=None):
99         return []
100
101     def attributes_list(self, elem):
102         opts = []
103         if elem is not None:
104             for e in elem:
105                 opts.append((e.tag, e.text))
106         return opts
107
108     def get_default_sliver_attributes(self, network=None):
109         return []
110
111     def add_default_sliver_attribute(self, name, value, network=None):
112         pass
113
114     def add_nodes(self, nodes, check_for_dupes=False):
115         if not isinstance(nodes, list):
116             nodes = [nodes]
117         for node in nodes:
118             urn = ""
119             if check_for_dupes and \
120               self.xml.xpath('//rspecv2:node[@component_uuid="%s"]' % urn, namespaces=self.namespaces):
121                 # node already exists
122                 continue
123                 
124             node_tag = etree.SubElement(self.xml, 'node', exclusive='false')
125             if 'network_urn' in node:
126                 node_tag.set('component_manager_id', node['network_urn'])
127             if 'urn' in node:
128                 node_tag.set('component_id', node['urn'])
129             if 'hostname' in node:
130                 node_tag.set('component_name', node['hostname'])
131             # TODO: should replace plab-pc with pc model 
132             node_type_tag = etree.SubElement(node_tag, 'hardware_type', name='plab-pc')
133             node_type_tag = etree.SubElement(node_tag, 'hardware_type', name='pc')
134             available_tag = etree.SubElement(node_tag, 'available', now='true')
135             sliver_type_tag = etree.SubElement(node_tag, 'sliver_type', name='plab-vnode')
136             # protogeni uses the <sliver_type> tag to identify the types of
137             # vms available at the node. 
138             # only add location tag if longitude and latitude are not null
139             if 'site' in node:
140                 longitude = node['site'].get('longitude', None)
141                 latitude = node['site'].get('latitude', None)
142                 if longitude and latitude:
143                     location_tag = etree.SubElement(node_tag, 'location', country="us", \
144                                                     longitude=str(longitude), latitude=str(latitude))
145
146
147     def add_slivers(self, slivers, sliver_urn=None, no_dupes=False): 
148
149         # all nodes hould already be present in the rspec. Remove all 
150         # nodes that done have slivers
151         slivers = self._process_slivers(slivers)
152         sliver_hosts = [sliver['hostname'] for sliver in slivers]
153         nodes = self.get_node_elements()
154         for node in nodes:
155             urn = node.get('component_id')
156             hostname = xrn_to_hostname(urn)
157             if hostname not in sliver_hosts:
158                 parent = node.getparent()
159                 parent.remove(node)
160             else:
161                 node.set('client_id', hostname)
162                 if sliver_urn:
163                     node.set('sliver_id', sliver_urn)
164      
165     def add_default_sliver_attribute(self, name, value, network=None):
166         pass
167
168     def add_interfaces(self, interfaces, no_dupes=False):
169         pass
170
171     def add_links(self, links, no_dupes=False):
172         pass
173
174
175     def merge(self, in_rspec):
176         """
177         Merge contents for specified rspec with current rspec
178         """
179         
180         # just copy over all the child elements under the root element
181         tree = etree.parse(StringIO(in_rspec))
182         root = tree.getroot()
183         for child in root.getchildren():
184             self.xml.append(child)
185                   
186     def cleanup(self):
187         # remove unncecessary elements, attributes
188         if self.type in ['request', 'manifest']:
189             # remove 'available' element from remaining node elements
190             self.remove_element('//rspecv2:available | //available')
191
192 if __name__ == '__main__':
193     rspec = PGRSpec()
194     rspec.add_nodes([1])
195     print rspec