blob: 6913a219206522cd0fd26045b5d7cbf271c93a12 [file] [log] [blame]
/**
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF 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 cordova_util = require('./util'),
path = require('path'),
config_parser = require('./config_parser'),
fs = require('fs'),
shell = require('shelljs'),
et = require('elementtree'),
hooker = require('./hooker'),
platforms = require('./../platforms'),
events = require('./events'),
n = require('ncallbacks');
function shell_out_to_run(projectRoot, platform, callback) {
var cmd = '"' + path.join(projectRoot, 'platforms', platform, 'cordova', 'run') + '" --device';
// TODO: inconsistent API for BB10 run command
if (platform == 'blackberry') {
var bb_project = path.join(projectRoot, 'platforms', 'blackberry')
var project = new platforms.blackberry.parser(bb_project);
if (project.has_device_target()) {
var bb_config = project.get_cordova_config();
var device = project.get_device_targets()[0].name;
cmd = '"' + path.join(bb_project, 'cordova', 'run') + '" --target=' + device + ' -k ' + bb_config.signing_password;
} else {
throw new Error('No BlackBerry device targets defined. If you want to run `run` with BB10, please add a device target. For more information run "' + path.join(bb_project, 'cordova', 'target') + '" -h');
}
}
events.emit('log', 'Running app on platform "' + platform + '" with command "' + cmd + '" (output to follow)...');
shell.exec(cmd, {silent:true, async:true}, function(code, output) {
events.emit('log', output);
if (code > 0) {
throw new Error('An error occurred while running the ' + platform + ' project. ' + output);
} else {
events.emit('log', 'Platform "' + platform + '" ran successfully.');
if (callback) callback();
}
});
}
module.exports = function run(platformList, callback) {
var projectRoot = cordova_util.isCordova(process.cwd());
if (!projectRoot) {
var err = new Error('Current working directory is not a Cordova-based project.');
if (callback) callback(err);
else throw err;
return;
}
var xml = cordova_util.projectConfig(projectRoot);
var cfg = new config_parser(xml);
if (arguments.length === 0 || (platformList instanceof Array && platformList.length === 0)) {
platformList = cordova_util.listPlatforms(projectRoot);
} else if (typeof platformList == 'string') platformList = [platformList];
else if (platformList instanceof Function && callback === undefined) {
callback = platformList;
platformList = cordova_util.listPlatforms(projectRoot);
}
if (platformList.length === 0) {
var err = new Error('No platforms added to this project. Please use `cordova platform add <platform>`.');
if (callback) callback(err);
else throw err;
return;
}
var hooks = new hooker(projectRoot);
var opts = {
platforms:platformList
}
hooks.fire('before_run', opts, function(err) {
if (err) {
if (callback) callback(err);
else throw err;
} else {
var end = n(platformList.length, function() {
hooks.fire('after_run', opts, function(err) {
if (err) {
if (callback) callback(err);
else throw err;
} else {
if (callback) callback();
}
});
});
// Run a prepare first, then shell out to run
require('../cordova').prepare(platformList, function(err) {
if (err) {
if (callback) callback(err);
else throw err;
} else {
platformList.forEach(function(platform) {
try {
shell_out_to_run(projectRoot, platform, end);
} catch(e) {
if (callback) callback(e);
else throw e;
}
});
}
});
}
});
};