You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
2.3 KiB
97 lines
2.3 KiB
3 years ago
|
/**
|
||
|
* Copyright (c) 2013 Yahoo! Inc. All rights reserved.
|
||
|
*
|
||
|
* Copyrights licensed under the MIT License. See the accompanying LICENSE file
|
||
|
* for terms.
|
||
|
*/
|
||
|
|
||
|
|
||
|
var assert = require('assert');
|
||
|
var u = require('underscore');
|
||
|
var Path = require('./Path.js');
|
||
|
|
||
|
// Constants.
|
||
|
var DEFAULT_PORT = 2181; // Default Zookeeper client port.
|
||
|
|
||
|
/**
|
||
|
* This class parse the connection string to build the ensemble server
|
||
|
* list and chrootPath.
|
||
|
*
|
||
|
* @module node-zookeeper-client
|
||
|
*/
|
||
|
/**
|
||
|
*
|
||
|
* Parse the connect string and random the servers of the ensemble.
|
||
|
*
|
||
|
* @module node-zookeeper-client
|
||
|
* @class ConnectionStringParser
|
||
|
* @constructor
|
||
|
* @param connectionString {String} ZooKeeper server ensemble string.
|
||
|
*/
|
||
|
function ConnectionStringParser(connectionString) {
|
||
|
assert(
|
||
|
connectionString && typeof connectionString === 'string',
|
||
|
'connectionString must be a non-empty string.'
|
||
|
);
|
||
|
|
||
|
this.connectionString = connectionString;
|
||
|
|
||
|
// Handle chroot
|
||
|
var index = connectionString.indexOf('/'),
|
||
|
hostList = [],
|
||
|
servers = [];
|
||
|
|
||
|
if (index !== -1 && index !== (connectionString.length - 1)) {
|
||
|
this.chrootPath = connectionString.substring(index);
|
||
|
Path.validate(this.chrootPath);
|
||
|
} else {
|
||
|
this.chrootPath = undefined;
|
||
|
}
|
||
|
|
||
|
if (index !== -1) {
|
||
|
hostList = connectionString.substring(0, index).split(',');
|
||
|
} else {
|
||
|
hostList = connectionString.split(',');
|
||
|
}
|
||
|
|
||
|
hostList.filter(function (item) {
|
||
|
// Filter out empty string.
|
||
|
return item;
|
||
|
}).forEach(function (item) {
|
||
|
var parts = item.split(':');
|
||
|
|
||
|
servers.push({
|
||
|
host : parts[0],
|
||
|
port : parts[1] || DEFAULT_PORT
|
||
|
});
|
||
|
});
|
||
|
|
||
|
assert(
|
||
|
servers.length > 0,
|
||
|
'connectionString must contain at least one server.'
|
||
|
);
|
||
|
|
||
|
// Randomize the list.
|
||
|
this.servers = u.shuffle(servers);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Return the connection string of this host provider.
|
||
|
*
|
||
|
* @method getConnectionString
|
||
|
* @return The connection string.
|
||
|
*/
|
||
|
ConnectionStringParser.prototype.getConnectionString = function () {
|
||
|
return this.connectionString;
|
||
|
};
|
||
|
|
||
|
ConnectionStringParser.prototype.getChrootPath = function () {
|
||
|
return this.chrootPath;
|
||
|
};
|
||
|
|
||
|
ConnectionStringParser.prototype.getServers = function () {
|
||
|
return this.servers.slice(0);
|
||
|
};
|
||
|
|
||
|
module.exports = ConnectionStringParser;
|