-
-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathfunctions.ts
More file actions
458 lines (390 loc) · 12.3 KB
/
functions.ts
File metadata and controls
458 lines (390 loc) · 12.3 KB
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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
import { NativeModules, Platform } from 'react-native';
import {
type _InternalDB,
type DBParams,
type DB,
type _PendingTransaction,
type SQLBatchTuple,
type BatchQueryResult,
type Scalar,
type QueryResult,
type Transaction,
type OPSQLiteProxy,
} from './index';
declare global {
var __OPSQLiteProxy: object | undefined;
}
if (global.__OPSQLiteProxy == null) {
if (NativeModules.OPSQLite == null) {
throw new Error(
'Base module not found. Did you do a pod install/clear the gradle cache?'
);
}
// Call the synchronous blocking install() function
const installed = NativeModules.OPSQLite.install();
if (!installed) {
throw new Error(
`Failed to install op-sqlite: The native OPSQLite Module could not be installed! Looks like something went wrong when installing JSI bindings, check the native logs for more info`
);
}
// Check again if the constructor now exists. If not, throw an error.
if (global.__OPSQLiteProxy == null) {
throw new Error(
'OPSqlite native object is not available. Something is wrong. Check the native logs for more information.'
);
}
}
const proxy = global.__OPSQLiteProxy;
export const OPSQLite = proxy as OPSQLiteProxy;
function enhanceDB(db: _InternalDB, options: DBParams): DB {
const lock = {
queue: [] as _PendingTransaction[],
inProgress: false,
};
const startNextTransaction = () => {
if (lock.inProgress) {
// Transaction is already in process bail out
return;
}
if (lock.queue.length) {
lock.inProgress = true;
const tx = lock.queue.shift();
if (!tx) {
throw new Error('Could not get a operation on database');
}
setImmediate(() => {
tx.start();
});
}
};
function sanitizeArrayBuffersInArray(
params?: any[] | any[][]
): any[] | undefined {
if (!params) {
return params;
}
return params.map((p) => {
if (Array.isArray(p)) {
return sanitizeArrayBuffersInArray(p);
}
if (ArrayBuffer.isView(p)) {
return p.buffer;
}
return p;
});
}
// spreading the object does not work with HostObjects (db)
// We need to manually assign the fields
let enhancedDb = {
delete: db.delete,
attach: db.attach,
detach: db.detach,
executeBatch: async (
commands: SQLBatchTuple[]
): Promise<BatchQueryResult> => {
// Do normal for loop and replace in place for performance
for (let i = 0; i < commands.length; i++) {
// [1] is the params arg
if (commands[i]![1]) {
commands[i]![1] = sanitizeArrayBuffersInArray(commands[i]![1]) as any;
}
}
async function run() {
try {
enhancedDb.executeSync('BEGIN TRANSACTION;');
let res = await db.executeBatch(commands as any[]);
enhancedDb.executeSync('COMMIT;');
await db.flushPendingReactiveQueries();
return res;
} catch (executionError) {
try {
enhancedDb.executeSync('ROLLBACK;');
} catch (rollbackError) {
throw rollbackError;
}
throw executionError;
} finally {
lock.inProgress = false;
startNextTransaction();
}
}
return await new Promise((resolve, reject) => {
const tx: _PendingTransaction = {
start: () => {
run().then(resolve).catch(reject);
},
};
lock.queue.push(tx);
startNextTransaction();
});
},
loadFile: db.loadFile,
updateHook: db.updateHook,
commitHook: db.commitHook,
rollbackHook: db.rollbackHook,
loadExtension: db.loadExtension,
getDbPath: db.getDbPath,
reactiveExecute: db.reactiveExecute,
sync: db.sync,
close: db.close,
executeWithHostObjects: async (
query: string,
params?: Scalar[]
): Promise<QueryResult> => {
const sanitizedParams = sanitizeArrayBuffersInArray(params);
return sanitizedParams
? await db.executeWithHostObjects(query, sanitizedParams as Scalar[])
: await db.executeWithHostObjects(query);
},
executeRaw: async (query: string, params?: Scalar[]) => {
const sanitizedParams = sanitizeArrayBuffersInArray(params);
return db.executeRaw(query, sanitizedParams as Scalar[]);
},
executeRawSync: (query: string, params?: Scalar[]) => {
const sanitizedParams = sanitizeArrayBuffersInArray(params);
return db.executeRawSync(query, sanitizedParams as Scalar[]);
},
// Wrapper for executeRaw, drizzleORM uses this function
// at some point I changed the API but they did not pin their dependency to a specific version
// so re-inserting this so it starts working again
executeRawAsync: async (query: string, params?: Scalar[]) => {
const sanitizedParams = sanitizeArrayBuffersInArray(params);
return db.executeRaw(query, sanitizedParams as Scalar[]);
},
executeSync: (query: string, params?: Scalar[]): QueryResult => {
const sanitizedParams = sanitizeArrayBuffersInArray(params);
let intermediateResult = sanitizedParams
? db.executeSync(query, sanitizedParams as Scalar[])
: db.executeSync(query);
let rows: Record<string, Scalar>[] = [];
for (let i = 0; i < (intermediateResult.rawRows?.length ?? 0); i++) {
let row: Record<string, Scalar> = {};
let rawRow = intermediateResult.rawRows![i]!;
for (let j = 0; j < intermediateResult.columnNames!.length; j++) {
let columnName = intermediateResult.columnNames![j]!;
let value = rawRow[j]!;
row[columnName] = value;
}
rows.push(row);
}
let res = {
...intermediateResult,
rows,
};
delete res.rawRows;
return res;
},
executeAsync: async (
query: string,
params?: Scalar[] | undefined
): Promise<QueryResult> => {
return db.execute(query, params);
},
execute: async (
query: string,
params?: Scalar[] | undefined
): Promise<QueryResult> => {
const sanitizedParams = sanitizeArrayBuffersInArray(params);
let intermediateResult = await db.execute(
query,
sanitizedParams as Scalar[]
);
let rows: Record<string, Scalar>[] = [];
for (let i = 0; i < (intermediateResult.rawRows?.length ?? 0); i++) {
let row: Record<string, Scalar> = {};
let rawRow = intermediateResult.rawRows![i]!;
for (let j = 0; j < intermediateResult.columnNames!.length; j++) {
let columnName = intermediateResult.columnNames![j]!;
let value = rawRow[j]!;
row[columnName] = value;
}
rows.push(row);
}
let res = {
...intermediateResult,
rows,
};
delete res.rawRows;
return res;
},
prepareStatement: (query: string) => {
const stmt = db.prepareStatement(query);
return {
bindSync: (params: Scalar[]) => {
const sanitizedParams = sanitizeArrayBuffersInArray(params);
stmt.bindSync(sanitizedParams!);
},
bind: async (params: Scalar[]) => {
const sanitizedParams = sanitizeArrayBuffersInArray(params);
await stmt.bind(sanitizedParams!);
},
execute: stmt.execute,
};
},
transaction: async (
fn: (tx: Transaction) => Promise<void>
): Promise<void> => {
let isFinalized = false;
const execute = async (query: string, params?: Scalar[]) => {
if (isFinalized) {
throw Error(
`OP-Sqlite Error: Database: ${
options.name || options.url
}. Cannot execute query on finalized transaction`
);
}
return await enhancedDb.execute(query, params);
};
const commit = async (): Promise<QueryResult> => {
if (isFinalized) {
throw Error(
`OP-Sqlite Error: Database: ${
options.name || options.url
}. Cannot execute query on finalized transaction`
);
}
const result = enhancedDb.executeSync('COMMIT;');
await db.flushPendingReactiveQueries();
isFinalized = true;
return result;
};
const rollback = (): QueryResult => {
if (isFinalized) {
throw Error(
`OP-Sqlite Error: Database: ${
options.name || options.url
}. Cannot execute query on finalized transaction`
);
}
const result = enhancedDb.executeSync('ROLLBACK;');
isFinalized = true;
return result;
};
async function run() {
try {
enhancedDb.executeSync('BEGIN TRANSACTION;');
await fn({
commit,
execute,
rollback,
});
if (!isFinalized) {
commit();
}
} catch (executionError) {
if (!isFinalized) {
try {
rollback();
} catch (rollbackError) {
throw rollbackError;
}
}
throw executionError;
} finally {
lock.inProgress = false;
isFinalized = false;
startNextTransaction();
}
}
return await new Promise((resolve, reject) => {
const tx: _PendingTransaction = {
start: () => {
run().then(resolve).catch(reject);
},
};
lock.queue.push(tx);
startNextTransaction();
});
},
};
return enhancedDb;
}
/**
* Open a replicating connection via libsql to a turso db
* libsql needs to be enabled on your package.json
*/
export const openSync = (params: {
url: string;
authToken: string;
name: string;
location?: string;
libsqlSyncInterval?: number;
libsqlOffline?: boolean;
encryptionKey?: string;
remoteEncryptionKey?: string;
}): DB => {
if (!isLibsql()) {
throw new Error('This function is only available for libsql');
}
const db = OPSQLite.openSync(params);
const enhancedDb = enhanceDB(db, params);
return enhancedDb;
};
/**
* Open a remote connection via libsql to a turso db
* libsql needs to be enabled on your package.json
*/
export const openRemote = (params: { url: string; authToken: string }): DB => {
if (!isLibsql()) {
throw new Error('This function is only available for libsql');
}
const db = OPSQLite.openRemote(params);
const enhancedDb = enhanceDB(db, params);
return enhancedDb;
};
/**
* Open a connection to a local sqlite or sqlcipher database
* If you want libsql remote or sync connections, use openSync or openRemote
*/
export const open = (params: {
name: string;
location?: string;
encryptionKey?: string;
}): DB => {
if (params.location?.startsWith('file://')) {
console.warn(
"[op-sqlite] You are passing a path with 'file://' prefix, it's automatically removed"
);
params.location = params.location.substring(7);
}
const db = OPSQLite.open(params);
const enhancedDb = enhanceDB(db, params);
return enhancedDb;
};
/**
* Moves the database from the assets folder to the default path (check the docs) or to a custom path
* It DOES NOT OVERWRITE the database if it already exists in the destination path
* if you want to overwrite the database, you need to pass the overwrite flag as true
* @param args object with the parameters for the operaiton
* @returns promise, rejects if failed to move the database, resolves if the operation was successful
*/
export const moveAssetsDatabase = async (args: {
filename: string;
path?: string;
overwrite?: boolean;
}): Promise<boolean> => {
return NativeModules.OPSQLite.moveAssetsDatabase(args);
};
/**
* Used to load a dylib file that contains a sqlite 3 extension/plugin
* It returns the raw path to the actual file which then needs to be passed to the loadExtension function
* Check the docs for more information
* @param bundle the iOS bundle identifier of the .framework
* @param name the file name of the dylib file
* @returns
*/
export const getDylibPath = (bundle: string, name: string): string => {
return NativeModules.OPSQLite.getDylibPath(bundle, name);
};
export const isSQLCipher = (): boolean => {
return OPSQLite.isSQLCipher();
};
export const isLibsql = (): boolean => {
return OPSQLite.isLibsql();
};
export const isIOSEmbeeded = (): boolean => {
if (Platform.OS !== 'ios') {
return false;
}
return OPSQLite.isIOSEmbedded();
};