-
Notifications
You must be signed in to change notification settings - Fork 261
/
Copy pathsqlite.py
268 lines (229 loc) Β· 9.8 KB
/
sqlite.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
import logging
import typing
import uuid
import aiosqlite
from sqlalchemy.dialects.sqlite import pysqlite
from sqlalchemy.engine.cursor import CursorResultMetaData
from sqlalchemy.engine.interfaces import Dialect, ExecutionContext
from sqlalchemy.engine.row import Row
from sqlalchemy.sql import ClauseElement
from sqlalchemy.sql.ddl import DDLElement
from databases.core import LOG_EXTRA, DatabaseURL
from databases.interfaces import (
ConnectionBackend,
DatabaseBackend,
Record,
TransactionBackend,
)
logger = logging.getLogger("databases")
class SQLiteBackend(DatabaseBackend):
def __init__(
self, database_url: typing.Union[DatabaseURL, str], **options: typing.Any
) -> None:
self._database_url = DatabaseURL(database_url)
self._options = options
self._dialect = pysqlite.dialect(paramstyle="qmark")
# aiosqlite does not support decimals
self._dialect.supports_native_decimal = False
self._pool = SQLitePool(self._database_url, **self._options)
async def connect(self) -> None:
pass
# assert self._pool is None, "DatabaseBackend is already running"
# self._pool = await aiomysql.create_pool(
# host=self._database_url.hostname,
# port=self._database_url.port or 3306,
# user=self._database_url.username or getpass.getuser(),
# password=self._database_url.password,
# db=self._database_url.database,
# autocommit=True,
# )
async def disconnect(self) -> None:
pass
# assert self._pool is not None, "DatabaseBackend is not running"
# self._pool.close()
# await self._pool.wait_closed()
# self._pool = None
def connection(self) -> "SQLiteConnection":
return SQLiteConnection(self._pool, self._dialect)
class SQLitePool:
def __init__(self, url: DatabaseURL, **options: typing.Any) -> None:
self._url = url
self._options = options
async def acquire(self) -> aiosqlite.Connection:
connection = aiosqlite.connect(
database=self._url.database, isolation_level=None, **self._options
)
await connection.__aenter__()
return connection
async def release(self, connection: aiosqlite.Connection) -> None:
await connection.__aexit__(None, None, None)
class CompilationContext:
def __init__(self, context: ExecutionContext):
self.context = context
class SQLiteConnection(ConnectionBackend):
def __init__(self, pool: SQLitePool, dialect: Dialect):
self._pool = pool
self._dialect = dialect
self._connection = None # type: typing.Optional[aiosqlite.Connection]
async def acquire(self) -> None:
assert self._connection is None, "Connection is already acquired"
self._connection = await self._pool.acquire()
async def release(self) -> None:
assert self._connection is not None, "Connection is not acquired"
await self._pool.release(self._connection)
self._connection = None
async def fetch_all(self, query: ClauseElement) -> typing.List[Record]:
assert self._connection is not None, "Connection is not acquired"
query_str, args, context = self._compile(query)
async with self._connection.execute(query_str, args) as cursor:
rows = await cursor.fetchall()
metadata = CursorResultMetaData(context, cursor.description)
return [
Row(
metadata,
metadata._processors,
metadata._keymap,
Row._default_key_style,
row,
)
for row in rows
]
async def fetch_one(self, query: ClauseElement) -> typing.Optional[Record]:
assert self._connection is not None, "Connection is not acquired"
query_str, args, context = self._compile(query)
async with self._connection.execute(query_str, args) as cursor:
row = await cursor.fetchone()
if row is None:
return None
metadata = CursorResultMetaData(context, cursor.description)
return Row(
metadata,
metadata._processors,
metadata._keymap,
Row._default_key_style,
row,
)
async def execute(self, query: ClauseElement) -> typing.Any:
assert self._connection is not None, "Connection is not acquired"
query_str, args, context = self._compile(query)
async with self._connection.cursor() as cursor:
await cursor.execute(query_str, args)
if cursor.lastrowid == 0:
return cursor.rowcount
return cursor.lastrowid
async def execute_many(
self, queries: typing.List[ClauseElement], values: typing.List[dict]
) -> None:
assert self._connection is not None, "Connection is not acquired"
query_str, values = self._compile_many(queries, values)
async with self._connection.cursor() as cursor:
await cursor.executemany(query_str, values)
async def iterate(
self, query: ClauseElement
) -> typing.AsyncGenerator[typing.Any, None]:
assert self._connection is not None, "Connection is not acquired"
query_str, args, context = self._compile(query)
async with self._connection.execute(query_str, args) as cursor:
metadata = CursorResultMetaData(context, cursor.description)
async for row in cursor:
yield Row(
metadata,
metadata._processors,
metadata._keymap,
Row._default_key_style,
row,
)
def transaction(self) -> TransactionBackend:
return SQLiteTransaction(self)
def _compile(
self, query: ClauseElement
) -> typing.Tuple[str, list, CompilationContext]:
compiled = query.compile(
dialect=self._dialect, compile_kwargs={"render_postcompile": True}
)
execution_context = self._dialect.execution_ctx_cls()
execution_context.dialect = self._dialect
args = []
if not isinstance(query, DDLElement):
params = compiled.construct_params()
for key in compiled.positiontup:
raw_val = params[key]
if key in compiled._bind_processors:
val = compiled._bind_processors[key](raw_val)
else:
val = raw_val
args.append(val)
execution_context.result_column_struct = (
compiled._result_columns,
compiled._ordered_columns,
compiled._textual_ordered_columns,
compiled._loose_column_name_matching,
)
query_message = compiled.string.replace(" \n", " ").replace("\n", " ")
logger.debug(
"Query: %s Args: %s", query_message, repr(tuple(args)), extra=LOG_EXTRA
)
return compiled.string, args, CompilationContext(execution_context)
def _compile_many(
self, queries: typing.List[ClauseElement], values: typing.List[dict]
) -> typing.Tuple[str, list]:
compiled = queries[0].compile(
dialect=self._dialect, compile_kwargs={"render_postcompile": True}
)
new_values = []
if not isinstance(queries[0], DDLElement):
for args in values:
temp_arr = []
for key in compiled.positiontup:
raw_val = args[key]
if key in compiled._bind_processors:
val = compiled._bind_processors[key](raw_val)
else:
val = raw_val
temp_arr.append(val)
new_values.append(temp_arr)
return compiled.string, new_values
@property
def raw_connection(self) -> aiosqlite.core.Connection:
assert self._connection is not None, "Connection is not acquired"
return self._connection
class SQLiteTransaction(TransactionBackend):
def __init__(self, connection: SQLiteConnection):
self._connection = connection
self._is_root = False
self._savepoint_name = ""
async def start(
self, is_root: bool, extra_options: typing.Dict[typing.Any, typing.Any]
) -> None:
assert self._connection._connection is not None, "Connection is not acquired"
self._is_root = is_root
if self._is_root:
async with self._connection._connection.execute("BEGIN") as cursor:
await cursor.close()
else:
id = str(uuid.uuid4()).replace("-", "_")
self._savepoint_name = f"STARLETTE_SAVEPOINT_{id}"
async with self._connection._connection.execute(
f"SAVEPOINT {self._savepoint_name}"
) as cursor:
await cursor.close()
async def commit(self) -> None:
assert self._connection._connection is not None, "Connection is not acquired"
if self._is_root:
async with self._connection._connection.execute("COMMIT") as cursor:
await cursor.close()
else:
async with self._connection._connection.execute(
f"RELEASE SAVEPOINT {self._savepoint_name}"
) as cursor:
await cursor.close()
async def rollback(self) -> None:
assert self._connection._connection is not None, "Connection is not acquired"
if self._is_root:
async with self._connection._connection.execute("ROLLBACK") as cursor:
await cursor.close()
else:
async with self._connection._connection.execute(
f"ROLLBACK TO SAVEPOINT {self._savepoint_name}"
) as cursor:
await cursor.close()