48 lines
1.2 KiB
JavaScript
48 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
var QUEUE = require('../job_queue').QUEUE;
|
|
|
|
function QueueSeeker(pool) {
|
|
this.pool = pool;
|
|
}
|
|
|
|
module.exports = QueueSeeker;
|
|
|
|
QueueSeeker.prototype.seek = function (callback) {
|
|
var initialCursor = ['0'];
|
|
var hosts = {};
|
|
this._seek(initialCursor, hosts, callback);
|
|
};
|
|
|
|
QueueSeeker.prototype._seek = function (cursor, hosts, callback) {
|
|
var self = this;
|
|
var redisParams = [cursor[0], 'MATCH', QUEUE.PREFIX + '*'];
|
|
|
|
this.pool.acquire(QUEUE.DB, function(err, client) {
|
|
if (err) {
|
|
return callback(err);
|
|
}
|
|
|
|
client.scan(redisParams, function(err, currentCursor) {
|
|
// checks if iteration has ended
|
|
if (currentCursor[0] === '0') {
|
|
self.pool.release(QUEUE.DB, client);
|
|
return callback(null, Object.keys(hosts));
|
|
}
|
|
|
|
var queues = currentCursor[1];
|
|
|
|
if (!queues) {
|
|
return callback(null);
|
|
}
|
|
|
|
queues.forEach(function (queue) {
|
|
var host = queue.substr(QUEUE.PREFIX.length);
|
|
hosts[host] = true;
|
|
});
|
|
|
|
self._seek(currentCursor, hosts, callback);
|
|
});
|
|
});
|
|
};
|