1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
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
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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
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
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
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
906
907
908
909
910
911
912
913
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'package:meta/meta.dart';
import 'package:process/process.dart';
import '../application_package.dart';
import '../base/common.dart';
import '../base/file_system.dart';
import '../base/io.dart';
import '../base/logger.dart';
import '../base/process.dart';
import '../base/utils.dart';
import '../build_info.dart';
import '../bundle.dart';
import '../bundle_builder.dart';
import '../convert.dart';
import '../device.dart';
import '../device_port_forwarder.dart';
import '../features.dart';
import '../project.dart';
import '../protocol_discovery.dart';
import 'custom_device_config.dart';
import 'custom_device_workflow.dart';
import 'custom_devices_config.dart';
/// Replace all occurrences of `${someName}` with the value found for that
/// name inside replacementValues or additionalReplacementValues.
///
/// The replacement value is first looked for in [replacementValues] and then
/// [additionalReplacementValues]. If no value is found, an empty string will be
/// substituted instead.
List<String> interpolateCommand(
List<String> command,
Map<String, String> replacementValues, {
Map<String, String> additionalReplacementValues = const <String, String>{}
}) {
return interpolateStringList(
command,
Map<String, String>.of(additionalReplacementValues)
..addAll(replacementValues)
);
}
/// A log reader that can listen to a process' stdout / stderr or another log line
/// Stream.
class CustomDeviceLogReader extends DeviceLogReader {
CustomDeviceLogReader(this.name);
/// The name of the device this log reader is associated with.
@override
final String name;
@visibleForTesting
final StreamController<String> logLinesController = StreamController<String>.broadcast();
@visibleForTesting
final List<StreamSubscription<String>> subscriptions = <StreamSubscription<String>>[];
/// Listen to [process]' stdout and stderr, decode them using [SystemEncoding]
/// and add each decoded line to [logLines].
///
/// However, [logLines] will not be done when the [process]' stdout and stderr
/// streams are done. So [logLines] will still be alive after the process has
/// finished.
///
/// See [CustomDeviceLogReader.dispose] to end the [logLines] stream.
void listenToProcessOutput(Process process, {Encoding encoding = systemEncoding}) {
final Converter<List<int>, String> decoder = encoding.decoder;
subscriptions.add(
process.stdout.transform<String>(decoder)
.transform<String>(const LineSplitter())
.listen(logLinesController.add),
);
subscriptions.add(
process.stderr.transform<String>(decoder)
.transform<String>(const LineSplitter())
.listen(logLinesController.add)
);
}
/// Add all lines emitted by [lines] to this [CustomDeviceLogReader]s [logLines]
/// stream.
///
/// Similar to [listenToProcessOutput], [logLines] will not be marked as done
/// when the argument stream is done.
///
/// Useful when you want to combine the contents of multiple log readers.
void listenToLinesStream(Stream<String> lines) {
subscriptions.add(
lines.listen(logLinesController.add)
);
}
/// Dispose this log reader, freeing all associated resources and marking
/// [logLines] as done.
@override
Future<void> dispose() async {
final List<Future<void>> futures = <Future<void>>[];
for (final StreamSubscription<String> subscription in subscriptions) {
futures.add(subscription.cancel());
}
futures.add(logLinesController.close());
await Future.wait(futures);
}
@override
Stream<String> get logLines => logLinesController.stream;
}
/// A [DevicePortForwarder] that uses commands to forward / unforward a port.
class CustomDevicePortForwarder extends DevicePortForwarder {
CustomDevicePortForwarder({
required String deviceName,
required List<String> forwardPortCommand,
required RegExp forwardPortSuccessRegex,
this.numTries,
required ProcessManager processManager,
required Logger logger,
Map<String, String> additionalReplacementValues = const <String, String>{}
}) : _deviceName = deviceName,
_forwardPortCommand = forwardPortCommand,
_forwardPortSuccessRegex = forwardPortSuccessRegex,
_processManager = processManager,
_processUtils = ProcessUtils(
processManager: processManager,
logger: logger
),
_additionalReplacementValues = additionalReplacementValues;
final String _deviceName;
final List<String> _forwardPortCommand;
final RegExp _forwardPortSuccessRegex;
final ProcessManager _processManager;
final ProcessUtils _processUtils;
final int? numTries;
final Map<String, String> _additionalReplacementValues;
final List<ForwardedPort> _forwardedPorts = <ForwardedPort>[];
@override
Future<void> dispose() async {
// copy the list so we don't modify it concurrently
await Future.wait(List<ForwardedPort>.of(_forwardedPorts).map(unforward));
}
Future<ForwardedPort?> tryForward(int devicePort, int hostPort) async {
final List<String> interpolated = interpolateCommand(
_forwardPortCommand,
<String, String>{
'devicePort': '$devicePort',
'hostPort': '$hostPort'
},
additionalReplacementValues: _additionalReplacementValues
);
// launch the forwarding command
final Process process = await _processUtils.start(interpolated);
final Completer<ForwardedPort?> completer = Completer<ForwardedPort?>();
// read the outputs of the process, if we find a line that matches
// the configs forwardPortSuccessRegex, we complete with a successfully
// forwarded port
// Note that if that regex never matches, this will potentially run forever
// and the forwarding will never complete
final CustomDeviceLogReader reader = CustomDeviceLogReader(_deviceName)..listenToProcessOutput(process);
final StreamSubscription<String> logLinesSubscription = reader.logLines.listen((String line) {
if (_forwardPortSuccessRegex.hasMatch(line) && !completer.isCompleted) {
completer.complete(
ForwardedPort.withContext(hostPort, devicePort, process)
);
}
});
// if the process exits (even with exitCode == 0), that is considered
// a port forwarding failure and we complete with a null value.
unawaited(process.exitCode.whenComplete(() {
if (!completer.isCompleted) {
completer.complete(null);
}
}));
unawaited(completer.future.whenComplete(() {
unawaited(logLinesSubscription.cancel());
unawaited(reader.dispose());
}));
return completer.future;
}
@override
Future<int> forward(int devicePort, {int? hostPort}) async {
int actualHostPort = (hostPort == 0 || hostPort == null) ? devicePort : hostPort;
int tries = 0;
while ((numTries == null) || (tries < numTries!)) {
// when the desired host port is already forwarded by this Forwarder,
// choose another one
while (_forwardedPorts.any((ForwardedPort port) => port.hostPort == actualHostPort)) {
actualHostPort += 1;
}
final ForwardedPort? port = await tryForward(devicePort, actualHostPort);
if (port != null) {
_forwardedPorts.add(port);
return actualHostPort;
} else {
// null value means the forwarding failed (for whatever reason)
// increase port by one and try again
actualHostPort += 1;
tries += 1;
}
}
throw ToolExit('Forwarding port for custom device $_deviceName failed after $tries tries.');
}
@override
List<ForwardedPort> get forwardedPorts => List<ForwardedPort>.unmodifiable(_forwardedPorts);
@override
Future<void> unforward(ForwardedPort forwardedPort) async {
assert(_forwardedPorts.contains(forwardedPort));
// since a forwarded port represents a running process launched with
// the forwardPortCommand, unforwarding is as easy as killing the process
final int? pid = forwardedPort.context?.pid;
if (pid != null) {
_processManager.killPid(pid);
}
_forwardedPorts.remove(forwardedPort);
}
}
/// A combination of [ApplicationPackage] and a [CustomDevice]. Can only start,
/// stop this specific app package with this specific device. Useful because we
/// often need to store additional context to an app that is running on a device,
/// like any forwarded ports we need to unforward later, the process we need to
/// kill to stop the app, maybe other things in the future.
class CustomDeviceAppSession {
CustomDeviceAppSession({
required this.name,
required CustomDevice device,
required ApplicationPackage appPackage,
required Logger logger,
required ProcessManager processManager
}) : _appPackage = appPackage,
_device = device,
_logger = logger,
_processManager = processManager,
_processUtils = ProcessUtils(
processManager: processManager,
logger: logger
),
logReader = CustomDeviceLogReader(name);
final String name;
final CustomDevice _device;
final ApplicationPackage _appPackage;
final Logger _logger;
final ProcessManager _processManager;
final ProcessUtils _processUtils;
final CustomDeviceLogReader logReader;
Process? _process;
int? _forwardedHostPort;
/// Get the engine options for the given [debuggingOptions],
/// [traceStartup] and [route].
///
/// [debuggingOptions] and [route] can be null.
///
/// For example, `_getEngineOptions(null, false, null)` will return
/// `['enable-dart-profiling=true']`
List<String> _getEngineOptions(DebuggingOptions debuggingOptions, bool traceStartup, String? route) {
final List<String> options = <String>[];
void addFlag(String value) {
options.add(value);
}
addFlag('enable-dart-profiling=true');
if (traceStartup) {
addFlag('trace-startup=true');
}
if (route != null) {
addFlag('route=$route');
}
if (debuggingOptions != null) {
if (debuggingOptions.enableSoftwareRendering) {
addFlag('enable-software-rendering=true');
}
if (debuggingOptions.skiaDeterministicRendering) {
addFlag('skia-deterministic-rendering=true');
}
if (debuggingOptions.traceSkia) {
addFlag('trace-skia=true');
}
if (debuggingOptions.traceAllowlist != null) {
addFlag('trace-allowlist=${debuggingOptions.traceAllowlist}');
}
if (debuggingOptions.traceSystrace) {
addFlag('trace-systrace=true');
}
if (debuggingOptions.endlessTraceBuffer) {
addFlag('endless-trace-buffer=true');
}
if (debuggingOptions.dumpSkpOnShaderCompilation) {
addFlag('dump-skp-on-shader-compilation=true');
}
if (debuggingOptions.cacheSkSL) {
addFlag('cache-sksl=true');
}
if (debuggingOptions.purgePersistentCache) {
addFlag('purge-persistent-cache=true');
}
// Options only supported when there is a VM Service connection between the
// tool and the device, usually in debug or profile mode.
if (debuggingOptions.debuggingEnabled) {
if (debuggingOptions.deviceVmServicePort != null) {
addFlag('observatory-port=${debuggingOptions.deviceVmServicePort}');
}
if (debuggingOptions.buildInfo.isDebug) {
addFlag('enable-checked-mode=true');
addFlag('verify-entry-points=true');
}
if (debuggingOptions.startPaused) {
addFlag('start-paused=true');
}
if (debuggingOptions.disableServiceAuthCodes) {
addFlag('disable-service-auth-codes=true');
}
final String dartVmFlags = computeDartVmFlags(debuggingOptions);
if (dartVmFlags.isNotEmpty) {
addFlag('dart-flags=$dartVmFlags');
}
if (debuggingOptions.useTestFonts) {
addFlag('use-test-fonts=true');
}
if (debuggingOptions.verboseSystemLogs) {
addFlag('verbose-logging=true');
}
}
}
return options;
}
/// Get the engine options for the given [debuggingOptions],
/// [traceStartup] and [route].
///
/// [debuggingOptions] and [route] can be null.
///
/// For example, `_getEngineOptionsForCmdline(null, false, null)` will return
/// `--enable-dart-profiling=true`
String _getEngineOptionsForCmdline(DebuggingOptions debuggingOptions, bool traceStartup, String? route) {
return _getEngineOptions(debuggingOptions, traceStartup, route).map((String e) => '--$e').join(' ');
}
/// Start the app on the device.
/// Needs the app to be installed on the device and not running already.
///
/// [mainPath], [route], [debuggingOptions], [platformArgs] and
/// [userIdentifier] may be null.
///
/// [ipv6] may not be respected since it depends on the device config whether
/// it uses ipv6 or ipv4
Future<LaunchResult> start({
String? mainPath,
String? route,
required DebuggingOptions debuggingOptions,
Map<String, Object?> platformArgs = const <String, Object>{},
bool prebuiltApplication = false,
bool ipv6 = false,
String? userIdentifier
}) async {
final bool traceStartup = platformArgs['trace-startup'] as bool? ?? false;
final String? packageName = _appPackage.name;
if (packageName == null) {
throw ToolExit('Could not start app, name for $_appPackage is unknown.');
}
final List<String> interpolated = interpolateCommand(
_device._config.runDebugCommand,
<String, String>{
'remotePath': '/tmp/',
'appName': packageName,
'engineOptions': _getEngineOptionsForCmdline(debuggingOptions, traceStartup, route)
}
);
final Process process = await _processUtils.start(interpolated);
assert(_process == null);
_process = process;
final ProtocolDiscovery discovery = ProtocolDiscovery.observatory(
logReader,
portForwarder: _device._config.usesPortForwarding ? _device.portForwarder : null,
logger: _logger,
ipv6: ipv6,
);
// We need to make the discovery listen to the logReader before the logReader
// listens to the process output since logReader.lines is a broadcast stream
// and events may be discarded.
// Whether that actually happens is another thing since this is all executed
// in the same microtask AFAICT but this way we're on the safe side.
logReader.listenToProcessOutput(process);
final Uri? observatoryUri = await discovery.uri;
await discovery.cancel();
if (_device._config.usesPortForwarding) {
_forwardedHostPort = observatoryUri?.port;
}
return LaunchResult.succeeded(observatoryUri: observatoryUri);
}
void _maybeUnforwardPort() {
if (_forwardedHostPort != null) {
final ForwardedPort forwardedPort = _device.portForwarder.forwardedPorts.singleWhere((ForwardedPort forwardedPort) {
return forwardedPort.hostPort == _forwardedHostPort;
});
_forwardedHostPort = null;
_device.portForwarder.unforward(forwardedPort);
}
}
/// Stop the app on the device.
/// Returns false if the app is not yet running. Also unforwards any
/// forwarded ports.
Future<bool> stop() async {
if (_process == null) {
return false;
}
_maybeUnforwardPort();
final bool result = _processManager.killPid(_process!.pid);
_process = null;
return result;
}
void dispose() {
if (_process != null) {
_maybeUnforwardPort();
_processManager.killPid(_process!.pid);
_process = null;
}
unawaited(logReader.dispose());
}
}
/// A device that uses user-configured actions for the common device methods.
/// The exact actions are defined by the contents of the [CustomDeviceConfig]
/// used to construct it.
class CustomDevice extends Device {
CustomDevice({
required CustomDeviceConfig config,
required Logger logger,
required ProcessManager processManager,
}) : _config = config,
_logger = logger,
_processManager = processManager,
_processUtils = ProcessUtils(
processManager: processManager,
logger: logger
),
_globalLogReader = CustomDeviceLogReader(config.label),
portForwarder = config.usesPortForwarding ?
CustomDevicePortForwarder(
deviceName: config.label,
forwardPortCommand: config.forwardPortCommand!,
forwardPortSuccessRegex: config.forwardPortSuccessRegex!,
processManager: processManager,
logger: logger,
) : const NoOpDevicePortForwarder(),
super(
config.id,
category: Category.mobile,
ephemeral: true,
platformType: PlatformType.custom
);
final CustomDeviceConfig _config;
final Logger _logger;
final ProcessManager _processManager;
final ProcessUtils _processUtils;
final Map<ApplicationPackage, CustomDeviceAppSession> _sessions = <ApplicationPackage, CustomDeviceAppSession>{};
final CustomDeviceLogReader _globalLogReader;
@override
final DevicePortForwarder portForwarder;
CustomDeviceAppSession _getOrCreateAppSession(covariant ApplicationPackage app) {
return _sessions.putIfAbsent(
app,
() {
/// create a new session and add its logging to the global log reader.
/// (needed bc it's possible the infra requests a global log in [getLogReader]
final CustomDeviceAppSession session = CustomDeviceAppSession(
name: name,
device: this,
appPackage: app,
logger: _logger,
processManager: _processManager
);
_globalLogReader.listenToLinesStream(session.logReader.logLines);
return session;
}
);
}
/// Tries to ping the device using the ping command given in the config.
/// All string interpolation occurrences inside the ping command will be replaced
/// using the entries in [replacementValues].
///
/// If the process finishes with an exit code != 0, false will be returned and
/// the error (with the process' stdout and stderr) will be logged using
/// [_logger.printError].
///
/// If [timeout] is not null and the process doesn't finish in time,
/// it will be killed with a SIGTERM, false will be returned and the timeout
/// will be reported in the log using [_logger.printError]. If [timeout]
/// is null, it's treated as if it's an infinite timeout.
Future<bool> tryPing({
Duration? timeout,
Map<String, String> replacementValues = const <String, String>{}
}) async {
final List<String> interpolated = interpolateCommand(
_config.pingCommand,
replacementValues
);
final RunResult result = await _processUtils.run(
interpolated,
timeout: timeout
);
if (result.exitCode != 0) {
return false;
}
// If the user doesn't configure a ping success regex, any ping with exitCode zero
// is good enough. Otherwise we check if either stdout or stderr have a match of
// the pingSuccessRegex.
final RegExp? pingSuccessRegex = _config.pingSuccessRegex;
return pingSuccessRegex == null
|| pingSuccessRegex.hasMatch(result.stdout)
|| pingSuccessRegex.hasMatch(result.stderr);
}
/// Tries to execute the configs postBuild command using [appName] for the
/// `${appName}` and [localPath] for the `${localPath}` interpolations,
/// any additional string interpolation occurrences will be replaced using the
/// entries in [additionalReplacementValues].
///
/// Calling this when the config doesn't have a configured postBuild command
/// is an error.
///
/// If [timeout] is not null and the process doesn't finish in time, it
/// will be killed with a SIGTERM, false will be returned and the timeout
/// will be reported in the log using [_logger.printError]. If [timeout]
/// is null, it's treated as if it's an infinite timeout.
Future<bool> _tryPostBuild({
required String appName,
required String localPath,
Duration? timeout,
Map<String, String> additionalReplacementValues = const <String, String>{}
}) async {
assert(_config.postBuildCommand != null);
final List<String> interpolated = interpolateCommand(
_config.postBuildCommand!,
<String, String>{
'appName': appName,
'localPath': localPath
},
additionalReplacementValues: additionalReplacementValues
);
try {
await _processUtils.run(
interpolated,
throwOnError: true,
timeout: timeout
);
return true;
} on ProcessException catch (e) {
_logger.printError('Error executing postBuild command for custom device $id: $e');
return false;
}
}
/// Tries to execute the configs uninstall command.
///
/// [appName] is the name of the app to be installed.
///
/// If [timeout] is not null and the process doesn't finish in time, it
/// will be killed with a SIGTERM, false will be returned and the timeout
/// will be reported in the log using [_logger.printError]. If [timeout]
/// is null, it's treated as if it's an infinite timeout.
Future<bool> tryUninstall({
required String appName,
Duration? timeout,
Map<String, String> additionalReplacementValues = const <String, String>{}
}) async {
final List<String> interpolated = interpolateCommand(
_config.uninstallCommand,
<String, String>{
'appName': appName
},
additionalReplacementValues: additionalReplacementValues
);
try {
await _processUtils.run(
interpolated,
throwOnError: true,
timeout: timeout
);
return true;
} on ProcessException catch (e) {
_logger.printError('Error executing uninstall command for custom device $id: $e');
return false;
}
}
/// Tries to install the app to the custom device.
///
/// [localPath] is the file / directory on the local device that will be
/// copied over to the target custom device. This is substituted for any occurrence
/// of `${localPath}` in the custom device configs `install` command.
///
/// [appName] is the name of the app to be installed. Substituted for any occurrence
/// of `${appName}` in the custom device configs `install` command.
Future<bool> tryInstall({
required String localPath,
required String appName,
Duration? timeout,
Map<String, String> additionalReplacementValues = const <String, String>{}
}) async {
final List<String> interpolated = interpolateCommand(
_config.installCommand,
<String, String>{
'localPath': localPath,
'appName': appName
},
additionalReplacementValues: additionalReplacementValues
);
try {
await _processUtils.run(
interpolated,
throwOnError: true,
timeout: timeout
);
return true;
} on ProcessException catch (e) {
_logger.printError('Error executing install command for custom device $id: $e');
return false;
}
}
@override
void clearLogs() {}
@override
Future<void> dispose() async {
_sessions
..forEach((_, CustomDeviceAppSession session) => session.dispose())
..clear();
}
@override
Future<String?> get emulatorId async => null;
@override
FutureOr<DeviceLogReader> getLogReader({
covariant ApplicationPackage? app,
bool includePastLogs = false
}) {
if (app != null) {
return _getOrCreateAppSession(app).logReader;
}
return _globalLogReader;
}
@override
Future<bool> installApp(covariant ApplicationPackage app, {String? userIdentifier}) async {
final String? appName = app.name;
if (appName == null || !await tryUninstall(appName: appName)) {
return false;
}
final bool result = await tryInstall(
localPath: getAssetBuildDirectory(),
appName: appName,
);
return result;
}
@override
Future<bool> isAppInstalled(covariant ApplicationPackage app, {String? userIdentifier}) async {
return false;
}
@override
Future<bool> isLatestBuildInstalled(covariant ApplicationPackage app) async {
return false;
}
@override
Future<bool> get isLocalEmulator async => false;
@override
bool get supportsScreenshot => _config.supportsScreenshotting;
@override
Future<void> takeScreenshot(File outputFile) async {
if (supportsScreenshot == false) {
throw UnsupportedError('Screenshotting is not supported for this device.');
}
final List<String> interpolated = interpolateCommand(
_config.screenshotCommand!,
<String, String>{},
);
final RunResult result = await _processUtils.run(interpolated, throwOnError: true);
await outputFile.writeAsBytes(base64Decode(result.stdout));
}
@override
bool isSupported() {
return true;
}
@override
bool isSupportedForProject(FlutterProject flutterProject) {
return true;
}
@override
FutureOr<bool> supportsRuntimeMode(BuildMode buildMode) {
return buildMode == BuildMode.debug;
}
@override
String get name => _config.label;
@override
Future<String> get sdkNameAndVersion => Future<String>.value(_config.sdkNameAndVersion);
@override
Future<LaunchResult> startApp(
covariant ApplicationPackage package, {
String? mainPath,
String? route,
required DebuggingOptions debuggingOptions,
Map<String, Object?> platformArgs = const <String, Object>{},
bool prebuiltApplication = false,
bool ipv6 = false,
String? userIdentifier,
BundleBuilder? bundleBuilder,
}) async {
if (!prebuiltApplication) {
final String assetBundleDir = getAssetBuildDirectory();
bundleBuilder ??= BundleBuilder();
// this just builds the asset bundle, it's the same as `flutter build bundle`
await bundleBuilder.build(
platform: await targetPlatform,
buildInfo: debuggingOptions.buildInfo,
mainPath: mainPath,
depfilePath: defaultDepfilePath,
assetDirPath: assetBundleDir,
);
// if we have a post build step (needed for some embedders), execute it
if (_config.postBuildCommand != null) {
final String? packageName = package.name;
if (packageName == null) {
throw ToolExit('Could not start app, name for $package is unknown.');
}
await _tryPostBuild(
appName: packageName,
localPath: assetBundleDir,
);
}
}
// install the app on the device
// (will invoke the uninstall and then the install command internally)
await installApp(package, userIdentifier: userIdentifier);
// finally launch the app
return _getOrCreateAppSession(package).start(
mainPath: mainPath,
route: route,
debuggingOptions: debuggingOptions,
platformArgs: platformArgs,
prebuiltApplication: prebuiltApplication,
ipv6: ipv6,
userIdentifier: userIdentifier,
);
}
@override
Future<bool> stopApp(covariant ApplicationPackage app, {String? userIdentifier}) {
return _getOrCreateAppSession(app).stop();
}
@override
Future<TargetPlatform> get targetPlatform async => _config.platform ?? TargetPlatform.linux_arm64;
@override
Future<bool> uninstallApp(covariant ApplicationPackage app, {String? userIdentifier}) async {
final String? appName = app.name;
if (appName == null) {
return false;
}
return tryUninstall(appName: appName);
}
}
/// A [PollingDeviceDiscovery] that'll try to ping all enabled devices in the argument
/// [CustomDevicesConfig] and report the ones that were actually reachable.
class CustomDevices extends PollingDeviceDiscovery {
/// Create a custom device discovery that pings all enabled devices in the
/// given [CustomDevicesConfig].
CustomDevices({
required FeatureFlags featureFlags,
required ProcessManager processManager,
required Logger logger,
required CustomDevicesConfig config
}) : _customDeviceWorkflow = CustomDeviceWorkflow(
featureFlags: featureFlags,
),
_logger = logger,
_processManager = processManager,
_config = config,
super('custom devices');
final CustomDeviceWorkflow _customDeviceWorkflow;
final ProcessManager _processManager;
final Logger _logger;
final CustomDevicesConfig _config;
@override
bool get supportsPlatform => true;
@override
bool get canListAnything => _customDeviceWorkflow.canListDevices;
CustomDevicesConfig get _customDevicesConfig => _config;
List<CustomDevice> get _enabledCustomDevices {
return _customDevicesConfig.tryGetDevices()
.where((CustomDeviceConfig element) => element.enabled)
.map(
(CustomDeviceConfig config) => CustomDevice(
config: config,
logger: _logger,
processManager: _processManager
)
).toList();
}
@override
Future<List<Device>> pollingGetDevices({Duration? timeout}) async {
if (!canListAnything) {
return const <Device>[];
}
final List<CustomDevice> devices = _enabledCustomDevices;
// maps any custom device to whether its reachable or not.
final Map<CustomDevice, bool> pingedDevices = Map<CustomDevice, bool>.fromIterables(
devices,
await Future.wait(devices.map((CustomDevice e) => e.tryPing(timeout: timeout)))
);
// remove all the devices we couldn't reach.
pingedDevices.removeWhere((_, bool value) => value == false);
// return only the devices.
return pingedDevices.keys.toList();
}
@override
Future<List<String>> getDiagnostics() async => const <String>[];
@override
List<String> get wellKnownIds => const <String>[];
}