-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
abstract-level.js
935 lines (751 loc) · 27.6 KB
/
abstract-level.js
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
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
'use strict'
const { supports } = require('level-supports')
const { Transcoder } = require('level-transcoder')
const { EventEmitter } = require('events')
const ModuleError = require('module-error')
const combineErrors = require('maybe-combine-errors')
const { AbstractIterator } = require('./abstract-iterator')
const { DefaultKeyIterator, DefaultValueIterator } = require('./lib/default-kv-iterator')
const { DeferredIterator, DeferredKeyIterator, DeferredValueIterator } = require('./lib/deferred-iterator')
const { DefaultChainedBatch } = require('./lib/default-chained-batch')
const { DatabaseHooks } = require('./lib/hooks')
const { PrewriteBatch } = require('./lib/prewrite-batch')
const { EventMonitor } = require('./lib/event-monitor')
const { getOptions, noop, emptyOptions, resolvedPromise } = require('./lib/common')
const { prefixDescendantKey, isDescendant } = require('./lib/prefixes')
const { DeferredQueue } = require('./lib/deferred-queue')
const rangeOptions = require('./lib/range-options')
const kResources = Symbol('resources')
const kCloseResources = Symbol('closeResources')
const kQueue = Symbol('queue')
const kDeferOpen = Symbol('deferOpen')
const kOptions = Symbol('options')
const kStatus = Symbol('status')
const kStatusChange = Symbol('statusChange')
const kStatusLocked = Symbol('statusLocked')
const kDefaultOptions = Symbol('defaultOptions')
const kTranscoder = Symbol('transcoder')
const kKeyEncoding = Symbol('keyEncoding')
const kValueEncoding = Symbol('valueEncoding')
const kEventMonitor = Symbol('eventMonitor')
const kArrayBatch = Symbol('arrayBatch')
class AbstractLevel extends EventEmitter {
constructor (manifest, options) {
super()
if (typeof manifest !== 'object' || manifest === null) {
throw new TypeError("The first argument 'manifest' must be an object")
}
options = getOptions(options)
const { keyEncoding, valueEncoding, passive, ...forward } = options
this[kResources] = new Set()
this[kQueue] = new DeferredQueue()
this[kDeferOpen] = true
this[kOptions] = forward
this[kStatus] = 'opening'
this[kStatusChange] = null
this[kStatusLocked] = false
this.hooks = new DatabaseHooks()
this.supports = supports(manifest, {
deferredOpen: true,
// TODO (next major): add seek
snapshots: manifest.snapshots !== false,
permanence: manifest.permanence !== false,
encodings: manifest.encodings || {},
events: Object.assign({}, manifest.events, {
opening: true,
open: true,
closing: true,
closed: true,
write: true,
put: true,
del: true,
batch: true,
clear: true
})
})
// Monitor event listeners
this[kEventMonitor] = new EventMonitor(this, [
{ name: 'write' },
{ name: 'put', deprecated: true, alt: 'write' },
{ name: 'del', deprecated: true, alt: 'write' },
{ name: 'batch', deprecated: true, alt: 'write' }
])
this[kTranscoder] = new Transcoder(formats(this))
this[kKeyEncoding] = this[kTranscoder].encoding(keyEncoding || 'utf8')
this[kValueEncoding] = this[kTranscoder].encoding(valueEncoding || 'utf8')
// Add custom and transcoder encodings to manifest
for (const encoding of this[kTranscoder].encodings()) {
if (!this.supports.encodings[encoding.commonName]) {
this.supports.encodings[encoding.commonName] = true
}
}
this[kDefaultOptions] = {
empty: emptyOptions,
entry: Object.freeze({
keyEncoding: this[kKeyEncoding].commonName,
valueEncoding: this[kValueEncoding].commonName
}),
entryFormat: Object.freeze({
keyEncoding: this[kKeyEncoding].format,
valueEncoding: this[kValueEncoding].format
}),
key: Object.freeze({
keyEncoding: this[kKeyEncoding].commonName
}),
keyFormat: Object.freeze({
keyEncoding: this[kKeyEncoding].format
})
}
// Before we start opening, let subclass finish its constructor
// and allow events and postopen hook functions to be added.
queueMicrotask(() => {
if (this[kDeferOpen]) {
this.open({ passive: false }).catch(noop)
}
})
}
get status () {
return this[kStatus]
}
get parent () {
return null
}
keyEncoding (encoding) {
return this[kTranscoder].encoding(encoding != null ? encoding : this[kKeyEncoding])
}
valueEncoding (encoding) {
return this[kTranscoder].encoding(encoding != null ? encoding : this[kValueEncoding])
}
async open (options) {
options = { ...this[kOptions], ...getOptions(options) }
options.createIfMissing = options.createIfMissing !== false
options.errorIfExists = !!options.errorIfExists
// TODO: document why we do this
const postopen = this.hooks.postopen.noop ? null : this.hooks.postopen.run
const passive = options.passive
if (passive && this[kDeferOpen]) {
// Wait a tick until constructor calls open() non-passively
await undefined
}
// Wait for pending changes and check that opening is allowed
assertUnlocked(this)
while (this[kStatusChange] !== null) await this[kStatusChange].catch(noop)
assertUnlocked(this)
if (passive) {
if (this[kStatus] !== 'open') throw new NotOpenError()
} else if (this[kStatus] === 'closed' || this[kDeferOpen]) {
this[kDeferOpen] = false
this[kStatusChange] = resolvedPromise // TODO: refactor
this[kStatusChange] = (async () => {
this[kStatus] = 'opening'
try {
this.emit('opening')
await this._open(options)
} catch (err) {
this[kStatus] = 'closed'
// Must happen before we close resources, in case their close() is waiting
// on a deferred operation which in turn is waiting on db.open().
this[kQueue].drain()
try {
await this[kCloseResources]()
} catch (resourceErr) {
// eslint-disable-next-line no-ex-assign
err = combineErrors([err, resourceErr])
}
throw new NotOpenError(err)
}
this[kStatus] = 'open'
if (postopen !== null) {
let hookErr
try {
// Prevent deadlock
this[kStatusLocked] = true
await postopen(options)
} catch (err) {
hookErr = convertRejection(err)
} finally {
this[kStatusLocked] = false
}
// Revert
if (hookErr) {
this[kStatus] = 'closing'
this[kQueue].drain()
try {
await this[kCloseResources]()
await this._close()
} catch (closeErr) {
// There's no safe state to return to. Can't return to 'open' because
// postopen hook failed. Can't return to 'closed' (with the ability to
// reopen) because the underlying database is potentially still open.
this[kStatusLocked] = true
hookErr = combineErrors([hookErr, closeErr])
}
this[kStatus] = 'closed'
throw new ModuleError('The postopen hook failed on open()', {
code: 'LEVEL_HOOK_ERROR',
cause: hookErr
})
}
}
this[kQueue].drain()
this.emit('open')
})()
try {
await this[kStatusChange]
} finally {
this[kStatusChange] = null
}
} else if (this[kStatus] !== 'open') {
/* istanbul ignore next: should not happen */
throw new NotOpenError()
}
}
async _open (options) {}
async close () {
// Wait for pending changes and check that closing is allowed
assertUnlocked(this)
while (this[kStatusChange] !== null) await this[kStatusChange].catch(noop)
assertUnlocked(this)
if (this[kStatus] === 'open' || this[kDeferOpen]) {
// If close() was called after constructor, we didn't open yet
const fromInitial = this[kDeferOpen]
this[kDeferOpen] = false
this[kStatusChange] = resolvedPromise
this[kStatusChange] = (async () => {
this[kStatus] = 'closing'
this[kQueue].drain()
try {
this.emit('closing')
await this[kCloseResources]()
if (!fromInitial) await this._close()
} catch (err) {
this[kStatus] = 'open'
this[kQueue].drain()
throw new NotClosedError(err)
}
this[kStatus] = 'closed'
this[kQueue].drain()
this.emit('closed')
})()
try {
await this[kStatusChange]
} finally {
this[kStatusChange] = null
}
} else if (this[kStatus] !== 'closed') {
/* istanbul ignore next: should not happen */
throw new NotClosedError()
}
}
async [kCloseResources] () {
if (this[kResources].size === 0) {
return
}
// In parallel so that all resources know they are closed
const resources = Array.from(this[kResources])
const promises = resources.map(closeResource)
// TODO: async/await
return Promise.allSettled(promises).then(async (results) => {
const errors = []
for (let i = 0; i < results.length; i++) {
if (results[i].status === 'fulfilled') {
this[kResources].delete(resources[i])
} else {
errors.push(convertRejection(results[i].reason))
}
}
if (errors.length > 0) {
throw combineErrors(errors)
}
})
}
async _close () {}
async get (key, options) {
options = getOptions(options, this[kDefaultOptions].entry)
if (this[kStatus] === 'opening') {
return this.deferAsync(() => this.get(key, options))
}
assertOpen(this)
const err = this._checkKey(key)
if (err) throw err
const keyEncoding = this.keyEncoding(options.keyEncoding)
const valueEncoding = this.valueEncoding(options.valueEncoding)
const keyFormat = keyEncoding.format
const valueFormat = valueEncoding.format
// Forward encoding options to the underlying store
if (options.keyEncoding !== keyFormat || options.valueEncoding !== valueFormat) {
// Avoid spread operator because of https://bugs.chromium.org/p/chromium/issues/detail?id=1204540
options = Object.assign({}, options, { keyEncoding: keyFormat, valueEncoding: valueFormat })
}
const encodedKey = keyEncoding.encode(key)
const value = await this._get(this.prefixKey(encodedKey, keyFormat, true), options)
try {
return value === undefined ? value : valueEncoding.decode(value)
} catch (err) {
throw new ModuleError('Could not decode value', {
code: 'LEVEL_DECODE_ERROR',
cause: err
})
}
}
async _get (key, options) {
return undefined
}
async getMany (keys, options) {
options = getOptions(options, this[kDefaultOptions].entry)
if (this[kStatus] === 'opening') {
return this.deferAsync(() => this.getMany(keys, options))
}
assertOpen(this)
if (!Array.isArray(keys)) {
throw new TypeError("The first argument 'keys' must be an array")
}
if (keys.length === 0) {
return []
}
const keyEncoding = this.keyEncoding(options.keyEncoding)
const valueEncoding = this.valueEncoding(options.valueEncoding)
const keyFormat = keyEncoding.format
const valueFormat = valueEncoding.format
// Forward encoding options
if (options.keyEncoding !== keyFormat || options.valueEncoding !== valueFormat) {
options = Object.assign({}, options, { keyEncoding: keyFormat, valueEncoding: valueFormat })
}
const mappedKeys = new Array(keys.length)
for (let i = 0; i < keys.length; i++) {
const key = keys[i]
const err = this._checkKey(key)
if (err) throw err
mappedKeys[i] = this.prefixKey(keyEncoding.encode(key), keyFormat, true)
}
const values = await this._getMany(mappedKeys, options)
try {
for (let i = 0; i < values.length; i++) {
if (values[i] !== undefined) {
values[i] = valueEncoding.decode(values[i])
}
}
} catch (err) {
throw new ModuleError(`Could not decode one or more of ${values.length} value(s)`, {
code: 'LEVEL_DECODE_ERROR',
cause: err
})
}
return values
}
async _getMany (keys, options) {
return new Array(keys.length).fill(undefined)
}
async put (key, value, options) {
if (!this.hooks.prewrite.noop) {
// Forward to batch() which will run the hook
// Note: technically means that put() supports the sublevel option in this case,
// but it generally doesn't per documentation (which makes sense). Same for del().
return this.batch([{ type: 'put', key, value }], options)
}
options = getOptions(options, this[kDefaultOptions].entry)
if (this[kStatus] === 'opening') {
return this.deferAsync(() => this.put(key, value, options))
}
assertOpen(this)
const err = this._checkKey(key) || this._checkValue(value)
if (err) throw err
// Encode data for private API
const keyEncoding = this.keyEncoding(options.keyEncoding)
const valueEncoding = this.valueEncoding(options.valueEncoding)
const keyFormat = keyEncoding.format
const valueFormat = valueEncoding.format
const enableWriteEvent = this[kEventMonitor].write
const original = options
// Avoid Object.assign() for default options
// TODO: also apply this tweak to get() and getMany()
if (options === this[kDefaultOptions].entry) {
options = this[kDefaultOptions].entryFormat
} else if (options.keyEncoding !== keyFormat || options.valueEncoding !== valueFormat) {
options = Object.assign({}, options, { keyEncoding: keyFormat, valueEncoding: valueFormat })
}
const encodedKey = keyEncoding.encode(key)
const prefixedKey = this.prefixKey(encodedKey, keyFormat, true)
const encodedValue = valueEncoding.encode(value)
await this._put(prefixedKey, encodedValue, options)
if (enableWriteEvent) {
const op = Object.assign({}, original, {
type: 'put',
key,
value,
keyEncoding,
valueEncoding,
encodedKey,
encodedValue
})
this.emit('write', [op])
} else {
// TODO (semver-major): remove
this.emit('put', key, value)
}
}
async _put (key, value, options) {}
async del (key, options) {
if (!this.hooks.prewrite.noop) {
// Forward to batch() which will run the hook
return this.batch([{ type: 'del', key }], options)
}
options = getOptions(options, this[kDefaultOptions].key)
if (this[kStatus] === 'opening') {
return this.deferAsync(() => this.del(key, options))
}
assertOpen(this)
const err = this._checkKey(key)
if (err) throw err
// Encode data for private API
const keyEncoding = this.keyEncoding(options.keyEncoding)
const keyFormat = keyEncoding.format
const enableWriteEvent = this[kEventMonitor].write
const original = options
// Avoid Object.assign() for default options
if (options === this[kDefaultOptions].key) {
options = this[kDefaultOptions].keyFormat
} else if (options.keyEncoding !== keyFormat) {
options = Object.assign({}, options, { keyEncoding: keyFormat })
}
const encodedKey = keyEncoding.encode(key)
const prefixedKey = this.prefixKey(encodedKey, keyFormat, true)
await this._del(prefixedKey, options)
if (enableWriteEvent) {
const op = Object.assign({}, original, {
type: 'del',
key,
keyEncoding,
encodedKey
})
this.emit('write', [op])
} else {
// TODO (semver-major): remove
this.emit('del', key)
}
}
async _del (key, options) {}
// TODO (future): add way for implementations to declare which options are for the
// whole batch rather than defaults for individual operations. E.g. the sync option
// of classic-level, that should not be copied to individual operations.
batch (operations, options) {
if (!arguments.length) {
assertOpen(this)
return this._chainedBatch()
}
options = getOptions(options, this[kDefaultOptions].empty)
return this[kArrayBatch](operations, options)
}
// Wrapped for async error handling
async [kArrayBatch] (operations, options) {
// TODO (not urgent): freeze prewrite hook and write event
if (this[kStatus] === 'opening') {
return this.deferAsync(() => this[kArrayBatch](operations, options))
}
assertOpen(this)
if (!Array.isArray(operations)) {
throw new TypeError("The first argument 'operations' must be an array")
}
if (operations.length === 0) {
return
}
const length = operations.length
const enablePrewriteHook = !this.hooks.prewrite.noop
const enableWriteEvent = this[kEventMonitor].write
const publicOperations = enableWriteEvent ? new Array(length) : null
const privateOperations = new Array(length)
const prewriteBatch = enablePrewriteHook
? new PrewriteBatch(this, privateOperations, publicOperations)
: null
for (let i = 0; i < length; i++) {
// Clone the op so that we can freely mutate it. We can't use a class because the
// op can have userland properties that we'd have to copy, negating the performance
// benefits of a class. So use a plain object.
const op = Object.assign({}, options, operations[i])
// Hook functions can modify op but not its type or sublevel, so cache those
const isPut = op.type === 'put'
const delegated = op.sublevel != null
const db = delegated ? op.sublevel : this
const keyError = db._checkKey(op.key)
if (keyError != null) throw keyError
op.keyEncoding = db.keyEncoding(op.keyEncoding)
if (isPut) {
const valueError = db._checkValue(op.value)
if (valueError != null) throw valueError
op.valueEncoding = db.valueEncoding(op.valueEncoding)
} else if (op.type !== 'del') {
throw new TypeError("A batch operation must have a type property that is 'put' or 'del'")
}
if (enablePrewriteHook) {
try {
this.hooks.prewrite.run(op, prewriteBatch)
// Normalize encodings again in case they were modified
op.keyEncoding = db.keyEncoding(op.keyEncoding)
if (isPut) op.valueEncoding = db.valueEncoding(op.valueEncoding)
} catch (err) {
throw new ModuleError('The prewrite hook failed on batch()', {
code: 'LEVEL_HOOK_ERROR',
cause: err
})
}
}
// Encode data for private API
const keyEncoding = op.keyEncoding
const preencodedKey = keyEncoding.encode(op.key)
const keyFormat = keyEncoding.format
// If the sublevel is not a descendant then forward that option to the parent db
// so that we don't erroneously add our own prefix to the key of the operation.
const siblings = delegated && !isDescendant(op.sublevel, this) && op.sublevel !== this
const encodedKey = delegated && !siblings
? prefixDescendantKey(preencodedKey, keyFormat, db, this)
: preencodedKey
// Only prefix once
if (delegated && !siblings) {
op.sublevel = null
}
let publicOperation = null
// If the sublevel is not a descendant then we shouldn't emit events
if (enableWriteEvent && !siblings) {
// Clone op before we mutate it for the private API
// TODO (future semver-major): consider sending this shape to private API too
publicOperation = Object.assign({}, op)
publicOperation.encodedKey = encodedKey
if (delegated) {
// Ensure emitted data makes sense in the context of this db
publicOperation.key = encodedKey
publicOperation.keyEncoding = this.keyEncoding(keyFormat)
}
publicOperations[i] = publicOperation
}
// If we're forwarding the sublevel option then don't prefix the key yet
op.key = siblings ? encodedKey : this.prefixKey(encodedKey, keyFormat, true)
op.keyEncoding = keyFormat
if (isPut) {
const valueEncoding = op.valueEncoding
const encodedValue = valueEncoding.encode(op.value)
const valueFormat = valueEncoding.format
op.value = encodedValue
op.valueEncoding = valueFormat
if (enableWriteEvent && !siblings) {
publicOperation.encodedValue = encodedValue
if (delegated) {
publicOperation.value = encodedValue
publicOperation.valueEncoding = this.valueEncoding(valueFormat)
}
}
}
privateOperations[i] = op
}
// TODO (future): maybe add separate hook to run on private data. Currently can't work
// because prefixing happens too soon; we need to move that logic to the private
// API of AbstractSublevel (or reimplement with hooks). TBD how it'd work in chained
// batch. Hook would look something like hooks.midwrite.run(privateOperations, ...).
await this._batch(privateOperations, options)
if (enableWriteEvent) {
this.emit('write', publicOperations)
} else if (!enablePrewriteHook) {
// TODO (semver-major): remove
this.emit('batch', operations)
}
}
async _batch (operations, options) {}
sublevel (name, options) {
const xopts = AbstractSublevel.defaults(options)
const sublevel = this._sublevel(name, xopts)
if (!this.hooks.newsub.noop) {
try {
this.hooks.newsub.run(sublevel, xopts)
} catch (err) {
throw new ModuleError('The newsub hook failed on sublevel()', {
code: 'LEVEL_HOOK_ERROR',
cause: err
})
}
}
return sublevel
}
_sublevel (name, options) {
return new AbstractSublevel(this, name, options)
}
prefixKey (key, keyFormat, local) {
return key
}
async clear (options) {
options = getOptions(options, this[kDefaultOptions].empty)
if (this[kStatus] === 'opening') {
return this.deferAsync(() => this.clear(options))
}
assertOpen(this)
const original = options
const keyEncoding = this.keyEncoding(options.keyEncoding)
options = rangeOptions(options, keyEncoding)
options.keyEncoding = keyEncoding.format
if (options.limit !== 0) {
await this._clear(options)
this.emit('clear', original)
}
}
async _clear (options) {}
iterator (options) {
const keyEncoding = this.keyEncoding(options && options.keyEncoding)
const valueEncoding = this.valueEncoding(options && options.valueEncoding)
options = rangeOptions(options, keyEncoding)
options.keys = options.keys !== false
options.values = options.values !== false
// We need the original encoding options in AbstractIterator in order to decode data
options[AbstractIterator.keyEncoding] = keyEncoding
options[AbstractIterator.valueEncoding] = valueEncoding
// Forward encoding options to private API
options.keyEncoding = keyEncoding.format
options.valueEncoding = valueEncoding.format
if (this[kStatus] === 'opening') {
return new DeferredIterator(this, options)
}
assertOpen(this)
return this._iterator(options)
}
_iterator (options) {
return new AbstractIterator(this, options)
}
keys (options) {
// Also include valueEncoding (though unused) because we may fallback to _iterator()
const keyEncoding = this.keyEncoding(options && options.keyEncoding)
const valueEncoding = this.valueEncoding(options && options.valueEncoding)
options = rangeOptions(options, keyEncoding)
// We need the original encoding options in AbstractKeyIterator in order to decode data
options[AbstractIterator.keyEncoding] = keyEncoding
options[AbstractIterator.valueEncoding] = valueEncoding
// Forward encoding options to private API
options.keyEncoding = keyEncoding.format
options.valueEncoding = valueEncoding.format
if (this[kStatus] === 'opening') {
return new DeferredKeyIterator(this, options)
}
assertOpen(this)
return this._keys(options)
}
_keys (options) {
return new DefaultKeyIterator(this, options)
}
values (options) {
const keyEncoding = this.keyEncoding(options && options.keyEncoding)
const valueEncoding = this.valueEncoding(options && options.valueEncoding)
options = rangeOptions(options, keyEncoding)
// We need the original encoding options in AbstractValueIterator in order to decode data
options[AbstractIterator.keyEncoding] = keyEncoding
options[AbstractIterator.valueEncoding] = valueEncoding
// Forward encoding options to private API
options.keyEncoding = keyEncoding.format
options.valueEncoding = valueEncoding.format
if (this[kStatus] === 'opening') {
return new DeferredValueIterator(this, options)
}
assertOpen(this)
return this._values(options)
}
_values (options) {
return new DefaultValueIterator(this, options)
}
defer (fn, options) {
if (typeof fn !== 'function') {
throw new TypeError('The first argument must be a function')
}
this[kQueue].add(function (abortError) {
if (!abortError) fn()
}, options)
}
deferAsync (fn, options) {
if (typeof fn !== 'function') {
throw new TypeError('The first argument must be a function')
}
return new Promise((resolve, reject) => {
this[kQueue].add(function (abortError) {
if (abortError) reject(abortError)
else fn().then(resolve, reject)
}, options)
})
}
// TODO: docs and types
attachResource (resource) {
if (typeof resource !== 'object' || resource === null ||
typeof resource.close !== 'function') {
throw new TypeError('The first argument must be a resource object')
}
this[kResources].add(resource)
}
// TODO: docs and types
detachResource (resource) {
this[kResources].delete(resource)
}
_chainedBatch () {
return new DefaultChainedBatch(this)
}
_checkKey (key) {
if (key === null || key === undefined) {
return new ModuleError('Key cannot be null or undefined', {
code: 'LEVEL_INVALID_KEY'
})
}
}
_checkValue (value) {
if (value === null || value === undefined) {
return new ModuleError('Value cannot be null or undefined', {
code: 'LEVEL_INVALID_VALUE'
})
}
}
}
const { AbstractSublevel } = require('./lib/abstract-sublevel')({ AbstractLevel })
exports.AbstractLevel = AbstractLevel
exports.AbstractSublevel = AbstractSublevel
const assertOpen = function (db) {
if (db[kStatus] !== 'open') {
throw new ModuleError('Database is not open', {
code: 'LEVEL_DATABASE_NOT_OPEN'
})
}
}
const assertUnlocked = function (db) {
if (db[kStatusLocked]) {
throw new ModuleError('Database status is locked', {
code: 'LEVEL_STATUS_LOCKED'
})
}
}
const formats = function (db) {
return Object.keys(db.supports.encodings)
.filter(k => !!db.supports.encodings[k])
}
const closeResource = function (resource) {
return resource.close()
}
// Ensure that we don't work with falsy err values, because JavaScript unfortunately
// allows Promise.reject(null) and similar patterns. Which'd break `if (err)` logic.
const convertRejection = function (reason) {
if (reason instanceof Error) {
return reason
}
if (Object.prototype.toString.call(reason) === '[object Error]') {
return reason
}
const hint = reason === null ? 'null' : typeof reason
const msg = `Promise rejection reason must be an Error, received ${hint}`
return new TypeError(msg)
}
// Internal utilities, not typed or exported
class NotOpenError extends ModuleError {
constructor (cause) {
super('Database failed to open', {
code: 'LEVEL_DATABASE_NOT_OPEN',
cause
})
}
}
class NotClosedError extends ModuleError {
constructor (cause) {
super('Database failed to close', {
code: 'LEVEL_DATABASE_NOT_CLOSED',
cause
})
}
}