source: trunk/packages/sipb-xen-database/sipb-xen-database/sipb_xen_database/models.py @ 296

Last change on this file since 296 was 296, checked in by ecprice, 16 years ago

Actually expose the function

File size: 4.0 KB
Line 
1from sqlalchemy import *
2
3from sqlalchemy.ext.sessioncontext import SessionContext
4from sqlalchemy.ext.assignmapper import assign_mapper
5
6__all__ = ['meta',
7           'ctx',
8           'clear_cache',
9           'machine_table',
10           'machine_access_table',
11           'nic_table',
12           'disk_table',
13           'types_table',
14           'cdroms_table',
15           'Machine',
16           'MachineAccess',
17           'NIC',
18           'Disk',
19           'Type',
20           'CDROM']
21
22meta = DynamicMetaData()
23ctx = SessionContext(create_session)
24
25machine_table = Table('machines', meta,
26       Column('machine_id', Integer, primary_key=True, nullable=False),
27       Column('name', String, nullable=False),
28       Column('memory', Integer, nullable=False),
29       Column('owner', String, nullable=False),
30       Column('contact', String, nullable=False),
31       Column('uuid', String, nullable=False),
32       Column('administrator', String, nullable=False, default=False),
33       Column('type_id', String, ForeignKey('types.type_id'), nullable=False),
34       Column('autorestart', Boolean, nullable=False, default=False),
35       Column('cpus', Integer, nullable=False, default=1))
36
37nic_table = Table('nics', meta,
38       Column('machine_id', Integer, ForeignKey('machines.machine_id'), nullable=True),
39       Column('mac_addr', String, nullable=False, primary_key=True),
40       Column('ip', String, nullable=False, unique=True),
41       Column('hostname', String, nullable=True))
42
43disk_table = Table('disks', meta,
44       Column('machine_id', Integer, ForeignKey('machines.machine_id'), nullable=False),
45       Column('guest_device_name', String, nullable=False),
46       Column('size', Integer, nullable=False),
47       PrimaryKeyConstraint('machine_id', 'guest_device_name'))
48
49types_table = Table('types', meta,
50       Column('type_id', String, primary_key=True, nullable=False),
51       Column('description', String, nullable=False),
52       Column('hvm', Boolean, nullable=False),
53       Column('apic', Boolean, nullable=False),
54       Column('acpi', Boolean, nullable=False),
55       Column('pae', Boolean, nullable=False))
56
57cdroms_table = Table('cdroms', meta,
58       Column('cdrom_id', String, primary_key=True, nullable=False),
59       Column('description', String, nullable=False))
60
61machine_access_table = Table('machine_access', meta,
62       Column('machine_id', Integer, ForeignKey('machines.machine_id'), nullable=False, index=True),
63       Column('user', String, nullable=False, index=True),
64       PrimaryKeyConstraint('machine_id', 'user'))
65
66class Machine(object):
67    def __repr__(self):
68        return "<Machine %s: name='%s' owner='%s'>" % (self.machine_id, self.name, self.owner)
69
70class MachineAccess(object):
71    def __repr__(self):
72        return "<MachineAccess machine='%s' user='%s'>" % (self.machine, self.user)
73
74class NIC(object):
75    def __repr__(self):
76        return "<NIC: mac='%s' machine='%s' ip='%s' hostname='%s'>" % (self.mac_addr, self.machine_id, self.ip, self.hostname)
77
78class Disk(object):
79    def __repr__(self):
80        return "<Disk: machine=%s device=%s size=%s>" % (self.machine_id, self.guest_device_name, self.size)
81
82class Type(object):
83    def __repr__(self):
84        return "<Type %s: %s>" % (self.type_id, self.description)
85
86class CDROM(object):
87    def __repr__(self):
88        return "<CDROM %s: %s>" % (self.cdrom_id, self.description)
89
90assign_mapper(ctx, Machine, machine_table,
91              properties={'nics': relation(NIC, backref="machine"),
92                          'disks': relation(Disk, backref="machine"),
93                          'type': relation(Type),
94                          'acl': relation(MachineAccess, backref="machine")});
95assign_mapper(ctx, MachineAccess, machine_access_table)
96assign_mapper(ctx, NIC, nic_table)
97assign_mapper(ctx, Disk, disk_table)
98assign_mapper(ctx, Type, types_table)
99assign_mapper(ctx, CDROM, cdroms_table)
100
101def clear_cache():
102    """Clear sqlalchemy's cache.
103
104    This _seems_ to be the way; it works, but the docs don't mention
105    it.  Why is this so obscure?"""
106
107    ctx.registry.clear()
Note: See TracBrowser for help on using the repository browser.