mirror of
https://github.com/apache/cordova-android.git
synced 2025-02-01 02:12:58 +08:00
138 lines
4.3 KiB
JavaScript
138 lines
4.3 KiB
JavaScript
// 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 ROOT = WScript.ScriptFullName.split('\\cordova\\cordova.js').join(''),
|
|
shell=WScript.CreateObject("WScript.Shell");
|
|
|
|
function exec(command) {
|
|
var oExec=shell.Exec(command);
|
|
var output = new String();
|
|
while(oExec.Status == 0) {
|
|
if(!oExec.StdOut.AtEndOfStream) {
|
|
var line = oExec.StdOut.ReadLine();
|
|
// XXX: Change to verbose mode
|
|
// WScript.StdOut.WriteLine(line);
|
|
output += line;
|
|
}
|
|
WScript.sleep(100);
|
|
}
|
|
|
|
return output;
|
|
}
|
|
|
|
function device_running() {
|
|
var local_devices = shell.Exec("%comspec% /c adb devices").StdOut.ReadAll();
|
|
if(local_devices.match(/\w+\tdevice/)) {
|
|
WScript.Echo("Yes");
|
|
return true;
|
|
}
|
|
WScript.Echo("No");
|
|
return false;
|
|
}
|
|
function emulate() {
|
|
// don't run emulator if a device is plugged in or if emulator is already running
|
|
if(device_running()) {
|
|
//WScript.Echo("Device or Emulator already running!");
|
|
return;
|
|
}
|
|
var oExec = shell.Exec("%comspec% /c android.bat list avd");
|
|
var avd_list = [];
|
|
var avd_id = -10;
|
|
while(!oExec.StdOut.AtEndOfStream) {
|
|
var output = oExec.StdOut.ReadLine();
|
|
if(output.match(/Name: (.)*/)) {
|
|
avd_list.push(output.replace(/ *Name:\s/, ""));
|
|
}
|
|
}
|
|
// user has no AVDs
|
|
if(avd_list.length == 0) {
|
|
WScript.Echo("You don't have any Android Virtual Devices. Please create at least one AVD.");
|
|
WScript.Echo("android");
|
|
WScript.Quit(1);
|
|
}
|
|
// user has only one AVD so we launch that one
|
|
if(avd_list.length == 1) {
|
|
|
|
shell.Run("emulator -cpu-delay 0 -no-boot-anim -cache %Temp%\cache -avd "+avd_list[0]);
|
|
}
|
|
|
|
// user has more than one avd so we ask them to choose
|
|
if(avd_list.length > 1) {
|
|
while(!avd_list[avd_id]) {
|
|
WScript.Echo("Choose from one of the following Android Virtual Devices [0 to "+(avd_list.length - 1)+"]:")
|
|
for(i = 0, j = avd_list.length ; i < j ; i++) {
|
|
WScript.Echo((i)+") "+avd_list[i]);
|
|
}
|
|
WScript.StdOut.Write("> ");
|
|
avd_id = new Number(WScript.StdIn.ReadLine());
|
|
}
|
|
|
|
shell.Run("emulator -cpu-delay 0 -no-boot-anim -cache %Temp%\\cache -avd "+avd_list[avd_id], 0, false);
|
|
}
|
|
}
|
|
|
|
function clean() {
|
|
WScript.Echo("Cleaning project...");
|
|
exec("%comspec% /c ant.bat clean -f "+ROOT+"\\build.xml 2>&1");
|
|
}
|
|
|
|
function build() {
|
|
WScript.Echo("Building project...");
|
|
exec("%comspec% /c ant.bat debug -f "+ROOT+"\\build.xml 2>&1");
|
|
}
|
|
|
|
function install() {
|
|
WScript.Echo("Building/Installing project...");
|
|
exec("%comspec% /c ant.bat debug install -f "+ROOT+"\\build.xml 2>&1");
|
|
}
|
|
|
|
function log() {
|
|
shell.Run("%comspec% /c adb logcat");
|
|
}
|
|
|
|
function launch() {
|
|
WScript.Echo("Launching app...");
|
|
var launch_str=exec("%comspec% /c java -jar "+ROOT+"\\cordova\\appinfo.jar "+ROOT+"\\AndroidManifest.xml");
|
|
//WScript.Echo(launch_str);
|
|
exec("%comspec% /c adb shell am start -n "+launch_str+" 2>&1");
|
|
}
|
|
|
|
function run() {
|
|
var i=0;
|
|
clean();
|
|
emulate();
|
|
WScript.Stdout.Write('Waiting for device...');
|
|
while(!device_running() && i < 300) {
|
|
WScript.Stdout.Write('.');
|
|
WScript.sleep(1000);
|
|
i += 1;
|
|
}
|
|
if(i == 300) {
|
|
WScript.Stderr.WriteLine("device/emulator timeout!");
|
|
} else {
|
|
WScript.Stdout.WriteLine("connected!");
|
|
}
|
|
install();
|
|
launch();
|
|
}
|
|
var args = WScript.Arguments;
|
|
if(args.count() != 1) {
|
|
WScript.StdErr.Write("An error has occured!\n");
|
|
WScript.Quit(1);
|
|
}
|
|
eval(args(0)+"()");
|