almanach/almanach/storage/drivers/mongodb_driver.py
Frédéric Guillot 743eaf78cc Add support for multiple storage backends
* New storage drivers can be implemented in addition
  to MongoDB, for example: MySQL or Postgres, etc.
* The default database driver still MongoDB
* New storage drivers must implement the interface
  defined by the class BaseDriver
* Flexmock and hamcrest are deprected for new unit tests

Change-Id: I1cf73f28d469d2f22ecbaf345e53b9596cc0c2f6
2016-10-13 13:30:27 -04:00

125 lines
5.3 KiB
Python

# Copyright 2016 Internap.
#
# 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.
from oslo_log import log
import pymongo
from almanach.core import exception
from almanach.core import model
from almanach.core.model import build_entity_from_dict
from almanach.storage.drivers import base_driver
LOG = log.getLogger(__name__)
class MongoDbDriver(base_driver.BaseDriver):
def __init__(self, config, db=None):
super(MongoDbDriver, self).__init__(config)
self.db = db
def connect(self):
connection = pymongo.MongoClient(self.config.database.connection_url, tz_aware=True)
connection_options = pymongo.uri_parser.parse_uri(self.config.database.connection_url)
self.db = connection[connection_options['database']]
def get_active_entity(self, entity_id):
entity = self._get_one_entity_from_db({"entity_id": entity_id, "end": None})
if not entity:
raise KeyError("Unable to find entity id %s" % entity_id)
return build_entity_from_dict(entity)
def count_entities(self):
return self.db.entity.count()
def count_active_entities(self):
return self.db.entity.find({"end": None}).count()
def count_entity_entries(self, entity_id):
return self.db.entity.find({"entity_id": entity_id}).count()
def has_active_entity(self, entity_id):
return self.db.entity.find({"entity_id": entity_id, "end": None}).count() == 1
def list_entities(self, project_id, start, end, entity_type=None):
args = {"project_id": project_id, "start": {"$lte": end}, "$or": [{"end": None}, {"end": {"$gte": start}}]}
if entity_type:
args["entity_type"] = entity_type
entities = self._get_entities_from_db(args)
return [build_entity_from_dict(entity) for entity in entities]
def get_all_entities_by_id(self, entity_id):
entities = self.db.entity.find({"entity_id": entity_id}, {"_id": 0})
return [build_entity_from_dict(entity) for entity in entities]
def list_entities_by_id(self, entity_id, start, end):
entities = self.db.entity.find({"entity_id": entity_id,
"start": {"$gte": start},
"$and": [
{"end": {"$ne": None}},
{"end": {"$lte": end}}
]
}, {"_id": 0})
return [build_entity_from_dict(entity) for entity in entities]
def update_closed_entity(self, entity, data):
self.db.entity.update({"entity_id": entity.entity_id, "start": entity.start, "end": entity.end},
{"$set": data})
def insert_entity(self, entity):
self._insert_entity(entity.as_dict())
def insert_volume_type(self, volume_type):
self.db.volume_type.insert(volume_type.__dict__)
def get_volume_type(self, volume_type_id):
volume_type = self.db.volume_type.find_one({"volume_type_id": volume_type_id})
if not volume_type:
raise exception.VolumeTypeNotFoundException(volume_type_id=volume_type_id)
return model.VolumeType(volume_type_id=volume_type["volume_type_id"],
volume_type_name=volume_type["volume_type_name"])
def delete_volume_type(self, volume_type_id):
if volume_type_id is None:
raise exception.AlmanachException("Trying to delete all volume types which is not permitted.")
returned_value = self.db.volume_type.remove({"volume_type_id": volume_type_id})
if returned_value['n'] == 1:
LOG.info("Deleted volume type with id '%s' successfully.", volume_type_id)
else:
raise exception.AlmanachException(
"Volume type with id {} doesn't exist in the database.".format(volume_type_id))
def list_volume_types(self):
volume_types = self.db.volume_type.find()
return [model.VolumeType(volume_type_id=volume_type["volume_type_id"],
volume_type_name=volume_type["volume_type_name"]) for volume_type in volume_types]
def close_active_entity(self, entity_id, end):
self.db.entity.update({"entity_id": entity_id, "end": None}, {"$set": {"end": end, "last_event": end}})
def update_active_entity(self, entity):
self.db.entity.update({"entity_id": entity.entity_id, "end": None}, {"$set": entity.as_dict()})
def delete_active_entity(self, entity_id):
self.db.entity.remove({"entity_id": entity_id, "end": None})
def _insert_entity(self, entity):
self.db.entity.insert(entity)
def _get_entities_from_db(self, args):
return list(self.db.entity.find(args, {"_id": 0}))
def _get_one_entity_from_db(self, args):
return self.db.entity.find_one(args, {"_id": 0})