2013-10-25 05:25:42 +08:00
|
|
|
/*
|
|
|
|
* connection
|
|
|
|
* cylonjs.com
|
|
|
|
*
|
2014-02-28 02:33:43 +08:00
|
|
|
* Copyright (c) 2013-2014 The Hybrid Group
|
2013-10-25 05:25:42 +08:00
|
|
|
* Licensed under the Apache 2.0 license.
|
|
|
|
*/
|
|
|
|
|
2014-02-28 02:33:43 +08:00
|
|
|
'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
|
|
|
|
2014-06-06 03:11:37 +08:00
|
|
|
var Logger = require('./logger'),
|
|
|
|
Utils = require('./utils');
|
2014-05-14 10:44:40 +08:00
|
|
|
|
2014-02-28 06:42:33 +08:00
|
|
|
// The Connection class represents the interface to
|
|
|
|
// a specific group of hardware devices. Examples would be an
|
|
|
|
// Arduino, a Sphero, or an ARDrone.
|
2014-05-07 23:38:06 +08:00
|
|
|
var Connection;
|
|
|
|
|
|
|
|
// Public: Creates a new Connection
|
|
|
|
//
|
|
|
|
// opts - hash of acceptable params:
|
|
|
|
// id - string ID for the connection
|
|
|
|
// 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
|
|
|
|
module.exports = Connection = function Connection(opts) {
|
|
|
|
if (opts == null) {
|
|
|
|
opts = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opts.id == null) {
|
|
|
|
opts.id = Math.floor(Math.random() * 10000);
|
|
|
|
}
|
|
|
|
|
2014-06-06 03:11:37 +08:00
|
|
|
this.connect = Utils.bind(this.connect, this);
|
2014-05-07 23:38:06 +08:00
|
|
|
|
|
|
|
this.self = this;
|
|
|
|
this.robot = opts.robot;
|
|
|
|
this.name = opts.name;
|
|
|
|
this.connection_id = opts.id;
|
|
|
|
this.port = opts.port;
|
|
|
|
this.adaptor = this.initAdaptor(opts);
|
|
|
|
|
2014-06-11 03:29:44 +08:00
|
|
|
Utils.proxyFunctionsToObject(this.adaptor.commands, this.adaptor, this.self);
|
2014-06-17 04:09:13 +08:00
|
|
|
};
|
2014-05-07 23:38:06 +08:00
|
|
|
|
2014-06-06 03:11:37 +08:00
|
|
|
Utils.subclass(Connection, EventEmitter);
|
2014-05-07 23:38:06 +08:00
|
|
|
|
2014-06-07 05:11:35 +08:00
|
|
|
// Public: Expresses the Connection in JSON format
|
2014-05-07 23:38:06 +08:00
|
|
|
//
|
|
|
|
// Returns an Object containing Connection data
|
2014-06-07 05:11:35 +08:00
|
|
|
Connection.prototype.toJSON = function() {
|
2014-05-07 23:38:06 +08:00
|
|
|
return {
|
|
|
|
name: this.name,
|
|
|
|
port: this.port,
|
|
|
|
adaptor: this.adaptor.constructor.name || this.adaptor.name,
|
|
|
|
connection_id: this.connection_id
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
// Public: Connect the adaptor's connection
|
|
|
|
//
|
|
|
|
// callback - callback function to run when the adaptor is connected
|
|
|
|
//
|
|
|
|
// Returns the result of the supplied callback function
|
|
|
|
Connection.prototype.connect = function(callback) {
|
2014-06-11 02:33:52 +08:00
|
|
|
var msg = "Connecting to '" + this.name + "'";
|
2014-05-07 23:38:06 +08:00
|
|
|
|
|
|
|
if (this.port != null) {
|
|
|
|
msg += " on port " + this.port;
|
|
|
|
}
|
|
|
|
|
2014-06-11 02:33:52 +08:00
|
|
|
msg += ".";
|
|
|
|
|
2014-05-07 23:38:06 +08:00
|
|
|
Logger.info(msg);
|
|
|
|
return this.adaptor.connect(callback);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Public: Disconnect the adaptor's connection
|
|
|
|
//
|
2014-06-13 06:31:49 +08:00
|
|
|
// callback - function to be triggered then the adaptor has disconnected
|
|
|
|
//
|
2014-05-07 23:38:06 +08:00
|
|
|
// Returns nothing
|
2014-06-13 06:31:49 +08:00
|
|
|
Connection.prototype.disconnect = function(callback) {
|
2014-06-11 02:33:52 +08:00
|
|
|
var msg = "Disconnecting from '" + this.name + "'";
|
2014-05-07 23:38:06 +08:00
|
|
|
|
|
|
|
if (this.port != null) {
|
|
|
|
msg += " on port " + this.port;
|
|
|
|
}
|
|
|
|
|
2014-06-11 02:33:52 +08:00
|
|
|
msg += ".";
|
|
|
|
|
2014-05-07 23:38:06 +08:00
|
|
|
Logger.info(msg);
|
2014-06-13 06:31:49 +08:00
|
|
|
return 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) {
|
2014-06-11 02:33:52 +08:00
|
|
|
Logger.debug("Loading adaptor '" + opts.adaptor + "'.");
|
2014-05-07 23:38:06 +08:00
|
|
|
return this.robot.initAdaptor(opts.adaptor, this.self, opts);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Public: Halt the adaptor's connection
|
|
|
|
//
|
2014-06-13 06:31:49 +08:00
|
|
|
// callback - function to be triggered when the connection has halted
|
|
|
|
//
|
2014-05-07 23:38:06 +08:00
|
|
|
// Returns nothing
|
2014-06-13 06:31:49 +08:00
|
|
|
Connection.prototype.halt = function(callback) {
|
2014-05-07 23:38:06 +08:00
|
|
|
var msg = "Halting adaptor " + this.name;
|
|
|
|
|
|
|
|
if (this.port != null) {
|
|
|
|
msg += " on port " + this.port;
|
|
|
|
}
|
|
|
|
|
|
|
|
Logger.info(msg);
|
2014-06-13 06:31:49 +08:00
|
|
|
return this.disconnect(callback);
|
2014-05-07 23:38:06 +08:00
|
|
|
};
|