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