cylon/lib/driver.js

82 lines
1.8 KiB
JavaScript
Raw Normal View History

2013-10-25 05:25:42 +08:00
/*
* driver
* cylonjs.com
*
2015-01-08 04:58:50 +08:00
* Copyright (c) 2013-2015 The Hybrid Group
2013-10-25 05:25:42 +08:00
* Licensed under the Apache 2.0 license.
*/
2014-12-16 03:15:29 +08:00
"use strict";
2013-10-25 05:25:42 +08:00
2014-12-16 03:15:29 +08:00
var Basestar = require("./basestar"),
Utils = require("./utils"),
_ = require("./utils/helpers");
2014-04-25 06:31:47 +08:00
2014-05-07 09:24:43 +08:00
// Public: Creates a new Driver
//
// opts - hash of acceptable params
// name - name of the Driver, used when printing to console
// device - Device the driver will use to proxy commands/events
//
// Returns a new Driver
2014-06-17 04:09:13 +08:00
var Driver = module.exports = function Driver(opts) {
opts = opts || {};
this.name = opts.name;
2014-12-16 03:15:29 +08:00
this.robot = opts.robot;
2014-11-01 04:50:22 +08:00
this.connection = opts.connection;
2014-11-01 04:50:22 +08:00
this.commands = {};
this.events = [];
// some default options
this.pin = opts.pin;
2014-11-01 04:50:22 +08:00
this.interval = opts.interval || 10;
2014-08-06 09:41:57 +08:00
this.details = {};
_.each(opts, function(opt, name) {
var banned = ["robot", "name", "connection", "driver", "events"];
2014-12-18 06:42:34 +08:00
2015-02-20 09:23:41 +08:00
if (!~banned.indexOf(name)) {
this.details[name] = opt;
}
}, this);
2014-05-07 09:24:43 +08:00
};
Utils.subclass(Driver, Basestar);
2014-08-13 01:07:17 +08:00
Driver.prototype.setupCommands = function(commands, proxy) {
if (proxy == null) {
2014-11-15 03:34:37 +08:00
proxy = this.connection;
2014-08-13 01:07:17 +08:00
}
Utils.proxyFunctionsToObject(commands, proxy, this);
2014-08-12 05:10:59 +08:00
2015-02-20 09:23:41 +08:00
commands.forEach(function(command) {
2014-08-12 05:10:59 +08:00
var snake_case = command.replace(/[A-Z]+/g, function(match) {
if (match.length > 1) {
match = match.replace(/[A-Z]$/, function(m) {
return "_" + m.toLowerCase();
});
}
return "_" + match.toLowerCase();
2014-12-16 03:15:29 +08:00
}).replace(/^_/, "");
2014-08-12 05:10:59 +08:00
2014-08-12 06:29:35 +08:00
this.commands[snake_case] = this[command];
2014-12-18 06:42:34 +08:00
}, this);
2014-12-16 03:15:29 +08:00
};
Driver.prototype.toJSON = function() {
return {
name: this.name,
driver: this.constructor.name || this.name,
connection: this.connection.name,
2015-02-20 09:23:41 +08:00
commands: Object.keys(this.commands),
events: this.events,
details: this.details
};
};