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 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 8 1 1 | 'use strict'; var _ = require('lodash'); var util = require('util'); var EventEmitter = require('events').EventEmitter; var Promise = require('bluebird'); var Deque = require('double-ended-queue'); var Command = require('./command'); var Commander = require('./commander'); var utils = require('./utils'); var eventHandler = require('./redis/event_handler'); var debug = require('debug')('ioredis:redis'); var Connector = require('./connectors/connector'); var SentinelConnector = require('./connectors/sentinel_connector'); var ScanStream = require('./scan_stream'); var commands = require('redis-commands'); /** * Creates a Redis instance * * @constructor * @param {(number|string|Object)} [port=6379] - Port of the Redis server, * or a URL string(see the examples below), * or the `options` object(see the third argument). * @param {string|Object} [host=localhost] - Host of the Redis server, * when the first argument is a URL string, * this argument is an object represents the options. * @param {Object} [options] - Other options. * @param {number} [options.port=6379] - Port of the Redis server. * @param {string} [options.host=localhost] - Host of the Redis server. * @param {string} [options.family=4] - Version of IP stack. Defaults to 4. * @param {string} [options.path=null] - Local domain socket path. If set the `port`, * `host` and `family` will be ignored. * @param {number} [options.keepAlive=0] - TCP KeepAlive on the socket with a X ms delay before start. * Set to a non-number value to disable keepAlive. * @param {boolean} [options.noDelay=true] - Whether to disable the Nagle's Algorithm. By default we disable * it to reduce the latency. * @param {string} [options.connectionName=null] - Connection name. * @param {number} [options.db=0] - Database index to use. * @param {string} [options.password=null] - If set, client will send AUTH command * with the value of this option when connected. * @param {string} [options.parser=null] - Either "hiredis" or "javascript". If not set, "hiredis" parser * will be used if it's installed (`npm install hiredis`), otherwise "javascript" parser will be used. * @param {boolean} [options.dropBufferSupport=false] - Drop the buffer support for better performance. * This option is recommended to be enabled when "hiredis" parser is used. * Refer to https://github.com/luin/ioredis/wiki/Improve-Performance for more details. * @param {boolean} [options.enableReadyCheck=true] - When a connection is established to * the Redis server, the server might still be loading the database from disk. * While loading, the server not respond to any commands. * To work around this, when this option is `true`, * ioredis will check the status of the Redis server, * and when the Redis server is able to process commands, * a `ready` event will be emitted. * @param {boolean} [options.enableOfflineQueue=true] - By default, * if there is no active connection to the Redis server, * commands are added to a queue and are executed once the connection is "ready" * (when `enableReadyCheck` is `true`, * "ready" means the Redis server has loaded the database from disk, otherwise means the connection * to the Redis server has been established). If this option is false, * when execute the command when the connection isn't ready, an error will be returned. * @param {number} [options.connectTimeout=10000] - The milliseconds before a timeout occurs during the initial * connection to the Redis server. * @param {boolean} [options.autoResubscribe=true] - After reconnected, if the previous connection was in the * subscriber mode, client will auto re-subscribe these channels. * @param {boolean} [options.autoResendUnfulfilledCommands=true] - If true, client will resend unfulfilled * commands(e.g. block commands) in the previous connection when reconnected. * @param {boolean} [options.lazyConnect=false] - By default, * When a new `Redis` instance is created, it will connect to Redis server automatically. * If you want to keep disconnected util a command is called, you can pass the `lazyConnect` option to * the constructor: * * ```javascript * var redis = new Redis({ lazyConnect: true }); * // No attempting to connect to the Redis server here. * // Now let's connect to the Redis server * redis.get('foo', function () { * }); * ``` * @param {string} [options.keyPrefix=''] - The prefix to prepend to all keys in a command. * @param {function} [options.retryStrategy] - See "Quick Start" section * @param {function} [options.reconnectOnError] - See "Quick Start" section * @param {boolean} [options.readOnly=false] - Enable READONLY mode for the connection. * Only available for cluster mode. * @param {boolean} [options.stringNumbers=false] - Force numbers to be always returned as JavaScript * strings. This option is necessary when dealing with big numbers (exceed the [-2^53, +2^53] range). * Notice that when this option is enabled, the JavaScript parser will be used even "hiredis" is specified * because only JavaScript parser supports this feature for the time being. * @extends [EventEmitter](http://nodejs.org/api/events.html#events_class_events_eventemitter) * @extends Commander * @example * ```js * var Redis = require('ioredis'); * * var redis = new Redis(); * // or: var redis = Redis(); * * var redisOnPort6380 = new Redis(6380); * var anotherRedis = new Redis(6380, '192.168.100.1'); * var unixSocketRedis = new Redis({ path: '/tmp/echo.sock' }); * var unixSocketRedis2 = new Redis('/tmp/echo.sock'); * var urlRedis = new Redis('redis://user:password@redis-service.com:6379/'); * var urlRedis2 = new Redis('//localhost:6379'); * var authedRedis = new Redis(6380, '192.168.100.1', { password: 'password' }); * ``` */ function Redis() { if (!(this instanceof Redis)) { return new Redis(arguments[0], arguments[1], arguments[2]); } EventEmitter.call(this); Commander.call(this); this.parseOptions(arguments[0], arguments[1], arguments[2]); this.resetCommandQueue(); this.resetOfflineQueue(); if (this.options.sentinels) { this.connector = new SentinelConnector(this.options); } else { this.connector = new Connector(this.options); } this.retryAttempts = 0; // end(or wait) -> connecting -> connect -> ready -> end if (this.options.lazyConnect) { this.setStatus('wait'); } else { this.connect().catch(_.noop); } } util.inherits(Redis, EventEmitter); _.assign(Redis.prototype, Commander.prototype); /** * Create a Redis instance * * @deprecated */ Redis.createClient = function () { return Redis.apply(this, arguments); }; /** * Default options * * @var defaultOptions * @protected */ Redis.defaultOptions = { // Connection port: 6379, host: 'localhost', family: 4, connectTimeout: 3000, retryStrategy: function (times) { return Math.min(times * 2, 2000); }, keepAlive: 0, noDelay: true, connectionName: null, // Sentinel sentinels: null, name: null, role: 'master', sentinelRetryStrategy: function (times) { return Math.min(times * 10, 1000); }, // Status password: null, db: 0, // Others parser: null, dropBufferSupport: false, enableOfflineQueue: true, enableReadyCheck: true, autoResubscribe: true, autoResendUnfulfilledCommands: true, lazyConnect: false, keyPrefix: '', reconnectOnError: null, readOnly: false, stringNumbers: false }; Redis.prototype.resetCommandQueue = function () { this.commandQueue = new Deque(); }; Redis.prototype.resetOfflineQueue = function () { this.offlineQueue = new Deque(); }; Redis.prototype.parseOptions = function () { this.options = {}; for (var i = 0; i < arguments.length; ++i) { var arg = arguments[i]; if (arg === null || typeof arg === 'undefined') { continue; } if (typeof arg === 'object') { _.defaults(this.options, arg); } else if (typeof arg === 'string') { _.defaults(this.options, utils.parseURL(arg)); } else if (typeof arg === 'number') { this.options.port = arg; } else { throw new Error('Invalid argument ' + arg); } } _.defaults(this.options, Redis.defaultOptions); if (typeof this.options.port === 'string') { this.options.port = parseInt(this.options.port, 10); } if (typeof this.options.db === 'string') { this.options.db = parseInt(this.options.db, 10); } }; /** * Change instance's status * @private */ Redis.prototype.setStatus = function (status, arg) { var address; if (this.options.path) { address = this.options.path; } else if (this.stream && this.stream.remoteAddress && this.stream.remotePort) { address = this.stream.remoteAddress + ':' + this.stream.remotePort; } else { address = this.options.host + ':' + this.options.port; } debug('status[%s]: %s -> %s', address, this.status || '[empty]', status); this.status = status; process.nextTick(this.emit.bind(this, status, arg)); }; /** * Create a connection to Redis. * This method will be invoked automatically when creating a new Redis instance. * @param {function} callback * @return {Promise} * @public */ Redis.prototype.connect = function (callback) { return new Promise(function (resolve, reject) { if (this.status === 'connecting' || this.status === 'connect' || this.status === 'ready') { reject(new Error('Redis is already connecting/connected')); return; } this.setStatus('connecting'); this.condition = { select: this.options.db, auth: this.options.password, subscriber: false }; var _this = this; this.connector.connect(function (err, stream) { if (err) { _this.flushQueue(err); _this.silentEmit('error', err); reject(err); _this.setStatus('end'); return; } var CONNECT_EVENT = _this.options.tls ? 'secureConnect' : 'connect'; _this.stream = stream; if (typeof _this.options.keepAlive === 'number') { stream.setKeepAlive(true, _this.options.keepAlive); } stream.once(CONNECT_EVENT, eventHandler.connectHandler(_this)); stream.once('error', eventHandler.errorHandler(_this)); stream.once('close', eventHandler.closeHandler(_this)); stream.on('data', eventHandler.dataHandler(_this)); if (_this.options.connectTimeout) { stream.setTimeout(_this.options.connectTimeout, function () { stream.setTimeout(0); stream.destroy(); var err = new Error('connect ETIMEDOUT'); err.errorno = 'ETIMEDOUT'; err.code = 'ETIMEDOUT'; err.syscall = 'connect'; eventHandler.errorHandler(_this)(err); }); stream.once(CONNECT_EVENT, function () { stream.setTimeout(0); }); } if (_this.options.noDelay) { stream.setNoDelay(true); } var connectionConnectHandler = function () { _this.removeListener('close', connectionCloseHandler); resolve(); }; var connectionCloseHandler = function () { _this.removeListener(CONNECT_EVENT, connectionConnectHandler); reject(new Error(utils.CONNECTION_CLOSED_ERROR_MSG)); }; _this.once(CONNECT_EVENT, connectionConnectHandler); _this.once('close', connectionCloseHandler); }); }.bind(this)).nodeify(callback); }; /** * Disconnect from Redis. * * This method closes the connection immediately, * and may lose some pending replies that haven't written to client. * If you want to wait for the pending replies, use Redis#quit instead. * @public */ Redis.prototype.disconnect = function (reconnect) { if (!reconnect) { this.manuallyClosing = true; } if (this.reconnectTimeout) { clearTimeout(this.reconnectTimeout); this.reconnectTimeout = null; } if (this.status === 'wait') { eventHandler.closeHandler(this)(); } else { this.connector.disconnect(); } }; /** * Disconnect from Redis. * * @deprecated */ Redis.prototype.end = function () { this.disconnect(); }; /** * Create a new instance with the same options as the current one. * * @example * ```js * var redis = new Redis(6380); * var anotherRedis = redis.duplicate(); * ``` * * @public */ Redis.prototype.duplicate = function (override) { return new Redis(_.assign(_.cloneDeep(this.options), override || {})); }; /** * Flush offline queue and command queue with error. * * @param {Error} error - The error object to send to the commands * @param {object} options * @private */ Redis.prototype.flushQueue = function (error, options) { options = _.defaults({}, options, { offlineQueue: true, commandQueue: true }); var item; if (options.offlineQueue) { while (this.offlineQueue.length > 0) { item = this.offlineQueue.shift(); item.command.reject(error); } } if (options.commandQueue) { if (this.commandQueue.length > 0) { if (this.stream) { this.stream.removeAllListeners('data'); } while (this.commandQueue.length > 0) { item = this.commandQueue.shift(); item.command.reject(error); } } } }; /** * Check whether Redis has finished loading the persistent data and is able to * process commands. * * @param {Function} callback * @private */ Redis.prototype._readyCheck = function (callback) { var _this = this; this.info(function (err, res) { if (err) { return callback(err); } if (typeof res !== 'string') { return callback(null, res); } var info = {}; var lines = res.split('\r\n'); for (var i = 0; i < lines.length; ++i) { var parts = lines[i].split(':'); if (parts[1]) { info[parts[0]] = parts[1]; } } if (!info.loading || info.loading === '0') { callback(null, info); } else { var retryTime = (info.loading_eta_seconds || 1) * 1000; debug('Redis server still loading, trying again in ' + retryTime + 'ms'); setTimeout(function () { _this._readyCheck(callback); }, retryTime); } }); }; /** * Emit only when there's at least one listener. * * @param {string} eventName - Event to emit * @param {...*} arguments - Arguments * @return {boolean} Returns true if event had listeners, false otherwise. * @private */ Redis.prototype.silentEmit = function (eventName) { var error; if (eventName === 'error') { error = arguments[1]; if (this.status === 'end') { return; } if (this.manuallyClosing) { // ignore connection related errors when manually disconnecting if ( error instanceof Error && ( error.message === utils.CONNECTION_CLOSED_ERROR_MSG || error.syscall === 'connect' || error.syscall === 'read' ) ) { return; } } } if (this.listeners(eventName).length > 0) { return this.emit.apply(this, arguments); } if (error && error instanceof Error) { console.error('[ioredis] Unhandled error event:', error.stack); } return false; }; /** * Listen for all requests received by the server in real time. * * This command will create a new connection to Redis and send a * MONITOR command via the new connection in order to avoid disturbing * the current connection. * * @param {function} [callback] The callback function. If omit, a promise will be returned. * @example * ```js * var redis = new Redis(); * redis.monitor(function (err, monitor) { * // Entering monitoring mode. * monitor.on('monitor', function (time, args, source, database) { * console.log(time + ": " + util.inspect(args)); * }); * }); * * // supports promise as well as other commands * redis.monitor().then(function (monitor) { * monitor.on('monitor', function (time, args, source, database) { * console.log(time + ": " + util.inspect(args)); * }); * }); * ``` * @public */ Redis.prototype.monitor = function (callback) { var monitorInstance = this.duplicate({ monitor: true, lazyConnect: false }); return new Promise(function (resolve) { monitorInstance.once('monitoring', function () { resolve(monitorInstance); }); }).nodeify(callback); }; require('./transaction').addTransactionSupport(Redis.prototype); /** * Send a command to Redis * * This method is used internally by the `Redis#set`, `Redis#lpush` etc. * Most of the time you won't invoke this method directly. * However when you want to send a command that is not supported by ioredis yet, * this command will be useful. * * @method sendCommand * @memberOf Redis# * @param {Command} command - The Command instance to send. * @see {@link Command} * @example * ```js * var redis = new Redis(); * * // Use callback * var get = new Command('get', ['foo'], 'utf8', function (err, result) { * console.log(result); * }); * redis.sendCommand(get); * * // Use promise * var set = new Command('set', ['foo', 'bar'], 'utf8'); * set.promise.then(function (result) { * console.log(result); * }); * redis.sendCommand(set); * ``` * @private */ Redis.prototype.sendCommand = function (command, stream) { if (this.status === 'wait') { this.connect().catch(_.noop); } if (this.status === 'end') { command.reject(new Error(utils.CONNECTION_CLOSED_ERROR_MSG)); return command.promise; } if (this.condition.subscriber && !Command.checkFlag('VALID_IN_SUBSCRIBER_MODE', command.name)) { command.reject(new Error('Connection in subscriber mode, only subscriber commands may be used')); return command.promise; } var writable = (this.status === 'ready') || (!stream && (this.status === 'connect') && commands.hasFlag(command.name, 'loading')); if (!this.stream) { writable = false; } else if (!this.stream.writable) { writable = false; } else if (this.stream._writableState && this.stream._writableState.ended) { // https://github.com/iojs/io.js/pull/1217 writable = false; } if (!writable && !this.options.enableOfflineQueue) { command.reject(new Error('Stream isn\'t writeable and enableOfflineQueue options is false')); return command.promise; } if (!writable && command.name === 'quit' && this.offlineQueue.length === 0) { this.disconnect(); command.resolve(new Buffer('OK')); return command.promise; } if (writable) { debug('write command[%d] -> %s(%s)', this.condition.select, command.name, command.args); (stream || this.stream).write(command.toWritable()); this.commandQueue.push({ command: command, stream: stream, select: this.condition.select }); if (Command.checkFlag('WILL_DISCONNECT', command.name)) { this.manuallyClosing = true; } } else if (this.options.enableOfflineQueue) { debug('queue command[%d] -> %s(%s)', this.condition.select, command.name, command.args); this.offlineQueue.push({ command: command, stream: stream, select: this.condition.select }); } if (command.name === 'select' && utils.isInt(command.args[0])) { var db = parseInt(command.args[0], 10); if (this.condition.select !== db) { this.condition.select = db; this.emit('select', db); debug('switch to db [%d]', this.condition.select); } } return command.promise; }; ['scan', 'sscan', 'hscan', 'zscan', 'scanBuffer', 'sscanBuffer', 'hscanBuffer', 'zscanBuffer'] .forEach(function (command) { Redis.prototype[command + 'Stream'] = function (key, options) { if (command === 'scan' || command === 'scanBuffer') { options = key; key = null; } return new ScanStream(_.defaults({ objectMode: true, key: key, redis: this, command: command }, options)); }; }); _.assign(Redis.prototype, require('./redis/parser')); module.exports = Redis; |