-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
697 lines (628 loc) · 22 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
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
const http = require('http')
const semver = require('semver')
const defaults = require('lodash.defaults')
const async = require('async')
const pCall = require('promisify-call')
const { errors } = require('couchbase')
const debug = require('debug')('couchbase-driver')
/**
* Enum for Database operations
* @readonly
* @enum {string}
* @memberof Driver
*/
const OPERATIONS = {
/** Upsert operation */
UPSERT: 'upsert',
/** Remove operation */
REMOVE: 'remove',
/** No operation or action */
NOOP: 'noop'
}
const defaultOptions = {
tempRetryTimes: 5,
tempRetryInterval: 50,
retryTemporaryErrors: false,
atomicRetryTimes: 5,
atomicRetryInterval: 0,
atomicLock: true,
missing: true,
saveOptions: {}
}
const syncFunctions = [
'disconnect',
'invalidateQueryCache',
'lookupIn',
'manager',
'mutateIn',
'query',
'setTranscoder',
'touch'
]
class Driver {
/**
* @classdesc A simple alternative driver for Couchbase that wraps the `Bucket` from existing driver and improves
* <code>get</code> and <code>remove</code> methods and adds <code>atomic</code> method.
*
* @description
* Constructs the new instance. This should not be called directly, but rather use <code>Driver.create()</code>.
*
* @param {Object} bucket the Couchbase <code>Bucket</code>
* @param options {Object} Options
* @param {Boolean} options.retryTemporaryErrors - Whether to automatically backoff/retry on temporary
* couchbase errors. Default: <code>false</code>.
* @param {Number} options.tempRetryTimes - The number of attempts to make when backing off temporary errors.
* See <code>async.retry</code>. Default: <code>5</code>.
* @param {Number} options.tempRetryInterval - The time to wait between retries, in milliseconds, when backing off temporary errors .
* See <code>async.retry</code>. Default: <code>50</code>.
* @param {Boolean} options.atomicLock - Whether to use <code>getAndLock</code> in <code>atomic()</code> or just the
* standard <code>get</code>. Default: <code>true</code>.
* @param {Number} options.atomicRetryTimes - The number of attempts to make within <code>atomic()</code>.
* See <code>async.retry</code>. Default: <code>5</code>.
* @param {Number} options.atomicRetryInterval - The time to wait between retries, in milliseconds, within <code>atomic()</code>.
* See <code>async.retry</code>. Default: <code>0</code>.
* @param {Boolean} options.atomicLock - Whether to use <code>getAndLock</code> in <code>atomic()</code> or just the
* standard <code>get</code>. Default: <code>true</code>.
* @param {Boolean} options.missing - Whether to return missing. If <code>false</code> Does not return.
* Useful for certain contexts. Defalt: <code>true</code>.
*/
constructor (bucket, options = {}) {
this.bucket = bucket
this.config = defaults(options, defaultOptions)
}
/**
* Get operation enums
* @example
* const Driver = require('couchbase-driver');
* const driver = Driver.create(bucket);
* console.log(driver.OPERATIONS.UPSERT);
*/
get OPERATIONS () {
return OPERATIONS
}
/**
* Get operation enums
* @example
* const Driver = require('couchbase-driver');
* console.log(Driver.OPERATIONS.UPSERT);
*/
static get OPERATIONS () {
return OPERATIONS
}
/**
* Determines if error is a "key not found" error
* @param {Error} err - the error to check
* @example
* Driver.isKeyNotFound(err);
*/
static isKeyNotFound (err) {
let keyNotFound = false
if (err && isObject(err)) {
if (err.code && err.code === errors.keyNotFound) {
keyNotFound = true
} else if (err.message && err.message === 'key not found') {
keyNotFound = true
} else if (err.message && err.message.indexOf('key does not exist') >= 0) {
keyNotFound = true
} else if (err.message && err.message.indexOf('key not found') >= 0) {
keyNotFound = true
} else if (err.code && err.code.toString() === '13') {
keyNotFound = true
}
}
return keyNotFound
}
/**
* Determines if error is a "Temporary" error
* https://developer.couchbase.com/documentation/server/current/sdk/nodejs/handling-error-conditions.html
* @param {Error} err - the error to check
* @example
* Driver.isTemporaryError(err);
*/
static isTemporaryError (err) {
let tempError = false
if (err && isObject(err)) {
if (err.code && err.code === errors.temporaryError) {
tempError = true
} else if (err.message && err.message.indexOf('Temporary failure') >= 0) {
tempError = true
} else if (err.code && err.code.toString() === '11') {
tempError = true
}
}
return tempError
}
/**
* A simplified get. Properly handles key not found errors. In case of multi call, returns array of found
* and an array of misses.
* @param {String|Array} keys - a single key or multiple keys
* @param {Object} options - Options for bucket <code>get</code> function
* @param {Boolean} options.missing - Whether to return missing. If <code>false</code> Does not return.
* Useful for certain contexts. This option takes presidence over the one set in
* constructor. Default: <code>true</code>.
* @param {Function} fn callback
* @example
* driver.get('my_doc_key', (err, res) => {
* if (err) return console.log(err)
* console.dir(res.value)
* }
* @example
* driver.get(['my_doc_key_1', 'my_doc_key_2', 'my_missing_doc_key_3'], (err, results, missing) => {
* if (err) return console.log(err);
* if (mising.length > 0) console.dir(missing); // ['my_missing_doc_key_3']
* console.dir(res.value);
* });
*/
get (keys, options, fn) {
return pCall(this, getDocument, ...arguments)
}
/**
* Our implementation of <code>Bucket.getAndLock</code> that properly ignores key not found errors.
* @param {String} key - document key to get and lock
* @param {Object} options - Options to pass to <code>Bucket.getAndLock</code>
* @param {Function} fn - callback
* @example
* driver.getAndLock('my_doc_key', (err, res) => {
* if (err) return console.log(err);
* console.dir(res.value)
* });
*/
getAndLock (key, options, fn) {
return pCall(this, getAndLock, ...arguments)
}
/**
* Our implementation of <code>Bucket.remove</code> that properly ignores key not found errors.
* @param {String} key - document key to remove
* @param {Object} options - Options to pass to <code>Bucket.remove</code>
* @param {Function} fn - callback
* @example
* driver.remove('my_doc_key', (err, res) => {
* if (err) return console.log(err);
* });
*/
remove (key, options, fn) {
return pCall(this, remove, ...arguments)
}
/**
* Our implementation of <code>Bucket.insert</code> that can recover from temporary errors.
* @param {String} key - document key to insert
* @param {String} value - document contents to insert
* @param {Object} options - Options to pass to <code>Bucket.insert</code>
* @param {Function} fn - callback
* @example
* driver.insert('my_doc_key', "doc_contents", (err, res) => {
* if (err) return console.log(err);
* });
*/
insert (key, value, options, fn) {
return pCall(this, insert, ...arguments)
}
/**
* Our implementation of <code>Bucket.upsert</code> that can recover from temporary errors.
* @param {String} key - document key to upsert
* @param {String} value - document contents to upsert
* @param {Object} options - Options to pass to <code>Bucket.upsert</code>
* @param {Function} fn - callback
* @example
* driver.upsert('my_doc_key', "doc_contents", (err, res) => {
* if (err) return console.log(err);
* });
*/
upsert (key, value, options, fn) {
return pCall(this, upsert, ...arguments)
}
/**
* Performs an "atomic" operation where it tries to first get the document given the <code>key</code>, then perform
* the function <code>transform</code> on the value and then write using the CAS value in the <code>upsert</code>.
* If the final document operation fails due to a <code>CAS</code> error, the whole process is retried.
* @param {String} key - document key
* @param {Function} transform - synchronous function to be performend on the document value. Function accepts the
* document or <code>undefined</code> if the document was not found. The function
* should perform any necessary mutation and return an object with <code>value</code>
* and <code>action</code>. <code>value</code> is the new value of the document.
* <code>action</code> should be one of <code>OPERATIONS</code> specifying the action
* to take with the new value.
* @param {String} options - Options
* @param {Number} options.atomicRetryTimes - The number of attempts to make within <code>atomic()</code>.
* See <code>async.retry</code>. Default: <code>5</code>.
* @param {Number} options.atomicRetryInterval - The time to wait between retries, in milliseconds, within <code>atomic()</code>.
* See <code>async.retry</code>. Default: <code>0</code>.
* @param {Boolean} options.atomicLock - Whether to use <code>getAndLock</code> in <code>atomic()</code> or just the
* standard <code>get</code>. Default: <code>true</code>.
* @param {Object} options.saveOptions - bucket save options
* @param {Function} fn - callback
* @example
* function transform(doc) {
* doc.foo = 'bar';
* return {
* value: doc,
* action: OPERATIONS.UPSERT
* };
* }
*
* driver.atomic('my_doc_key', transform, (err, res) => {
* if(err) return console.log(err);
* console.dir(res);
* });
*/
atomic (key, transform, options, fn) {
return pCall(this, atomic, ...arguments)
}
_atomicWithLock (key, transform, options, fn) {
return pCall(this, _atomicWithLock, ...arguments)
}
_atomicNoLock (key, transform, options, fn) {
return pCall(this, _atomicNoLock, ...arguments)
}
/**
* Attempts to get the lowest couchbase server version from the nodes in the cluster.
*
* **Warning**
* This depends on undocumented internals of Node.js couchbase library
* @param {Function} fn - callback
* @example
* driver.getServerVersion((err, version) => {
* if(err) return console.log(err);
* console.log(version);
* });
*/
getServerVersion (fn) {
return pCall(this, getServerVersion, ...arguments)
}
/**
* Create a Driver object by wrapping the Couchbase bucket and creates a new <code>Driver</code> instance and
* adds <code>Promise</code> support to the instance.
* @param bucket {Object} The Couchbase <code>Bucket</code> instance to wrap.
* @param options {Object} Options
* @param {Boolean} options.retryTemporaryErrors - Whether to automatically backoff/retry on temporary
* couchbase errors. Default: <code>false</code>.
* @param {Number} options.tempRetryTimes - The number of attempts to make when backing off temporary errors.
* See <code>async.retry</code>. Default: <code>5</code>.
* @param {Number} options.tempRetryInterval - The time to wait between retries, in milliseconds, when backing off temporary errors .
* See <code>async.retry</code>. Default: <code>50</code>.
* @param {Number} options.atomicRetryTimes - The number of attempts to make within <code>atomic()</code>.
* See <code>async.retry</code>. Default: <code>5</code>.
* @param {Number} options.atomicRetryInterval - The time to wait between retries, in milliseconds, within <code>atomic()</code>.
* See <code>async.retry</code>. Default: <code>0</code>.
* @param {Boolean} options.atomicLock - Whether to use <code>getAndLock</code> in <code>atomic()</code> or just the
* standard <code>get</code>. Default: <code>true</code>.
* @returns {Driver}
* @example
* const couchbase = require('couchbase');
* const Driver = require('couchbase-driver');
* const cluster = new couchbase.Cluster('couchbase://127.0.0.1');
* const bucket = cluster.openBucket('default');
* const driver = Driver.create(bucket);
*/
static create (bucket, options = {}) {
// wrap the class
const bucketPrototype = Object.getPrototypeOf(bucket)
let fnNames = []
let p
for (p in bucketPrototype) {
if (bucketPrototype.hasOwnProperty(p) &&
p.charAt(0) !== '_' &&
typeof bucketPrototype[p] === 'function' &&
!Driver.prototype[p] &&
p !== 'constructor') {
fnNames.push(p)
}
}
fnNames.forEach(fnName => {
Driver.prototype[fnName] = function () {
if (syncFunctions.indexOf(fnName) >= 0) {
return this.bucket[fnName](...arguments)
} else {
return pCall(this.bucket, this.bucket[fnName], ...arguments)
}
}
})
return new Driver(bucket, options)
}
}
function getDocument (keys, options, fn) {
if (options instanceof Function) {
fn = options
options = { missing: true }
}
if (!keys || (Array.isArray(keys) && !keys.length)) {
return process.nextTick(fn)
}
if (Array.isArray(keys)) {
debug(`Driver.getMulti. keys: ${keys}`)
this.bucket.getMulti(keys, (err, getRes) => {
if (err && isObject(err)) {
return fn(err)
}
const misses = []
const results = []
let errors = []
keys.forEach(k => {
if (getRes.hasOwnProperty(k) && getRes[k]) {
if (getRes[k].value) {
results.push({
value: getRes[k].value,
cas: getRes[k].cas
})
} else if (getRes[k].error && Driver.isKeyNotFound(getRes[k].error)) {
misses.push(k)
} else if (getRes[k].error) {
errors.push([getRes[k].error])
}
}
})
if (errors.length === 0) {
errors = null
}
if (this.config.missing === false) {
if (options.missing === true) {
return fn(errors, results, misses)
}
return fn(errors, results)
}
if (options.missing === false) {
return fn(errors, results)
}
return fn(errors, results, misses)
})
} else {
debug(`Driver.get. keys: ${keys}`)
this.bucket.get(keys, options, (err, getRes) => {
if (err && Driver.isKeyNotFound(err)) {
err = null
}
return fn(err, getRes)
})
}
}
function getAndLock (key, options, fn) {
if (options instanceof Function) {
fn = options
options = {}
}
debug(`Driver.getAndLock. key: ${key}`)
const opts = defaults(options, this.config)
const ropts = {
times: opts.retryTemporaryErrors ? opts.tempRetryTimes : 1,
interval: options.tempRetryInterval,
errorFilter: Driver.isTemporaryError
}
async.retry(ropts, rFn => {
this.bucket.getAndLock(key, options, (err, getRes) => {
if (err && Driver.isKeyNotFound(err)) {
err = null
}
return rFn(err, getRes)
})
}, fn)
}
function remove (key, options, fn) {
if (options instanceof Function) {
fn = options
options = {}
}
if (!key) {
return process.nextTick(fn)
}
debug(`Driver.remove. key: ${key}`)
this.bucket.remove(key, options, (err, rres) => {
if (err && Driver.isKeyNotFound(err)) {
err = null
}
return fn(err, rres)
})
}
function insert (key, value, options, fn) {
write.apply(this, ['insert', key, value, options, fn])
}
function upsert (key, value, options, fn) {
write.apply(this, ['upsert', key, value, options, fn])
}
function write (type, key, value, options, fn) {
if (options instanceof Function) {
fn = options
options = {}
}
if ((type !== 'insert' && type !== 'upsert') ||
typeof this.bucket[type] !== 'function') {
return process.nextTick(() => {
return fn(new Error(`Invalid write operation: ${type}`))
})
}
const opts = defaults(options, this.config)
const ropts = {
times: opts.retryTemporaryErrors ? opts.tempRetryTimes : 1,
interval: options.tempRetryInterval,
errorFilter: Driver.isTemporaryError
}
debug(`Driver.${type}. key: ${key} retry options: %j`, ropts)
if (!key) {
return process.nextTick(fn)
}
async.retry(ropts, rFn => {
this.bucket[type](key, value, options, rFn)
}, fn)
}
function atomic (key, transform, options, fn) {
if (options instanceof Function) {
fn = options
options = {}
}
debug(`Driver.atomic. key: ${key}`)
if (options.atomicLock) {
return this._atomicWithLock(key, transform, options, fn)
}
return this._atomicNoLock(key, transform, options, fn)
}
function _atomicWithLock (key, transform, options, fn) {
if (options instanceof Function) {
fn = options
options = {}
}
const opts = defaults(options, this.config)
const ropts = {
times: opts.atomicRetryTimes,
interval: options.atomicRetryInterval
}
debug(`Driver._atomicWithLock. key: ${key} retry options: %j`, ropts)
async.retry(ropts, rfn => {
this.getAndLock(key, (err, doc) => {
if (err) {
return rfn(err)
}
const opr = transform(doc ? doc.value : undefined)
const opts = doc ? { cas: doc.cas } : {}
Object.assign(opts, options.saveOptions)
debug(`Driver.atomicWithLock. action: ${opr.action}`)
if (opr.action === OPERATIONS.NOOP) {
if (!doc) {
return rfn(err, opr.value)
}
this.unlock(key, doc.cas, err => {
return rfn(err, opr.value)
})
} else if (opr.action === OPERATIONS.UPSERT && opr.value) {
// if new document we want to try insert so the op will fail if
// it got inserted in the meantime by another request
if (doc) {
return this.upsert(key, opr.value, opts, rfn)
}
return this.insert(key, opr.value, opts, rfn)
} else {
this.unlock(key, doc.cas, (err, doc2) => {
if (err) {
return rfn(err)
}
const ropts = doc2 ? { cas: doc2.cas } : {}
return this.remove(key, ropts, rfn)
})
}
})
}, fn)
}
function _atomicNoLock (key, transform, options, fn) {
if (options instanceof Function) {
fn = options
options = {}
}
const opts = defaults(options, this.config)
const ropts = {
times: opts.atomicRetryTimes,
interval: options.atomicRetryInterval
}
debug(`Driver._atomicNoLock. key: ${key} retry options: %j`, ropts)
async.retry(ropts, rfn => {
this.get(key, (err, doc) => {
if (err) {
return rfn(err)
}
const opr = transform(doc ? doc.value : undefined)
const opts = doc ? { cas: doc.cas } : {}
debug(`Driver.atomicNoLock. action: ${opr.action}`)
if (opr.action === OPERATIONS.NOOP) {
return rfn(null, opr.value)
} else if (opr.action === OPERATIONS.UPSERT && opr.value) {
// if new document we want to try insert so the op will fail if
// it got inserted in the meantime by another request
if (doc) {
return this.upsert(key, opr.value, opts, rfn)
}
return this.insert(key, opr.value, rfn)
}
return this.remove(key, opts, rfn)
})
}, fn)
}
function isObject (value) {
const type = typeof value
return value != null && (type === 'object' || type === 'function')
}
function getNodeUri (bucket) {
if (!bucket ||
!bucket._cb ||
!bucket._execAndUriParse ||
typeof bucket._execAndUriParse !== 'function') {
return
}
const dbnodeFn = bucket._cb.getMgmtNode || bucket._cb.getViewNode
return bucket._execAndUriParse(dbnodeFn)
}
function getNodeDataRequestOptions (bucket) {
const nodeUri = getNodeUri(bucket)
if (!nodeUri) {
return
}
const reqOpts = {
agent: this.httpAgent,
hostname: nodeUri.hostname,
port: nodeUri.port,
path: '/pools/default',
method: 'GET',
headers: { 'Content-Type': 'application/json' }
}
if (this._password) {
reqOpts.auth = this._username + ':' + this._password
}
return reqOpts
}
function getNodeData (bucket, fn) {
const reqOpts = getNodeDataRequestOptions(bucket)
if (!reqOpts) {
return fn(new Error('Could not get server node data'))
}
const req = http.request(reqOpts, res => {
const statusCode = res.statusCode
let error
if (statusCode !== 200) {
error = new Error(`Node request failed. Status Code: ${statusCode}`)
}
if (error) {
res.resume()
return fn(error)
}
res.setEncoding('utf8')
let rawData = ''
res.on('data', chunk => { rawData += chunk })
res.on('end', () => {
try {
const parsedData = JSON.parse(rawData)
return fn(null, parsedData)
} catch (e) {
return fn(e)
}
})
})
req.on('error', (e) => {
fn(e)
})
req.end()
}
function getServerVersion (fn) {
getNodeData(this.bucket, (err, nodeData) => {
if (err) {
return fn(err)
}
if (!nodeData ||
!nodeData.nodes ||
!Array.isArray(nodeData.nodes) ||
!nodeData.nodes.length) {
return fn(new Error('No couchbase server node data'))
}
let versions = nodeData.nodes.map(n => n.version)
versions = versions.map(vStr => {
const i = vStr.indexOf('-')
if (i <= 0) {
return vStr
}
return vStr.substring(0, i)
})
const version = versions.reduce((lv, v) => {
if (semver.lt(lv, v)) {
return lv
}
return v
}, '1000.1000.1000')
return fn(null, version)
})
}
module.exports = Driver