-
Notifications
You must be signed in to change notification settings - Fork 7
/
capacitor-filesystem-table.ts
219 lines (197 loc) · 6 KB
/
capacitor-filesystem-table.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
/* eslint-disable rxjs/no-subject-value */
import {
Directory as FilesystemDirectory,
Encoding as FilesystemEncoding,
FilesystemPlugin,
} from '@capacitor/filesystem';
import { Mutex } from 'async-mutex';
import { differenceWith, intersectionWith, isEqual, uniqWith } from 'lodash-es';
import { BehaviorSubject, defer } from 'rxjs';
import { concatMapTo } from 'rxjs/operators';
import { isNonNullable } from '../../../../utils/rx-operators/rx-operators';
import { OnConflictStrategy, Table, Tuple } from '../table';
export class CapacitorFilesystemTable<T extends Tuple> implements Table<T> {
private static readonly initializationMutex = new Mutex();
private readonly directory = FilesystemDirectory.Data;
private readonly rootDir = 'CapacitorFilesystemTable';
private readonly tuples$ = new BehaviorSubject<T[] | undefined>(undefined);
readonly queryAll$ = defer(() => this.initialize()).pipe(
concatMapTo(this.tuples$.asObservable()),
isNonNullable()
);
private hasInitialized = false;
private readonly mutex = new Mutex();
constructor(
readonly id: string,
private readonly filesystemPlugin: FilesystemPlugin
) {}
async queryAll() {
await this.initialize();
if (this.tuples$.value) {
return this.tuples$.value;
}
throw new Error(`${this.id} has not initialized.`);
}
private async initialize() {
return CapacitorFilesystemTable.initializationMutex.runExclusive(
async () => {
if (this.hasInitialized) {
return;
}
if (!(await this.hasCreatedJson())) {
await this.createEmptyJson();
}
await this.loadJson();
this.hasInitialized = true;
}
);
}
private async hasCreatedJson() {
const dirs = await this.filesystemPlugin.readdir({
directory: this.directory,
path: '',
});
if (!dirs.files.find(f => f.name.includes(this.rootDir))) {
await this.filesystemPlugin.mkdir({
directory: this.directory,
path: this.rootDir,
recursive: true,
});
}
const files = await this.filesystemPlugin.readdir({
directory: this.directory,
path: this.rootDir,
});
return files.files.find(f => f.name.includes(`${this.id}.json`));
}
private async createEmptyJson() {
return this.filesystemPlugin.writeFile({
directory: this.directory,
path: `${this.rootDir}/${this.id}.json`,
data: JSON.stringify([]),
encoding: FilesystemEncoding.UTF8,
recursive: true,
});
}
private async loadJson() {
const result = await this.filesystemPlugin.readFile({
directory: this.directory,
path: `${this.rootDir}/${this.id}.json`,
encoding: FilesystemEncoding.UTF8,
});
this.tuples$.next(JSON.parse(result.data));
}
async insert(
tuples: T[],
onConflict = OnConflictStrategy.ABORT,
comparator = isEqual
) {
return this.mutex.runExclusive(async () => {
assertNoDuplicatedTuples(tuples, comparator);
await this.initialize();
if (onConflict === OnConflictStrategy.ABORT) {
this.assertNoConflictWithExistedTuples(tuples, comparator);
this.tuples$.next([...(this.tuples$.value ?? []), ...tuples]);
} else if (onConflict === OnConflictStrategy.IGNORE) {
this.tuples$.next(
uniqWith([...(this.tuples$.value ?? []), ...tuples], comparator)
);
} else {
this.tuples$.next(
uniqWith([...tuples, ...(this.tuples$.value ?? [])], comparator)
);
}
await this.dumpJson();
return tuples;
});
}
private assertNoConflictWithExistedTuples(
tuples: T[],
comparator: (x: T, y: T) => boolean
) {
const conflicted = intersectionWith(
tuples,
this.tuples$.value ?? [],
comparator
);
if (conflicted.length !== 0) {
throw new Error(`Tuples existed: ${JSON.stringify(conflicted)}`);
}
}
async delete(tuples: T[], comparator = isEqual) {
return this.mutex.runExclusive(async () => {
this.assertTuplesExist(tuples, comparator);
await this.initialize();
const afterDeletion = differenceWith(
this.tuples$.value,
tuples,
comparator
);
this.tuples$.next(afterDeletion);
await this.dumpJson();
return tuples;
});
}
async update(tuples: T[], comparator: (x: T, y: T) => boolean) {
return this.mutex.runExclusive(async () => {
const afterDeletion = differenceWith(
this.tuples$.value,
tuples,
comparator
);
this.tuples$.next(afterDeletion.concat(tuples));
await this.dumpJson();
return tuples;
});
}
private assertTuplesExist(tuples: T[], comparator: (x: T, y: T) => boolean) {
const nonexistent = differenceWith(
tuples,
this.tuples$.value ?? [],
comparator
);
if (nonexistent.length !== 0) {
throw new Error(
`Cannot delete nonexistent tuples: ${JSON.stringify(nonexistent)}`
);
}
}
private async dumpJson() {
return this.filesystemPlugin.writeFile({
directory: this.directory,
path: `${this.rootDir}/${this.id}.json`,
data: JSON.stringify(this.tuples$.value),
encoding: FilesystemEncoding.UTF8,
recursive: true,
});
}
async clear() {
await this.destroy();
return this.tuples$.next([]);
}
async drop() {
await this.destroy();
return this.tuples$.complete();
}
private async destroy() {
return this.mutex.runExclusive(async () => {
this.hasInitialized = false;
if (await this.hasCreatedJson()) {
await this.filesystemPlugin.deleteFile({
directory: this.directory,
path: `${this.rootDir}/${this.id}.json`,
});
}
});
}
}
function assertNoDuplicatedTuples<T>(
tuples: T[],
comparator: (x: T, y: T) => boolean
) {
const unique = uniqWith(tuples, comparator);
if (tuples.length !== unique.length) {
const conflicted = differenceWith(tuples, unique, comparator);
throw new Error(`Tuples duplicated: ${JSON.stringify(conflicted)}`);
}
}