Add a machine_access table where access information will be cached
[invirt/packages/invirt-database.git] / sipb_xen_database / models.py
index b4380b9..12db8c9 100644 (file)
@@ -55,9 +55,18 @@ cdroms_table = Table('cdroms', meta,
        Column('cdrom_id', String, primary_key=True, nullable=False),
        Column('description', String, nullable=False))
 
+machine_access_table = Table('machine_access', meta,
+       Column('machine_id', Integer, ForeignKey('machines.machine_id'), nullable=False, index=True),
+       Column('user', String, nullable=False, index=True),
+       PrimaryKeyConstraint('machine_id', 'user'))
 
 class Machine(object):
-    pass
+    def __repr__(self):
+        return "<Machine %s: name='%s' owner='%s'>" % (self.machine_id, self.name, self.owner)
+
+class MachineAccess(object):
+    def __repr__(self):
+        return "<MachineAccess machine='%s' user='%s'>" % (self.machine, self.user)
 
 class NIC(object):
     def __init__(self, machine_id, mac_addr, ip, hostname):
@@ -65,27 +74,35 @@ class NIC(object):
         self.mac_addr = mac_addr
         self.ip = ip
         self.hostname = hostname
+    def __repr__(self):
+        return "<NIC: mac='%s' machine='%s' ip='%s' hostname='%s'>" % (self.mac_addr, self.machine_id, self.ip, self.hostname)
 
 class Disk(object):
     def __init__(self, machine_id, guest, size):
         self.machine_id = machine_id
         self.guest_device_name = guest
         self.size = size
+    def __repr__(self):
+        return "<Disk: machine=%s device=%s size=%s>" % (self.machine_id, self.guest_device_name, self.size)
 
 class Type(object):
-    pass
+    def __repr__(self):
+        return "<Type %s: %s>" % (self.type_id, self.description)
 
 class CDROM(object):
     def __init__(self, cdrom_id, description):
         self.cdrom_id = cdrom_id
         self.description = description
+    def __repr__(self):
+        return "<CDROM %s: %s>" % (self.cdrom_id, self.description)
 
 assign_mapper(ctx, Machine, machine_table,
               properties={'nics': relation(NIC, backref="machine"),
                           'disks': relation(Disk, backref="machine"),
-                          'type': relation(Type)});
+                          'type': relation(Type),
+                          'users': relation(MachineAccess, backref="machine")});
+assign_mapper(ctx, MachineAccess, machine_access_table)
 assign_mapper(ctx, NIC, nic_table)
 assign_mapper(ctx, Disk, disk_table)
 assign_mapper(ctx, Type, types_table)
 assign_mapper(ctx, CDROM, cdroms_table)
-