X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-database.git/blobdiff_plain/524e132a1c281a679f2dfd5e3336d4999f49d81a..fe334bb175017b9c5988159652718e29dafe83cd:/python/database/models.py diff --git a/python/database/models.py b/python/database/models.py index df3707f..2944a1f 100644 --- a/python/database/models.py +++ b/python/database/models.py @@ -14,14 +14,18 @@ __all__ = ['meta', 'disk_table', 'types_table', 'cdroms_table', + 'mirrors_table', 'autoinstalls_table', + 'owners_table', 'Machine', 'MachineAccess', 'NIC', 'Disk', 'Type', 'CDROM', + 'Mirror', 'Autoinstall', + 'Owner', 'or_', ] @@ -36,7 +40,7 @@ machine_table = Table('machines', meta, Column('owner', String, nullable=False), Column('contact', String, nullable=False), Column('uuid', String, nullable=False), - Column('administrator', String, nullable=False, default=False), + Column('administrator', String, nullable=True, default=None), Column('type_id', String, ForeignKey('types.type_id'), nullable=False), Column('autorestart', Boolean, nullable=False, default=False), Column('cpus', Integer, nullable=False, default=1), @@ -62,21 +66,33 @@ types_table = Table('types', meta, Column('acpi', Boolean, nullable=False), Column('pae', Boolean, nullable=False)) +mirrors_table = Table('mirrors', meta, + Column('mirror_id', String, primary_key=True, nullable=False), + Column('uri_prefix', String, nullable=False)) + cdroms_table = Table('cdroms', meta, Column('cdrom_id', String, primary_key=True, nullable=False), - Column('description', String, nullable=False)) + Column('description', String, nullable=False), + Column('mirror_id', String, ForeignKey('mirrors.mirror_id')), + Column('uri_suffix', String)) autoinstalls_table = Table('autoinstalls', meta, Column('autoinstall_id', String, primary_key=True, nullable=False), Column('description', String, nullable=False), Column('type_id', String, ForeignKey('types.type_id'), nullable=False), Column('distribution', String, nullable=False), - Column('mirror', String, nullable=False)) + Column('mirror', String, nullable=False), + Column('arch', String, nullable=False)) + +owners_table = Table('owners', meta, + Column('owner_id', String, primary_key=True, nullable=False), + Column('ram_quota_total', Integer, nullable=True), + Column('ram_quota_single', Integer, nullable=True)) machine_access_table = Table('machine_access', meta, - Column('machine_id', Integer, ForeignKey('machines.machine_id'), nullable=False, index=True), + Column('machine_id', Integer, ForeignKey('machines.machine_id', ondelete='CASCADE'), nullable=False, index=True), Column('user', String, nullable=False, index=True), - PrimaryKeyConstraint('machine_id', 'user', ondelete='CASCADE')) + PrimaryKeyConstraint('machine_id', 'user')) class Machine(object): def __repr__(self): @@ -98,6 +114,10 @@ class Type(object): def __repr__(self): return "" % (self.type_id, self.description) +class Mirror(object): + def __repr__(self): + return "" % (self.mirror_id) + class CDROM(object): def __repr__(self): return "" % (self.cdrom_id, self.description) @@ -106,17 +126,22 @@ class Autoinstall(object): def __repr__(self): return "" % (self.autoinstall_id, self.description, self.type.type_id) +from owner import Owner + session.mapper(Machine, machine_table, - properties={'nics': relation(NIC, backref="machine", lazy=False), - 'disks': relation(Disk, backref="machine", lazy=False), - 'type': relation(Type, lazy=False), - 'acl': relation(MachineAccess, backref="machine", lazy=False, passive_deletes=True, cascade="all, delete-orphan")}); + properties={'nics': relation(NIC, backref="machine"), + 'disks': relation(Disk, backref="machine"), + 'type': relation(Type), + 'acl': relation(MachineAccess, backref="machine", passive_deletes=True, cascade="all, delete-orphan")}); session.mapper(MachineAccess, machine_access_table) session.mapper(NIC, nic_table) session.mapper(Disk, disk_table) session.mapper(Type, types_table) -session.mapper(CDROM, cdroms_table) +session.mapper(Mirror, mirrors_table) +session.mapper(CDROM, cdroms_table, + properties={'mirror': relation(Mirror, backref="cdroms")}) session.mapper(Autoinstall, autoinstalls_table) +session.mapper(Owner, owners_table) def clear_cache(): """Clear sqlalchemy's cache