-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathjanitor.py
166 lines (142 loc) · 5.75 KB
/
janitor.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
"""Database Janitor."""
from contextlib import contextmanager
from pathlib import Path
from types import TracebackType
from typing import Callable, Iterator, Optional, Type, TypeVar, Union
import psycopg
from packaging.version import parse
from psycopg import Connection, Cursor
from pytest_postgresql.loader import build_loader
from pytest_postgresql.retry import retry
Version = type(parse("1"))
DatabaseJanitorType = TypeVar("DatabaseJanitorType", bound="DatabaseJanitor")
class DatabaseJanitor:
"""Manage database state for specific tasks."""
def __init__(
self,
user: str,
host: str,
port: Union[str, int],
version: Union[str, float, Version], # type: ignore[valid-type]
dbname: Optional[str] = None,
template_dbname: Optional[str] = None,
password: Optional[str] = None,
isolation_level: "Optional[psycopg.IsolationLevel]" = None,
connection_timeout: int = 60,
) -> None:
"""Initialize janitor.
:param user: postgresql username
:param host: postgresql host
:param port: postgresql port
:param dbname: database name
:param dbname: template database name
:param version: postgresql version number
:param password: optional postgresql password
:param isolation_level: optional postgresql isolation level
defaults to server's default
:param connection_timeout: how long to retry connection before
raising a TimeoutError
"""
self.user = user
self.password = password
self.host = host
self.port = port
# At least one of the dbname or template_dbname has to be filled.
assert any([dbname, template_dbname])
self.dbname = dbname
self.template_dbname = template_dbname
self._connection_timeout = connection_timeout
self.isolation_level = isolation_level
if not isinstance(version, Version):
self.version = parse(str(version))
else:
self.version = version
def init(self) -> None:
"""Create database in postgresql."""
with self.cursor() as cur:
if self.is_template():
cur.execute(f'CREATE DATABASE "{self.template_dbname}";')
elif self.template_dbname is None:
cur.execute(f'CREATE DATABASE "{self.dbname}";')
else:
# All template database does not allow connection:
self._dont_datallowconn(cur, self.template_dbname)
# And make sure no-one is left connected to the template database.
# Otherwise, Creating database from template will fail
self._terminate_connection(cur, self.template_dbname)
cur.execute(f'CREATE DATABASE "{self.dbname}" TEMPLATE "{self.template_dbname}";')
def is_template(self) -> bool:
"""Determine whether the DatabaseJanitor maintains template or database."""
return self.dbname is None
def drop(self) -> None:
"""Drop database in postgresql."""
# We cannot drop the database while there are connections to it, so we
# terminate all connections first while not allowing new connections.
db_to_drop = self.template_dbname if self.is_template() else self.dbname
assert db_to_drop
with self.cursor() as cur:
self._dont_datallowconn(cur, db_to_drop)
self._terminate_connection(cur, db_to_drop)
cur.execute(f'DROP DATABASE IF EXISTS "{db_to_drop}";')
@staticmethod
def _dont_datallowconn(cur: Cursor, dbname: str) -> None:
cur.execute(f'ALTER DATABASE "{dbname}" with allow_connections false;')
@staticmethod
def _terminate_connection(cur: Cursor, dbname: str) -> None:
cur.execute(
"SELECT pg_terminate_backend(pg_stat_activity.pid)"
"FROM pg_stat_activity "
"WHERE pg_stat_activity.datname = %s;",
(dbname,),
)
def load(self, load: Union[Callable, str, Path]) -> None:
"""Load data into a database.
Expects:
* a Path to sql file, that'll be loaded
* an import path to import callable
* a callable that expects: host, port, user, dbname and password arguments.
"""
db_to_load = self.template_dbname if self.is_template() else self.dbname
_loader = build_loader(load)
_loader(
host=self.host,
port=self.port,
user=self.user,
dbname=db_to_load,
password=self.password,
)
@contextmanager
def cursor(self) -> Iterator[Cursor]:
"""Return postgresql cursor."""
def connect() -> Connection:
return psycopg.connect(
dbname="postgres",
user=self.user,
password=self.password,
host=self.host,
port=self.port,
)
conn = retry(
connect, timeout=self._connection_timeout, possible_exception=psycopg.OperationalError
)
conn.isolation_level = self.isolation_level
# We must not run a transaction since we create a database.
conn.autocommit = True
cur = conn.cursor()
try:
yield cur
finally:
cur.close()
conn.close()
def __enter__(self: DatabaseJanitorType) -> DatabaseJanitorType:
"""Initialize Database Janitor."""
self.init()
return self
def __exit__(
self: DatabaseJanitorType,
exc_type: Optional[Type[BaseException]],
exc_val: Optional[BaseException],
exc_tb: Optional[TracebackType],
) -> None:
"""Exit from Database janitor context cleaning after itself."""
self.drop()