Summary: OS must always be defined. Reviewed By: jknoxville Differential Revision: D17204398 fbshipit-source-id: 0d84111c382af623843a41360bcb472394daf3f1
46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
/**
|
|
* Copyright 2018-present Facebook.
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
* @format
|
|
*/
|
|
import BaseDevice from './BaseDevice';
|
|
import {DeviceType, OS, DeviceShell, DeviceLogEntry} from './BaseDevice';
|
|
|
|
export default class ArchivedDevice extends BaseDevice {
|
|
// @ts-ignore: Super needs to be on the first line
|
|
constructor(
|
|
serial: string,
|
|
deviceType: DeviceType,
|
|
title: string,
|
|
os: OS,
|
|
logEntries: Array<DeviceLogEntry>,
|
|
) {
|
|
let archivedDeviceType = deviceType;
|
|
if (archivedDeviceType === 'emulator') {
|
|
archivedDeviceType = 'archivedEmulator';
|
|
} else if (archivedDeviceType === 'physical') {
|
|
archivedDeviceType = 'archivedPhysical';
|
|
}
|
|
super(serial, archivedDeviceType, title, os);
|
|
this.logs = logEntries;
|
|
}
|
|
|
|
logs: Array<DeviceLogEntry>;
|
|
|
|
isArchived = true;
|
|
|
|
getLogs() {
|
|
return this.logs;
|
|
}
|
|
|
|
clearLogs(): Promise<void> {
|
|
this.logs = [];
|
|
return Promise.resolve();
|
|
}
|
|
|
|
spawnShell(): DeviceShell | undefined | null {
|
|
return null;
|
|
}
|
|
}
|