Strip out VINI-specific stuff
[sfa.git] / sfa / plc / network.py
1 from __future__ import with_statement
2 import re
3 import socket
4 from sfa.util.namespace import *
5 from sfa.util.faults import *
6 from xmlbuilder import XMLBuilder
7 from lxml import etree
8 import sys
9 from StringIO import StringIO
10
11
12 class Sliver:
13     def __init__(self, node):
14         self.node = node
15         self.network = node.network
16         self.slice = node.network.slice
17         
18     def toxml(self, xml):
19         with xml.sliver:
20             self.slice.tags_to_xml(xml, self.node)
21
22         
23 class Iface:
24     def __init__(self, network, iface):
25         self.network = network
26         self.id = iface['interface_id']
27         self.idtag = "i%s" % self.id
28         self.ipv4 = iface['ip']
29         self.bwlimit = iface['bwlimit']
30         self.hostname = iface['hostname']
31
32     """
33     Just print out bwlimit right now
34     """
35     def toxml(self, xml):
36         if self.bwlimit:
37             with xml.bw_limit(units="kbps"):
38                 xml << str(self.bwlimit / 1000)
39
40
41 class Node:
42     def __init__(self, network, node, bps = 1000 * 1000000):
43         self.network = network
44         self.id = node['node_id']
45         self.idtag = "n%s" % self.id
46         self.hostname = node['hostname']
47         self.site_id = node['site_id']
48         self.iface_ids = node['interface_ids']
49         self.sliver = None
50         self.whitelist = node['slice_ids_whitelist']
51
52     def get_ifaces(self):
53         i = []
54         for id in self.iface_ids:
55             i.append(self.network.lookupIface(id))
56             # Only return the first interface
57             break
58         return i
59         
60     def get_site(self):
61         return self.network.lookupSite(self.site_id)
62     
63     def add_sliver(self):
64         self.sliver = Sliver(self)
65
66     def toxml(self, xml):
67         slice = self.network.slice
68         if self.whitelist and not self.sliver:
69             if not slice or slice.id not in self.whitelist:
70                 return
71
72         with xml.node(id = self.idtag):
73             with xml.hostname:
74                 xml << self.hostname
75             if self.network.type == "VINI":
76                 with xml.kbps:
77                     xml << str(int(self.bps/1000))
78             for iface in self.get_ifaces():
79                 iface.toxml(xml)
80             if self.sliver:
81                 self.sliver.toxml(xml)
82     
83
84 class Site:
85     def __init__(self, network, site):
86         self.network = network
87         self.id = site['site_id']
88         self.idtag = "s%s" % self.id
89         self.node_ids = site['node_ids']
90         self.node_ids.sort()
91         self.name = site['abbreviated_name']
92         self.tag = site['login_base']
93         self.public = site['is_public']
94         self.enabled = site['enabled']
95         self.links = set()
96         self.whitelist = False
97
98     def get_sitenodes(self):
99         n = []
100         for i in self.node_ids:
101             n.append(self.network.lookupNode(i))
102         return n
103     
104     def toxml(self, xml):
105         if not (self.public and self.enabled and self.node_ids):
106             return
107         with xml.site(id = self.idtag):
108             with xml.name:
109                 xml << self.name
110             for node in self.get_sitenodes():
111                 node.toxml(xml)
112    
113     
114 class Slice:
115     def __init__(self, network, hrn, slice):
116         self.hrn = hrn
117         self.network = network
118         self.id = slice['slice_id']
119         self.name = slice['name']
120         self.node_ids = set(slice['node_ids'])
121         self.slice_tag_ids = slice['slice_tag_ids']
122     
123     """
124     Use with tags that can have more than one instance
125     """
126     def get_tags(self, tagname, node = None):
127         tags = []
128         for i in self.slice_tag_ids:
129             tag = self.network.lookupSliceTag(i)
130             if tag.tagname == tagname:
131                 if not (node and node.id != tag.node_id):
132                     tags.append(tag)
133         return tags
134         
135     """
136     Use with tags that have only one instance
137     """
138     def get_tag(self, tagname, node = None):
139         for i in self.slice_tag_ids:
140             tag = self.network.lookupSliceTag(i)
141             if tag.tagname == tagname:
142                 if (not node) or (node.id == tag.node_id):
143                     return tag
144         return None
145         
146     def get_nodes(self):
147         n = []
148         for id in self.node_ids:
149             n.append(self.network.nodes[id])
150         return n
151   
152     # Add a new slice tag   
153     def add_tag(self, tagname, value, node = None):
154         record = {'slice_tag_id':None, 'slice_id':self.id, 'tagname':tagname, 'value':value}
155         if node:
156             record['node_id'] = node.id
157         else:
158             record['node_id'] = None
159         tag = Slicetag(record)
160         self.network.slicetags[tag.id] = tag
161         self.slice_tag_ids.append(tag.id)
162         tag.changed = True       
163         tag.updated = True
164         return tag
165     
166     # Update a slice tag if it exists, else add it             
167     def update_tag(self, tagname, value, node = None):
168         tag = self.get_tag(tagname, node)
169         if tag and tag.value == value:
170             value = "no change"
171         elif tag:
172             tag.value = value
173             tag.changed = True
174         else:
175             tag = self.add_tag(tagname, value, node)
176         tag.updated = True
177             
178     def tags_to_xml(self, xml, node = None):
179         tag = self.get_tag("cpu_pct", node)
180         if tag:
181             with xml.cpu_percent:
182                 xml << tag.value
183         tags = self.get_tags("vsys", node)
184         for tag in tags:
185             with xml.vsys:
186                 xml << tag.value
187
188     def toxml(self, xml):
189         with xml.sliver_defaults:
190             self.tags_to_xml(xml)
191
192
193 class Slicetag:
194     newid = -1 
195     def __init__(self, tag):
196         self.id = tag['slice_tag_id']
197         if not self.id:
198             # Make one up for the time being...
199             self.id = Slicetag.newid
200             Slicetag.newid -= 1
201         self.slice_id = tag['slice_id']
202         self.tagname = tag['tagname']
203         self.value = tag['value']
204         self.node_id = tag['node_id']
205         self.updated = False
206         self.changed = False
207         self.deleted = False
208     
209     # Mark a tag as deleted
210     def delete(self):
211         self.deleted = True
212         self.updated = True
213     
214     def write(self, api):
215         if self.changed:
216             if int(self.id) > 0:
217                 api.plshell.UpdateSliceTag(api.plauth, self.id, self.value)
218             else:
219                 api.plshell.AddSliceTag(api.plauth, self.slice_id, 
220                                         self.tagname, self.value, self.node_id)
221         elif self.deleted and int(self.id) > 0:
222             api.plshell.DeleteSliceTag(api.plauth, self.id)
223
224
225 """
226 A Network is a compound object consisting of:
227 * a dictionary mapping site IDs to Site objects
228 * a dictionary mapping node IDs to Node objects
229 * a dictionary mapping interface IDs to Iface objects
230 """
231 class Network:
232     def __init__(self, api, type = "PlanetLab"):
233         self.api = api
234         self.type = type
235         self.sites = self.get_sites(api)
236         self.nodes = self.get_nodes(api)
237         self.ifaces = self.get_ifaces(api)
238         self.tags = self.get_slice_tags(api)
239         self.slice = None
240     
241     """ Lookup site based on id or idtag value """
242     def lookupSite(self, id):
243         val = None
244         if isinstance(id, basestring):
245             id = int(id.lstrip('s'))
246         try:
247             val = self.sites[id]
248         except:
249             raise KeyError("site ID %s not found" % id)
250         return val
251     
252     def getSites(self):
253         sites = []
254         for s in self.sites:
255             sites.append(self.sites[s])
256         return sites
257         
258     """ Lookup node based on id or idtag value """
259     def lookupNode(self, id):
260         val = None
261         if isinstance(id, basestring):
262             id = int(id.lstrip('n'))
263         try:
264             val = self.nodes[id]
265         except:
266             raise KeyError("node ID %s not found" % id)
267         return val
268     
269     def getNodes(self):
270         nodes = []
271         for n in self.nodes:
272             nodes.append(self.nodes[n])
273         return nodes
274     
275     """ Lookup iface based on id or idtag value """
276     def lookupIface(self, id):
277         val = None
278         if isinstance(id, basestring):
279             id = int(id.lstrip('i'))
280         try:
281             val = self.ifaces[id]
282         except:
283             raise KeyError("interface ID %s not found" % id)
284         return val
285     
286     def getIfaces(self):
287         ifaces = []
288         for i in self.ifaces:
289             ifaces.append(self.ifaces[i])
290         return ifaces
291     
292     def nodesWithSlivers(self):
293         nodes = []
294         for n in self.nodes:
295             node = self.nodes[n]
296             if node.sliver:
297                 nodes.append(node)
298         return nodes
299             
300     def lookupSliceTag(self, id):
301         val = None
302         try:
303             val = self.tags[id]
304         except:
305             raise KeyError("slicetag ID %s not found" % id)
306         return val
307     
308     def getSliceTags(self):
309         tags = []
310         for t in self.tags:
311             tags.append(self.tags[t])
312         return tags
313     
314     """
315     Annotate the objects in the Network with information from the RSpec
316     """
317     def addRSpec(self, xml):
318         nodedict = {}
319         for node in self.getNodes():
320             nodedict[node.idtag] = node
321             
322         slicenodes = {}
323
324         tree = etree.parse(StringIO(xml))
325
326         if self.schema:
327             # Validate the incoming request against the RelaxNG schema
328             relaxng_doc = etree.parse(self.schema)
329             relaxng = etree.RelaxNG(relaxng_doc)
330         
331             if not relaxng(tree):
332                 error = relaxng.error_log.last_error
333                 message = "%s (line %s)" % (error.message, error.line)
334                 raise InvalidRSpec(message)
335
336         rspec = tree.getroot()
337
338         # Find slivers under node elements
339         for sliver in rspec.iterfind("./network/site/node/sliver"):
340             elem = sliver.getparent()
341             node = nodedict[elem.get("id")]
342             slicenodes[node.id] = node
343             node.add_sliver()
344
345         # Find slivers that specify nodeid
346         for sliver in rspec.iterfind("./request/sliver[@nodeid]"):
347             node = nodedict[sliver.get("nodeid")]
348             slicenodes[node.id] = node
349             node.add_sliver()
350
351         return
352
353     """
354     Annotate the objects in the Network with information from the slice
355     """
356     def addSlice(self):
357         slice = self.slice
358         if not slice:
359             raise Error("no slice associated with network")
360
361         for node in slice.get_nodes():
362             node.add_sliver()
363
364     """
365     Write any slice tags that have been added or modified back to the DB
366     """
367     def updateSliceTags(self, slice):
368         # Update slice tags in database
369         for tag in self.getSliceTags():
370             if tag.slice_id == slice.id:
371                 if tag.tagname == 'topo_rspec' and not tag.updated:
372                     tag.delete()
373                 tag.write(self.api)
374
375     """
376     Produce XML directly from the topology specification.
377     """
378     def toxml(self):
379         xml = XMLBuilder(format = True, tab_step = "  ")
380         with xml.RSpec(type=self.type):
381             name = "Public_" + self.type
382             if self.slice:
383                 element = xml.network(name=name, slice=self.slice.hrn)
384             else:
385                 element = xml.network(name=name)
386                 
387             with element:
388                 if self.slice:
389                     self.slice.toxml(xml)
390                 for site in self.getSites():
391                     site.toxml(xml)
392
393         header = '<?xml version="1.0"?>\n'
394         return header + str(xml)
395
396     """
397     Create a dictionary of site objects keyed by site ID
398     """
399     def get_sites(self, api):
400         tmp = []
401         for site in api.plshell.GetSites(api.plauth):
402             t = site['site_id'], Site(self, site)
403             tmp.append(t)
404         return dict(tmp)
405
406
407     """
408     Create a dictionary of node objects keyed by node ID
409     """
410     def get_nodes(self, api):
411         tmp = []
412         for node in api.plshell.GetNodes(api.plauth):
413             t = node['node_id'], Node(self, node)
414             tmp.append(t)
415         return dict(tmp)
416
417     """
418     Create a dictionary of node objects keyed by node ID
419     """
420     def get_ifaces(self, api):
421         tmp = []
422         for iface in api.plshell.GetInterfaces(api.plauth):
423             t = iface['interface_id'], Iface(self, iface)
424             tmp.append(t)
425         return dict(tmp)
426
427     """
428     Create a dictionary of slicetag objects keyed by slice tag ID
429     """
430     def get_slice_tags(self, api):
431         tmp = []
432         for tag in api.plshell.GetSliceTags(api.plauth):
433             t = tag['slice_tag_id'], Slicetag(tag)
434             tmp.append(t)
435         return dict(tmp)
436     
437     """
438     Return a Slice object for a single slice
439     """
440     def get_slice(self, api, hrn):
441         slicename = hrn_to_pl_slicename(hrn)
442         slice = api.plshell.GetSlices(api.plauth, [slicename])
443         if slice:
444             self.slice = Slice(self, slicename, slice[0])
445             return self.slice
446         else:
447             return None
448     
449