cylon/lib/device.js

124 lines
3.1 KiB
JavaScript
Raw Normal View History

2013-10-25 05:25:42 +08:00
/*
* device
* 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 10:18:13 +08:00
var EventEmitter = require('events').EventEmitter;
2014-02-28 09:39:02 +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 Artoo::Device class represents the interface to
// a specific individual hardware devices. Examples would be a digital
// thermometer connected to an Arduino, or a Sphero's accelerometer
2014-05-07 10:18:13 +08:00
var Device;
// Public: Creates a new Device
//
// opts - object containing Device params
// name - string name of the device
// pin - string pin of the device
// robot - parent Robot to the device
// connection - connection to the device
// driver - string name of the module the device driver logic lives in
//
// Returns a new Device
module.exports = Device = function Device(opts) {
if (opts == null) {
opts = {};
}
this.halt = Utils.bind(this.halt, this);
this.start = Utils.bind(this.start, this);
2014-05-07 10:18:13 +08:00
this.self = this;
this.robot = opts.robot;
this.name = opts.name;
this.pin = opts.pin;
this.connection = this.determineConnection(opts.connection) || this.defaultConnection();
this.driver = this.initDriver(opts);
Utils.proxyFunctionsToObject(this.driver.commands, this.driver, this.self);
2014-05-07 10:18:13 +08:00
};
Utils.subclass(Device, EventEmitter);
2014-05-07 10:18:13 +08:00
// Public: Starts the device driver
//
// callback - callback function to be executed by the driver start
//
// Returns result of supplied callback
Device.prototype.start = function(callback) {
var msg = "Starting device '" + this.name + "'";
2014-05-07 10:18:13 +08:00
if (this.pin != null) {
msg += " on pin " + this.pin;
}
msg += ".";
2014-05-07 10:18:13 +08:00
Logger.info(msg);
return this.driver.start(callback);
};
// Public: Halt the device driver
//
// Returns result of supplied callback
Device.prototype.halt = function() {
Logger.info("Halting device '" + this.name + "'.");
2014-05-07 10:18:13 +08:00
return this.driver.halt();
};
// Public: Expresses the Device in JSON format
2014-05-07 10:18:13 +08:00
//
// Returns an Object containing Connection data
Device.prototype.toJSON = function() {
2014-05-07 10:18:13 +08:00
return {
name: this.name,
driver: this.driver.constructor.name || this.driver.name,
pin: this.pin,
connection: this.connection.toJSON(),
commands: this.driver.commands
2014-05-07 10:18:13 +08:00
};
};
// Public: Retrieves the connections from the parent Robot instances
//
// c - name of the connection to fetch
//
// Returns a Connection instance
Device.prototype.determineConnection = function(c) {
if (c) { return this.robot.connections[c]; }
};
// Public: Returns a default Connection to use
//
// Returns a Connection instance
Device.prototype.defaultConnection = function() {
var first = 0;
for (var c in this.robot.connections) {
var connection = this.robot.connections[c];
first || (first = connection);
}
return first;
};
// Public: sets up driver with @robot
//
// opts - object containing options when initializing driver
// driver - name of the driver to intt()
//
// Returns the set-up driver
Device.prototype.initDriver = function(opts) {
if (opts == null) { opts = {}; }
Logger.debug("Loading driver '" + opts.driver + "'.");
2014-05-07 10:18:13 +08:00
return this.robot.initDriver(opts.driver, this.self, opts);
};