dfbaa5a410
Since we have a global context storage we should use it everywhere. I suggest we remove all this ctx args and never bring them back. In case someone wants to run something with different context one can always do: with my_other_context: run_method_without_ctx_in_args() Change-Id: I976726f59cedd79f1d619f35f570c60e2c701c7d
224 lines
5.3 KiB
Python
224 lines
5.3 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.
|
|
|
|
"""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.config import cfg
|
|
|
|
from climate.openstack.common.db import api as db_api
|
|
from climate.openstack.common import log as logging
|
|
|
|
|
|
CONF = cfg.CONF
|
|
|
|
_BACKEND_MAPPING = {
|
|
'sqlalchemy': 'climate.db.sqlalchemy.api',
|
|
}
|
|
|
|
IMPL = db_api.DBAPI(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
|
|
|
|
|
|
#Reservation
|
|
|
|
def reservation_create(reservation_values):
|
|
"""Create a reservation from the values."""
|
|
return IMPL.reservation_create(reservation_values)
|
|
|
|
|
|
@to_dict
|
|
def reservation_get_all_by_lease(lease_id):
|
|
"""Return all reservations belongs to specific lease."""
|
|
return IMPL.reservation_get_all_by_lease(lease_id)
|
|
|
|
|
|
@to_dict
|
|
def reservation_get(reservation_id):
|
|
"""Return specific reservation."""
|
|
return IMPL.reservation_get(reservation_id)
|
|
|
|
|
|
def reservation_destroy(reservation_id):
|
|
"""Delete specific reservation."""
|
|
IMPL.reservation_destroy(reservation_id)
|
|
|
|
|
|
def reservation_update(reservation_id, reservation_values):
|
|
"""Update reservation."""
|
|
IMPL.reservation_update(reservation_id, reservation_values)
|
|
|
|
|
|
#Lease
|
|
|
|
def lease_create(lease_values):
|
|
"""Create a lease from values."""
|
|
return IMPL.lease_create(lease_values)
|
|
|
|
|
|
@to_dict
|
|
def lease_get_all():
|
|
"""Return all leases."""
|
|
return IMPL.lease_get_all()
|
|
|
|
|
|
@to_dict
|
|
def lease_get_all_by_tenant(tenant_id):
|
|
"""Return all leases in specific tenant."""
|
|
return IMPL.lease_get_all_by_tenant(tenant_id)
|
|
|
|
|
|
@to_dict
|
|
def lease_get_all_by_user(user_id):
|
|
"""Return all leases belongs to specific user."""
|
|
return IMPL.lease_get_all_by_user(user_id)
|
|
|
|
|
|
@to_dict
|
|
def lease_get(lease_id):
|
|
"""Return lease."""
|
|
return IMPL.lease_get(lease_id)
|
|
|
|
|
|
@to_dict
|
|
def lease_list():
|
|
"""Return a list of all existing leases."""
|
|
return IMPL.lease_list()
|
|
|
|
|
|
def lease_destroy(lease_id):
|
|
"""Delete lease or raise if not exists."""
|
|
IMPL.lease_destroy(lease_id)
|
|
|
|
|
|
def lease_update(lease_id, lease_values):
|
|
"""Update lease or raise if not exists."""
|
|
IMPL.lease_update(lease_id, lease_values)
|
|
|
|
|
|
#Events
|
|
|
|
@to_dict
|
|
def event_create(event_values):
|
|
"""Create an event from values."""
|
|
return IMPL.event_create(event_values)
|
|
|
|
|
|
@to_dict
|
|
def event_get_all():
|
|
"""Return all events."""
|
|
return IMPL.event_get_all()
|
|
|
|
|
|
@to_dict
|
|
def event_get(event_id):
|
|
"""Return a specific event."""
|
|
return IMPL.event_get(event_id)
|
|
|
|
|
|
@to_dict
|
|
def event_get_all_sorted_by_filters(sort_key, sort_dir, filters):
|
|
"""Return instances sorted by param."""
|
|
return IMPL.event_get_all_sorted_by_filters(sort_key, sort_dir,
|
|
filters)
|
|
|
|
|
|
@to_dict
|
|
def event_list(param):
|
|
"""Return a list of events."""
|
|
return IMPL.event_list()
|
|
|
|
|
|
def event_destroy(event_id):
|
|
"""Delete event or raise if not exists."""
|
|
IMPL.event_destroy(event_id)
|
|
|
|
|
|
def event_update(event_id, event_values):
|
|
"""Update event or raise if not exists."""
|
|
IMPL.event_update(event_id, event_values)
|