90 lines
2.6 KiB
JavaScript
90 lines
2.6 KiB
JavaScript
/*
|
|
* connection
|
|
* cylonjs.com
|
|
*
|
|
* Copyright (c) 2013 The Hybrid Group
|
|
* Licensed under the Apache 2.0 license.
|
|
*/
|
|
|
|
|
|
(function() {
|
|
'use strict';
|
|
var EventEmitter, namespace,
|
|
__bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },
|
|
__hasProp = {}.hasOwnProperty,
|
|
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; };
|
|
|
|
require("./robot");
|
|
|
|
require("./port");
|
|
|
|
require("./adaptor");
|
|
|
|
namespace = require('node-namespace');
|
|
|
|
EventEmitter = require('events').EventEmitter;
|
|
|
|
namespace('Cylon', function() {
|
|
return this.Connection = (function(_super) {
|
|
__extends(Connection, _super);
|
|
|
|
function Connection(opts) {
|
|
if (opts == null) {
|
|
opts = {};
|
|
}
|
|
this.connect = __bind(this.connect, this);
|
|
if (opts.id == null) {
|
|
opts.id = Math.floor(Math.random() * 10000);
|
|
}
|
|
this.self = this;
|
|
this.robot = opts.robot;
|
|
this.name = opts.name;
|
|
this.connection_id = opts.id;
|
|
this.adaptor = this.initAdaptor(opts);
|
|
this.port = new Cylon.Port(opts.port);
|
|
proxyFunctionsToObject(this.adaptor.commands(), this.adaptor, this.self);
|
|
}
|
|
|
|
Connection.prototype.data = function() {
|
|
return {
|
|
name: this.name,
|
|
port: this.port.toString(),
|
|
adaptor: this.adaptor.constructor.name || this.adaptor.name,
|
|
connection_id: this.connection_id
|
|
};
|
|
};
|
|
|
|
Connection.prototype.connect = function(callback) {
|
|
var msg;
|
|
msg = "Connecting to '" + this.name + "'";
|
|
if (this.port != null) {
|
|
msg += " on port '" + (this.port.toString()) + "'";
|
|
}
|
|
Logger.info(msg);
|
|
return this.adaptor.connect(callback);
|
|
};
|
|
|
|
Connection.prototype.disconnect = function() {
|
|
var msg;
|
|
msg = "Disconnecting from '" + this.name + "'";
|
|
if (this.port != null) {
|
|
msg += " on port '" + (this.port.toString()) + "'";
|
|
}
|
|
Logger.info(msg);
|
|
return this.adaptor.disconnect();
|
|
};
|
|
|
|
Connection.prototype.initAdaptor = function(opts) {
|
|
Logger.debug("Loading adaptor '" + opts.adaptor + "'");
|
|
return this.robot.initAdaptor(opts.adaptor, this.self, opts);
|
|
};
|
|
|
|
return Connection;
|
|
|
|
})(EventEmitter);
|
|
});
|
|
|
|
module.exports = Cylon.Connection;
|
|
|
|
}).call(this);
|