-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathOPSqliteAdapter.ts
283 lines (243 loc) · 8.34 KB
/
OPSqliteAdapter.ts
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
import {
BaseObserver,
DBAdapter,
DBAdapterListener,
DBLockOptions,
QueryResult,
SQLOpenOptions,
Transaction
} from '@powersync/common';
import { ANDROID_DATABASE_PATH, IOS_LIBRARY_PATH, open, type DB } from '@op-engineering/op-sqlite';
import Lock from 'async-lock';
import { OPSQLiteConnection } from './OPSQLiteConnection';
import { NativeModules, Platform } from 'react-native';
import { SqliteOptions } from './SqliteOptions';
/**
* Adapter for React Native Quick SQLite
*/
export type OPSQLiteAdapterOptions = {
name: string;
dbLocation?: string;
sqliteOptions?: SqliteOptions;
};
enum LockType {
READ = 'read',
WRITE = 'write'
}
const READ_CONNECTIONS = 5;
export class OPSQLiteDBAdapter extends BaseObserver<DBAdapterListener> implements DBAdapter {
name: string;
protected locks: Lock;
protected initialized: Promise<void>;
protected readConnections: Array<{ busy: boolean; connection: OPSQLiteConnection }> | null;
protected writeConnection: OPSQLiteConnection | null;
private readQueue: Array<() => void> = [];
constructor(protected options: OPSQLiteAdapterOptions) {
super();
this.name = this.options.name;
this.locks = new Lock();
this.readConnections = null;
this.writeConnection = null;
this.initialized = this.init();
}
protected async init() {
const { lockTimeoutMs, journalMode, journalSizeLimit, synchronous, encryptionKey } = this.options.sqliteOptions;
const dbFilename = this.options.name;
this.writeConnection = await this.openConnection(dbFilename);
const statements: string[] = [
`PRAGMA busy_timeout = ${lockTimeoutMs}`,
`PRAGMA journal_mode = ${journalMode}`,
`PRAGMA journal_size_limit = ${journalSizeLimit}`,
`PRAGMA synchronous = ${synchronous}`
];
for (const statement of statements) {
for (let tries = 0; tries < 30; tries++) {
try {
await this.writeConnection!.execute(statement);
break;
} catch (e: any) {
if (e instanceof Error && e.message.includes('database is locked') && tries < 29) {
continue;
} else {
throw e;
}
}
}
}
// Changes should only occur in the write connection
this.writeConnection!.registerListener({
tablesUpdated: (notification) => this.iterateListeners((cb) => cb.tablesUpdated?.(notification))
});
this.readConnections = [];
for (let i = 0; i < READ_CONNECTIONS; i++) {
// Workaround to create read-only connections
let dbName = './'.repeat(i + 1) + dbFilename;
const conn = await this.openConnection(dbName);
await conn.execute('PRAGMA query_only = true');
this.readConnections.push({ busy: false, connection: conn });
}
}
protected async openConnection(filenameOverride?: string): Promise<OPSQLiteConnection> {
const dbFilename = filenameOverride ?? this.options.name;
const DB: DB = this.openDatabase(dbFilename, this.options.sqliteOptions.encryptionKey);
//Load extension for all connections
this.loadExtension(DB);
await DB.execute('SELECT powersync_init()');
return new OPSQLiteConnection({
baseDB: DB
});
}
private getDbLocation(dbLocation?: string): string {
if (Platform.OS === 'ios') {
return dbLocation ?? IOS_LIBRARY_PATH;
} else {
return dbLocation ?? ANDROID_DATABASE_PATH;
}
}
private openDatabase(dbFilename: string, encryptionKey?: string): DB {
//This is needed because an undefined/null dbLocation will cause the open function to fail
const location = this.getDbLocation(this.options.dbLocation);
//Simarlily if the encryption key is undefined/null when using SQLCipher it will cause the open function to fail
if (encryptionKey) {
return open({
name: dbFilename,
location: location,
encryptionKey: encryptionKey
});
} else {
return open({
name: dbFilename,
location: location
});
}
}
private loadExtension(DB: DB) {
if (Platform.OS === 'ios') {
const bundlePath: string = NativeModules.PowerSyncOpSqlite.getBundlePath();
const libPath = `${bundlePath}/Frameworks/powersync-sqlite-core.framework/powersync-sqlite-core`;
DB.loadExtension(libPath, 'sqlite3_powersync_init');
} else {
DB.loadExtension('libpowersync', 'sqlite3_powersync_init');
}
}
close() {
this.initialized.then(() => {
this.writeConnection!.close();
this.readConnections!.forEach((c) => c.connection.close());
});
}
async readLock<T>(fn: (tx: OPSQLiteConnection) => Promise<T>, options?: DBLockOptions): Promise<T> {
await this.initialized;
return new Promise(async (resolve, reject) => {
const execute = async () => {
// Find an available connection that is not busy
const availableConnection = this.readConnections!.find((conn) => !conn.busy);
// If we have an available connection, use it
if (availableConnection) {
availableConnection.busy = true;
try {
resolve(await fn(availableConnection.connection));
} catch (error) {
reject(error);
} finally {
availableConnection.busy = false;
// After query execution, process any queued tasks
this.processQueue();
}
} else {
// If no available connections, add to the queue
this.readQueue.push(execute);
}
};
execute();
});
}
private async processQueue(): Promise<void> {
if (this.readQueue.length > 0) {
const next = this.readQueue.shift();
if (next) {
next();
}
}
}
async writeLock<T>(fn: (tx: OPSQLiteConnection) => Promise<T>, options?: DBLockOptions): Promise<T> {
await this.initialized;
return new Promise(async (resolve, reject) => {
try {
await this.locks.acquire(
LockType.WRITE,
async () => {
resolve(await fn(this.writeConnection!));
},
{ timeout: options?.timeoutMs }
);
} catch (ex) {
reject(ex);
}
});
}
readTransaction<T>(fn: (tx: Transaction) => Promise<T>, options?: DBLockOptions): Promise<T> {
return this.readLock((ctx) => this.internalTransaction(ctx, fn));
}
writeTransaction<T>(fn: (tx: Transaction) => Promise<T>, options?: DBLockOptions): Promise<T> {
return this.writeLock((ctx) => this.internalTransaction(ctx, fn));
}
getAll<T>(sql: string, parameters?: any[]): Promise<T[]> {
return this.readLock((ctx) => ctx.getAll(sql, parameters));
}
getOptional<T>(sql: string, parameters?: any[]): Promise<T | null> {
return this.readLock((ctx) => ctx.getOptional(sql, parameters));
}
get<T>(sql: string, parameters?: any[]): Promise<T> {
return this.readLock((ctx) => ctx.get(sql, parameters));
}
execute(query: string, params?: any[]) {
return this.writeLock((ctx) => ctx.execute(query, params));
}
async executeBatch(query: string, params: any[][] = []): Promise<QueryResult> {
return this.writeLock((ctx) => ctx.executeBatch(query, params));
}
protected async internalTransaction<T>(
connection: OPSQLiteConnection,
fn: (tx: Transaction) => Promise<T>
): Promise<T> {
let finalized = false;
const commit = async (): Promise<QueryResult> => {
if (finalized) {
return { rowsAffected: 0 };
}
finalized = true;
return connection.execute('COMMIT');
};
const rollback = async (): Promise<QueryResult> => {
if (finalized) {
return { rowsAffected: 0 };
}
finalized = true;
return connection.execute('ROLLBACK');
};
try {
await connection.execute('BEGIN');
const result = await fn({
execute: (query, params) => connection.execute(query, params),
get: (query, params) => connection.get(query, params),
getAll: (query, params) => connection.getAll(query, params),
getOptional: (query, params) => connection.getOptional(query, params),
commit,
rollback
});
await commit();
return result;
} catch (ex) {
await rollback();
throw ex;
}
}
async refreshSchema(): Promise<void> {
await this.initialized;
await this.writeConnection!.refreshSchema();
for (let readConnection of this.readConnections) {
await readConnection.connection.refreshSchema();
}
}
}