forked from Level/abstract-leveldown
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabstract-chained-batch.js
150 lines (135 loc) · 3.89 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
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
// Generated by CoffeeScript 1.12.7
(function() {
var AbstractChainedBatch, Errors, InvalidArgumentError, setImmediate;
setImmediate = global.setImmediate || process.nextTick;
Errors = require("./abstract-error");
InvalidArgumentError = Errors.InvalidArgumentError;
module.exports = AbstractChainedBatch = (function() {
function AbstractChainedBatch(db) {
this._db = db;
this._operations = [];
this._written = false;
}
AbstractChainedBatch.prototype._checkWritten = function() {
if (this._written) {
throw new Error("write() already called on this batch");
}
};
AbstractChainedBatch.prototype.put = function(key, value) {
var err;
this._checkWritten();
err = this._db._checkKey(key, "key", this._db._isBuffer);
if (err) {
throw err;
}
if (!this._db._isBuffer(key)) {
key = String(key);
}
if (!this._db._isBuffer(value)) {
value = String(value);
}
if (typeof this._put === "function") {
this._put(key, value);
} else {
this._operations.push({
type: "put",
key: key,
value: value
});
}
return this;
};
AbstractChainedBatch.prototype.del = function(key) {
var err;
this._checkWritten();
err = this._db._checkKey(key, "key", this._db._isBuffer);
if (err) {
throw err;
}
if (!this._db._isBuffer(key)) {
key = String(key);
}
if (typeof this._del === "function") {
this._del(key);
} else {
this._operations.push({
type: "del",
key: key
});
}
return this;
};
AbstractChainedBatch.prototype.clear = function() {
this._checkWritten();
this._operations = [];
if (typeof this._clear === "function") {
this._clear();
}
return this;
};
AbstractChainedBatch.prototype._write = function(options, callback) {
var that;
that = this;
if (this._writeSync) {
return setImmediate(function() {
var err, result;
result = void 0;
try {
result = that._writeSync(options);
} catch (error) {
err = error;
callback(err);
return;
}
return callback(null, result);
});
} else if (typeof this._db._batch === "function") {
return this._db._batch(this._operations, options, callback);
} else {
return setImmediate(callback);
}
};
AbstractChainedBatch.prototype.writeSync = function(options) {
var result;
this._checkWritten();
this._written = true;
if (this._writeSync) {
result = this._writeSync(options);
} else if (typeof this._db._batchSync === "function") {
result = this._db._batchSync(this._operations, options);
}
return result;
};
AbstractChainedBatch.prototype.writeAsync = function(options, callback) {
this._checkWritten();
if (typeof options === "function") {
callback = options;
}
if (typeof options !== "object") {
options = {};
}
if (typeof callback !== "function") {
throw new InvalidArgumentError("write() requires a callback argument");
}
this._written = true;
if (typeof this._write === "function") {
return this._write(options, callback);
}
return setImmediate(callback);
};
AbstractChainedBatch.prototype.write = function(options, callback) {
if (typeof options === "function") {
callback = options;
}
if (typeof options !== "object") {
options = {};
}
if (typeof callback === "function") {
return this.writeAsync(options, callback);
} else {
return this.writeSync(options);
}
};
return AbstractChainedBatch;
})();
}).call(this);