X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fcommon.git;a=blobdiff_plain;f=osm_common%2Fdbmemory.py;h=bae68e2b14a15ef42e287b0b12b3d7cb6693d09b;hp=6f7e4c440ded2c8294ab0710e606a31ccce91780;hb=cfc5272864156b706d7147fc4e7c0fe46dc386c8;hpb=857731b9e8361672cb255dc059aac866a4a2575e diff --git a/osm_common/dbmemory.py b/osm_common/dbmemory.py index 6f7e4c4..bae68e2 100644 --- a/osm_common/dbmemory.py +++ b/osm_common/dbmemory.py @@ -1,3 +1,20 @@ +# -*- coding: utf-8 -*- + +# Copyright 2018 Telefonica S.A. +# +# 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 logging from osm_common.dbbase import DbException, DbBase from http import HTTPStatus @@ -10,58 +27,86 @@ __author__ = "Alfonso Tierno " class DbMemory(DbBase): def __init__(self, logger_name='db'): - self.logger = logging.getLogger(logger_name) + super().__init__(logger_name) self.db = {} def db_connect(self, config): + """ + Connect to database + :param config: Configuration of database + :return: None or raises DbException on error + """ if "logger_name" in config: self.logger = logging.getLogger(config["logger_name"]) + self.master_password = config.get("masterpassword") @staticmethod - def _format_filter(filter): - return filter # TODO + def _format_filter(q_filter): + return q_filter # TODO - def _find(self, table, filter): + def _find(self, table, q_filter): for i, row in enumerate(self.db.get(table, ())): match = True - if filter: - for k, v in filter.items(): + if q_filter: + for k, v in q_filter.items(): if k not in row or v != row[k]: match = False if match: yield i, row - def get_list(self, table, filter={}): + def get_list(self, table, q_filter=None): + """ + Obtain a list of entries matching q_filter + :param table: collection or table + :param q_filter: Filter + :return: a list (can be empty) with the found entries. Raises DbException on error + """ try: - l = [] - for _, row in self._find(table, self._format_filter(filter)): - l.append(deepcopy(row)) - return l + result = [] + for _, row in self._find(table, self._format_filter(q_filter)): + result.append(deepcopy(row)) + return result except DbException: raise except Exception as e: # TODO refine raise DbException(str(e)) - def get_one(self, table, filter={}, fail_on_empty=True, fail_on_more=True): + def get_one(self, table, q_filter=None, fail_on_empty=True, fail_on_more=True): + """ + Obtain one entry matching q_filter + :param table: collection or table + :param q_filter: Filter + :param fail_on_empty: If nothing matches filter it returns None unless this flag is set tu True, in which case + it raises a DbException + :param fail_on_more: If more than one matches filter it returns one of then unless this flag is set tu True, so + that it raises a DbException + :return: The requested element, or None + """ try: - l = None - for _, row in self._find(table, self._format_filter(filter)): + result = None + for _, row in self._find(table, self._format_filter(q_filter)): if not fail_on_more: return deepcopy(row) - if l: - raise DbException("Found more than one entry with filter='{}'".format(filter), + if result: + raise DbException("Found more than one entry with filter='{}'".format(q_filter), HTTPStatus.CONFLICT.value) - l = row - if not l and fail_on_empty: - raise DbException("Not found entry with filter='{}'".format(filter), HTTPStatus.NOT_FOUND) - return deepcopy(l) + result = row + if not result and fail_on_empty: + raise DbException("Not found entry with filter='{}'".format(q_filter), HTTPStatus.NOT_FOUND) + return deepcopy(result) except Exception as e: # TODO refine raise DbException(str(e)) - def del_list(self, table, filter={}): + def del_list(self, table, q_filter=None): + """ + Deletes all entries that match q_filter + :param table: collection or table + :param q_filter: Filter + :return: Dict with the number of entries deleted + """ try: id_list = [] - for i, _ in self._find(table, self._format_filter(filter)): + for i, _ in self._find(table, self._format_filter(q_filter)): id_list.append(i) deleted = len(id_list) for i in reversed(id_list): @@ -72,33 +117,58 @@ class DbMemory(DbBase): except Exception as e: # TODO refine raise DbException(str(e)) - def del_one(self, table, filter={}, fail_on_empty=True): + def del_one(self, table, q_filter=None, fail_on_empty=True): + """ + Deletes one entry that matches q_filter + :param table: collection or table + :param q_filter: Filter + :param fail_on_empty: If nothing matches filter it returns '0' deleted unless this flag is set tu True, in + which case it raises a DbException + :return: Dict with the number of entries deleted + """ try: - for i, _ in self._find(table, self._format_filter(filter)): + for i, _ in self._find(table, self._format_filter(q_filter)): break else: if fail_on_empty: - raise DbException("Not found entry with filter='{}'".format(filter), HTTPStatus.NOT_FOUND) + raise DbException("Not found entry with filter='{}'".format(q_filter), HTTPStatus.NOT_FOUND) return None del self.db[table][i] return {"deleted": 1} except Exception as e: # TODO refine raise DbException(str(e)) - def replace(self, table, filter, indata, fail_on_empty=True): + def replace(self, table, _id, indata, fail_on_empty=True): + """ + Replace the content of an entry + :param table: collection or table + :param _id: internal database id + :param indata: content to replace + :param fail_on_empty: If nothing matches filter it returns None unless this flag is set tu True, in which case + it raises a DbException + :return: Dict with the number of entries replaced + """ try: - for i, _ in self._find(table, self._format_filter(filter)): + for i, _ in self._find(table, self._format_filter({"_id": _id})): break else: if fail_on_empty: - raise DbException("Not found entry with filter='{}'".format(filter), HTTPStatus.NOT_FOUND) + raise DbException("Not found entry with _id='{}'".format(_id), HTTPStatus.NOT_FOUND) return None self.db[table][i] = deepcopy(indata) return {"updated": 1} + except DbException: + raise except Exception as e: # TODO refine raise DbException(str(e)) def create(self, table, indata): + """ + Add a new entry at database + :param table: collection or table + :param indata: content to be added + :return: database id of the inserted element. Raises a DbException on error + """ try: id = indata.get("_id") if not id: