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

Last change on this file since 622 was 609, checked in by andersk, 16 years ago

Add a description field.

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