-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdatabase.dart
328 lines (280 loc) · 9.68 KB
/
database.dart
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
import 'dart:async';
import 'dart:js_interop';
import 'dart:js_interop_unsafe';
import 'package:sqlite3/common.dart';
import 'package:sqlite3_web/sqlite3_web.dart';
import 'package:sqlite3_web/protocol_utils.dart' as proto;
import 'package:sqlite_async/sqlite_async.dart';
import 'package:sqlite_async/src/utils/shared_utils.dart';
import 'package:sqlite_async/src/web/database/broadcast_updates.dart';
import 'package:sqlite_async/web.dart';
import 'protocol.dart';
import 'web_mutex.dart';
class WebDatabase
with SqliteQueries, SqliteDatabaseMixin
implements SqliteDatabase, WebSqliteConnection {
final Database _database;
final Mutex? _mutex;
/// For persistent databases that aren't backed by a shared worker, we use
/// web broadcast channels to forward local update events to other tabs.
final BroadcastUpdates? broadcastUpdates;
@override
bool closed = false;
WebDatabase(this._database, this._mutex, {this.broadcastUpdates});
@override
Future<void> close() async {
await _database.dispose();
closed = true;
}
@override
Future<void> get closedFuture => _database.closed;
@override
Future<bool> getAutoCommit() async {
final response = await _database.customRequest(
CustomDatabaseMessage(CustomDatabaseMessageKind.getAutoCommit));
return (response as JSBoolean?)?.toDart ?? false;
}
@override
Future<void> initialize() {
return Future.value();
}
@override
Future<void> get isInitialized => initialize();
@override
/// Not relevant for web.
Never isolateConnectionFactory() {
throw UnimplementedError();
}
@override
/// Not supported on web. There is only 1 connection.
int get maxReaders => throw UnimplementedError();
@override
/// Not relevant for web.
Never get openFactory => throw UnimplementedError();
@override
Future<WebDatabaseEndpoint> exposeEndpoint() async {
final endpoint = await _database.additionalConnection();
return (
connectPort: endpoint.$1,
connectName: endpoint.$2,
lockName: switch (_mutex) {
MutexImpl(:final resolvedIdentifier) => resolvedIdentifier,
_ => null,
},
);
}
@override
Future<T> readLock<T>(Future<T> Function(SqliteReadContext tx) callback,
{Duration? lockTimeout, String? debugContext}) async {
if (_mutex case var mutex?) {
return await mutex.lock(timeout: lockTimeout, () async {
final context = _SharedContext(this);
try {
return await callback(context);
} finally {
context.markClosed();
}
});
} else {
// No custom mutex, coordinate locks through shared worker.
await _database.customRequest(
CustomDatabaseMessage(CustomDatabaseMessageKind.requestSharedLock));
try {
return await callback(_SharedContext(this));
} finally {
await _database.customRequest(
CustomDatabaseMessage(CustomDatabaseMessageKind.releaseLock));
}
}
}
@override
Stream<UpdateNotification> get updates =>
_database.updates.map((event) => UpdateNotification({event.tableName}));
@override
Future<T> writeTransaction<T>(
Future<T> Function(SqliteWriteContext tx) callback,
{Duration? lockTimeout,
bool? flush}) {
return writeLock(
(writeContext) =>
internalWriteTransaction(writeContext, (context) async {
// All execute calls done in the callback will be checked for the
// autocommit state
return callback(_ExclusiveTransactionContext(this, writeContext));
}),
debugContext: 'writeTransaction()',
lockTimeout: lockTimeout,
flush: flush);
}
@override
/// Internal writeLock which intercepts transaction context's to verify auto commit is not active
Future<T> writeLock<T>(Future<T> Function(SqliteWriteContext tx) callback,
{Duration? lockTimeout, String? debugContext, bool? flush}) async {
if (_mutex case var mutex?) {
return await mutex.lock(timeout: lockTimeout, () async {
final context = _ExclusiveContext(this);
try {
return await callback(context);
} finally {
context.markClosed();
if (flush != false) {
await this.flush();
}
}
});
} else {
// No custom mutex, coordinate locks through shared worker.
await _database.customRequest(CustomDatabaseMessage(
CustomDatabaseMessageKind.requestExclusiveLock));
final context = _ExclusiveContext(this);
try {
return await callback(context);
} finally {
context.markClosed();
if (flush != false) {
await this.flush();
}
await _database.customRequest(
CustomDatabaseMessage(CustomDatabaseMessageKind.releaseLock));
}
}
}
@override
Future<void> flush() async {
await isInitialized;
return _database.fileSystem.flush();
}
}
class _SharedContext implements SqliteReadContext {
final WebDatabase _database;
bool _contextClosed = false;
_SharedContext(this._database);
@override
bool get closed => _contextClosed || _database.closed;
@override
Future<T> computeWithDatabase<T>(
Future<T> Function(CommonDatabase db) compute) {
// Can't be implemented: The database may live on another worker.
throw UnimplementedError();
}
@override
Future<Row> get(String sql, [List<Object?> parameters = const []]) async {
final results = await getAll(sql, parameters);
return results.first;
}
@override
Future<ResultSet> getAll(String sql,
[List<Object?> parameters = const []]) async {
return await wrapSqliteException(
() => _database._database.select(sql, parameters));
}
@override
Future<bool> getAutoCommit() async {
return _database.getAutoCommit();
}
@override
Future<Row?> getOptional(String sql,
[List<Object?> parameters = const []]) async {
final results = await getAll(sql, parameters);
return results.firstOrNull;
}
void markClosed() {
_contextClosed = true;
}
}
class _ExclusiveContext extends _SharedContext implements SqliteWriteContext {
_ExclusiveContext(super.database);
@override
Future<ResultSet> execute(String sql,
[List<Object?> parameters = const []]) async {
return wrapSqliteException(
() => _database._database.select(sql, parameters));
}
@override
Future<void> executeBatch(
String sql, List<List<Object?>> parameterSets) async {
return wrapSqliteException(() async {
for (final set in parameterSets) {
// use execute instead of select to avoid transferring rows from the
// worker to this context.
await _database._database.execute(sql, set);
}
});
}
}
class _ExclusiveTransactionContext extends _ExclusiveContext {
SqliteWriteContext baseContext;
_ExclusiveTransactionContext(super.database, this.baseContext);
@override
bool get closed => baseContext.closed;
@override
Future<ResultSet> execute(String sql,
[List<Object?> parameters = const []]) async {
// Operations inside transactions are executed with custom requests
// in order to verify that the connection does not have autocommit enabled.
// The worker will check if autocommit = true before executing the SQL.
// An exception will be thrown if autocommit is enabled.
// The custom request which does the above will return the ResultSet as a formatted
// JavaScript object. This is the converted into a Dart ResultSet.
return await wrapSqliteException(() async {
var res = await _database._database.customRequest(CustomDatabaseMessage(
CustomDatabaseMessageKind.executeInTransaction, sql, parameters))
as JSObject;
if (res.has('format') && (res['format'] as JSNumber).toDartInt == 2) {
// Newer workers use a serialization format more efficient than dartify().
return proto.deserializeResultSet(res['r'] as JSObject);
}
var result = Map<String, dynamic>.from(res.dartify() as Map);
final columnNames = [
for (final entry in result['columnNames']) entry as String
];
final rawTableNames = result['tableNames'];
final tableNames = rawTableNames != null
? [
for (final entry in (rawTableNames as List<Object?>))
entry as String
]
: null;
final rows = <List<Object?>>[];
for (final row in (result['rows'] as List<Object?>)) {
final dartRow = <Object?>[];
for (final column in (row as List<Object?>)) {
dartRow.add(column);
}
rows.add(dartRow);
}
final resultSet = ResultSet(columnNames, tableNames, rows);
return resultSet;
});
}
@override
Future<void> executeBatch(
String sql, List<List<Object?>> parameterSets) async {
return await wrapSqliteException(() async {
for (final set in parameterSets) {
await _database._database.customRequest(CustomDatabaseMessage(
CustomDatabaseMessageKind.executeBatchInTransaction, sql, set));
}
return;
});
}
}
/// Throws SqliteException if the Remote Exception is a SqliteException
Future<T> wrapSqliteException<T>(Future<T> Function() callback) async {
try {
return await callback();
} on RemoteException catch (ex) {
if (ex.exception case final serializedCause?) {
throw serializedCause;
}
// Older versions of package:sqlite_web reported SqliteExceptions as strings
// only.
if (ex.toString().contains('SqliteException')) {
RegExp regExp = RegExp(r'SqliteException\((\d+)\)');
throw SqliteException(
int.parse(regExp.firstMatch(ex.message)?.group(1) ?? '0'),
ex.message);
}
rethrow;
}
}