source: trunk/packages/sipb-xen-database/python/database/models.py @ 1250

Last change on this file since 1250 was 1250, checked in by broder, 16 years ago

Fix a typo in the new CDROM table

File size: 5.3 KB
RevLine 
[13]1from sqlalchemy import *
[991]2from sqlalchemy import orm
[946]3from sqlalchemy.orm import create_session, relation
[13]4
[18]5from sqlalchemy.ext.sessioncontext import SessionContext
6from sqlalchemy.ext.assignmapper import assign_mapper
7
[77]8__all__ = ['meta',
[991]9           'session',
[296]10           'clear_cache',
[77]11           'machine_table',
[243]12           'machine_access_table',
[77]13           'nic_table',
14           'disk_table',
15           'types_table',
[108]16           'cdroms_table',
[443]17           'autoinstalls_table',
[77]18           'Machine',
[243]19           'MachineAccess',
[77]20           'NIC',
21           'Disk',
[108]22           'Type',
[443]23           'CDROM',
24           'Autoinstall',
[874]25           'or_',
[443]26           ]
[77]27
[946]28meta = ThreadLocalMetaData()
[1014]29session = orm.scoped_session(orm.sessionmaker(transactional=False, autoflush=False))
[13]30
31machine_table = Table('machines', meta,
32       Column('machine_id', Integer, primary_key=True, nullable=False),
33       Column('name', String, nullable=False),
[609]34       Column('description', String, nullable=False),
[13]35       Column('memory', Integer, nullable=False),
36       Column('owner', String, nullable=False),
37       Column('contact', String, nullable=False),
38       Column('uuid', String, nullable=False),
[168]39       Column('administrator', String, nullable=False, default=False),
[13]40       Column('type_id', String, ForeignKey('types.type_id'), nullable=False),
41       Column('autorestart', Boolean, nullable=False, default=False),
[874]42       Column('cpus', Integer, nullable=False, default=1),
43       Column('adminable', Boolean, nullable=False, default=False))
[13]44
45nic_table = Table('nics', meta,
46       Column('machine_id', Integer, ForeignKey('machines.machine_id'), nullable=True),
[106]47       Column('mac_addr', String, nullable=False, primary_key=True),
[107]48       Column('ip', String, nullable=False, unique=True),
[106]49       Column('hostname', String, nullable=True))
[13]50
51disk_table = Table('disks', meta,
52       Column('machine_id', Integer, ForeignKey('machines.machine_id'), nullable=False),
53       Column('guest_device_name', String, nullable=False),
54       Column('size', Integer, nullable=False),
55       PrimaryKeyConstraint('machine_id', 'guest_device_name'))
56
57types_table = Table('types', meta,
58       Column('type_id', String, primary_key=True, nullable=False),
59       Column('description', String, nullable=False),
[64]60       Column('hvm', Boolean, nullable=False),
[13]61       Column('apic', Boolean, nullable=False),
62       Column('acpi', Boolean, nullable=False),
63       Column('pae', Boolean, nullable=False))
64
[1247]65mirrors_table = Table('mirrors', meta,
66       Column('mirror_id', String, primary_key=True, nullable=False),
67       Column('uri_prefix', String, nullable=False))
68
[108]69cdroms_table = Table('cdroms', meta,
70       Column('cdrom_id', String, primary_key=True, nullable=False),
[1247]71       Column('description', String, nullable=False),
[1250]72       Column('mirror_id', String, ForeignKey('mirrors.mirror_id')),
[1247]73       Column('uri_suffix', String))
[18]74
[443]75autoinstalls_table = Table('autoinstalls', meta,
76       Column('autoinstall_id', String, primary_key=True, nullable=False),
77       Column('description', String, nullable=False),
[630]78       Column('type_id', String, ForeignKey('types.type_id'), nullable=False),
79       Column('distribution', String, nullable=False),
80       Column('mirror', String, nullable=False))
[443]81
[238]82machine_access_table = Table('machine_access', meta,
[1174]83       Column('machine_id', Integer, ForeignKey('machines.machine_id', ondelete='CASCADE'), nullable=False, index=True),
[238]84       Column('user', String, nullable=False, index=True),
[1174]85       PrimaryKeyConstraint('machine_id', 'user'))
[108]86
[18]87class Machine(object):
[204]88    def __repr__(self):
89        return "<Machine %s: name='%s' owner='%s'>" % (self.machine_id, self.name, self.owner)
[18]90
[238]91class MachineAccess(object):
92    def __repr__(self):
93        return "<MachineAccess machine='%s' user='%s'>" % (self.machine, self.user)
94
[18]95class NIC(object):
[204]96    def __repr__(self):
97        return "<NIC: mac='%s' machine='%s' ip='%s' hostname='%s'>" % (self.mac_addr, self.machine_id, self.ip, self.hostname)
[18]98
99class Disk(object):
[204]100    def __repr__(self):
101        return "<Disk: machine=%s device=%s size=%s>" % (self.machine_id, self.guest_device_name, self.size)
[18]102
103class Type(object):
[204]104    def __repr__(self):
105        return "<Type %s: %s>" % (self.type_id, self.description)
[18]106
[1247]107class Mirror(object):
108    def __repr__(self):
109        return "<Mirror %s>" % (self.mirror_id)
110
[108]111class CDROM(object):
[204]112    def __repr__(self):
113        return "<CDROM %s: %s>" % (self.cdrom_id, self.description)
[18]114
[443]115class Autoinstall(object):
116    def __repr__(self):
117        return "<Autoinstall %s: %s (%s)>" % (self.autoinstall_id, self.description, self.type.type_id)
118
[991]119session.mapper(Machine, machine_table,
[555]120              properties={'nics': relation(NIC, backref="machine", lazy=False),
121                          'disks': relation(Disk, backref="machine", lazy=False),
122                          'type': relation(Type, lazy=False),
[592]123                          'acl': relation(MachineAccess, backref="machine", lazy=False, passive_deletes=True, cascade="all, delete-orphan")});
[991]124session.mapper(MachineAccess, machine_access_table)
125session.mapper(NIC, nic_table)
126session.mapper(Disk, disk_table)
127session.mapper(Type, types_table)
[1247]128session.mapper(Mirror, mirrors_table)
[991]129session.mapper(CDROM, cdroms_table)
130session.mapper(Autoinstall, autoinstalls_table)
[287]131
132def clear_cache():
[1136]133    """Clear sqlalchemy's cache
134    """
[287]135
[1136]136    session.clear()
Note: See TracBrowser for help on using the repository browser.