source: trunk/packages/invirt-database/python/database/models.py @ 2150

Last change on this file since 2150 was 2150, checked in by broder, 15 years ago

Make the default values in the owners class explicit.

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