// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.
import { AdbHelper } from "./adb";
import { ChildProcess } from "../../common/node/childProcess";
import { IVirtualDevice, VirtualDeviceManager } from "../VirtualDeviceManager";
import { OutputChannelLogger } from "../log/OutputChannelLogger";
import * as nls from "vscode-nls";
import { ErrorHelper } from "../../common/error/errorHelper";
import { InternalErrorCode } from "../../common/error/internalErrorCode";
nls.config({ messageFormat: nls.MessageFormat.bundle, bundleFormat: nls.BundleFormat.standalone })();
const localize = nls.loadMessageBundle();
export interface IAndroidEmulator extends IVirtualDevice {
}
export class AndroidEmulatorManager extends VirtualDeviceManager {
private static readonly EMULATOR_COMMAND = "emulator";
private static readonly EMULATOR_LIST_AVDS_COMMAND = `-list-avds`;
private static readonly EMULATOR_AVD_START_COMMAND = `-avd`;
private static readonly EMULATOR_START_TIMEOUT = 120;
private logger: OutputChannelLogger = OutputChannelLogger.getChannel(OutputChannelLogger.MAIN_CHANNEL_NAME, true);
private adbHelper: AdbHelper;
private childProcess: ChildProcess;
constructor(adbHelper: AdbHelper) {
super();
this.adbHelper = adbHelper;
this.childProcess = new ChildProcess();
}
public async startEmulator(target: string): Promise<IAndroidEmulator | null> {
const onlineDevices = await this.adbHelper.getOnlineDevices();
for (let i = 0; i < onlineDevices.length; i++){
if (onlineDevices[i].id === target) {
return {id: onlineDevices[i].id};
}
}
if (target && (await this.adbHelper.getOnlineDevices()).length === 0) {
if (target === "simulator") {
const newEmulator = await this.startSelection();
if (newEmulator) {
const emulatorId = await this.tryLaunchEmulatorByName(newEmulator);
return {name: newEmulator, id: emulatorId};
}
}
else if (!target.includes("device")) {
const emulatorId = await this.tryLaunchEmulatorByName(target);
return {name: target, id: emulatorId};
}
}
return null;
}
public async tryLaunchEmulatorByName(emulatorName: string): Promise<string> {
return new Promise((resolve, reject) => {
const emulatorProcess = this.childProcess.spawn(AndroidEmulatorManager.EMULATOR_COMMAND, [AndroidEmulatorManager.EMULATOR_AVD_START_COMMAND, emulatorName], {
detached: true,
}, true);
emulatorProcess.outcome.catch((error) => {
if (process.platform == "win32" && process.env.SESSIONNAME && process.env.SESSIONNAME.toLowerCase().includes("rdp-tcp")) {
this.logger.warning(localize("RDPEmulatorWarning", "Android emulator was launched from the Windows RDP session, this might lead to failures."));
}
reject(ErrorHelper.getInternalError(InternalErrorCode.VirtualDeviceSelectionError, error));
});
emulatorProcess.spawnedProcess.unref();
const rejectTimeout = setTimeout(() => {
cleanup();
reject(ErrorHelper.getInternalError(InternalErrorCode.VirtualDeviceSelectionError, localize("EmulatorStartWarning", "Could not start the emulator {0} within {1} seconds.", emulatorName, AndroidEmulatorManager.EMULATOR_START_TIMEOUT)));
}, AndroidEmulatorManager.EMULATOR_START_TIMEOUT * 1000);
const bootCheckInterval = setInterval(async () => {
const connectedDevices = await this.adbHelper.getOnlineDevices();
if (connectedDevices.length > 0) {
this.logger.info(localize("EmulatorLaunched", "Launched emulator {0}", emulatorName));
cleanup();
resolve(connectedDevices[0].id);
}
}, 1000);
const cleanup = () => {
clearTimeout(rejectTimeout);
clearInterval(bootCheckInterval);
};
});
}
public startSelection(): Promise<string | undefined> {
return this.selectVirtualDevice();
}
protected async getVirtualDevicesNamesList(): Promise<string[]> {
const res = await this.childProcess.execToString(`${AndroidEmulatorManager.EMULATOR_COMMAND} ${AndroidEmulatorManager.EMULATOR_LIST_AVDS_COMMAND}`);
let emulatorsList: string[] = [];
if (res) {
emulatorsList = res.split(/\r?\n|\r/g);
const indexOfBlank = emulatorsList.indexOf("");
if (emulatorsList.indexOf("") >= 0) {
emulatorsList.splice(indexOfBlank, 1);
}
}
return emulatorsList;
}
}microsoft/vscode-react-native
Publicmirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable
src/extension/android/androidEmulatorManager.ts
107lines · modepreview