-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.js
396 lines (316 loc) · 9.52 KB
/
index.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
'use strict'
const {
AbstractLevel,
AbstractIterator,
AbstractKeyIterator,
AbstractValueIterator
} = require('abstract-level')
const ModuleError = require('module-error')
const createRBT = require('functional-red-black-tree')
const rangeOptions = new Set(['gt', 'gte', 'lt', 'lte'])
const kNone = Symbol('none')
const kTree = Symbol('tree')
const kIterator = Symbol('iterator')
const kLowerBound = Symbol('lowerBound')
const kUpperBound = Symbol('upperBound')
const kOutOfRange = Symbol('outOfRange')
const kReverse = Symbol('reverse')
const kOptions = Symbol('options')
const kTest = Symbol('test')
const kAdvance = Symbol('advance')
const kInit = Symbol('init')
function compare (a, b) {
// Only relevant when storeEncoding is 'utf8',
// which guarantees that b is also a string.
if (typeof a === 'string') {
return a < b ? -1 : a > b ? 1 : 0
}
const length = Math.min(a.byteLength, b.byteLength)
for (let i = 0; i < length; i++) {
const cmp = a[i] - b[i]
if (cmp !== 0) return cmp
}
return a.byteLength - b.byteLength
}
function gt (value) {
return compare(value, this[kUpperBound]) > 0
}
function gte (value) {
return compare(value, this[kUpperBound]) >= 0
}
function lt (value) {
return compare(value, this[kUpperBound]) < 0
}
function lte (value) {
return compare(value, this[kUpperBound]) <= 0
}
class MemoryIterator extends AbstractIterator {
constructor (db, options) {
super(db, options)
this[kInit](db[kTree], options)
}
async _next () {
if (!this[kIterator].valid) return undefined
const key = this[kIterator].key
const value = this[kIterator].value
if (!this[kTest](key)) return undefined
this[kIterator][this[kAdvance]]()
return [key, value]
}
async _nextv (size, options) {
const it = this[kIterator]
const entries = []
while (it.valid && entries.length < size && this[kTest](it.key)) {
entries.push([it.key, it.value])
it[this[kAdvance]]()
}
return entries
}
async _all (options) {
const size = this.limit - this.count
const it = this[kIterator]
const entries = []
while (it.valid && entries.length < size && this[kTest](it.key)) {
entries.push([it.key, it.value])
it[this[kAdvance]]()
}
return entries
}
}
class MemoryKeyIterator extends AbstractKeyIterator {
constructor (db, options) {
super(db, options)
this[kInit](db[kTree], options)
}
async _next () {
if (!this[kIterator].valid) return undefined
const key = this[kIterator].key
if (!this[kTest](key)) return undefined
this[kIterator][this[kAdvance]]()
return key
}
async _nextv (size, options) {
const it = this[kIterator]
const keys = []
while (it.valid && keys.length < size && this[kTest](it.key)) {
keys.push(it.key)
it[this[kAdvance]]()
}
return keys
}
async _all (options) {
const size = this.limit - this.count
const it = this[kIterator]
const keys = []
while (it.valid && keys.length < size && this[kTest](it.key)) {
keys.push(it.key)
it[this[kAdvance]]()
}
return keys
}
}
class MemoryValueIterator extends AbstractValueIterator {
constructor (db, options) {
super(db, options)
this[kInit](db[kTree], options)
}
async _next (options) {
if (!this[kIterator].valid) return undefined
const key = this[kIterator].key
const value = this[kIterator].value
if (!this[kTest](key)) return undefined
this[kIterator][this[kAdvance]]()
return value
}
async _nextv (size, options) {
const it = this[kIterator]
const values = []
while (it.valid && values.length < size && this[kTest](it.key)) {
values.push(it.value)
it[this[kAdvance]]()
}
return values
}
async _all (options) {
const size = this.limit - this.count
const it = this[kIterator]
const values = []
while (it.valid && values.length < size && this[kTest](it.key)) {
values.push(it.value)
it[this[kAdvance]]()
}
return values
}
}
for (const Ctor of [MemoryIterator, MemoryKeyIterator, MemoryValueIterator]) {
Ctor.prototype[kInit] = function (tree, options) {
this[kReverse] = options.reverse
this[kOptions] = options
if (!this[kReverse]) {
this[kAdvance] = 'next'
this[kLowerBound] = 'gte' in options ? options.gte : 'gt' in options ? options.gt : kNone
this[kUpperBound] = 'lte' in options ? options.lte : 'lt' in options ? options.lt : kNone
if (this[kLowerBound] === kNone) {
this[kIterator] = tree.begin
} else if ('gte' in options) {
this[kIterator] = tree.ge(this[kLowerBound])
} else {
this[kIterator] = tree.gt(this[kLowerBound])
}
if (this[kUpperBound] !== kNone) {
this[kTest] = 'lte' in options ? lte : lt
}
} else {
this[kAdvance] = 'prev'
this[kLowerBound] = 'lte' in options ? options.lte : 'lt' in options ? options.lt : kNone
this[kUpperBound] = 'gte' in options ? options.gte : 'gt' in options ? options.gt : kNone
if (this[kLowerBound] === kNone) {
this[kIterator] = tree.end
} else if ('lte' in options) {
this[kIterator] = tree.le(this[kLowerBound])
} else {
this[kIterator] = tree.lt(this[kLowerBound])
}
if (this[kUpperBound] !== kNone) {
this[kTest] = 'gte' in options ? gte : gt
}
}
}
Ctor.prototype[kTest] = function () {
return true
}
Ctor.prototype[kOutOfRange] = function (target) {
if (!this[kTest](target)) {
return true
} else if (this[kLowerBound] === kNone) {
return false
} else if (!this[kReverse]) {
if ('gte' in this[kOptions]) {
return compare(target, this[kLowerBound]) < 0
} else {
return compare(target, this[kLowerBound]) <= 0
}
} else {
if ('lte' in this[kOptions]) {
return compare(target, this[kLowerBound]) > 0
} else {
return compare(target, this[kLowerBound]) >= 0
}
}
}
Ctor.prototype._seek = function (target, options) {
if (this[kOutOfRange](target)) {
this[kIterator] = this[kIterator].tree.end
this[kIterator].next()
} else if (this[kReverse]) {
this[kIterator] = this[kIterator].tree.le(target)
} else {
this[kIterator] = this[kIterator].tree.ge(target)
}
}
}
class MemoryLevel extends AbstractLevel {
constructor (location, options) {
// Take a dummy location argument to align with other implementations
if (typeof location === 'object' && location !== null) {
options = location
}
let { storeEncoding, ...forward } = options || {}
storeEncoding = storeEncoding || 'buffer'
// Our compare() function supports Buffer, Uint8Array and strings
if (!['buffer', 'view', 'utf8'].includes(storeEncoding)) {
throw new ModuleError("The storeEncoding option must be 'buffer', 'view' or 'utf8'", {
code: 'LEVEL_ENCODING_NOT_SUPPORTED'
})
}
super({
seek: true,
permanence: false,
createIfMissing: false,
errorIfExists: false,
encodings: { [storeEncoding]: true },
signals: {
// Would have no value here because the operations are synchronous
iterators: false
}
}, forward)
this[kTree] = createRBT(compare)
}
async _put (key, value, options) {
const it = this[kTree].find(key)
if (it.valid) {
this[kTree] = it.update(value)
} else {
this[kTree] = this[kTree].insert(key, value)
}
}
async _get (key, options) {
// Is undefined if not found
return this[kTree].get(key)
}
async _getMany (keys, options) {
return keys.map(key => this[kTree].get(key))
}
async _del (key, options) {
this[kTree] = this[kTree].remove(key)
}
async _batch (operations, options) {
let tree = this[kTree]
for (const op of operations) {
const key = op.key
const it = tree.find(key)
if (op.type === 'put') {
tree = it.valid ? it.update(op.value) : tree.insert(key, op.value)
} else {
tree = it.remove()
}
}
this[kTree] = tree
}
async _clear (options) {
if (options.limit === -1 && !Object.keys(options).some(isRangeOption)) {
// Delete everything by creating a new empty tree.
this[kTree] = createRBT(compare)
return
}
const iterator = this._keys({ ...options })
const limit = iterator.limit
let count = 0
while (true) {
// TODO: add option to control "batch size"
for (let i = 0; i < 500; i++) {
if (++count > limit) return
if (!iterator[kIterator].valid) return
if (!iterator[kTest](iterator[kIterator].key)) return
// Must also include changes made in parallel to clear()
this[kTree] = this[kTree].remove(iterator[kIterator].key)
iterator[kIterator][iterator[kAdvance]]()
}
// Some time to breathe
await breathe()
}
}
_iterator (options) {
return new MemoryIterator(this, options)
}
_keys (options) {
return new MemoryKeyIterator(this, options)
}
_values (options) {
return new MemoryValueIterator(this, options)
}
}
exports.MemoryLevel = MemoryLevel
let breathe
// Use setImmediate() in Node.js to allow IO in between work
if (typeof process !== 'undefined' && !process.browser && typeof global !== 'undefined' && typeof global.setImmediate === 'function') {
const setImmediate = global.setImmediate
breathe = function () {
return new Promise(setImmediate)
}
} else {
breathe = async function () {}
}
function isRangeOption (k) {
return rangeOptions.has(k)
}