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