-
Notifications
You must be signed in to change notification settings - Fork 410
/
box_impl.dart
374 lines (320 loc) · 7.94 KB
/
box_impl.dart
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
part of hive;
class _BoxImpl<E> implements Box<E> {
_BoxImpl(this.isar) : collection = isar.frames;
final Isar isar;
final IsarCollection<int, Frame> collection;
bool? writeTxn;
@override
bool get isOpen => isar.isOpen;
@override
String get name => isar.name;
@override
String get directory => isar.directory;
@override
int get length => collection.count();
@override
bool get isEmpty => length == 0;
@override
bool get isNotEmpty => length != 0;
@override
T read<T>(T Function() callback) {
if (writeTxn == null) {
return isar.read((isar) {
writeTxn = false;
try {
return callback();
} finally {
writeTxn = null;
}
});
} else {
return callback();
}
}
@override
T write<T>(T Function() callback) {
if (writeTxn == null) {
return isar.write((isar) {
writeTxn = true;
try {
return callback();
} finally {
writeTxn = null;
}
});
} else if (writeTxn!) {
return callback();
} else {
throw StateError('Cannot write inside a read transaction.');
}
}
@override
List<String> get keys {
return collection.where().keyIsNotNull().keyProperty().findAll().cast();
}
@override
String? keyAt(int index) {
final frame = collection.where().findFirst(offset: index);
if (frame == null) {
throw IndexError.withLength(index, length);
}
return frame.key;
}
E _frameFromJson(Frame frame) {
return Hive._typeRegistry.fromJson(frame.typeId, frame.value);
}
@override
bool containsKey(String key) {
return !collection.where().keyEqualTo(key).isEmpty();
}
@override
E? get(String key, {E? defaultValue}) {
final frame = collection.where().keyEqualTo(key).findFirst();
return frame != null ? _frameFromJson(frame) : defaultValue;
}
@override
E getAt(int index) {
final frame = collection.where().findFirst(offset: index);
if (frame == null) {
throw IndexError.withLength(index, length);
}
return _frameFromJson(frame);
}
@override
E? operator [](dynamic key) {
if (key is int) {
return getAt(key);
} else if (key is String) {
return get(key);
} else {
throw ArgumentError.value(key, 'key', 'must be a String or int');
}
}
@override
List<E?> getAll(Iterable<String> keys) {
if (keys.isEmpty) return [];
final frames = collection
.where()
// ignore: inference_failure_on_function_invocation
.anyOf(
keys,
(q, key) => q.keyEqualTo(key),
)
.findAll();
return frames.map(_frameFromJson).toList();
}
@override
List<E> getRange(int start, int end) {
if (start == 0 && end == 0) {
return [];
}
final frames = collection
.where()
.findAll(offset: start, limit: end - start)
.map(_frameFromJson)
.toList();
if (frames.length != end - start) {
RangeError.checkValidRange(start, end, length);
}
return frames;
}
@override
List<E> getBetween({String? startKey, String? endKey}) {
final frames = collection
.where()
.optional(
endKey != null,
(q) => q.keyBetween(startKey ?? '', endKey),
)
.optional(
endKey == null,
(q) => q.keyGreaterThanOrEqualTo(startKey ?? ''),
)
.findAll()
.map(_frameFromJson)
.toList();
return frames;
}
@override
void put(String key, E value) {
write(() {
final frame = Frame(
id: collection.autoIncrement(),
typeId: Hive._typeRegistry.findTypeId(value),
key: key,
value: value,
);
collection.put(frame);
});
}
@override
void putAt(int index, E value) {
write(() {
final idAtIndex =
collection.where().idProperty().findFirst(offset: index);
if (idAtIndex == null) {
throw IndexError.withLength(index, length);
}
final frame = Frame(
id: idAtIndex,
typeId: Hive._typeRegistry.findTypeId(value),
value: value,
);
collection.put(frame);
});
}
@override
void operator []=(Object key, E value) {
if (key is int) {
putAt(key, value);
} else if (key is String) {
put(key, value);
} else {
throw ArgumentError.value(key, 'key', 'must be a String or int');
}
}
@override
void putAll(Map<String, E> entries) {
write(() {
if (entries.isEmpty) return;
final frames = <Frame>[];
for (final entry in entries.entries) {
final frame = Frame(
id: collection.autoIncrement(),
typeId: Hive._typeRegistry.findTypeId(entry.value),
key: entry.key,
value: entry.value,
);
frames.add(frame);
}
collection.putAll(frames);
});
}
@override
void putRange(int start, int end, Iterable<E> values) {
write(() {
if (start == 0 && end == 0) {
return;
}
final idsInRange = collection
.where()
.idProperty()
.findAll(offset: start, limit: end - start);
if (idsInRange.length != end - start) {
RangeError.checkValidRange(start, end, length);
throw ArgumentError.value(
values,
'values',
'must have the same length as the range',
);
}
final frames = <Frame>[];
for (final value in values) {
final frame = Frame(
id: idsInRange[frames.length],
typeId: Hive._typeRegistry.findTypeId(value),
value: value,
);
frames.add(frame);
}
collection.putAll(frames);
});
}
@override
void add(E value, {String? key}) {
write(() {
final frame = Frame(
id: collection.autoIncrement(),
typeId: Hive._typeRegistry.findTypeId(value),
key: key,
value: value,
);
collection.put(frame);
});
}
@override
void addAll(Iterable<E> values) {
write(() {
final frames = <Frame>[];
for (final value in values) {
final frame = Frame(
id: collection.autoIncrement(),
typeId: Hive._typeRegistry.findTypeId(value),
value: value,
);
frames.add(frame);
}
collection.putAll(frames);
});
}
@override
bool delete(String key) {
return write(() {
return collection.where().keyEqualTo(key).deleteFirst();
});
}
@override
void deleteAt(int index) {
return write(() {
final deleted = collection.where().deleteFirst(offset: index);
if (!deleted) {
throw IndexError.withLength(index, length);
}
});
}
@override
int deleteAll(Iterable<String> keys) {
return write(() {
if (keys.isEmpty) return 0;
return collection
.where()
// ignore: inference_failure_on_function_invocation
.anyOf(keys, (q, key) => q.keyEqualTo(key))
.deleteAll();
});
}
@override
void deleteRange(int start, int end) {
return write(() {
if (start == 0 && end == 0) {
return;
}
final deleted =
collection.where().deleteAll(offset: start, limit: end - start);
if (deleted != end - start) {
RangeError.checkValidRange(start, end, length);
}
});
}
@override
void clear({bool notify = true}) {
isar.write((isar) {
collection.clear();
});
}
@override
void close() {
Hive._openBoxes.remove(name);
isar.close();
}
@override
void deleteFromDisk() {
Hive._openBoxes.remove(name);
isar.close(deleteFromDisk: true);
}
@override
Stream<E?> watchKey(String key) {
return isar.frames.where().keyEqualTo(key).watch().map((frames) {
final frame = frames.firstOrNull;
if (frame == null) {
return null;
} else {
return _frameFromJson(frame);
}
});
}
@override
Stream<void> watch() {
return isar.frames.watchLazy();
}
}