| 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 | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 20 | from osm_common.dbmongo import deep_update |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 21 | from http import HTTPStatus |
| 22 | from uuid import uuid4 |
| 23 | from copy import deepcopy |
| 24 | |
| 25 | __author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>" |
| 26 | |
| 27 | |
| 28 | class DbMemory(DbBase): |
| 29 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 30 | def __init__(self, logger_name='db', lock=False): |
| 31 | super().__init__(logger_name, lock) |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 32 | self.db = {} |
| 33 | |
| 34 | def db_connect(self, config): |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 35 | """ |
| 36 | Connect to database |
| 37 | :param config: Configuration of database |
| 38 | :return: None or raises DbException on error |
| 39 | """ |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 40 | if "logger_name" in config: |
| 41 | self.logger = logging.getLogger(config["logger_name"]) |
| tierno | eef7cb7 | 2018-11-12 11:51:49 +0100 | [diff] [blame] | 42 | master_key = config.get("commonkey") or config.get("masterpassword") |
| 43 | if master_key: |
| 44 | self.set_secret_key(master_key) |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 45 | |
| 46 | @staticmethod |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 47 | def _format_filter(q_filter): |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 48 | db_filter = {} |
| 49 | # split keys with ANYINDEX in this way: |
| 50 | # {"A.B.ANYINDEX.C.D.ANYINDEX.E": v } -> {"A.B.ANYINDEX": {"C.D.ANYINDEX": {"E": v}}} |
| 51 | if q_filter: |
| 52 | for k, v in q_filter.items(): |
| 53 | db_v = v |
| 54 | kleft, _, kright = k.rpartition(".ANYINDEX.") |
| 55 | while kleft: |
| 56 | k = kleft + ".ANYINDEX" |
| 57 | db_v = {kright: db_v} |
| 58 | kleft, _, kright = k.rpartition(".ANYINDEX.") |
| 59 | deep_update(db_filter, {k: db_v}) |
| 60 | |
| 61 | return db_filter |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 62 | |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 63 | def _find(self, table, q_filter): |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 64 | |
| tierno | 40e326a | 2019-09-19 09:23:44 +0000 | [diff] [blame] | 65 | def recursive_find(key_list, key_next_index, content, oper, target): |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 66 | if key_next_index == len(key_list) or content is None: |
| 67 | try: |
| tierno | 40e326a | 2019-09-19 09:23:44 +0000 | [diff] [blame] | 68 | if oper in ("eq", "cont"): |
| 69 | if isinstance(target, list): |
| 70 | if isinstance(content, list): |
| 71 | return any(content_item in target for content_item in content) |
| 72 | return content in target |
| 73 | elif isinstance(content, list): |
| 74 | return target in content |
| 75 | else: |
| 76 | return content == target |
| 77 | elif oper in ("neq", "ne", "ncont"): |
| 78 | if isinstance(target, list): |
| 79 | if isinstance(content, list): |
| 80 | return all(content_item not in target for content_item in content) |
| 81 | return content not in target |
| 82 | elif isinstance(content, list): |
| 83 | return target not in content |
| 84 | else: |
| 85 | return content != target |
| 86 | if oper == "gt": |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 87 | return content > target |
| tierno | 40e326a | 2019-09-19 09:23:44 +0000 | [diff] [blame] | 88 | elif oper == "gte": |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 89 | return content >= target |
| tierno | 40e326a | 2019-09-19 09:23:44 +0000 | [diff] [blame] | 90 | elif oper == "lt": |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 91 | return content < target |
| tierno | 40e326a | 2019-09-19 09:23:44 +0000 | [diff] [blame] | 92 | elif oper == "lte": |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 93 | return content <= target |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 94 | else: |
| 95 | raise DbException("Unknown filter operator '{}' in key '{}'". |
| tierno | 40e326a | 2019-09-19 09:23:44 +0000 | [diff] [blame] | 96 | format(oper, ".".join(key_list)), http_code=HTTPStatus.BAD_REQUEST) |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 97 | except TypeError: |
| 98 | return False |
| 99 | |
| 100 | elif isinstance(content, dict): |
| tierno | 40e326a | 2019-09-19 09:23:44 +0000 | [diff] [blame] | 101 | return recursive_find(key_list, key_next_index + 1, content.get(key_list[key_next_index]), oper, |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 102 | target) |
| 103 | elif isinstance(content, list): |
| 104 | look_for_match = True # when there is a match return immediately |
| tierno | 40e326a | 2019-09-19 09:23:44 +0000 | [diff] [blame] | 105 | if (target is None) != (oper in ("neq", "ne", "ncont")): # one True and other False (Xor) |
| 106 | look_for_match = False # when there is not a match return immediately |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 107 | |
| 108 | for content_item in content: |
| 109 | if key_list[key_next_index] == "ANYINDEX" and isinstance(v, dict): |
| tierno | 40e326a | 2019-09-19 09:23:44 +0000 | [diff] [blame] | 110 | matches = True |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 111 | for k2, v2 in target.items(): |
| 112 | k_new_list = k2.split(".") |
| 113 | new_operator = "eq" |
| 114 | if k_new_list[-1] in ("eq", "ne", "gt", "gte", "lt", "lte", "cont", "ncont", "neq"): |
| 115 | new_operator = k_new_list.pop() |
| 116 | if not recursive_find(k_new_list, 0, content_item, new_operator, v2): |
| tierno | 40e326a | 2019-09-19 09:23:44 +0000 | [diff] [blame] | 117 | matches = False |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 118 | break |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 119 | |
| 120 | else: |
| tierno | 40e326a | 2019-09-19 09:23:44 +0000 | [diff] [blame] | 121 | matches = recursive_find(key_list, key_next_index, content_item, oper, target) |
| 122 | if matches == look_for_match: |
| 123 | return matches |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 124 | if key_list[key_next_index].isdecimal() and int(key_list[key_next_index]) < len(content): |
| tierno | 40e326a | 2019-09-19 09:23:44 +0000 | [diff] [blame] | 125 | matches = recursive_find(key_list, key_next_index + 1, content[int(key_list[key_next_index])], |
| 126 | oper, target) |
| 127 | if matches == look_for_match: |
| 128 | return matches |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 129 | return not look_for_match |
| 130 | else: # content is not dict, nor list neither None, so not found |
| tierno | 40e326a | 2019-09-19 09:23:44 +0000 | [diff] [blame] | 131 | if oper in ("neq", "ne", "ncont"): |
| 132 | return target is not None |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 133 | else: |
| tierno | 40e326a | 2019-09-19 09:23:44 +0000 | [diff] [blame] | 134 | return target is None |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 135 | |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 136 | for i, row in enumerate(self.db.get(table, ())): |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 137 | q_filter = q_filter or {} |
| 138 | for k, v in q_filter.items(): |
| 139 | k_list = k.split(".") |
| 140 | operator = "eq" |
| 141 | if k_list[-1] in ("eq", "ne", "gt", "gte", "lt", "lte", "cont", "ncont", "neq"): |
| 142 | operator = k_list.pop() |
| tierno | 40e326a | 2019-09-19 09:23:44 +0000 | [diff] [blame] | 143 | matches = recursive_find(k_list, 0, row, operator, v) |
| 144 | if not matches: |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 145 | break |
| 146 | else: |
| 147 | # match |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 148 | yield i, row |
| 149 | |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 150 | def get_list(self, table, q_filter=None): |
| 151 | """ |
| 152 | Obtain a list of entries matching q_filter |
| 153 | :param table: collection or table |
| 154 | :param q_filter: Filter |
| 155 | :return: a list (can be empty) with the found entries. Raises DbException on error |
| 156 | """ |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 157 | try: |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 158 | result = [] |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 159 | with self.lock: |
| 160 | for _, row in self._find(table, self._format_filter(q_filter)): |
| 161 | result.append(deepcopy(row)) |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 162 | return result |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 163 | except DbException: |
| 164 | raise |
| 165 | except Exception as e: # TODO refine |
| 166 | raise DbException(str(e)) |
| 167 | |
| delacruzramo | ae049d8 | 2019-09-17 16:05:17 +0200 | [diff] [blame] | 168 | def count(self, table, q_filter=None): |
| 169 | """ |
| 170 | Count the number of entries matching q_filter |
| 171 | :param table: collection or table |
| 172 | :param q_filter: Filter |
| 173 | :return: number of entries found (can be zero) |
| 174 | :raise: DbException on error |
| 175 | """ |
| 176 | try: |
| 177 | with self.lock: |
| 178 | return sum(1 for x in self._find(table, self._format_filter(q_filter))) |
| 179 | except DbException: |
| 180 | raise |
| 181 | except Exception as e: # TODO refine |
| 182 | raise DbException(str(e)) |
| 183 | |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 184 | def get_one(self, table, q_filter=None, fail_on_empty=True, fail_on_more=True): |
| 185 | """ |
| 186 | Obtain one entry matching q_filter |
| 187 | :param table: collection or table |
| 188 | :param q_filter: Filter |
| 189 | :param fail_on_empty: If nothing matches filter it returns None unless this flag is set tu True, in which case |
| 190 | it raises a DbException |
| 191 | :param fail_on_more: If more than one matches filter it returns one of then unless this flag is set tu True, so |
| 192 | that it raises a DbException |
| 193 | :return: The requested element, or None |
| 194 | """ |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 195 | try: |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 196 | result = None |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 197 | with self.lock: |
| 198 | for _, row in self._find(table, self._format_filter(q_filter)): |
| 199 | if not fail_on_more: |
| 200 | return deepcopy(row) |
| 201 | if result: |
| 202 | raise DbException("Found more than one entry with filter='{}'".format(q_filter), |
| 203 | HTTPStatus.CONFLICT.value) |
| 204 | result = row |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 205 | if not result and fail_on_empty: |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 206 | raise DbException("Not found entry with filter='{}'".format(q_filter), HTTPStatus.NOT_FOUND) |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 207 | return deepcopy(result) |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 208 | except Exception as e: # TODO refine |
| 209 | raise DbException(str(e)) |
| 210 | |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 211 | def del_list(self, table, q_filter=None): |
| 212 | """ |
| 213 | Deletes all entries that match q_filter |
| 214 | :param table: collection or table |
| 215 | :param q_filter: Filter |
| 216 | :return: Dict with the number of entries deleted |
| 217 | """ |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 218 | try: |
| 219 | id_list = [] |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 220 | with self.lock: |
| 221 | for i, _ in self._find(table, self._format_filter(q_filter)): |
| 222 | id_list.append(i) |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 223 | deleted = len(id_list) |
| Eduardo Sousa | 857731b | 2018-04-26 15:55:05 +0100 | [diff] [blame] | 224 | for i in reversed(id_list): |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 225 | del self.db[table][i] |
| 226 | return {"deleted": deleted} |
| 227 | except DbException: |
| 228 | raise |
| 229 | except Exception as e: # TODO refine |
| 230 | raise DbException(str(e)) |
| 231 | |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 232 | def del_one(self, table, q_filter=None, fail_on_empty=True): |
| 233 | """ |
| 234 | Deletes one entry that matches q_filter |
| 235 | :param table: collection or table |
| 236 | :param q_filter: Filter |
| 237 | :param fail_on_empty: If nothing matches filter it returns '0' deleted unless this flag is set tu True, in |
| 238 | which case it raises a DbException |
| 239 | :return: Dict with the number of entries deleted |
| 240 | """ |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 241 | try: |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 242 | with self.lock: |
| 243 | for i, _ in self._find(table, self._format_filter(q_filter)): |
| 244 | break |
| 245 | else: |
| 246 | if fail_on_empty: |
| 247 | raise DbException("Not found entry with filter='{}'".format(q_filter), HTTPStatus.NOT_FOUND) |
| 248 | return None |
| 249 | del self.db[table][i] |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 250 | return {"deleted": 1} |
| 251 | except Exception as e: # TODO refine |
| 252 | raise DbException(str(e)) |
| 253 | |
| tierno | 7fc50dd | 2020-02-17 12:01:38 +0000 | [diff] [blame] | 254 | def _update(self, db_item, update_dict, unset=None, pull=None, push=None): |
| 255 | """ |
| 256 | Modifies an entry at database |
| 257 | :param db_item: entry of the table to update |
| 258 | :param update_dict: Plain dictionary with the content to be updated. It is a dot separated keys and a value |
| 259 | :param unset: Plain dictionary with the content to be removed if exist. It is a dot separated keys, value is |
| 260 | ignored. If not exist, it is ignored |
| 261 | :param pull: Plain dictionary with the content to be removed from an array. It is a dot separated keys and value |
| 262 | if exist in the array is removed. If not exist, it is ignored |
| 263 | :param push: Plain dictionary with the content to be appended to an array. It is a dot separated keys and value |
| 264 | is appended to the end of the array |
| 265 | :return: True if database has been changed, False if not; Exception on error |
| 266 | """ |
| 267 | def _iterate_keys(k, db_nested, populate=True): |
| 268 | k_list = k.split(".") |
| 269 | k_item_prev = k_list[0] |
| 270 | populated = False |
| tierno | bf6c572 | 2020-03-12 09:54:35 +0000 | [diff] [blame] | 271 | if k_item_prev not in db_nested and populate: |
| 272 | populated = True |
| 273 | db_nested[k_item_prev] = None |
| tierno | 7fc50dd | 2020-02-17 12:01:38 +0000 | [diff] [blame] | 274 | for k_item in k_list[1:]: |
| 275 | if isinstance(db_nested[k_item_prev], dict): |
| 276 | if k_item not in db_nested[k_item_prev]: |
| 277 | if not populate: |
| 278 | raise DbException("Cannot set '{}', not existing '{}'".format(k, k_item)) |
| 279 | populated = True |
| 280 | db_nested[k_item_prev][k_item] = None |
| 281 | elif isinstance(db_nested[k_item_prev], list) and k_item.isdigit(): |
| 282 | # extend list with Nones if index greater than list |
| 283 | k_item = int(k_item) |
| 284 | if k_item >= len(db_nested[k_item_prev]): |
| 285 | if not populate: |
| 286 | raise DbException("Cannot set '{}', index too large '{}'".format(k, k_item)) |
| 287 | populated = True |
| 288 | db_nested[k_item_prev] += [None] * (k_item - len(db_nested[k_item_prev]) + 1) |
| 289 | elif db_nested[k_item_prev] is None: |
| 290 | if not populate: |
| 291 | raise DbException("Cannot set '{}', not existing '{}'".format(k, k_item)) |
| 292 | populated = True |
| 293 | db_nested[k_item_prev] = {k_item: None} |
| 294 | else: # number, string, boolean, ... or list but with not integer key |
| 295 | raise DbException("Cannot set '{}' on existing '{}={}'".format(k, k_item_prev, |
| 296 | db_nested[k_item_prev])) |
| 297 | db_nested = db_nested[k_item_prev] |
| 298 | k_item_prev = k_item |
| 299 | return db_nested, k_item_prev, populated |
| 300 | |
| 301 | updated = False |
| 302 | try: |
| 303 | if update_dict: |
| 304 | for dot_k, v in update_dict.items(): |
| 305 | dict_to_update, key_to_update, _ = _iterate_keys(dot_k, db_item) |
| 306 | dict_to_update[key_to_update] = v |
| 307 | updated = True |
| 308 | if unset: |
| 309 | for dot_k in unset: |
| 310 | try: |
| 311 | dict_to_update, key_to_update, _ = _iterate_keys(dot_k, db_item, populate=False) |
| 312 | del dict_to_update[key_to_update] |
| 313 | updated = True |
| 314 | except Exception: |
| 315 | pass |
| 316 | if pull: |
| 317 | for dot_k, v in pull.items(): |
| 318 | try: |
| 319 | dict_to_update, key_to_update, _ = _iterate_keys(dot_k, db_item, populate=False) |
| 320 | except Exception: |
| 321 | continue |
| 322 | if key_to_update not in dict_to_update: |
| 323 | continue |
| 324 | if not isinstance(dict_to_update[key_to_update], list): |
| 325 | raise DbException("Cannot pull '{}'. Target is not a list".format(dot_k)) |
| 326 | while v in dict_to_update[key_to_update]: |
| 327 | dict_to_update[key_to_update].remove(v) |
| 328 | updated = True |
| 329 | if push: |
| 330 | for dot_k, v in push.items(): |
| 331 | dict_to_update, key_to_update, populated = _iterate_keys(dot_k, db_item) |
| 332 | if isinstance(dict_to_update, dict) and key_to_update not in dict_to_update: |
| 333 | dict_to_update[key_to_update] = [v] |
| 334 | updated = True |
| 335 | elif populated and dict_to_update[key_to_update] is None: |
| 336 | dict_to_update[key_to_update] = [v] |
| 337 | updated = True |
| 338 | elif not isinstance(dict_to_update[key_to_update], list): |
| 339 | raise DbException("Cannot push '{}'. Target is not a list".format(dot_k)) |
| 340 | else: |
| 341 | dict_to_update[key_to_update].append(v) |
| 342 | updated = True |
| 343 | |
| 344 | return updated |
| 345 | except DbException: |
| 346 | raise |
| 347 | except Exception as e: # TODO refine |
| 348 | raise DbException(str(e)) |
| 349 | |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 350 | def set_one(self, table, q_filter, update_dict, fail_on_empty=True, unset=None, pull=None, push=None): |
| 351 | """ |
| 352 | Modifies an entry at database |
| 353 | :param table: collection or table |
| 354 | :param q_filter: Filter |
| 355 | :param update_dict: Plain dictionary with the content to be updated. It is a dot separated keys and a value |
| 356 | :param fail_on_empty: If nothing matches filter it returns None unless this flag is set tu True, in which case |
| 357 | it raises a DbException |
| 358 | :param unset: Plain dictionary with the content to be removed if exist. It is a dot separated keys, value is |
| 359 | ignored. If not exist, it is ignored |
| 360 | :param pull: Plain dictionary with the content to be removed from an array. It is a dot separated keys and value |
| 361 | if exist in the array is removed. If not exist, it is ignored |
| 362 | :param push: Plain dictionary with the content to be appended to an array. It is a dot separated keys and value |
| 363 | is appended to the end of the array |
| 364 | :return: Dict with the number of entries modified. None if no matching is found. |
| 365 | """ |
| tierno | 7fc50dd | 2020-02-17 12:01:38 +0000 | [diff] [blame] | 366 | with self.lock: |
| 367 | for i, db_item in self._find(table, self._format_filter(q_filter)): |
| 368 | updated = self._update(db_item, update_dict, unset=unset, pull=pull, push=push) |
| 369 | return {"updated": 1 if updated else 0} |
| 370 | else: |
| 371 | if fail_on_empty: |
| 372 | raise DbException("Not found entry with _id='{}'".format(q_filter), HTTPStatus.NOT_FOUND) |
| 373 | return None |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 374 | |
| tierno | 70911f0 | 2020-03-30 08:56:15 +0000 | [diff] [blame^] | 375 | def set_list(self, table, q_filter, update_dict, unset=None, pull=None, push=None): |
| tierno | 7fc50dd | 2020-02-17 12:01:38 +0000 | [diff] [blame] | 376 | with self.lock: |
| 377 | updated = 0 |
| tierno | 77e2d6a | 2020-03-18 07:31:54 +0000 | [diff] [blame] | 378 | found = 0 |
| 379 | for _, db_item in self._find(table, self._format_filter(q_filter)): |
| 380 | found += 1 |
| tierno | 7fc50dd | 2020-02-17 12:01:38 +0000 | [diff] [blame] | 381 | if self._update(db_item, update_dict, unset=unset, pull=pull, push=push): |
| 382 | updated += 1 |
| tierno | 70911f0 | 2020-03-30 08:56:15 +0000 | [diff] [blame^] | 383 | # if not found and fail_on_empty: |
| 384 | # raise DbException("Not found entry with '{}'".format(q_filter), HTTPStatus.NOT_FOUND) |
| tierno | 77e2d6a | 2020-03-18 07:31:54 +0000 | [diff] [blame] | 385 | return {"updated": updated} if found else None |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 386 | |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 387 | def replace(self, table, _id, indata, fail_on_empty=True): |
| 388 | """ |
| 389 | Replace the content of an entry |
| 390 | :param table: collection or table |
| 391 | :param _id: internal database id |
| 392 | :param indata: content to replace |
| 393 | :param fail_on_empty: If nothing matches filter it returns None unless this flag is set tu True, in which case |
| 394 | it raises a DbException |
| 395 | :return: Dict with the number of entries replaced |
| 396 | """ |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 397 | try: |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 398 | with self.lock: |
| 399 | for i, _ in self._find(table, self._format_filter({"_id": _id})): |
| 400 | break |
| 401 | else: |
| 402 | if fail_on_empty: |
| 403 | raise DbException("Not found entry with _id='{}'".format(_id), HTTPStatus.NOT_FOUND) |
| 404 | return None |
| 405 | self.db[table][i] = deepcopy(indata) |
| Eduardo Sousa | 22f0fcd | 2018-04-26 15:43:28 +0100 | [diff] [blame] | 406 | return {"updated": 1} |
| tierno | 136f295 | 2018-10-19 13:01:03 +0200 | [diff] [blame] | 407 | except DbException: |
| 408 | raise |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 409 | except Exception as e: # TODO refine |
| 410 | raise DbException(str(e)) |
| 411 | |
| 412 | def create(self, table, indata): |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 413 | """ |
| 414 | Add a new entry at database |
| 415 | :param table: collection or table |
| 416 | :param indata: content to be added |
| 417 | :return: database id of the inserted element. Raises a DbException on error |
| 418 | """ |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 419 | try: |
| 420 | id = indata.get("_id") |
| 421 | if not id: |
| 422 | id = str(uuid4()) |
| 423 | indata["_id"] = id |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 424 | with self.lock: |
| 425 | if table not in self.db: |
| 426 | self.db[table] = [] |
| 427 | self.db[table].append(deepcopy(indata)) |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 428 | return id |
| 429 | except Exception as e: # TODO refine |
| 430 | raise DbException(str(e)) |
| 431 | |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 432 | def create_list(self, table, indata_list): |
| 433 | """ |
| 434 | Add a new entry at database |
| 435 | :param table: collection or table |
| 436 | :param indata_list: list content to be added |
| 437 | :return: database ids of the inserted element. Raises a DbException on error |
| 438 | """ |
| 439 | try: |
| 440 | _ids = [] |
| tierno | 40e326a | 2019-09-19 09:23:44 +0000 | [diff] [blame] | 441 | with self.lock: |
| 442 | for indata in indata_list: |
| 443 | _id = indata.get("_id") |
| 444 | if not _id: |
| 445 | _id = str(uuid4()) |
| 446 | indata["_id"] = _id |
| 447 | with self.lock: |
| 448 | if table not in self.db: |
| 449 | self.db[table] = [] |
| 450 | self.db[table].append(deepcopy(indata)) |
| 451 | _ids.append(_id) |
| tierno | 6472e2b | 2019-09-02 16:04:16 +0000 | [diff] [blame] | 452 | return _ids |
| 453 | except Exception as e: # TODO refine |
| 454 | raise DbException(str(e)) |
| 455 | |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 456 | |
| 457 | if __name__ == '__main__': |
| 458 | # some test code |
| tierno | 3054f78 | 2018-04-25 16:59:53 +0200 | [diff] [blame] | 459 | db = DbMemory() |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 460 | db.create("test", {"_id": 1, "data": 1}) |
| 461 | db.create("test", {"_id": 2, "data": 2}) |
| 462 | db.create("test", {"_id": 3, "data": 3}) |
| 463 | print("must be 3 items:", db.get_list("test")) |
| 464 | print("must return item 2:", db.get_list("test", {"_id": 2})) |
| 465 | db.del_one("test", {"_id": 2}) |
| 466 | print("must be emtpy:", db.get_list("test", {"_id": 2})) |