bc8cfb861b
And make sqlalchemy implementation Change-Id: I2f52b4ebd4bc5937e45c34c78f56864f3e91b7ae
93 lines
2.7 KiB
Python
93 lines
2.7 KiB
Python
# Copyright (c) 2013 Mirantis Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import sqlalchemy as sa
|
|
from sqlalchemy.orm import relationship
|
|
|
|
from climate.db.sqlalchemy import model_base as mb
|
|
from climate.openstack.common import uuidutils
|
|
|
|
|
|
## Helpers
|
|
|
|
def _generate_unicode_uuid():
|
|
return unicode(uuidutils.generate_uuid())
|
|
|
|
|
|
def _id_column():
|
|
return sa.Column(sa.String(36),
|
|
primary_key=True,
|
|
default=_generate_unicode_uuid)
|
|
|
|
|
|
## Main objects: Lease, Reservation, Event
|
|
|
|
class Lease(mb.ClimateBase):
|
|
"""Contains all info about lease."""
|
|
|
|
__tablename__ = 'leases'
|
|
|
|
__table_args__ = (
|
|
sa.UniqueConstraint('name'),
|
|
)
|
|
|
|
id = _id_column()
|
|
name = sa.Column(sa.String(80), nullable=False)
|
|
start_date = sa.Column(sa.DateTime, nullable=False)
|
|
end_date = sa.Column(sa.DateTime, nullable=False)
|
|
trust = sa.Column(sa.String(36), nullable=False)
|
|
reservations = relationship('Reservation', cascade="all,delete",
|
|
backref='lease', lazy='joined')
|
|
events = relationship('Event', cascade="all,delete",
|
|
backref='lease', lazy='joined')
|
|
|
|
def to_dict(self):
|
|
d = super(Lease, self).to_dict()
|
|
d['reservations'] = [r.to_dict() for r in self.reservations]
|
|
d['events'] = [e.to_dict() for e in self.events]
|
|
return d
|
|
|
|
|
|
class Reservation(mb.ClimateBase):
|
|
"""Specifies group of nodes within a cluster."""
|
|
|
|
__tablename__ = 'reservations'
|
|
|
|
id = _id_column()
|
|
lease_id = sa.Column(sa.String(36),
|
|
sa.ForeignKey('leases.id'),
|
|
nullable=False)
|
|
resource_id = sa.Column(sa.String(36))
|
|
resource_type = sa.Column(sa.String(66))
|
|
status = sa.Column(sa.String(13))
|
|
|
|
def to_dict(self):
|
|
return super(Reservation, self).to_dict()
|
|
|
|
|
|
class Event(mb.ClimateBase):
|
|
"""An events occurring with the lease."""
|
|
|
|
__tablename__ = 'events'
|
|
|
|
id = _id_column()
|
|
lease_id = sa.Column(sa.String(36), sa.ForeignKey('leases.id'))
|
|
event_type = sa.Column(sa.String(66))
|
|
time = sa.Column(sa.DateTime)
|
|
status = sa.Column(sa.String(13))
|
|
|
|
def to_dict(self):
|
|
return super(Event, self).to_dict()
|