forked from Level/leveldown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
abstract-chained-batch.js
88 lines (63 loc) · 2 KB
/
abstract-chained-batch.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
/* Copyright (c) 2017 Rod Vagg, MIT License */
function AbstractChainedBatch (db) {
this._db = db
this._operations = []
this._written = false
}
AbstractChainedBatch.prototype._serializeKey = function (key) {
return this._db._serializeKey(key)
}
AbstractChainedBatch.prototype._serializeValue = function (value) {
return this._db._serializeValue(value)
}
AbstractChainedBatch.prototype._checkWritten = function () {
if (this._written) {
throw new Error('write() already called on this batch')
}
}
AbstractChainedBatch.prototype.put = function (key, value) {
this._checkWritten()
var err = this._db._checkKey(key, 'key')
if (err) { throw err }
key = this._serializeKey(key)
value = this._serializeValue(value)
this._put(key, value)
return this
}
AbstractChainedBatch.prototype._put = function (key, value) {
this._operations.push({ type: 'put', key: key, value: value })
}
AbstractChainedBatch.prototype.del = function (key) {
this._checkWritten()
var err = this._db._checkKey(key, 'key')
if (err) { throw err }
key = this._serializeKey(key)
this._del(key)
return this
}
AbstractChainedBatch.prototype._del = function (key) {
this._operations.push({ type: 'del', key: key })
}
AbstractChainedBatch.prototype.clear = function () {
this._checkWritten()
this._operations = []
this._clear()
return this
}
AbstractChainedBatch.prototype._clear = function noop () {}
AbstractChainedBatch.prototype.write = function (options, callback) {
this._checkWritten()
if (typeof options === 'function') { callback = options }
if (typeof callback !== 'function') {
throw new Error('write() requires a callback argument')
}
if (typeof options !== 'object') { options = {} }
this._written = true
// @ts-ignore
if (typeof this._write === 'function') { return this._write(callback) }
if (typeof this._db._batch === 'function') {
return this._db._batch(this._operations, options, callback)
}
process.nextTick(callback)
}
module.exports = AbstractChainedBatch