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

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

Expose the function for clearing the cache.

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