| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 1 | # -*- coding: utf-8 -*- |
| 2 | |
| 3 | # Copyright 2018 Telefonica S.A. |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
| 14 | # implied. |
| 15 | # See the License for the specific language governing permissions and |
| 16 | # limitations under the License. |
| 17 | |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 18 | import logging |
| tierno | 3054f78 | 2018-04-25 16:59:53 +0200 | [diff] [blame] | 19 | from osm_common.dbbase import DbException, DbBase |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 20 | from http import HTTPStatus |
| 21 | from uuid import uuid4 |
| 22 | from copy import deepcopy |
| 23 | |
| 24 | __author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>" |
| 25 | |
| 26 | |
| 27 | class DbMemory(DbBase): |
| 28 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 29 | def __init__(self, logger_name='db', lock=False): |
| 30 | super().__init__(logger_name, lock) |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 31 | self.db = {} |
| 32 | |
| 33 | def db_connect(self, config): |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 34 | """ |
| 35 | Connect to database |
| 36 | :param config: Configuration of database |
| 37 | :return: None or raises DbException on error |
| 38 | """ |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 39 | if "logger_name" in config: |
| 40 | self.logger = logging.getLogger(config["logger_name"]) |
| tierno | eef7cb7 | 2018-11-12 11:51:49 +0100 | [diff] [blame^] | 41 | master_key = config.get("commonkey") or config.get("masterpassword") |
| 42 | if master_key: |
| 43 | self.set_secret_key(master_key) |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 44 | |
| 45 | @staticmethod |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 46 | def _format_filter(q_filter): |
| 47 | return q_filter # TODO |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 48 | |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 49 | def _find(self, table, q_filter): |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 50 | for i, row in enumerate(self.db.get(table, ())): |
| 51 | match = True |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 52 | if q_filter: |
| 53 | for k, v in q_filter.items(): |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 54 | if k not in row or v != row[k]: |
| 55 | match = False |
| 56 | if match: |
| 57 | yield i, row |
| 58 | |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 59 | def get_list(self, table, q_filter=None): |
| 60 | """ |
| 61 | Obtain a list of entries matching q_filter |
| 62 | :param table: collection or table |
| 63 | :param q_filter: Filter |
| 64 | :return: a list (can be empty) with the found entries. Raises DbException on error |
| 65 | """ |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 66 | try: |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 67 | result = [] |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 68 | with self.lock: |
| 69 | for _, row in self._find(table, self._format_filter(q_filter)): |
| 70 | result.append(deepcopy(row)) |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 71 | return result |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 72 | except DbException: |
| 73 | raise |
| 74 | except Exception as e: # TODO refine |
| 75 | raise DbException(str(e)) |
| 76 | |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 77 | def get_one(self, table, q_filter=None, fail_on_empty=True, fail_on_more=True): |
| 78 | """ |
| 79 | Obtain one entry matching q_filter |
| 80 | :param table: collection or table |
| 81 | :param q_filter: Filter |
| 82 | :param fail_on_empty: If nothing matches filter it returns None unless this flag is set tu True, in which case |
| 83 | it raises a DbException |
| 84 | :param fail_on_more: If more than one matches filter it returns one of then unless this flag is set tu True, so |
| 85 | that it raises a DbException |
| 86 | :return: The requested element, or None |
| 87 | """ |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 88 | try: |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 89 | result = None |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 90 | with self.lock: |
| 91 | for _, row in self._find(table, self._format_filter(q_filter)): |
| 92 | if not fail_on_more: |
| 93 | return deepcopy(row) |
| 94 | if result: |
| 95 | raise DbException("Found more than one entry with filter='{}'".format(q_filter), |
| 96 | HTTPStatus.CONFLICT.value) |
| 97 | result = row |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 98 | if not result and fail_on_empty: |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 99 | raise DbException("Not found entry with filter='{}'".format(q_filter), HTTPStatus.NOT_FOUND) |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 100 | return deepcopy(result) |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 101 | except Exception as e: # TODO refine |
| 102 | raise DbException(str(e)) |
| 103 | |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 104 | def del_list(self, table, q_filter=None): |
| 105 | """ |
| 106 | Deletes all entries that match q_filter |
| 107 | :param table: collection or table |
| 108 | :param q_filter: Filter |
| 109 | :return: Dict with the number of entries deleted |
| 110 | """ |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 111 | try: |
| 112 | id_list = [] |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 113 | with self.lock: |
| 114 | for i, _ in self._find(table, self._format_filter(q_filter)): |
| 115 | id_list.append(i) |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 116 | deleted = len(id_list) |
| Eduardo Sousa | 857731b | 2018-04-26 15:55:05 +0100 | [diff] [blame] | 117 | for i in reversed(id_list): |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 118 | del self.db[table][i] |
| 119 | return {"deleted": deleted} |
| 120 | except DbException: |
| 121 | raise |
| 122 | except Exception as e: # TODO refine |
| 123 | raise DbException(str(e)) |
| 124 | |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 125 | def del_one(self, table, q_filter=None, fail_on_empty=True): |
| 126 | """ |
| 127 | Deletes one entry that matches q_filter |
| 128 | :param table: collection or table |
| 129 | :param q_filter: Filter |
| 130 | :param fail_on_empty: If nothing matches filter it returns '0' deleted unless this flag is set tu True, in |
| 131 | which case it raises a DbException |
| 132 | :return: Dict with the number of entries deleted |
| 133 | """ |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 134 | try: |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 135 | with self.lock: |
| 136 | for i, _ in self._find(table, self._format_filter(q_filter)): |
| 137 | break |
| 138 | else: |
| 139 | if fail_on_empty: |
| 140 | raise DbException("Not found entry with filter='{}'".format(q_filter), HTTPStatus.NOT_FOUND) |
| 141 | return None |
| 142 | del self.db[table][i] |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 143 | return {"deleted": 1} |
| 144 | except Exception as e: # TODO refine |
| 145 | raise DbException(str(e)) |
| 146 | |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 147 | def replace(self, table, _id, indata, fail_on_empty=True): |
| 148 | """ |
| 149 | Replace the content of an entry |
| 150 | :param table: collection or table |
| 151 | :param _id: internal database id |
| 152 | :param indata: content to replace |
| 153 | :param fail_on_empty: If nothing matches filter it returns None unless this flag is set tu True, in which case |
| 154 | it raises a DbException |
| 155 | :return: Dict with the number of entries replaced |
| 156 | """ |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 157 | try: |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 158 | with self.lock: |
| 159 | for i, _ in self._find(table, self._format_filter({"_id": _id})): |
| 160 | break |
| 161 | else: |
| 162 | if fail_on_empty: |
| 163 | raise DbException("Not found entry with _id='{}'".format(_id), HTTPStatus.NOT_FOUND) |
| 164 | return None |
| 165 | self.db[table][i] = deepcopy(indata) |
| Eduardo Sousa | 22f0fcd | 2018-04-26 15:43:28 +0100 | [diff] [blame] | 166 | return {"updated": 1} |
| tierno | 136f295 | 2018-10-19 13:01:03 +0200 | [diff] [blame] | 167 | except DbException: |
| 168 | raise |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 169 | except Exception as e: # TODO refine |
| 170 | raise DbException(str(e)) |
| 171 | |
| 172 | def create(self, table, indata): |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 173 | """ |
| 174 | Add a new entry at database |
| 175 | :param table: collection or table |
| 176 | :param indata: content to be added |
| 177 | :return: database id of the inserted element. Raises a DbException on error |
| 178 | """ |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 179 | try: |
| 180 | id = indata.get("_id") |
| 181 | if not id: |
| 182 | id = str(uuid4()) |
| 183 | indata["_id"] = id |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 184 | with self.lock: |
| 185 | if table not in self.db: |
| 186 | self.db[table] = [] |
| 187 | self.db[table].append(deepcopy(indata)) |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 188 | return id |
| 189 | except Exception as e: # TODO refine |
| 190 | raise DbException(str(e)) |
| 191 | |
| 192 | |
| 193 | if __name__ == '__main__': |
| 194 | # some test code |
| tierno | 3054f78 | 2018-04-25 16:59:53 +0200 | [diff] [blame] | 195 | db = DbMemory() |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 196 | db.create("test", {"_id": 1, "data": 1}) |
| 197 | db.create("test", {"_id": 2, "data": 2}) |
| 198 | db.create("test", {"_id": 3, "data": 3}) |
| 199 | print("must be 3 items:", db.get_list("test")) |
| 200 | print("must return item 2:", db.get_list("test", {"_id": 2})) |
| 201 | db.del_one("test", {"_id": 2}) |
| 202 | print("must be emtpy:", db.get_list("test", {"_id": 2})) |