cylon/lib/connection.js

108 lines
2.6 KiB
JavaScript
Raw Normal View History

2013-10-25 05:25:42 +08:00
/*
* connection
* cylonjs.com
*
* Copyright (c) 2013-2014 The Hybrid Group
2013-10-25 05:25:42 +08:00
* Licensed under the Apache 2.0 license.
*/
'use strict';
2013-10-25 05:25:42 +08:00
2014-05-07 23:38:06 +08:00
var EventEmitter = require('events').EventEmitter;
2014-02-28 06:42:33 +08:00
var Logger = require('./logger'),
Utils = require('./utils');
2014-05-14 10:44:40 +08:00
2014-05-07 23:38:06 +08:00
// Public: Creates a new Connection
//
// opts - hash of acceptable params:
// robot - Robot the Connection belongs to
// name - name for the connection
// adaptor - string module name of the adaptor to be set up
// port - string port to use for the Connection
//
// Returns the newly set-up connection
2014-07-13 02:00:22 +08:00
var Connection = module.exports = function Connection(opts) {
opts = opts || {};
2014-05-07 23:38:06 +08:00
this.connect = this.connect.bind(this);
2014-05-07 23:38:06 +08:00
this.robot = opts.robot;
this.name = opts.name;
this.port = opts.port;
this.adaptor = this.initAdaptor(opts);
this.details = {};
for (var opt in opts) {
if (['robot', 'name', 'adaptor'].indexOf(opt) < 0) {
this.details[opt] = opts[opt];
}
}
for (var opt in this.adaptor) {
if (!this[opt] && typeof this.adaptor[opt] === 'function') {
this[opt] = this.adaptor[opt].bind(this.adaptor);
}
}
2014-06-17 04:09:13 +08:00
};
2014-05-07 23:38:06 +08:00
Utils.subclass(Connection, EventEmitter);
2014-05-07 23:38:06 +08:00
// Public: Expresses the Connection in JSON format
2014-05-07 23:38:06 +08:00
//
// Returns an Object containing Connection data
Connection.prototype.toJSON = function() {
2014-05-07 23:38:06 +08:00
return {
name: this.name,
adaptor: this.adaptor.constructor.name || this.adaptor.name,
details: this.details
2014-05-07 23:38:06 +08:00
};
};
// Public: Connect the adaptor's connection
//
// callback - callback function to run when the adaptor is connected
//
// Returns nothing
2014-05-07 23:38:06 +08:00
Connection.prototype.connect = function(callback) {
var msg = this._logstring("Connecting to");
2014-05-07 23:38:06 +08:00
Logger.info(msg);
this.adaptor.connect(callback);
2014-05-07 23:38:06 +08:00
};
// Public: Disconnect the adaptor's connection
//
// callback - function to be triggered then the adaptor has disconnected
//
2014-05-07 23:38:06 +08:00
// Returns nothing
Connection.prototype.disconnect = function(callback) {
var msg = this._logstring("Disconnecting from");
2014-05-07 23:38:06 +08:00
Logger.info(msg);
this.removeAllListeners();
this.adaptor.disconnect(callback);
2014-05-07 23:38:06 +08:00
};
// Public: sets up adaptor with @robot
//
// opts - options for adaptor being initialized
// adaptor - name of the adaptor
//
// Returns the set-up adaptor
Connection.prototype.initAdaptor = function(opts) {
Logger.debug("Loading adaptor '" + opts.adaptor + "'.");
return this.robot.initAdaptor(opts.adaptor, this, opts);
2014-05-07 23:38:06 +08:00
};
Connection.prototype._logstring = function _logstring(action) {
var msg = action + " '" + this.name + "'";
if (this.port != null) {
msg += " on port " + this.port;
}
msg += ".";
return msg;
};