3c7dbd3237
All OpenStack projects should use the oslo.log module for logging. This patch converts the Blazar code base from its oslo-incubator logging module to oslo.log. Change-Id: I2434bb8e864a77a3c3b1ec278767e5526e0a8952
138 lines
3.9 KiB
Python
138 lines
3.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Author: François Rossigneux <francois.rossigneux@inria.fr>
|
|
#
|
|
# 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.
|
|
|
|
"""Defines interface for DB access.
|
|
|
|
Functions in this module are imported into the climate.db namespace. Call these
|
|
functions from climate.db namespace, not the climate.db.api namespace.
|
|
|
|
All functions in this module return objects that implement a dictionary-like
|
|
interface.
|
|
|
|
**Related Flags**
|
|
|
|
:db_backend: string to lookup in the list of LazyPluggable backends.
|
|
`sqlalchemy` is the only supported backend right now.
|
|
|
|
:sql_connection: string specifying the sqlalchemy connection to use, like:
|
|
`sqlite:///var/lib/climate/climate.sqlite`.
|
|
|
|
"""
|
|
|
|
from oslo_log import log as logging
|
|
|
|
from climate.openstack.common.db import api as db_api
|
|
from climate.openstack.common.db import options as db_options
|
|
|
|
_BACKEND_MAPPING = {
|
|
'sqlalchemy': 'climate.db.sqlalchemy.utils',
|
|
}
|
|
|
|
IMPL = db_api.DBAPI(db_options.CONF.database.backend,
|
|
backend_mapping=_BACKEND_MAPPING)
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
def setup_db():
|
|
"""Set up database, create tables, etc.
|
|
|
|
Return True on success, False otherwise
|
|
"""
|
|
return IMPL.setup_db()
|
|
|
|
|
|
def drop_db():
|
|
"""Drop database.
|
|
|
|
Return True on success, False otherwise
|
|
"""
|
|
return IMPL.drop_db()
|
|
|
|
|
|
# Helpers for building constraints / equality checks
|
|
|
|
|
|
def constraint(**conditions):
|
|
"""Return a constraint object suitable for use with some updates."""
|
|
return IMPL.constraint(**conditions)
|
|
|
|
|
|
def equal_any(*values):
|
|
"""Return an equality condition object suitable for use in a constraint.
|
|
|
|
Equal_any conditions require that a model object's attribute equal any
|
|
one of the given values.
|
|
"""
|
|
return IMPL.equal_any(*values)
|
|
|
|
|
|
def not_equal(*values):
|
|
"""Return an inequality condition object suitable for use in a constraint.
|
|
|
|
Not_equal conditions require that a model object's attribute differs from
|
|
all of the given values.
|
|
"""
|
|
return IMPL.not_equal(*values)
|
|
|
|
|
|
def to_dict(func):
|
|
def decorator(*args, **kwargs):
|
|
res = func(*args, **kwargs)
|
|
|
|
if isinstance(res, list):
|
|
return [item.to_dict() for item in res]
|
|
|
|
if res:
|
|
return res.to_dict()
|
|
else:
|
|
return None
|
|
|
|
return decorator
|
|
|
|
|
|
def get_free_periods(resource_id, start_date, end_date, duration):
|
|
"""Returns a list of free periods."""
|
|
return IMPL.get_free_periods(resource_id, start_date, end_date, duration)
|
|
|
|
|
|
def get_full_periods(resource_id, start_date, end_date, duration):
|
|
"""Returns a list of full periods."""
|
|
return IMPL.get_full_periods(resource_id, start_date, end_date, duration)
|
|
|
|
|
|
def reservation_ratio(resource_id, start_date, end_date):
|
|
return IMPL.reservation_ratio(resource_id, start_date, end_date)
|
|
|
|
|
|
def availability_time(resource_id, start_date, end_date):
|
|
return IMPL.availability_time(resource_id, start_date, end_date)
|
|
|
|
|
|
def reservation_time(resource_id, start_date, end_date):
|
|
return IMPL.reservation_time(resource_id, start_date, end_date)
|
|
|
|
|
|
def number_of_reservations(resource_id, start_date, end_date):
|
|
return IMPL.number_of_reservations(resource_id, start_date, end_date)
|
|
|
|
|
|
def longest_lease(resource_id, start_date, end_date):
|
|
return IMPL.longest_lease(resource_id, start_date, end_date)
|
|
|
|
|
|
def shortest_lease(resource_id, start_date, end_date):
|
|
return IMPL.shortest_lease(resource_id, start_date, end_date)
|