Fix version output when missing.
[plcapi.git] / PLC / SliceInstantiations.py
1 #
2 # Functions for interacting with the slice_instantiations table in the database
3 #
4 # Mark Huang <mlhuang@cs.princeton.edu>
5 # Copyright (C) 2006 The Trustees of Princeton University
6 #
7 # $Id$
8 # $URL$
9 #
10
11 from PLC.Faults import *
12 from PLC.Parameter import Parameter
13 from PLC.Table import Row, Table
14
15 class SliceInstantiation(Row):
16     """
17     Representation of a row in the slice_instantiations table. To use,
18     instantiate with a dict of values.
19     """
20
21     table_name = 'slice_instantiations'
22     primary_key = 'instantiation'
23     join_tables = ['slices']
24     fields = {
25         'instantiation': Parameter(str, "Slice instantiation state", max = 100),
26         }
27
28     def validate_instantiation(self, instantiation):
29         # Make sure name is not blank
30         if not len(instantiation):
31             raise PLCInvalidArgument, "Slice instantiation state name must be specified"
32
33         # Make sure slice instantiation does not alredy exist
34         conflicts = SliceInstantiations(self.api, [instantiation])
35         if conflicts:
36             raise PLCInvalidArgument, "Slice instantiation state name already in use"
37
38         return instantiation
39
40 class SliceInstantiations(Table):
41     """
42     Representation of the slice_instantiations table in the database.
43     """
44
45     def __init__(self, api, instantiations = None):
46         Table.__init__(self, api, SliceInstantiation)
47
48         sql = "SELECT %s FROM slice_instantiations" % \
49               ", ".join(SliceInstantiation.fields)
50
51         if instantiations:
52             sql += " WHERE instantiation IN (%s)" % ", ".join(map(api.db.quote, instantiations))
53
54         self.selectall(sql)