030bcdeda4fc862f41aa4dee9e42938fa3ae8c0f
[plcapi.git] / PLC / SliceAttributeTypes.py
1 from types import StringTypes
2
3 from PLC.Faults import *
4 from PLC.Parameter import Parameter
5 from PLC.Filter import Filter
6 from PLC.Table import Row, Table
7 from PLC.Roles import Role, Roles
8
9 class SliceAttributeType(Row):
10     """
11     Representation of a row in the slice_attribute_types table. To
12     use, instantiate with a dict of values.
13     """
14
15     table_name = 'slice_attribute_types'
16     primary_key = 'attribute_type_id'
17     join_tables = ['slice_attribute']
18     fields = {
19         'attribute_type_id': Parameter(int, "Slice attribute type identifier"),
20         'name': Parameter(str, "Slice attribute type name", max = 100),
21         'description': Parameter(str, "Slice attribute type description", max = 254),
22         'min_role_id': Parameter(int, "Minimum (least powerful) role that can set or change this attribute"),
23         }
24
25     def validate_name(self, name):
26         if not len(name):
27             raise PLCInvalidArgument, "Slice attribute type name must be set"
28
29         conflicts = SliceAttributeTypes(self.api, [name])
30         for attribute in conflicts:
31             if 'attribute_type_id' not in self or \
32                self['attribute_type_id'] != attribute['attribute_type_id']:
33                 raise PLCInvalidArgument, "Slice attribute type name already in use"
34
35         return name
36
37     def validate_min_role_id(self, role_id):
38         roles = [row['role_id'] for row in Roles(self.api)]
39         if role_id not in roles:
40             raise PLCInvalidArgument, "Invalid role"
41
42         return role_id
43
44 class SliceAttributeTypes(Table):
45     """
46     Representation of row(s) from the slice_attribute_types table in the
47     database.
48     """
49
50     def __init__(self, api, attribute_type_filter = None, columns = None):
51         Table.__init__(self, api, SliceAttributeType, columns)
52
53         sql = "SELECT %s FROM slice_attribute_types WHERE True" % \
54               ", ".join(self.columns)
55
56         if attribute_type_filter is not None:
57             if isinstance(attribute_type_filter, (list, tuple, set)):
58                 # Separate the list into integers and strings
59                 ints = filter(lambda x: isinstance(x, (int, long)), attribute_type_filter)
60                 strs = filter(lambda x: isinstance(x, StringTypes), attribute_type_filter)
61                 attribute_type_filter = Filter(SliceAttributeType.fields, {'attribute_type_id': ints, 'name': strs})
62                 sql += " AND (%s) %s" % attribute_type_filter.sql(api, "OR")
63             elif isinstance(attribute_type_filter, dict):
64                 attribute_type_filter = Filter(SliceAttributeType.fields, attribute_type_filter)
65                 sql += " AND (%s) %s" % attribute_type_filter.sql(api, "AND")
66
67         self.selectall(sql)