Updated script that can be controled by Nodejs web app
This commit is contained in:
7
node_modules/options/.npmignore
generated
vendored
Normal file
7
node_modules/options/.npmignore
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
npm-debug.log
|
||||
node_modules
|
||||
.*.swp
|
||||
.lock-*
|
||||
build/
|
||||
|
||||
test
|
12
node_modules/options/Makefile
generated
vendored
Normal file
12
node_modules/options/Makefile
generated
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
ALL_TESTS = $(shell find test/ -name '*.test.js')
|
||||
|
||||
run-tests:
|
||||
@./node_modules/.bin/mocha \
|
||||
-t 2000 \
|
||||
$(TESTFLAGS) \
|
||||
$(TESTS)
|
||||
|
||||
test:
|
||||
@$(MAKE) NODE_PATH=lib TESTS="$(ALL_TESTS)" run-tests
|
||||
|
||||
.PHONY: test
|
69
node_modules/options/README.md
generated
vendored
Normal file
69
node_modules/options/README.md
generated
vendored
Normal file
@ -0,0 +1,69 @@
|
||||
# options.js #
|
||||
|
||||
A very light-weight in-code option parsers for node.js.
|
||||
|
||||
## Usage ##
|
||||
|
||||
``` js
|
||||
var Options = require("options");
|
||||
|
||||
// Create an Options object
|
||||
function foo(options) {
|
||||
var default_options = {
|
||||
foo : "bar"
|
||||
};
|
||||
|
||||
// Create an option object with default value
|
||||
var opts = new Options(default_options);
|
||||
|
||||
// Merge options
|
||||
opts = opts.merge(options);
|
||||
|
||||
// Reset to default value
|
||||
opts.reset();
|
||||
|
||||
// Copy selected attributes out
|
||||
var seled_att = opts.copy("foo");
|
||||
|
||||
// Read json options from a file.
|
||||
opts.read("options.file"); // Sync
|
||||
opts.read("options.file", function(err){ // Async
|
||||
if(err){ // If error occurs
|
||||
console.log("File error.");
|
||||
}else{
|
||||
// No error
|
||||
}
|
||||
});
|
||||
|
||||
// Attributes defined or not
|
||||
opts.isDefinedAndNonNull("foobar");
|
||||
opts.isDefined("foobar");
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
|
||||
## License ##
|
||||
|
||||
(The MIT License)
|
||||
|
||||
Copyright (c) 2012 Einar Otto Stangvik <einaros@gmail.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
'Software'), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
86
node_modules/options/lib/options.js
generated
vendored
Normal file
86
node_modules/options/lib/options.js
generated
vendored
Normal file
@ -0,0 +1,86 @@
|
||||
/*!
|
||||
* Copyright(c) 2011 Einar Otto Stangvik <einaros@gmail.com>
|
||||
* MIT Licensed
|
||||
*/
|
||||
|
||||
var fs = require('fs');
|
||||
|
||||
function Options(defaults) {
|
||||
var internalValues = {};
|
||||
var values = this.value = {};
|
||||
Object.keys(defaults).forEach(function(key) {
|
||||
internalValues[key] = defaults[key];
|
||||
Object.defineProperty(values, key, {
|
||||
get: function() { return internalValues[key]; },
|
||||
configurable: false,
|
||||
enumerable: true
|
||||
});
|
||||
});
|
||||
this.reset = function() {
|
||||
Object.keys(defaults).forEach(function(key) {
|
||||
internalValues[key] = defaults[key];
|
||||
});
|
||||
return this;
|
||||
};
|
||||
this.merge = function(options, required) {
|
||||
options = options || {};
|
||||
if (Object.prototype.toString.call(required) === '[object Array]') {
|
||||
var missing = [];
|
||||
for (var i = 0, l = required.length; i < l; ++i) {
|
||||
var key = required[i];
|
||||
if (!(key in options)) {
|
||||
missing.push(key);
|
||||
}
|
||||
}
|
||||
if (missing.length > 0) {
|
||||
if (missing.length > 1) {
|
||||
throw new Error('options ' +
|
||||
missing.slice(0, missing.length - 1).join(', ') + ' and ' +
|
||||
missing[missing.length - 1] + ' must be defined');
|
||||
}
|
||||
else throw new Error('option ' + missing[0] + ' must be defined');
|
||||
}
|
||||
}
|
||||
Object.keys(options).forEach(function(key) {
|
||||
if (key in internalValues) {
|
||||
internalValues[key] = options[key];
|
||||
}
|
||||
});
|
||||
return this;
|
||||
};
|
||||
this.copy = function(keys) {
|
||||
var obj = {};
|
||||
Object.keys(defaults).forEach(function(key) {
|
||||
if (keys.indexOf(key) !== -1) {
|
||||
obj[key] = values[key];
|
||||
}
|
||||
});
|
||||
return obj;
|
||||
};
|
||||
this.read = function(filename, cb) {
|
||||
if (typeof cb == 'function') {
|
||||
var self = this;
|
||||
fs.readFile(filename, function(error, data) {
|
||||
if (error) return cb(error);
|
||||
var conf = JSON.parse(data);
|
||||
self.merge(conf);
|
||||
cb();
|
||||
});
|
||||
}
|
||||
else {
|
||||
var conf = JSON.parse(fs.readFileSync(filename));
|
||||
this.merge(conf);
|
||||
}
|
||||
return this;
|
||||
};
|
||||
this.isDefined = function(key) {
|
||||
return typeof values[key] != 'undefined';
|
||||
};
|
||||
this.isDefinedAndNonNull = function(key) {
|
||||
return typeof values[key] != 'undefined' && values[key] !== null;
|
||||
};
|
||||
Object.freeze(values);
|
||||
Object.freeze(this);
|
||||
}
|
||||
|
||||
module.exports = Options;
|
21
node_modules/options/package.json
generated
vendored
Normal file
21
node_modules/options/package.json
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
{
|
||||
"author": "Einar Otto Stangvik <einaros@gmail.com> (http://2x.io)",
|
||||
"name": "options",
|
||||
"description": "A very light-weight in-code option parsers for node.js.",
|
||||
"version": "0.0.6",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/einaros/options.js.git"
|
||||
},
|
||||
"main": "lib/options",
|
||||
"scripts": {
|
||||
"test": "make test"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.4.0"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"mocha": "latest"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user