X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-database.git/blobdiff_plain/338300a538a25a187485c5929812100aa19964de..7351d61df8d031c70c58399270f41da09f1e4f94:/python/database/models.py diff --git a/python/database/models.py b/python/database/models.py index e3f2996..9a0266e 100644 --- a/python/database/models.py +++ b/python/database/models.py @@ -5,6 +5,10 @@ from sqlalchemy.orm import create_session, relation from sqlalchemy.ext.sessioncontext import SessionContext from sqlalchemy.ext.assignmapper import assign_mapper +import datetime + +from invirt.database import record + __all__ = ['meta', 'session', 'clear_cache', @@ -16,6 +20,9 @@ __all__ = ['meta', 'cdroms_table', 'mirrors_table', 'autoinstalls_table', + 'owners_table', + 'admins_table', + 'builds_table', 'Machine', 'MachineAccess', 'NIC', @@ -24,6 +31,9 @@ __all__ = ['meta', 'CDROM', 'Mirror', 'Autoinstall', + 'Owner', + 'Admin', + 'Build', 'or_', ] @@ -32,7 +42,7 @@ session = orm.scoped_session(orm.sessionmaker(transactional=False, autoflush=Fal machine_table = Table('machines', meta, Column('machine_id', Integer, primary_key=True, nullable=False), - Column('name', String, nullable=False), + Column('name', String, nullable=False, unique=True), Column('description', String, nullable=False), Column('memory', Integer, nullable=False), Column('owner', String, nullable=False), @@ -48,7 +58,8 @@ nic_table = Table('nics', meta, Column('machine_id', Integer, ForeignKey('machines.machine_id'), nullable=True), Column('mac_addr', String, nullable=False, primary_key=True), Column('ip', String, nullable=False, unique=True), - Column('hostname', String, nullable=True)) + Column('hostname', String, nullable=True), + Column('reusable', Boolean, nullable=False, default=True)) disk_table = Table('disks', meta, Column('machine_id', Integer, ForeignKey('machines.machine_id'), nullable=False), @@ -82,42 +93,66 @@ autoinstalls_table = Table('autoinstalls', meta, 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, default=None), + Column('ram_quota_single', Integer, nullable=True, default=None), + Column('disk_quota_total', Integer, nullable=True, default=None), + Column('disk_quota_single', Integer, nullable=True, default=None), + Column('vms_quota_total', Integer, nullable=True, default=None), + Column('vms_quota_active', Integer, nullable=True, default=None)) + +builds_table = Table('builds', meta, + Column('build_id', Integer, primary_key=True, nullable=False), + Column('package', String, nullable=False), + Column('pocket', String, nullable=False), + Column('commit', String, nullable=False), + Column('version', String, nullable=True, default=None), + Column('principal', String, nullable=False), + Column('succeeded', Boolean, nullable=True), + Column('failed_stage', String, nullable=True, default=None), + Column('traceback', String, nullable=True, default=None), + Column('inserted_at', DateTime, nullable=False, default=datetime.datetime.utcnow)) + machine_access_table = Table('machine_access', meta, 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')) -class Machine(object): - def __repr__(self): - return "" % (self.machine_id, self.name, self.owner) +admins_table = Table('admins', meta, + Column('user', String, nullable=False, index=True, primary_key=True)) + +class Machine(record.Record): + _identity_field = 'name' + +class MachineAccess(record.Record): + pass + +class NIC(record.Record): + pass + +class Disk(record.Record): + pass -class MachineAccess(object): - def __repr__(self): - return "" % (self.machine, self.user) +class Type(record.Record): + _identity_field = 'type_id' -class NIC(object): - def __repr__(self): - return "" % (self.mac_addr, self.machine_id, self.ip, self.hostname) +class Mirror(record.Record): + _identity_field = 'mirror_id' -class Disk(object): - def __repr__(self): - return "" % (self.machine_id, self.guest_device_name, self.size) +class CDROM(record.Record): + _identity_field = 'cdrom_id' -class Type(object): - def __repr__(self): - return "" % (self.type_id, self.description) +class Autoinstall(record.Record): + _identity_field = 'autoinstall_id' -class Mirror(object): - def __repr__(self): - return "" % (self.mirror_id) +class Admin(record.Record): + _identity_field = 'user' -class CDROM(object): - def __repr__(self): - return "" % (self.cdrom_id, self.description) +class Build(record.Record): + _identity_field = 'build_id' -class Autoinstall(object): - def __repr__(self): - return "" % (self.autoinstall_id, self.description, self.type.type_id) +from invirt.database.owner import Owner session.mapper(Machine, machine_table, properties={'nics': relation(NIC, backref="machine"), @@ -132,6 +167,9 @@ 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) +session.mapper(Admin, admins_table) +session.mapper(Build, builds_table) def clear_cache(): """Clear sqlalchemy's cache