Merge remote-tracking branch 'origin/pycurl' into planetlab-4_0-branch
[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 # $Id: BootStates.py 5574 2007-10-25 20:33:17Z thierry $
8 #
9
10 from PLC.Faults import *
11 from PLC.Parameter import Parameter
12 from PLC.Table import Row, Table
13
14 class BootState(Row):
15     """
16     Representation of a row in the boot_states table. To use,
17     instantiate with a dict of values.
18     """
19
20     table_name = 'boot_states'
21     primary_key = 'boot_state'
22     join_tables = ['nodes']
23     fields = {
24         'boot_state': Parameter(str, "Boot state", max = 20),
25         }
26
27     def validate_boot_state(self, name):
28         # Make sure name is not blank
29         if not len(name):
30             raise PLCInvalidArgument, "Boot state must be specified"
31         
32         # Make sure boot state does not alredy exist
33         conflicts = BootStates(self.api, [name])
34         if conflicts:
35             raise PLCInvalidArgument, "Boot state name already in use"
36
37         return name
38
39 class BootStates(Table):
40     """
41     Representation of the boot_states table in the database.
42     """
43
44     def __init__(self, api, boot_states = None):
45         Table.__init__(self, api, BootState)
46
47         sql = "SELECT %s FROM boot_states" % \
48               ", ".join(BootState.fields)
49         
50         if boot_states:
51             sql += " WHERE boot_state IN (%s)" % ", ".join(map(api.db.quote, boot_states))
52
53         self.selectall(sql)