1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-01 16:46:54 +03:00
Files
node-redis/lib/command.js
Ruben Bridgewater d7c31da598 chore: add callback functionality back in
This also improves the performance for multi / batch commands a lot.
The reason is that now there are only callbacks internally even if
a promise is going to be returned in the end.
2017-11-29 19:16:40 -02:00

53 lines
1.2 KiB
JavaScript

'use strict'
const betterStackTraces = /development/i.test(process.env.NODE_ENV) || /\bredis\b/i.test(process.env.NODE_DEBUG)
function Command(name, args) {
var callback
if (args.length !== 0 && typeof args[args.length - 1] === 'function') {
this.promise = undefined
callback = args.pop()
} else {
this.promise = new Promise((resolve, reject) => {
callback = (err, res) => {
if (this.transformer !== undefined) {
const tmp = this.transformer(err, res)
err = tmp[0]
res = tmp[1]
}
if (err === null) {
resolve(res)
} else {
reject(err)
}
}
})
}
this.callback = callback
this.command = name
this.args = args
this.argsLength = 0
this.bufferArgs = false
this.transformer = undefined
this.callOnWrite = undefined
if (betterStackTraces) {
this.error = new Error()
}
}
function MultiCommand(name, args) {
this.command = name
this.args = args
this.argsLength = 0
this.bufferArgs = false
this.transformer = undefined
this.promise = undefined
this.callback = undefined
this.callOnWrite = undefined
}
module.exports = {
Command,
MultiCommand
}