1 """Database management."""
2 from __future__ import annotations
3 from os.path import isfile
4 from difflib import Differ
5 from sqlite3 import connect as sql_connect, Cursor, Row
6 from typing import Any, Self, TypeVar, Generic
7 from plomtask.exceptions import HandledException
9 PATH_DB_SCHEMA = 'scripts/init.sql'
10 EXPECTED_DB_VERSION = 0
13 class DatabaseFile: # pylint: disable=too-few-public-methods
14 """Represents the sqlite3 database's file."""
16 def __init__(self, path: str) -> None:
20 def remake(self) -> None:
21 """Create tables in self.path file as per PATH_DB_SCHEMA sql file."""
22 with sql_connect(self.path) as conn:
23 with open(PATH_DB_SCHEMA, 'r', encoding='utf-8') as f:
24 conn.executescript(f.read())
27 def _check(self) -> None:
28 """Check file exists, and is of proper DB version and schema."""
29 self.exists = isfile(self.path)
31 self._validate_user_version()
32 self._validate_schema()
34 def _validate_user_version(self) -> None:
35 """Compare DB user_version with EXPECTED_DB_VERSION."""
36 sql_for_db_version = 'PRAGMA user_version'
37 with sql_connect(self.path) as conn:
38 db_version = list(conn.execute(sql_for_db_version))[0][0]
39 if db_version != EXPECTED_DB_VERSION:
40 msg = f'Wrong DB version, expected '\
41 f'{EXPECTED_DB_VERSION}, got {db_version}.'
42 raise HandledException(msg)
44 def _validate_schema(self) -> None:
45 """Compare found schema with what's stored at PATH_DB_SCHEMA."""
46 sql_for_schema = 'SELECT sql FROM sqlite_master ORDER BY sql'
47 msg_err = 'Database has wrong tables schema. Diff:\n'
48 with sql_connect(self.path) as conn:
49 schema_rows = [r[0] for r in conn.execute(sql_for_schema) if r[0]]
50 retrieved_schema = ';\n'.join(schema_rows) + ';'
51 with open(PATH_DB_SCHEMA, 'r', encoding='utf-8') as f:
52 stored_schema = f.read().rstrip()
53 if stored_schema != retrieved_schema:
54 diff_msg = Differ().compare(retrieved_schema.splitlines(),
55 stored_schema.splitlines())
56 raise HandledException(msg_err + '\n'.join(diff_msg))
59 class DatabaseConnection:
60 """A single connection to the database."""
62 def __init__(self, db_file: DatabaseFile) -> None:
64 self.conn = sql_connect(self.file.path)
66 def commit(self) -> None:
67 """Commit SQL transaction."""
70 def exec(self, code: str, inputs: tuple[Any, ...] = tuple()) -> Cursor:
71 """Add commands to SQL transaction."""
72 return self.conn.execute(code, inputs)
74 def close(self) -> None:
75 """Close DB connection."""
78 def rewrite_relations(self, table_name: str, key: str, target: int,
79 rows: list[list[Any]]) -> None:
80 """Rewrite relations in table_name to target, with rows values."""
81 self.delete_where(table_name, key, target)
83 values = tuple([target] + row)
84 q_marks = self.__class__.q_marks_from_values(values)
85 self.exec(f'INSERT INTO {table_name} VALUES {q_marks}', values)
87 def row_where(self, table_name: str, key: str,
88 target: int | str) -> list[Row]:
89 """Return list of Rows at table where key == target."""
90 return list(self.exec(f'SELECT * FROM {table_name} WHERE {key} = ?',
93 def column_where(self, table_name: str, column: str, key: str,
94 target: int | str) -> list[Any]:
95 """Return column of table where key == target."""
96 return [row[0] for row in
97 self.exec(f'SELECT {column} FROM {table_name} '
98 f'WHERE {key} = ?', (target,))]
100 def column_all(self, table_name: str, column: str) -> list[Any]:
101 """Return complete column of table."""
102 return [row[0] for row in
103 self.exec(f'SELECT {column} FROM {table_name}')]
105 def delete_where(self, table_name: str, key: str, target: int) -> None:
106 """Delete from table where key == target."""
107 self.exec(f'DELETE FROM {table_name} WHERE {key} = ?', (target,))
110 def q_marks_from_values(values: tuple[Any]) -> str:
111 """Return placeholder to insert values into SQL code."""
112 return '(' + ','.join(['?'] * len(values)) + ')'
115 BaseModelId = TypeVar('BaseModelId', int, str)
116 BaseModelInstance = TypeVar('BaseModelInstance', bound='BaseModel[Any]')
119 class BaseModel(Generic[BaseModelId]):
120 """Template for most of the models we use/derive from the DB."""
122 to_save: list[str] = []
123 id_: None | BaseModelId
124 cache_: dict[BaseModelId, Self] = {}
127 def from_table_row(cls: type[BaseModelInstance],
128 # pylint: disable=unused-argument
129 db_conn: DatabaseConnection,
130 row: Row | list[Any]) -> BaseModelInstance:
131 """Make from DB row, write to DB cache."""
138 db_conn: DatabaseConnection,
139 id_: BaseModelId) -> tuple[Self | None, bool]:
140 """Return instance found by ID, or None, and if from cache or not."""
142 obj = cls.get_cached(id_)
146 for row in db_conn.row_where(cls.table_name, 'id', id_):
147 obj = cls.from_table_row(db_conn, row)
150 return obj, from_cache
152 def set_int_id(self, id_: int | None) -> None:
153 """Set id_ if >= 1 or None, else fail."""
154 if (id_ is not None) and id_ < 1:
155 msg = f'illegal {self.__class__.__name__} ID, must be >=1: {id_}'
156 raise HandledException(msg)
157 self.id_ = id_ # type: ignore[assignment]
159 def save_core(self, db_conn: DatabaseConnection,
160 update_with_lastrowid: bool = True) -> None:
161 """Write bare-bones self (sans connected items), ensuring self.id_."""
162 values = tuple([self.id_] + [getattr(self, key)
163 for key in self.to_save])
164 q_marks = DatabaseConnection.q_marks_from_values(values)
165 table_name = self.table_name
166 cursor = db_conn.exec(f'REPLACE INTO {table_name} VALUES {q_marks}',
168 if update_with_lastrowid:
169 self.id_ = cursor.lastrowid # type: ignore[assignment]
173 def get_cached(cls: type[BaseModelInstance],
174 id_: BaseModelId) -> BaseModelInstance | None:
175 """Get object of id_ from class's cache, or None if not found."""
176 # pylint: disable=consider-iterating-dictionary
177 if id_ in cls.cache_.keys():
178 obj = cls.cache_[id_]
179 assert isinstance(obj, cls)
183 def cache(self) -> None:
184 """Update object in class's cache."""
186 raise HandledException('Cannot cache object without ID.')
187 self.__class__.cache_[self.id_] = self
189 def uncache(self) -> None:
190 """Remove self from cache."""
192 raise HandledException('Cannot un-cache object without ID.')
193 del self.__class__.cache_[self.id_]
196 def empty_cache(cls) -> None:
197 """Empty class's cache."""