-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathStorageAdapterBase.ts
553 lines (477 loc) · 14.2 KB
/
StorageAdapterBase.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
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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
import type { IDBPDatabase, IDBPObjectStore } from 'idb';
import { ConsoleLogger } from '@aws-amplify/core';
import { ModelInstanceCreator } from '../../datastore/datastore';
import { ModelPredicateCreator } from '../../predicates';
import {
InternalSchema,
ModelInstanceMetadata,
ModelPredicate,
NamespaceResolver,
OpType,
PaginationInput,
PersistentModel,
PersistentModelConstructor,
PredicateObject,
PredicatesGroup,
QueryOne,
isPredicateObj,
} from '../../types';
import {
NAMESPACES,
extractPrimaryKeyFieldNames,
extractPrimaryKeyValues,
getIndexKeys,
getStorename,
isModelConstructor,
traverseModel,
validatePredicate,
} from '../../util';
import { ModelRelationship } from '../relationship';
import type AsyncStorageDatabase from './AsyncStorageDatabase';
import { Adapter } from './index';
const logger = new ConsoleLogger('DataStore');
const DB_NAME = 'amplify-datastore';
export abstract class StorageAdapterBase implements Adapter {
// Non-null assertions (bang operators) added to most properties to make TS happy.
// For now, we can be reasonably sure they're available when they're needed, because
// the adapter is not used directly outside the library boundary.
protected schema!: InternalSchema;
protected namespaceResolver!: NamespaceResolver;
protected modelInstanceCreator!: ModelInstanceCreator;
protected getModelConstructorByModelName!: (
namsespaceName: NAMESPACES,
modelName: string,
) => PersistentModelConstructor<any>;
protected initPromise!: Promise<void>;
protected resolve!: (value?: any) => void;
protected reject!: (value?: any) => void;
protected dbName: string = DB_NAME;
protected abstract db: IDBPDatabase | AsyncStorageDatabase;
protected abstract preSetUpChecks(): Promise<void>;
protected abstract preOpCheck(): Promise<void>;
protected abstract initDb(): Promise<IDBPDatabase | AsyncStorageDatabase>;
/**
* Initializes local DB
*
* @param theSchema
* @param namespaceResolver
* @param modelInstanceCreator
* @param getModelConstructorByModelName
* @param sessionId
*/
public async setUp(
theSchema: InternalSchema,
namespaceResolver: NamespaceResolver,
modelInstanceCreator: ModelInstanceCreator,
getModelConstructorByModelName: (
namsespaceName: NAMESPACES,
modelName: string,
) => PersistentModelConstructor<any>,
sessionId?: string,
): Promise<void> {
await this.preSetUpChecks();
if (!this.initPromise) {
this.initPromise = new Promise((resolve, reject) => {
this.resolve = resolve;
this.reject = reject;
});
} else {
await this.initPromise;
return;
}
if (sessionId) {
this.dbName = `${DB_NAME}-${sessionId}`;
}
this.schema = theSchema;
this.namespaceResolver = namespaceResolver;
this.modelInstanceCreator = modelInstanceCreator;
this.getModelConstructorByModelName = getModelConstructorByModelName;
try {
if (!this.db) {
this.db = await this.initDb();
this.resolve();
}
} catch (error) {
this.reject(error);
}
}
/*
* Abstract Methods for Adapter interface
* Not enough implementation similarities between the adapters
* to consolidate in the base class
*/
public abstract clear(): Promise<void>;
public abstract save<T extends PersistentModel>(
model: T,
condition?: ModelPredicate<T>,
);
public abstract query<T extends PersistentModel>(
modelConstructor: PersistentModelConstructor<T>,
predicate?: ModelPredicate<T>,
pagination?: PaginationInput<T>,
): Promise<T[]>;
public abstract queryOne<T extends PersistentModel>(
modelConstructor: PersistentModelConstructor<T>,
firstOrLast: QueryOne,
): Promise<T | undefined>;
public abstract batchSave<T extends PersistentModel>(
modelConstructor: PersistentModelConstructor<any>,
items: ModelInstanceMetadata[],
): Promise<[T, OpType][]>;
/**
* @param modelConstructor
* @returns local DB table name
*/
protected getStorenameForModel(
modelConstructor: PersistentModelConstructor<any>,
): string {
const namespace = this.namespaceResolver(modelConstructor);
const { name: modelName } = modelConstructor;
return getStorename(namespace, modelName);
}
/**
*
* @param model - instantiated model record
* @returns the record's primary key values
*/
protected getIndexKeyValuesFromModel<T extends PersistentModel>(
model: T,
): string[] {
const modelConstructor = Object.getPrototypeOf(model)
.constructor as PersistentModelConstructor<T>;
const namespaceName = this.namespaceResolver(modelConstructor);
const keys = getIndexKeys(
this.schema.namespaces[namespaceName],
modelConstructor.name,
);
return extractPrimaryKeyValues(model, keys);
}
/**
* Common metadata for `save` operation
* used by individual storage adapters
*
* @param model
*/
protected saveMetadata<T extends PersistentModel>(
model: T,
): {
storeName: string;
set: Set<string>;
connectionStoreNames;
modelKeyValues: string[];
} {
const modelConstructor = Object.getPrototypeOf(model)
.constructor as PersistentModelConstructor<T>;
const storeName = this.getStorenameForModel(modelConstructor);
const namespaceName = this.namespaceResolver(modelConstructor);
const connectedModels = traverseModel(
modelConstructor.name,
model,
this.schema.namespaces[namespaceName],
this.modelInstanceCreator,
this.getModelConstructorByModelName!,
);
const set = new Set<string>();
const connectionStoreNames = Object.values(connectedModels).map(
({ modelName, item, instance }) => {
const resolvedStoreName = getStorename(namespaceName, modelName);
set.add(resolvedStoreName);
const keys = getIndexKeys(
this.schema.namespaces[namespaceName],
modelName,
);
return { storeName: resolvedStoreName, item, instance, keys };
},
);
const modelKeyValues = this.getIndexKeyValuesFromModel(model);
return { storeName, set, connectionStoreNames, modelKeyValues };
}
/**
* Enforces conditional save. Throws if condition is not met.
* used by individual storage adapters
*
* @param model
*/
protected validateSaveCondition<T extends PersistentModel>(
condition?: ModelPredicate<T>,
fromDB?: unknown,
): void {
if (!(condition && fromDB)) {
return;
}
const predicates = ModelPredicateCreator.getPredicates(condition);
const { predicates: predicateObjs, type } = predicates!;
const isValid = validatePredicate(fromDB, type, predicateObjs);
if (!isValid) {
const msg = 'Conditional update failed';
logger.error(msg, { model: fromDB, condition: predicateObjs });
throw new Error(msg);
}
}
protected abstract _get<T>(
storeOrStoreName: IDBPObjectStore | string,
keyArr: string[],
): Promise<T>;
/**
* Instantiate models from POJO records returned from the database
*
* @param namespaceName - string model namespace
* @param srcModelName - string model name
* @param records - array of uninstantiated records
* @returns
*/
protected async load<T>(
namespaceName: NAMESPACES,
srcModelName: string,
records: T[],
): Promise<T[]> {
const namespace = this.schema.namespaces[namespaceName];
const relations = namespace.relationships![srcModelName].relationTypes;
const connectionStoreNames = relations.map(({ modelName }) => {
return getStorename(namespaceName, modelName);
});
const modelConstructor = this.getModelConstructorByModelName!(
namespaceName,
srcModelName,
);
if (connectionStoreNames.length === 0) {
return records.map(record =>
this.modelInstanceCreator(modelConstructor, record),
);
}
return records.map(record =>
this.modelInstanceCreator(modelConstructor, record),
);
}
/**
* Extracts operands from a predicate group into an array of key values
* Used in the query method
*
* @param predicates - predicate group
* @param keyPath - string array of key names ['id', 'sortKey']
* @returns string[] of key values
*
* @example
* ```js
* { and:[{ id: { eq: 'abc' }}, { sortKey: { eq: 'def' }}] }
* ```
* Becomes
* ```
* ['abc', 'def']
* ```
*/
private keyValueFromPredicate<T extends PersistentModel>(
predicates: PredicatesGroup<T>,
keyPath: string[],
): string[] | undefined {
const { predicates: predicateObjs } = predicates;
if (predicateObjs.length !== keyPath.length) {
return;
}
const keyValues = [] as any[];
for (const key of keyPath) {
const predicateObj = predicateObjs.find(
p =>
// it's a relevant predicate object only if it's an equality
// operation for a key field from the key:
isPredicateObj(p) &&
p.field === key &&
p.operator === 'eq' &&
p.operand !== null &&
p.operand !== undefined,
) as PredicateObject<T>;
predicateObj && keyValues.push(predicateObj.operand);
}
return keyValues.length === keyPath.length ? keyValues : undefined;
}
/**
* Common metadata for `query` operation
* used by individual storage adapters
*
* @param modelConstructor
* @param predicate
* @param pagination
*/
protected queryMetadata<T extends PersistentModel>(
modelConstructor: PersistentModelConstructor<T>,
predicate?: ModelPredicate<T>,
pagination?: PaginationInput<T>,
) {
const storeName = this.getStorenameForModel(modelConstructor);
const namespaceName = this.namespaceResolver(
modelConstructor,
) as NAMESPACES;
const predicates =
predicate && ModelPredicateCreator.getPredicates(predicate);
const keyPath = getIndexKeys(
this.schema.namespaces[namespaceName],
modelConstructor.name,
);
const queryByKey =
predicates && this.keyValueFromPredicate(predicates, keyPath);
const hasSort = pagination && pagination.sort;
const hasPagination = pagination && pagination.limit;
return {
storeName,
namespaceName,
queryByKey,
predicates,
hasSort,
hasPagination,
};
}
/**
* Delete record
* Cascades to related records (for Has One and Has Many relationships)
*
* @param modelOrModelConstructor
* @param condition
* @returns
*/
public async delete<T extends PersistentModel>(
modelOrModelConstructor: T | PersistentModelConstructor<T>,
condition?: ModelPredicate<T>,
): Promise<[T[], T[]]> {
await this.preOpCheck();
const deleteQueue: { storeName: string; items: T[] }[] = [];
if (isModelConstructor(modelOrModelConstructor)) {
const modelConstructor =
modelOrModelConstructor as PersistentModelConstructor<T>;
const namespace = this.namespaceResolver(modelConstructor) as NAMESPACES;
const models = await this.query(modelConstructor, condition);
if (condition !== undefined) {
await this.deleteTraverse(
models,
modelConstructor,
namespace,
deleteQueue,
);
await this.deleteItem(deleteQueue);
const deletedModels = deleteQueue.reduce(
(acc, { items }) => acc.concat(items),
[] as T[],
);
return [models, deletedModels];
} else {
await this.deleteTraverse(
models,
modelConstructor,
namespace,
deleteQueue,
);
await this.deleteItem(deleteQueue);
const deletedModels = deleteQueue.reduce(
(acc, { items }) => acc.concat(items),
[] as T[],
);
return [models, deletedModels];
}
} else {
const model = modelOrModelConstructor as T;
const modelConstructor = Object.getPrototypeOf(model)
.constructor as PersistentModelConstructor<T>;
const namespaceName = this.namespaceResolver(
modelConstructor,
) as NAMESPACES;
const storeName = this.getStorenameForModel(modelConstructor);
if (condition) {
const keyValues = this.getIndexKeyValuesFromModel(model);
const fromDB = await this._get(storeName, keyValues);
if (fromDB === undefined) {
const msg = 'Model instance not found in storage';
logger.warn(msg, { model });
return [[model], []];
}
const predicates = ModelPredicateCreator.getPredicates(condition);
const { predicates: predicateObjs, type } =
predicates as PredicatesGroup<T>;
const isValid = validatePredicate(fromDB as T, type, predicateObjs);
if (!isValid) {
const msg = 'Conditional update failed';
logger.error(msg, { model: fromDB, condition: predicateObjs });
throw new Error(msg);
}
await this.deleteTraverse(
[model],
modelConstructor,
namespaceName,
deleteQueue,
);
} else {
await this.deleteTraverse(
[model],
modelConstructor,
namespaceName,
deleteQueue,
);
}
await this.deleteItem(deleteQueue);
const deletedModels = deleteQueue.reduce(
(acc, { items }) => acc.concat(items),
[] as T[],
);
return [[model], deletedModels];
}
}
protected abstract deleteItem<T extends PersistentModel>(
deleteQueue?: {
storeName: string;
items: T[] | IDBValidKey[];
}[],
);
/**
* Recursively traverse relationship graph and add
* all Has One and Has Many relations to `deleteQueue` param
*
* Actual deletion of records added to `deleteQueue` occurs in the `delete` method
*
* @param models
* @param modelConstructor
* @param namespace
* @param deleteQueue
*/
private async deleteTraverse<T extends PersistentModel>(
models: T[],
modelConstructor: PersistentModelConstructor<T>,
namespace: NAMESPACES,
deleteQueue: { storeName: string; items: T[] }[],
): Promise<void> {
const cascadingRelationTypes = ['HAS_ONE', 'HAS_MANY'];
for await (const model of models) {
const modelDefinition =
this.schema.namespaces[namespace].models[modelConstructor.name];
const modelMeta = {
builder: modelConstructor,
schema: modelDefinition,
pkField: extractPrimaryKeyFieldNames(modelDefinition),
};
const relationships = ModelRelationship.allFrom(modelMeta).filter(r =>
cascadingRelationTypes.includes(r.type),
);
for await (const r of relationships) {
const queryObject = r.createRemoteQueryObject(model);
if (queryObject !== null) {
const relatedRecords = await this.query(
r.remoteModelConstructor,
ModelPredicateCreator.createFromFlatEqualities(
r.remoteDefinition!,
queryObject,
),
);
await this.deleteTraverse(
relatedRecords,
r.remoteModelConstructor,
namespace,
deleteQueue,
);
}
}
}
deleteQueue.push({
storeName: getStorename(namespace, modelConstructor.name),
items: models,
});
}
}