forked from Nozbe/WatermelonDB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
398 lines (348 loc) · 12 KB
/
index.js
File metadata and controls
398 lines (348 loc) · 12 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
// @flow
/* eslint-disable global-require */
import { connectionTag, type ConnectionTag, logger, invariant } from '../../utils/common'
import { type ResultCallback, mapValue, toPromise } from '../../utils/fp/Result'
import { mapObj } from '../../utils/fp'
import type { RecordId } from '../../Model'
import type { SerializedQuery } from '../../Query'
import type { TableName, AppSchema, SchemaVersion } from '../../Schema'
import type { SchemaMigrations, MigrationStep } from '../../Schema/migrations'
import type {
DatabaseAdapter,
CachedQueryResult,
CachedFindResult,
BatchOperation,
UnsafeExecuteOperations,
} from '../type'
import {
sanitizeFindResult,
sanitizeQueryResult,
devSetupCallback,
validateAdapter,
validateTable,
} from '../common'
import type {
DispatcherType,
SQL,
SQLiteAdapterOptions,
SQLiteArg,
SQLiteQuery,
SqliteDispatcher,
MigrationEvents,
} from './type'
import encodeQuery from './encodeQuery'
import { makeDispatcher, getDispatcherType } from './makeDispatcher'
export type { SQL, SQLiteArg, SQLiteQuery }
if (process.env.NODE_ENV !== 'production') {
require('./devtools')
}
const IGNORE_CACHE = 0
export default class SQLiteAdapter implements DatabaseAdapter {
static adapterType: string = 'sqlite'
schema: AppSchema
migrations: ?SchemaMigrations
_migrationEvents: ?MigrationEvents
_tag: ConnectionTag = connectionTag()
dbName: string
_dispatcherType: DispatcherType
_dispatcher: SqliteDispatcher
_initPromise: Promise<void>
constructor(options: SQLiteAdapterOptions): void {
// console.log(`---> Initializing new adapter (${this._tag})`)
const {
dbName,
schema,
migrations,
migrationEvents,
usesExclusiveLocking = false,
experimentalUnsafeNativeReuse = false,
} = options
this.schema = schema
this.migrations = migrations
this._migrationEvents = migrationEvents
this.dbName = this._getName(dbName)
this._dispatcherType = getDispatcherType(options)
// Hacky-ish way to create an object with NativeModule-like shape, but that can dispatch method
// calls to async, synch NativeModule, or JSI implementation w/ type safety in rest of the impl
this._dispatcher = makeDispatcher(this._dispatcherType, this._tag, this.dbName, {
usesExclusiveLocking,
experimentalUnsafeNativeReuse,
})
if (process.env.NODE_ENV !== 'production') {
validateAdapter(this)
}
this._initPromise = toPromise((callback) => {
this._init((result) => {
callback(result)
devSetupCallback(result, options.onSetUpError)
})
})
}
get initializingPromise(): Promise<void> {
return this._initPromise
}
// eslint-disable-next-line no-use-before-define
async testClone(options?: $Shape<SQLiteAdapterOptions> = {}): Promise<SQLiteAdapter> {
// $FlowFixMe
const clone = new SQLiteAdapter({
dbName: this.dbName,
schema: this.schema,
jsi: this._dispatcherType === 'jsi',
...(this.migrations ? { migrations: this.migrations } : {}),
...options,
})
invariant(
clone._dispatcherType === this._dispatcherType,
'testCloned adapter has bad dispatcher type',
)
await clone._initPromise
return clone
}
_getName(name: ?string): string {
if (process.env.NODE_ENV === 'test') {
return name || `file:testdb${this._tag}?mode=memory&cache=shared`
}
return name || 'watermelon'
}
_init(callback: ResultCallback<void>): void {
// Try to initialize the database with just the schema number. If it matches the database,
// we're good. If not, we try again, this time sending the compiled schema or a migration set
// This is to speed up the launch (less to do and pass through bridge), and avoid repeating
// migration logic inside native code
this._dispatcher.call('initialize', [this.dbName, this.schema.version], (result) => {
if (result.error) {
callback(result)
return
}
const status = result.value
if (status.code === 'schema_needed') {
this._setUpWithSchema(callback)
} else if (status.code === 'migrations_needed') {
this._setUpWithMigrations(status.databaseVersion, callback)
} else if (status.code !== 'ok') {
callback({ error: new Error('Invalid database initialization status') })
} else {
callback({ value: undefined })
}
})
}
_setUpWithMigrations(databaseVersion: SchemaVersion, callback: ResultCallback<void>): void {
logger.log('[SQLite] Database needs migrations')
invariant(databaseVersion > 0, 'Invalid database schema version')
const migrationSteps = this._migrationSteps(databaseVersion)
if (migrationSteps) {
logger.log(`[SQLite] Migrating from version ${databaseVersion} to ${this.schema.version}...`)
if (this._migrationEvents && this._migrationEvents.onStart) {
this._migrationEvents.onStart()
}
this._dispatcher.call(
'setUpWithMigrations',
[
this.dbName,
require('./encodeSchema').encodeMigrationSteps(migrationSteps, this.schema),
databaseVersion,
this.schema.version,
],
(result) => {
if (result.error) {
logger.error('[SQLite] Migration failed', result.error)
if (this._migrationEvents && this._migrationEvents.onError) {
this._migrationEvents.onError(result.error)
}
} else {
logger.log('[SQLite] Migration successful')
if (this._migrationEvents && this._migrationEvents.onSuccess) {
this._migrationEvents.onSuccess()
}
}
callback(result)
},
)
} else {
logger.warn(
'[SQLite] Migrations not available for this version range, resetting database instead',
)
this._setUpWithSchema(callback)
}
}
_setUpWithSchema(callback: ResultCallback<void>): void {
logger.log(`[SQLite] Setting up database with schema version ${this.schema.version}`)
this._dispatcher.call(
'setUpWithSchema',
[this.dbName, this._encodedSchema(), this.schema.version],
(result) => {
if (!result.error) {
logger.log(`[SQLite] Schema set up successfully`)
}
callback(result)
},
)
}
find(table: TableName<any>, id: RecordId, callback: ResultCallback<CachedFindResult>): void {
validateTable(table, this.schema)
this._dispatcher.call('find', [table, id], (result) =>
callback(
mapValue((rawRecord) => sanitizeFindResult(rawRecord, this.schema.tables[table]), result),
),
)
}
query(query: SerializedQuery, callback: ResultCallback<CachedQueryResult>): void {
validateTable(query.table, this.schema)
const { table } = query
const [sql, args] = encodeQuery(query)
this._dispatcher.call('query', [table, sql, args], (result) =>
callback(
mapValue(
(rawRecords) => sanitizeQueryResult(rawRecords, this.schema.tables[table]),
result,
),
),
)
}
queryIds(query: SerializedQuery, callback: ResultCallback<RecordId[]>): void {
validateTable(query.table, this.schema)
this._dispatcher.call(
'queryIds',
// $FlowFixMe
encodeQuery(query),
callback,
)
}
unsafeQueryRaw(query: SerializedQuery, callback: ResultCallback<any[]>): void {
validateTable(query.table, this.schema)
this._dispatcher.call(
'unsafeQueryRaw',
// $FlowFixMe
encodeQuery(query),
callback,
)
}
count(query: SerializedQuery, callback: ResultCallback<number>): void {
validateTable(query.table, this.schema)
this._dispatcher.call(
'count',
// $FlowFixMe
encodeQuery(query, true),
callback,
)
}
batch(operations: BatchOperation[], callback: ResultCallback<void>): void {
this._dispatcher.call(
'batch',
[require('./encodeBatch').default(operations, this.schema)],
callback,
)
}
getDeletedRecords(table: TableName<any>, callback: ResultCallback<RecordId[]>): void {
validateTable(table, this.schema)
this._dispatcher.call(
'queryIds',
[`select id from "${table}" where _status='deleted'`, []],
callback,
)
}
destroyDeletedRecords(
table: TableName<any>,
recordIds: RecordId[],
callback: ResultCallback<void>,
): void {
validateTable(table, this.schema)
const operation = [
0,
null,
`delete from "${table}" where "id" == ?`,
recordIds.map((id) => [id]),
]
this._dispatcher.call('batch', [[operation]], callback)
}
unsafeLoadFromSync(jsonId: number, callback: ResultCallback<any>): void {
if (this._dispatcherType !== 'jsi') {
callback({ error: new Error('unsafeLoadFromSync unavailable. Use JSI mode to enable.') })
return
}
const { encodeDropIndices, encodeCreateIndices } = require('./encodeSchema')
const { schema } = this
this._dispatcher.call(
'unsafeLoadFromSync',
[jsonId, schema, encodeDropIndices(schema), encodeCreateIndices(schema)],
(result) =>
callback(
mapValue(
// { key: JSON.stringify(value) } -> { key: value }
(residualValues) => mapObj((values) => JSON.parse(values), residualValues),
result,
),
),
)
}
provideSyncJson(id: number, syncPullResultJson: string, callback: ResultCallback<void>): void {
if (this._dispatcherType !== 'jsi') {
callback({ error: new Error('provideSyncJson unavailable. Use JSI mode to enable.') })
return
}
this._dispatcher.call('provideSyncJson', [id, syncPullResultJson], callback)
}
unsafeResetDatabase(callback: ResultCallback<void>): void {
this._dispatcher.call(
'unsafeResetDatabase',
[this._encodedSchema(), this.schema.version],
(result) => {
if (result.value) {
logger.log('[SQLite] Database is now reset')
}
callback(result)
},
)
}
unsafeExecute(operations: UnsafeExecuteOperations, callback: ResultCallback<void>): void {
if (process.env.NODE_ENV !== 'production') {
invariant(
operations &&
typeof operations === 'object' &&
Object.keys(operations).length === 1 &&
(Array.isArray(operations.sqls) || typeof operations.sqlString === 'string'),
"unsafeExecute expects an { sqls: [ [sql, [args..]], ... ] } or { sqlString: 'foo; bar' } object",
)
}
if (operations.sqls) {
const queries: SQLiteQuery[] = (operations: any).sqls
const batchOperations = queries.map(([sql, args]) => [IGNORE_CACHE, null, sql, [args]])
this._dispatcher.call('batch', [batchOperations], callback)
} else if (operations.sqlString) {
this._dispatcher.call('unsafeExecuteMultiple', [operations.sqlString], callback)
}
}
getLocal(key: string, callback: ResultCallback<?string>): void {
this._dispatcher.call('getLocal', [key], callback)
}
setLocal(key: string, value: string, callback: ResultCallback<void>): void {
invariant(typeof value === 'string', 'adapter.setLocal() value must be a string')
const operation = [
IGNORE_CACHE,
null,
`insert or replace into "local_storage" ("key", "value") values (?, ?)`,
[[key, value]],
]
this._dispatcher.call('batch', [[operation]], callback)
}
removeLocal(key: string, callback: ResultCallback<void>): void {
const operation = [IGNORE_CACHE, null, `delete from "local_storage" where "key" == ?`, [[key]]]
this._dispatcher.call('batch', [[operation]], callback)
}
_encodedSchema(): SQL {
return require('./encodeSchema').encodeSchema(this.schema)
}
_migrationSteps(fromVersion: SchemaVersion): ?(MigrationStep[]) {
const { stepsForMigration } = require('../../Schema/migrations/stepsForMigration')
const { migrations } = this
// TODO: Remove this after migrations are shipped
if (!migrations) {
return null
}
return stepsForMigration({
migrations,
fromVersion,
toVersion: this.schema.version,
})
}
}