devices.dart 36 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4 5
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'dart:async';
6
import 'dart:convert';
7 8 9 10 11
import 'dart:io';
import 'dart:math' as math;

import 'package:path/path.dart' as path;

12
import '../common.dart';
13 14
import 'utils.dart';

15 16
const String DeviceIdEnvName = 'FLUTTER_DEVICELAB_DEVICEID';

17 18 19 20 21 22 23 24
class DeviceException implements Exception {
  const DeviceException(this.message);

  final String message;

  @override
  String toString() => message == null ? '$DeviceException' : '$DeviceException: $message';
}
25 26 27 28 29 30 31 32 33 34 35

/// Gets the artifact path relative to the current directory.
String getArtifactPath() {
  return path.normalize(
      path.join(
        path.current,
        '../../bin/cache/artifacts',
      )
    );
}

36
/// Return the item is in idList if find a match, otherwise return null
37 38
String? _findMatchId(List<String> idList, String idPattern) {
  String? candidate;
39 40 41 42 43 44 45 46 47 48 49 50
  idPattern = idPattern.toLowerCase();
  for(final String id in idList) {
    if (id.toLowerCase() == idPattern) {
      return id;
    }
    if (id.toLowerCase().startsWith(idPattern)) {
      candidate ??= id;
    }
  }
  return candidate;
}

51
/// The root of the API for controlling devices.
52
DeviceDiscovery get devices => DeviceDiscovery();
53 54

/// Device operating system the test is configured to test.
55 56 57 58 59 60 61 62 63 64
enum DeviceOperatingSystem {
  android,
  androidArm,
  androidArm64,
  fake,
  fuchsia,
  ios,
  macos,
  windows,
}
65 66 67 68 69 70 71

/// Device OS to test on.
DeviceOperatingSystem deviceOperatingSystem = DeviceOperatingSystem.android;

/// Discovers available devices and chooses one to work with.
abstract class DeviceDiscovery {
  factory DeviceDiscovery() {
72
    switch (deviceOperatingSystem) {
73
      case DeviceOperatingSystem.android:
74
        return AndroidDeviceDiscovery();
75
      case DeviceOperatingSystem.androidArm:
76
        return AndroidDeviceDiscovery(cpu: AndroidCPU.arm);
77
      case DeviceOperatingSystem.androidArm64:
78
        return AndroidDeviceDiscovery(cpu: AndroidCPU.arm64);
79
      case DeviceOperatingSystem.ios:
80
        return IosDeviceDiscovery();
81 82
      case DeviceOperatingSystem.fuchsia:
        return FuchsiaDeviceDiscovery();
83 84
      case DeviceOperatingSystem.macos:
        return MacosDeviceDiscovery();
85 86
      case DeviceOperatingSystem.windows:
        return WindowsDeviceDiscovery();
87
      case DeviceOperatingSystem.fake:
88
        print('Looking for fake devices! You should not see this in release builds.');
89
        return FakeDeviceDiscovery();
90 91
    }
  }
92

93 94 95 96 97
  /// Selects a device to work with, load-balancing between devices if more than
  /// one are available.
  ///
  /// Calling this method does not guarantee that the same device will be
  /// returned. For such behavior see [workingDevice].
98
  Future<void> chooseWorkingDevice();
99

100
  /// Selects a device to work with by device ID.
101 102
  Future<void> chooseWorkingDeviceById(String deviceId);

103 104 105 106
  /// A device to work with.
  ///
  /// Returns the same device when called repeatedly (unlike
  /// [chooseWorkingDevice]). This is useful when you need to perform multiple
107
  /// operations on one.
108
  Future<Device> get workingDevice;
109

110 111
  /// Lists all available devices' IDs.
  Future<List<String>> discoverDevices();
112

113 114
  /// Checks the health of the available devices.
  Future<Map<String, HealthCheckResult>> checkDevices();
115

116
  /// Prepares the system to run tasks.
117
  Future<void> performPreflightTasks();
118 119
}

120 121
/// A proxy for one specific device.
abstract class Device {
122 123 124
  // Const constructor so subclasses may be const.
  const Device();

125 126
  /// A unique device identifier.
  String get deviceId;
127

128 129
  /// Whether the device is awake.
  Future<bool> isAwake();
130

131 132
  /// Whether the device is asleep.
  Future<bool> isAsleep();
133

134
  /// Wake up the device if it is not awake.
135
  Future<void> wakeUp();
136

137
  /// Send the device to sleep mode.
138
  Future<void> sendToSleep();
139

140 141 142
  /// Emulates pressing the home button.
  Future<void> home();

143
  /// Emulates pressing the power button, toggling the device's on/off state.
144
  Future<void> togglePower();
145

146 147 148
  /// Unlocks the device.
  ///
  /// Assumes the device doesn't have a secure unlock pattern.
149
  Future<void> unlock();
150

151 152 153
  /// Attempt to reboot the phone, if possible.
  Future<void> reboot();

154
  /// Emulate a tap on the touch screen.
155
  Future<void> tap(int x, int y);
156

157 158 159
  /// Read memory statistics for a process.
  Future<Map<String, dynamic>> getMemoryStats(String packageName);

160 161 162 163 164 165
  /// Stream the system log from the device.
  ///
  /// Flutter applications' `print` statements end up in this log
  /// with some prefix.
  Stream<String> get logcat;

166 167 168 169 170 171 172 173
  /// Clears the device logs.
  ///
  /// This is important because benchmarks tests rely on the logs produced by
  /// the flutter run command.
  ///
  /// On Android, those logs may contain logs from previous test.
  Future<void> clearLogs();

174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
  /// Whether this device supports calls to [startLoggingToSink]
  /// and [stopLoggingToSink].
  bool get canStreamLogs => false;

  /// Starts logging to an [IOSink].
  ///
  /// If `clear` is set to true, the log will be cleared before starting. This
  /// is not supported on all platforms.
  Future<void> startLoggingToSink(IOSink sink, {bool clear = true}) {
    throw UnimplementedError();
  }

  /// Stops logging that was started by [startLoggingToSink].
  Future<void> stopLoggingToSink() {
    throw UnimplementedError();
  }

191
  /// Stop a process.
192
  Future<void> stop(String packageName);
193 194 195 196 197

  @override
  String toString() {
    return 'device: $deviceId';
  }
198
}
199

200
enum AndroidCPU {
201
  arm,
202 203 204
  arm64,
}

205
class AndroidDeviceDiscovery implements DeviceDiscovery {
206
  factory AndroidDeviceDiscovery({AndroidCPU? cpu}) {
207
    return _instance ??= AndroidDeviceDiscovery._(cpu);
208 209
  }

210 211
  AndroidDeviceDiscovery._(this.cpu);

212
  final AndroidCPU? cpu;
213

214 215 216
  // Parses information about a device. Example:
  //
  // 015d172c98400a03       device usb:340787200X product:nakasi model:Nexus_7 device:grouper
217
  static final RegExp _kDeviceRegex = RegExp(r'^(\S+)\s+(\S+)(.*)');
218

219
  static AndroidDeviceDiscovery? _instance;
220

221
  AndroidDevice? _workingDevice;
222 223 224 225

  @override
  Future<AndroidDevice> get workingDevice async {
    if (_workingDevice == null) {
226
      if (Platform.environment.containsKey(DeviceIdEnvName)) {
227
        final String deviceId = Platform.environment[DeviceIdEnvName]!;
228
        await chooseWorkingDeviceById(deviceId);
229
        return _workingDevice!;
230
      }
231
      await chooseWorkingDevice();
232
    }
233

234
    return _workingDevice!;
235 236
  }

237 238
  Future<bool> _matchesCPURequirement(AndroidDevice device) async {
    switch (cpu) {
239 240
      case null:
        return true;
241
      case AndroidCPU.arm64:
242
        return device.isArm64();
243
      case AndroidCPU.arm:
244
        return device.isArm();
245 246 247
    }
  }

248 249 250
  /// Picks a random Android device out of connected devices and sets it as
  /// [workingDevice].
  @override
251
  Future<void> chooseWorkingDevice() async {
252 253
    final List<AndroidDevice> allDevices = (await discoverDevices())
      .map<AndroidDevice>((String id) => AndroidDevice(deviceId: id))
254 255 256
      .toList();

    if (allDevices.isEmpty)
257
      throw const DeviceException('No Android devices detected');
258

259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
    if (cpu != null) {
      for (final AndroidDevice device in allDevices) {
        if (await _matchesCPURequirement(device)) {
          _workingDevice = device;
          break;
        }
      }

    } else {
      // TODO(yjbanov): filter out and warn about those with low battery level
      _workingDevice = allDevices[math.Random().nextInt(allDevices.length)];
    }

    if (_workingDevice == null)
      throw const DeviceException('Cannot find a suitable Android device');

275
    print('Device chosen: $_workingDevice');
276 277
  }

278 279
  @override
  Future<void> chooseWorkingDeviceById(String deviceId) async {
280
    final String? matchedId = _findMatchId(await discoverDevices(), deviceId);
281 282
    if (matchedId != null) {
      _workingDevice = AndroidDevice(deviceId: matchedId);
283
      if (cpu != null) {
284
        if (!await _matchesCPURequirement(_workingDevice!)) {
285 286 287
          throw DeviceException('The selected device $matchedId does not match the cpu requirement');
        }
      }
288 289 290 291 292 293 294 295 296
      print('Choose device by ID: $matchedId');
      return;
    }
    throw DeviceException(
      'Device with ID $deviceId is not found for operating system: '
      '$deviceOperatingSystem'
      );
  }

297 298
  @override
  Future<List<String>> discoverDevices() async {
299
    final List<String> output = (await eval(adbPath, <String>['devices', '-l']))
300
        .trim().split('\n');
301
    final List<String> results = <String>[];
302
    for (final String line in output) {
303
      // Skip lines like: * daemon started successfully *
304 305
      if (line.startsWith('* daemon '))
        continue;
306

307 308
      if (line.startsWith('List of devices'))
        continue;
309 310

      if (_kDeviceRegex.hasMatch(line)) {
311
        final Match match = _kDeviceRegex.firstMatch(line)!;
312

313 314
        final String deviceID = match[1]!;
        final String deviceState = match[2]!;
315 316 317 318 319

        if (!const <String>['unauthorized', 'offline'].contains(deviceState)) {
          results.add(deviceID);
        }
      } else {
320
        throw FormatException('Failed to parse device from adb output: "$line"');
321 322 323 324 325 326
      }
    }

    return results;
  }

327 328
  @override
  Future<Map<String, HealthCheckResult>> checkDevices() async {
329
    final Map<String, HealthCheckResult> results = <String, HealthCheckResult>{};
330
    for (final String deviceId in await discoverDevices()) {
331
      try {
332
        final AndroidDevice device = AndroidDevice(deviceId: deviceId);
333 334 335
        // Just a smoke test that we can read wakefulness state
        // TODO(yjbanov): check battery level
        await device._getWakefulness();
336
        results['android-device-$deviceId'] = HealthCheckResult.success();
337
      } on Exception catch (e, s) {
338
        results['android-device-$deviceId'] = HealthCheckResult.error(e, s);
339 340 341 342 343 344
      }
    }
    return results;
  }

  @override
345
  Future<void> performPreflightTasks() async {
346 347 348 349 350 351
    // Kills the `adb` server causing it to start a new instance upon next
    // command.
    //
    // Restarting `adb` helps with keeping device connections alive. When `adb`
    // runs non-stop for too long it loses connections to devices. There may be
    // a better method, but so far that's the best one I've found.
352
    await exec(adbPath, <String>['kill-server']);
353 354 355
  }
}

356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
class MacosDeviceDiscovery implements DeviceDiscovery {
  factory MacosDeviceDiscovery() {
    return _instance ??= MacosDeviceDiscovery._();
  }

  MacosDeviceDiscovery._();

  static MacosDeviceDiscovery? _instance;

  static const MacosDevice _device = MacosDevice();

  @override
  Future<Map<String, HealthCheckResult>> checkDevices() async {
    return <String, HealthCheckResult>{};
  }

  @override
  Future<void> chooseWorkingDevice() async { }

  @override
  Future<void> chooseWorkingDeviceById(String deviceId) async { }

  @override
  Future<List<String>> discoverDevices() async {
    return <String>['macos'];
  }

  @override
  Future<void> performPreflightTasks() async { }

  @override
  Future<Device> get workingDevice  async => _device;
}

390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
class WindowsDeviceDiscovery implements DeviceDiscovery {
  factory WindowsDeviceDiscovery() {
    return _instance ??= WindowsDeviceDiscovery._();
  }

  WindowsDeviceDiscovery._();

  static WindowsDeviceDiscovery? _instance;

  static const WindowsDevice _device = WindowsDevice();

  @override
  Future<Map<String, HealthCheckResult>> checkDevices() async {
    return <String, HealthCheckResult>{};
  }

  @override
  Future<void> chooseWorkingDevice() async { }

  @override
  Future<void> chooseWorkingDeviceById(String deviceId) async { }

  @override
  Future<List<String>> discoverDevices() async {
    return <String>['windows'];
  }

  @override
  Future<void> performPreflightTasks() async { }

  @override
  Future<Device> get workingDevice  async => _device;
}

424 425 426 427 428 429 430
class FuchsiaDeviceDiscovery implements DeviceDiscovery {
  factory FuchsiaDeviceDiscovery() {
    return _instance ??= FuchsiaDeviceDiscovery._();
  }

  FuchsiaDeviceDiscovery._();

431
  static FuchsiaDeviceDiscovery? _instance;
432

433
  FuchsiaDevice? _workingDevice;
434

435
  String get _ffx {
436 437 438
    final String ffx = path.join(getArtifactPath(), 'fuchsia', 'tools','x64', 'ffx');
    if (!File(ffx).existsSync()) {
      throw FileSystemException("Couldn't find ffx at location $ffx");
439
    }
440
    return ffx;
441
  }
442 443 444 445

  @override
  Future<FuchsiaDevice> get workingDevice async {
    if (_workingDevice == null) {
446
      if (Platform.environment.containsKey(DeviceIdEnvName)) {
447
        final String deviceId = Platform.environment[DeviceIdEnvName]!;
448
        await chooseWorkingDeviceById(deviceId);
449
        return _workingDevice!;
450
      }
451 452
      await chooseWorkingDevice();
    }
453
    return _workingDevice!;
454 455 456 457 458 459 460 461 462 463
  }

  /// Picks the first connected Fuchsia device.
  @override
  Future<void> chooseWorkingDevice() async {
    final List<FuchsiaDevice> allDevices = (await discoverDevices())
      .map<FuchsiaDevice>((String id) => FuchsiaDevice(deviceId: id))
      .toList();

    if (allDevices.isEmpty) {
464
      throw const DeviceException('No Fuchsia devices detected');
465 466
    }
    _workingDevice = allDevices.first;
467
    print('Device chosen: $_workingDevice');
468 469
  }

470 471
  @override
  Future<void> chooseWorkingDeviceById(String deviceId) async {
472 473
    final String? matchedId = _findMatchId(await discoverDevices(), deviceId);
    if (matchedId != null) {
474 475 476 477 478 479 480 481 482 483
      _workingDevice = FuchsiaDevice(deviceId: matchedId);
      print('Choose device by ID: $matchedId');
      return;
    }
    throw DeviceException(
      'Device with ID $deviceId is not found for operating system: '
      '$deviceOperatingSystem'
      );
  }

484 485
  @override
  Future<List<String>> discoverDevices() async {
486
    final List<String> output = (await eval(_ffx, <String>['target', 'list', '--format', 's']))
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
      .trim()
      .split('\n');

    final List<String> devices = <String>[];
    for (final String line in output) {
      final List<String> parts = line.split(' ');
      assert(parts.length == 2);
      devices.add(parts.last); // The device id.
    }
    return devices;
  }

  @override
  Future<Map<String, HealthCheckResult>> checkDevices() async {
    final Map<String, HealthCheckResult> results = <String, HealthCheckResult>{};
    for (final String deviceId in await discoverDevices()) {
      try {
        final int resolveResult = await exec(
505
          _ffx,
506
          <String>[
507 508 509 510
            'target',
            'list',
            '--format',
            'a',
511
            deviceId,
512
          ]
513
        );
514
        if (resolveResult == 0) {
515 516 517 518
          results['fuchsia-device-$deviceId'] = HealthCheckResult.success();
        } else {
          results['fuchsia-device-$deviceId'] = HealthCheckResult.failure('Cannot resolve device $deviceId');
        }
519
      } on Exception catch (error, stacktrace) {
520 521 522 523 524 525 526 527 528 529
        results['fuchsia-device-$deviceId'] = HealthCheckResult.error(error, stacktrace);
      }
    }
    return results;
  }

  @override
  Future<void> performPreflightTasks() async {}
}

530
class AndroidDevice extends Device {
531
  AndroidDevice({required this.deviceId}) {
532 533
    _updateDeviceInfo();
  }
534 535 536

  @override
  final String deviceId;
537
  String deviceInfo = '';
538
  int apiLevel = 0;
539

540
  /// Whether the device is awake.
541
  @override
542 543 544 545 546
  Future<bool> isAwake() async {
    return await _getWakefulness() == 'Awake';
  }

  /// Whether the device is asleep.
547
  @override
548 549 550 551 552
  Future<bool> isAsleep() async {
    return await _getWakefulness() == 'Asleep';
  }

  /// Wake up the device if it is not awake using [togglePower].
553
  @override
554
  Future<void> wakeUp() async {
555 556
    if (!(await isAwake()))
      await togglePower();
557 558 559
  }

  /// Send the device to sleep mode if it is not asleep using [togglePower].
560
  @override
561
  Future<void> sendToSleep() async {
562 563
    if (!(await isAsleep()))
      await togglePower();
564 565
  }

566 567 568 569 570 571
  /// Sends `KEYCODE_HOME` (3), which causes the device to go to the home screen.
  @override
  Future<void> home() async {
    await shellExec('input', const <String>['keyevent', '3']);
  }

572 573
  /// Sends `KEYCODE_POWER` (26), which causes the device to toggle its mode
  /// between awake and asleep.
574
  @override
575
  Future<void> togglePower() async {
576 577 578 579 580 581
    await shellExec('input', const <String>['keyevent', '26']);
  }

  /// Unlocks the device by sending `KEYCODE_MENU` (82).
  ///
  /// This only works when the device doesn't have a secure unlock pattern.
582
  @override
583
  Future<void> unlock() async {
584 585 586 587
    await wakeUp();
    await shellExec('input', const <String>['keyevent', '82']);
  }

588
  @override
589
  Future<void> tap(int x, int y) async {
590 591 592
    await shellExec('input', <String>['tap', '$x', '$y']);
  }

593 594 595 596
  /// Retrieves device's wakefulness state.
  ///
  /// See: https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/os/PowerManagerInternal.java
  Future<String> _getWakefulness() async {
597
    final String powerInfo = await shellEval('dumpsys', <String>['power']);
598 599 600 601
    // A motoG4 phone returns `mWakefulness=Awake`.
    // A Samsung phone returns `getWakefullnessLocked()=Awake`.
    final RegExp wakefulnessRegexp = RegExp(r'.*(mWakefulness=|getWakefulnessLocked\(\)=).*');
    final String wakefulness = grep(wakefulnessRegexp, from: powerInfo).single.split('=')[1].trim();
602 603 604
    return wakefulness;
  }

605 606 607 608 609
  Future<bool> isArm64() async {
    final String cpuInfo = await shellEval('getprop', const <String>['ro.product.cpu.abi']);
    return cpuInfo.contains('arm64');
  }

610 611 612 613 614
  Future<bool> isArm() async {
    final String cpuInfo = await shellEval('getprop', const <String>['ro.product.cpu.abi']);
    return cpuInfo.contains('armeabi');
  }

615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631
  Future<void> _updateDeviceInfo() async {
    String info;
    try {
      info = await shellEval(
        'getprop',
        <String>[
          'ro.bootimage.build.fingerprint', ';',
          'getprop', 'ro.build.version.release', ';',
          'getprop', 'ro.build.version.sdk',
        ],
        silent: true,
      );
    } on IOException {
      info = '';
    }
    final List<String> list = info.split('\n');
    if (list.length == 3) {
632 633
      apiLevel = int.parse(list[2]);
      deviceInfo = 'fingerprint: ${list[0]} os: ${list[1]}  api-level: $apiLevel';
634
    } else {
635
      apiLevel = 0;
636 637 638 639
      deviceInfo = '';
    }
  }

640
  /// Executes [command] on `adb shell`.
641
  Future<void> shellExec(String command, List<String> arguments, { Map<String, String>? environment, bool silent = false }) async {
642
    await adb(<String>['shell', command, ...arguments], environment: environment, silent: silent);
643 644 645
  }

  /// Executes [command] on `adb shell` and returns its standard output as a [String].
646
  Future<String> shellEval(String command, List<String> arguments, { Map<String, String>? environment, bool silent = false }) {
647
    return adb(<String>['shell', command, ...arguments], environment: environment, silent: silent);
648 649 650
  }

  /// Runs `adb` with the given [arguments], selecting this device.
651 652
  Future<String> adb(
      List<String> arguments, {
653
      Map<String, String>? environment,
654 655 656 657 658 659 660 661 662
      bool silent = false,
    }) {
    return eval(
      adbPath,
      <String>['-s', deviceId, ...arguments],
      environment: environment,
      printStdout: !silent,
      printStderr: !silent,
    );
663
  }
664 665 666

  @override
  Future<Map<String, dynamic>> getMemoryStats(String packageName) async {
667
    final String meminfo = await shellEval('dumpsys', <String>['meminfo', packageName]);
668
    final Match? match = RegExp(r'TOTAL\s+(\d+)').firstMatch(meminfo);
669
    assert(match != null, 'could not parse dumpsys meminfo output');
670
    return <String, dynamic>{
671
      'total_kb': int.parse(match!.group(1)!),
672 673 674
    };
  }

675 676 677
  @override
  bool get canStreamLogs => true;

678 679
  bool _abortedLogging = false;
  Process? _loggingProcess;
680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695

  @override
  Future<void> startLoggingToSink(IOSink sink, {bool clear = true}) async {
    if (clear) {
      await adb(<String>['logcat', '--clear'], silent: true);
    }
    _loggingProcess = await startProcess(
      adbPath,
      // Make logcat less chatty by filtering down to just ActivityManager
      // (to let us know when app starts), flutter (needed by tests to see
      // log output), and fatal messages (hopefully catches tombstones).
      // For local testing, this can just be:
      //   <String>['-s', deviceId, 'logcat']
      // to view the whole log, or just run logcat alongside this.
      <String>['-s', deviceId, 'logcat', 'ActivityManager:I', 'flutter:V', '*:F'],
    );
696
    _loggingProcess!.stdout
697 698 699 700
      .transform<String>(const Utf8Decoder(allowMalformed: true))
      .listen((String line) {
        sink.write(line);
      });
701
    _loggingProcess!.stderr
702 703 704 705
      .transform<String>(const Utf8Decoder(allowMalformed: true))
      .listen((String line) {
        sink.write(line);
      });
706
    unawaited(_loggingProcess!.exitCode.then<void>((int exitCode) {
707 708 709 710 711 712 713 714
      if (!_abortedLogging) {
        sink.writeln('adb logcat failed with exit code $exitCode.\n');
      }
    }));
  }

  @override
  Future<void> stopLoggingToSink() async {
715 716
    if (_loggingProcess != null) {
      _abortedLogging = true;
717 718
      _loggingProcess!.kill();
      await _loggingProcess!.exitCode;
719
    }
720 721
  }

722 723 724 725 726
  @override
  Future<void> clearLogs() {
    return adb(<String>['logcat', '-c']);
  }

727 728
  @override
  Stream<String> get logcat {
729 730 731 732
    final Completer<void> stdoutDone = Completer<void>();
    final Completer<void> stderrDone = Completer<void>();
    final Completer<void> processDone = Completer<void>();
    final Completer<void> abort = Completer<void>();
733
    bool aborted = false;
734
    late final StreamController<String> stream;
735
    stream = StreamController<String>(
736
      onListen: () async {
737
        await clearLogs();
738 739 740 741 742 743 744 745 746 747
        final Process process = await startProcess(
          adbPath,
          // Make logcat less chatty by filtering down to just ActivityManager
          // (to let us know when app starts), flutter (needed by tests to see
          // log output), and fatal messages (hopefully catches tombstones).
          // For local testing, this can just be:
          //   <String>['-s', deviceId, 'logcat']
          // to view the whole log, or just run logcat alongside this.
          <String>['-s', deviceId, 'logcat', 'ActivityManager:I', 'flutter:V', '*:F'],
        );
748
        process.stdout
749 750
          .transform<String>(utf8.decoder)
          .transform<String>(const LineSplitter())
751 752
          .listen((String line) {
            print('adb logcat: $line');
753 754 755
            if (!stream.isClosed) {
              stream.sink.add(line);
            }
756 757
          }, onDone: () { stdoutDone.complete(); });
        process.stderr
758 759
          .transform<String>(utf8.decoder)
          .transform<String>(const LineSplitter())
760 761 762
          .listen((String line) {
            print('adb logcat stderr: $line');
          }, onDone: () { stderrDone.complete(); });
763
        unawaited(process.exitCode.then<void>((int exitCode) {
764 765
          print('adb logcat process terminated with exit code $exitCode');
          if (!aborted) {
766
            stream.addError(BuildFailedError('adb logcat failed with exit code $exitCode.\n'));
767 768
            processDone.complete();
          }
769
        }));
770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794
        await Future.any<dynamic>(<Future<dynamic>>[
          Future.wait<void>(<Future<void>>[
            stdoutDone.future,
            stderrDone.future,
            processDone.future,
          ]),
          abort.future,
        ]);
        aborted = true;
        print('terminating adb logcat');
        process.kill();
        print('closing logcat stream');
        await stream.close();
      },
      onCancel: () {
        if (!aborted) {
          print('adb logcat aborted');
          aborted = true;
          abort.complete();
        }
      },
    );
    return stream.stream;
  }

795
  @override
796
  Future<void> stop(String packageName) async {
797 798
    return shellExec('am', <String>['force-stop', packageName]);
  }
799 800 801 802 803

  @override
  String toString() {
    return '$deviceId $deviceInfo';
  }
804 805 806 807 808

  @override
  Future<void> reboot() {
    return adb(<String>['reboot']);
  }
809 810 811 812
}

class IosDeviceDiscovery implements DeviceDiscovery {
  factory IosDeviceDiscovery() {
813
    return _instance ??= IosDeviceDiscovery._();
814 815 816 817
  }

  IosDeviceDiscovery._();

818
  static IosDeviceDiscovery? _instance;
819

820
  IosDevice? _workingDevice;
821 822 823 824

  @override
  Future<IosDevice> get workingDevice async {
    if (_workingDevice == null) {
825
      if (Platform.environment.containsKey(DeviceIdEnvName)) {
826
        final String deviceId = Platform.environment[DeviceIdEnvName]!;
827
        await chooseWorkingDeviceById(deviceId);
828
        return _workingDevice!;
829
      }
830 831 832
      await chooseWorkingDevice();
    }

833
    return _workingDevice!;
834 835 836 837 838
  }

  /// Picks a random iOS device out of connected devices and sets it as
  /// [workingDevice].
  @override
839
  Future<void> chooseWorkingDevice() async {
840
    final List<IosDevice> allDevices = (await discoverDevices())
841
      .map<IosDevice>((String id) => IosDevice(deviceId: id))
842 843
      .toList();

844
    if (allDevices.isEmpty)
845
      throw const DeviceException('No iOS devices detected');
846 847

    // TODO(yjbanov): filter out and warn about those with low battery level
848
    _workingDevice = allDevices[math.Random().nextInt(allDevices.length)];
849
    print('Device chosen: $_workingDevice');
850 851
  }

852 853
  @override
  Future<void> chooseWorkingDeviceById(String deviceId) async {
854
    final String? matchedId = _findMatchId(await discoverDevices(), deviceId);
855 856 857 858 859 860 861 862 863 864 865
    if (matchedId != null) {
      _workingDevice = IosDevice(deviceId: matchedId);
      print('Choose device by ID: $matchedId');
      return;
    }
    throw DeviceException(
      'Device with ID $deviceId is not found for operating system: '
      '$deviceOperatingSystem'
      );
  }

866 867
  @override
  Future<List<String>> discoverDevices() async {
868 869
    final List<dynamic> results = json.decode(await eval(
      path.join(flutterDirectory.path, 'bin', 'flutter'),
870
      <String>['devices', '--machine', '--suppress-analytics', '--device-timeout', '5'],
871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905
    )) as List<dynamic>;

    // [
    //   {
    //     "name": "Flutter's iPhone",
    //     "id": "00008020-00017DA80CC1002E",
    //     "isSupported": true,
    //     "targetPlatform": "ios",
    //     "emulator": false,
    //     "sdk": "iOS 13.2",
    //     "capabilities": {
    //       "hotReload": true,
    //       "hotRestart": true,
    //       "screenshot": true,
    //       "fastStart": false,
    //       "flutterExit": true,
    //       "hardwareRendering": false,
    //       "startPaused": false
    //     }
    //   }
    // ]

    final List<String> deviceIds = <String>[];

    for (final dynamic result in results) {
      final Map<String, dynamic> device = result as Map<String, dynamic>;
      if (device['targetPlatform'] == 'ios' &&
          device['id'] != null &&
          device['emulator'] != true &&
          device['isSupported'] == true) {
        deviceIds.add(device['id'] as String);
      }
    }

    if (deviceIds.isEmpty) {
906
      throw const DeviceException('No connected physical iOS devices found.');
907 908
    }
    return deviceIds;
909
  }
910 911 912

  @override
  Future<Map<String, HealthCheckResult>> checkDevices() async {
913
    final Map<String, HealthCheckResult> results = <String, HealthCheckResult>{};
914
    for (final String deviceId in await discoverDevices()) {
915
      // TODO(ianh): do a more meaningful connectivity check than just recording the ID
916
      results['ios-device-$deviceId'] = HealthCheckResult.success();
917 918 919 920 921
    }
    return results;
  }

  @override
922
  Future<void> performPreflightTasks() async {
923 924 925 926 927
    // Currently we do not have preflight tasks for iOS.
  }
}

/// iOS device.
928
class IosDevice extends Device {
929
  IosDevice({ required this.deviceId });
930 931 932 933

  @override
  final String deviceId;

934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950
  String get idevicesyslogPath {
    return path.join(flutterDirectory.path, 'bin', 'cache', 'artifacts', 'libimobiledevice', 'idevicesyslog');
  }

  String get dyldLibraryPath {
    final List<String> dylibsPaths = <String>[
      path.join(flutterDirectory.path, 'bin', 'cache', 'artifacts', 'libimobiledevice'),
      path.join(flutterDirectory.path, 'bin', 'cache', 'artifacts', 'openssl'),
      path.join(flutterDirectory.path, 'bin', 'cache', 'artifacts', 'usbmuxd'),
      path.join(flutterDirectory.path, 'bin', 'cache', 'artifacts', 'libplist'),
    ];
    return dylibsPaths.join(':');
  }

  @override
  bool get canStreamLogs => true;

951 952
  bool _abortedLogging = false;
  Process? _loggingProcess;
953 954 955 956 957 958 959 960 961 962 963

  @override
  Future<void> startLoggingToSink(IOSink sink, {bool clear = true}) async {
    // Clear is not supported.
    _loggingProcess = await startProcess(
      idevicesyslogPath,
      <String>['-u', deviceId, '--quiet'],
      environment: <String, String>{
        'DYLD_LIBRARY_PATH': dyldLibraryPath,
      },
    );
964
    _loggingProcess!.stdout
965 966 967 968
      .transform<String>(const Utf8Decoder(allowMalformed: true))
      .listen((String line) {
        sink.write(line);
      });
969
    _loggingProcess!.stderr
970 971 972 973
      .transform<String>(const Utf8Decoder(allowMalformed: true))
      .listen((String line) {
        sink.write(line);
      });
974
    unawaited(_loggingProcess!.exitCode.then<void>((int exitCode) {
975 976 977 978 979 980 981 982
      if (!_abortedLogging) {
        sink.writeln('idevicesyslog failed with exit code $exitCode.\n');
      }
    }));
  }

  @override
  Future<void> stopLoggingToSink() async {
983 984
    if (_loggingProcess != null) {
      _abortedLogging = true;
985 986
      _loggingProcess!.kill();
      await _loggingProcess!.exitCode;
987
    }
988 989
  }

990 991 992 993 994 995 996 997 998 999 1000 1001
  // The methods below are stubs for now. They will need to be expanded.
  // We currently do not have a way to lock/unlock iOS devices. So we assume the
  // devices are already unlocked. For now we'll just keep them at minimum
  // screen brightness so they don't drain battery too fast.

  @override
  Future<bool> isAwake() async => true;

  @override
  Future<bool> isAsleep() async => false;

  @override
1002
  Future<void> wakeUp() async {}
1003 1004

  @override
1005
  Future<void> sendToSleep() async {}
1006

1007 1008 1009
  @override
  Future<void> home() async {}

1010
  @override
1011
  Future<void> togglePower() async {}
1012 1013

  @override
1014
  Future<void> unlock() async {}
1015

1016
  @override
1017
  Future<void> tap(int x, int y) async {
1018
    throw UnimplementedError();
1019 1020
  }

1021 1022
  @override
  Future<Map<String, dynamic>> getMemoryStats(String packageName) async {
1023
    throw UnimplementedError();
1024 1025
  }

1026 1027
  @override
  Stream<String> get logcat {
1028
    throw UnimplementedError();
1029 1030
  }

1031 1032 1033
  @override
  Future<void> clearLogs() async {}

1034
  @override
1035
  Future<void> stop(String packageName) async {}
1036 1037 1038

  @override
  Future<void> reboot() {
1039
    return Process.run('idevicediagnostics', <String>['restart', '-u', deviceId]);
1040
  }
1041 1042
}

1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094
class MacosDevice extends Device {
  const MacosDevice();

  @override
  String get deviceId => 'macos';

  @override
  Future<Map<String, dynamic>> getMemoryStats(String packageName) async {
    return <String, dynamic>{};
  }

  @override
  Future<void> home() async { }

  @override
  Future<bool> isAsleep() async {
    return false;
  }

  @override
  Future<bool> isAwake() async {
    return true;
  }

  @override
  Stream<String> get logcat => const Stream<String>.empty();

  @override
  Future<void> clearLogs() async {}

  @override
  Future<void> reboot() async { }

  @override
  Future<void> sendToSleep() async { }

  @override
  Future<void> stop(String packageName) async { }

  @override
  Future<void> tap(int x, int y) async { }

  @override
  Future<void> togglePower() async { }

  @override
  Future<void> unlock() async { }

  @override
  Future<void> wakeUp() async { }
}

1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121
class WindowsDevice extends Device {
  const WindowsDevice();

  @override
  String get deviceId => 'windows';

  @override
  Future<Map<String, dynamic>> getMemoryStats(String packageName) async {
    return <String, dynamic>{};
  }

  @override
  Future<void> home() async { }

  @override
  Future<bool> isAsleep() async {
    return false;
  }

  @override
  Future<bool> isAwake() async {
    return true;
  }

  @override
  Stream<String> get logcat => const Stream<String>.empty();

1122 1123 1124
  @override
  Future<void> clearLogs() async {}

1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146
  @override
  Future<void> reboot() async { }

  @override
  Future<void> sendToSleep() async { }

  @override
  Future<void> stop(String packageName) async { }

  @override
  Future<void> tap(int x, int y) async { }

  @override
  Future<void> togglePower() async { }

  @override
  Future<void> unlock() async { }

  @override
  Future<void> wakeUp() async { }
}

1147
/// Fuchsia device.
1148
class FuchsiaDevice extends Device {
1149
  const FuchsiaDevice({ required this.deviceId });
1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166

  @override
  final String deviceId;

  // TODO(egarciad): Implement these for Fuchsia.
  @override
  Future<bool> isAwake() async => true;

  @override
  Future<bool> isAsleep() async => false;

  @override
  Future<void> wakeUp() async {}

  @override
  Future<void> sendToSleep() async {}

1167 1168 1169
  @override
  Future<void> home() async {}

1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183
  @override
  Future<void> togglePower() async {}

  @override
  Future<void> unlock() async {}

  @override
  Future<void> tap(int x, int y) async {}

  @override
  Future<void> stop(String packageName) async {}

  @override
  Future<Map<String, dynamic>> getMemoryStats(String packageName) async {
1184
    throw UnimplementedError();
1185 1186 1187 1188
  }

  @override
  Stream<String> get logcat {
1189
    throw UnimplementedError();
1190
  }
1191

1192 1193 1194
  @override
  Future<void> clearLogs() async {}

1195 1196 1197 1198
  @override
  Future<void> reboot() async {
    // Unsupported.
  }
1199 1200
}

1201 1202
/// Path to the `adb` executable.
String get adbPath {
1203
  final String? androidHome = Platform.environment['ANDROID_HOME'] ?? Platform.environment['ANDROID_SDK_ROOT'];
1204

1205 1206
  if (androidHome == null) {
    throw const DeviceException(
1207 1208
      'The ANDROID_SDK_ROOT environment variable is '
      'missing. The variable must point to the Android '
1209 1210 1211
      'SDK directory containing platform-tools.'
    );
  }
1212

1213
  final String adbPath = path.join(androidHome, 'platform-tools/adb');
1214

1215
  if (!canRun(adbPath))
1216
    throw DeviceException('adb not found at: $adbPath');
1217

1218
  return path.absolute(adbPath);
1219
}
1220 1221

class FakeDevice extends Device {
1222
  const FakeDevice({ required this.deviceId });
1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238

  @override
  final String deviceId;

  @override
  Future<bool> isAwake() async => true;

  @override
  Future<bool> isAsleep() async => false;

  @override
  Future<void> wakeUp() async {}

  @override
  Future<void> sendToSleep() async {}

1239 1240 1241
  @override
  Future<void> home() async {}

1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262
  @override
  Future<void> togglePower() async {}

  @override
  Future<void> unlock() async {}

  @override
  Future<void> tap(int x, int y) async {
    throw UnimplementedError();
  }

  @override
  Future<Map<String, dynamic>> getMemoryStats(String packageName) async {
    throw UnimplementedError();
  }

  @override
  Stream<String> get logcat {
    throw UnimplementedError();
  }

1263 1264 1265
  @override
  Future<void> clearLogs() async {}

1266 1267
  @override
  Future<void> stop(String packageName) async {}
1268 1269 1270 1271 1272

  @override
  Future<void> reboot() async {
    // Unsupported.
  }
1273 1274 1275 1276 1277 1278 1279 1280 1281
}

class FakeDeviceDiscovery implements DeviceDiscovery {
  factory FakeDeviceDiscovery() {
    return _instance ??= FakeDeviceDiscovery._();
  }

  FakeDeviceDiscovery._();

1282
  static FakeDeviceDiscovery? _instance;
1283

1284
  FakeDevice? _workingDevice;
1285 1286 1287 1288 1289

  @override
  Future<FakeDevice> get workingDevice async {
    if (_workingDevice == null) {
      if (Platform.environment.containsKey(DeviceIdEnvName)) {
1290
        final String deviceId = Platform.environment[DeviceIdEnvName]!;
1291
        await chooseWorkingDeviceById(deviceId);
1292
        return _workingDevice!;
1293 1294 1295 1296
      }
      await chooseWorkingDevice();
    }

1297
    return _workingDevice!;
1298 1299 1300 1301 1302 1303 1304 1305 1306 1307
  }

  /// The Fake is only available for by ID device discovery.
  @override
  Future<void> chooseWorkingDevice() async {
    throw const DeviceException('No fake devices detected');
  }

  @override
  Future<void> chooseWorkingDeviceById(String deviceId) async {
1308
    final String? matchedId = _findMatchId(await discoverDevices(), deviceId);
1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337
    if (matchedId != null) {
      _workingDevice = FakeDevice(deviceId: matchedId);
      print('Choose device by ID: $matchedId');
      return;
    }
    throw DeviceException(
      'Device with ID $deviceId is not found for operating system: '
      '$deviceOperatingSystem'
      );
  }

  @override
  Future<List<String>> discoverDevices() async {
    return <String>['FAKE_SUCCESS', 'THIS_IS_A_FAKE'];
  }

  @override
  Future<Map<String, HealthCheckResult>> checkDevices() async {
    final Map<String, HealthCheckResult> results = <String, HealthCheckResult>{};
    for (final String deviceId in await discoverDevices()) {
      results['fake-device-$deviceId'] = HealthCheckResult.success();
    }
    return results;
  }

  @override
  Future<void> performPreflightTasks() async {
  }
}