Fix version output when missing.
[plcapi.git] / PLC / NodeTypes.py
1 #
2 # Functions for interacting with the node_types table in the database
3 #
4 # $Id$
5 # $URL$
6 #
7
8 from PLC.Faults import *
9 from PLC.Parameter import Parameter
10 from PLC.Table import Row, Table
11
12 class NodeType(Row):
13     """
14     Representation of a row in the node_types table. To use,
15     instantiate with a dict of values.
16     """
17
18     table_name = 'node_types'
19     primary_key = 'node_type'
20     join_tables = ['nodes']
21     fields = {
22         'node_type': Parameter(str, "Node type", max = 20),
23         }
24
25     def validate_node_type(self, name):
26         # Make sure name is not blank
27         if not len(name):
28             raise PLCInvalidArgument, "Node type must be specified"
29
30         # Make sure node type does not alredy exist
31         conflicts = NodeTypes(self.api, [name])
32         if conflicts:
33             raise PLCInvalidArgument, "Node type name already in use"
34
35         return name
36
37 class NodeTypes(Table):
38     """
39     Representation of the node_types table in the database.
40     """
41
42     def __init__(self, api, node_types = None):
43         Table.__init__(self, api, NodeType)
44
45         sql = "SELECT %s FROM node_types" % \
46               ", ".join(NodeType.fields)
47
48         if node_types:
49             sql += " WHERE node_type IN (%s)" % ", ".join(map(api.db.quote, node_types))
50
51         self.selectall(sql)