nodekit-cli-lib
Version:
Command-line helpers for NodeKit command line interface
67 lines (57 loc) • 2.9 kB
JavaScript
/**
Licensed to OffGrid Networks (OGN) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. OGN licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
var nodekit_util = require('./util'),
Q = require('q'),
superspawn = require('nodekit-cli-lib')['nodekit-common'].superspawn,
path = require('path'),
events = require('nodekit-cli-lib')['nodekit-common'].events;
function handleError(error) {
if (error.code === 'ENOENT') {
events.emit('warn', 'Platform does not support ' + this.script);
} else {
events.emit('warn', 'An unexpected error has occured while running ' + this.script +
' with code ' + error.code + ': ' + error);
}
}
function displayDevices(projectRoot, platform, options) {
var caller = { 'script': 'list-devices' };
events.emit('log', 'Available ' + platform + ' devices:');
var cmd = path.join(projectRoot, 'platforms', platform, 'nodekit', 'lib', 'list-devices');
return superspawn.spawn(cmd, options.argv, { stdio: 'inherit', chmod: true }).catch(handleError.bind(caller));
}
function displayVirtualDevices(projectRoot, platform, options) {
var caller = { 'script': 'list-emulator-images' };
events.emit('log', 'Available ' + platform + ' virtual devices:');
var cmd = path.join(projectRoot, 'platforms', platform, 'nodekit', 'lib', 'list-emulator-images');
return superspawn.spawn(cmd, options.argv, { stdio: 'inherit', chmod: true }).catch(handleError.bind(caller));
}
module.exports = function targets(options) {
var projectRoot = nodekit_util.cdProjectRoot();
options = nodekit_util.preProcessOptions(options);
var result = Q();
options.platforms.forEach(function(platform) {
if (options.options.device) {
result = result.then(displayDevices.bind(null, projectRoot, platform, options.options));
} else if(options.options.emulator) {
result = result.then(displayVirtualDevices.bind(null, projectRoot, platform, options.options));
} else {
result = result.then(displayDevices.bind(null, projectRoot, platform, options.options))
.then(displayVirtualDevices.bind(null, projectRoot, platform, options.options));
}
});
return result;
};