-
Notifications
You must be signed in to change notification settings - Fork 390
Expand file tree
/
Copy pathlogging_controller.dart
More file actions
1171 lines (1001 loc) · 34.7 KB
/
logging_controller.dart
File metadata and controls
1171 lines (1001 loc) · 34.7 KB
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
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2019 The Flutter Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
import 'dart:async';
import 'dart:convert';
import 'dart:math' as math;
import 'package:devtools_app_shared/service.dart';
import 'package:devtools_app_shared/utils.dart';
import 'package:devtools_shared/devtools_shared.dart';
import 'package:flutter/foundation.dart';
import 'package:intl/intl.dart';
import 'package:logging/logging.dart';
import 'package:path/path.dart' as path;
import 'package:vm_service/vm_service.dart';
import '../../service/vm_service_wrapper.dart';
import '../../shared/diagnostics/diagnostics_node.dart';
import '../../shared/diagnostics/inspector_service.dart';
import '../../shared/framework/app_error_handling.dart' as error_handling;
import '../../shared/framework/screen.dart';
import '../../shared/framework/screen_controllers.dart';
import '../../shared/globals.dart';
import '../../shared/primitives/byte_utils.dart';
import '../../shared/primitives/message_bus.dart';
import '../../shared/primitives/utils.dart';
import '../../shared/ui/filter.dart';
import '../../shared/ui/search.dart';
import '../inspector/inspector_tree_controller.dart';
import 'log_details_controller.dart';
import 'logging_screen.dart';
import 'metadata.dart';
final _log = Logger('logging_controller');
const defaultLogBufferReductionSize = 500;
final timeFormat = DateFormat('HH:mm:ss.SSS');
final dateTimeFormat = DateFormat('HH:mm:ss.SSS (MM/dd/yy)');
bool _verboseDebugging = false;
typedef OnShowDetails =
void Function({String? text, InspectorTreeController? tree});
typedef CreateLoggingTree =
InspectorTreeController Function({VoidCallback? onSelectionChange});
typedef ZoneDescription = ({String? name, int? identityHashCode});
Future<String> _retrieveFullStringValue(
VmServiceWrapper? service,
IsolateRef isolateRef,
InstanceRef stringRef,
) {
final fallback = '${stringRef.valueAsString}...';
// TODO(kenz): why is service null?
return service
?.retrieveFullStringValue(
isolateRef.id!,
stringRef,
onUnavailable: (truncatedValue) => fallback,
)
.then((value) => value ?? fallback) ??
Future.value(fallback);
}
const _gcLogKind = 'gc';
final _verboseFlutterFrameworkLogKinds = [
FlutterEvent.firstFrame,
FlutterEvent.frameworkInitialization,
FlutterEvent.frame,
FlutterEvent.imageSizesForFrame,
];
final _verboseFlutterServiceLogKinds = [
FlutterEvent.serviceExtensionStateChanged,
];
/// Log kinds to show without a summary in the table.
final _hideSummaryLogKinds = <String>{
FlutterEvent.firstFrame,
FlutterEvent.frameworkInitialization,
};
/// Screen controller for the Logging screen.
///
/// This controller can be accessed from anywhere in DevTools, as long as it was
/// first registered, by
/// calling `screenControllers.lookup<LoggingController>()`.
///
/// The controller lifecycle is managed by the [ScreenControllers] class. The
/// `init` method is called lazily upon the first controller access from
/// `screenControllers`. The `dispose` method is called by `screenControllers`
/// when DevTools is destroying a set of DevTools screen controllers.
class LoggingController extends DevToolsScreenController
with
SearchControllerMixin<LogData>,
FilterControllerMixin<LogData>,
AutoDisposeControllerMixin {
@override
final screenId = ScreenMetaData.logging.id;
static const _minLogLevelFilterId = 'min-log-level';
static const _verboseFlutterFrameworkFilterId = 'verbose-flutter-framework';
static const _verboseFlutterServiceFilterId = 'verbose-flutter-service';
static const _gcFilterId = 'gc';
@override
void init() {
super.init();
logDetailsController = LogDetailsController(selectedLog: selectedLog)
..init();
addAutoDisposeListener(serviceConnection.serviceManager.connectedState, () {
if (serviceConnection.serviceManager.connectedState.value.connected) {
_handleConnectionStart(serviceConnection.serviceManager.service!);
autoDisposeStreamSubscription(
serviceConnection.serviceManager.service!.onIsolateEvent.listen((
event,
) {
messageBus.addEvent(BusEvent('debugger', data: event));
}),
);
}
});
if (serviceConnection.serviceManager.connectedAppInitialized) {
_handleConnectionStart(serviceConnection.serviceManager.service!);
}
_handleBusEvents();
addAutoDisposeListener(
preferences.logging.retentionLimit,
// When the retention limit setting changes, trim the logs to the exact
// length of the limit.
() => _updateForRetentionLimit(trimWithBuffer: false),
);
}
@override
void dispose() {
logDetailsController.dispose();
selectedLog.dispose();
unawaited(_logStatusController.close());
super.dispose();
}
/// The setting filters available for the Logging screen.
@override
SettingFilters<LogData> createSettingFilters() => loggingSettingFilters;
@visibleForTesting
static final loggingSettingFilters = <SettingFilter<LogData, Object>>[
SettingFilter<LogData, int>(
id: _minLogLevelFilterId,
name: 'Hide logs below the minimum log level',
includeCallback: (LogData element, int currentFilterValue) =>
element.level >= currentFilterValue,
enabledCallback: (int filterValue) => filterValue > Level.ALL.value,
possibleValues: _possibleLogLevels.map((l) => l.value).toList(),
possibleValueDisplays: _possibleLogLevels.map((l) => l.name).toList(),
defaultValue: Level.ALL.value,
),
if (serviceConnection.serviceManager.connectedApp?.isFlutterAppNow ??
true) ...[
ToggleFilter<LogData>(
id: _verboseFlutterFrameworkFilterId,
name:
'Hide verbose Flutter framework logs (initialization, frame '
'times, image sizes)',
includeCallback: (log) => !_verboseFlutterFrameworkLogKinds.any(
(kind) => kind.caseInsensitiveEquals(log.kind),
),
defaultValue: true,
),
ToggleFilter<LogData>(
id: _verboseFlutterServiceFilterId,
name:
'Hide verbose Flutter service logs (service extension state '
'changes)',
includeCallback: (log) => !_verboseFlutterServiceLogKinds.any(
(kind) => kind.caseInsensitiveEquals(log.kind),
),
defaultValue: true,
),
],
ToggleFilter<LogData>(
id: _gcFilterId,
name: 'Hide garbage collection logs',
includeCallback: (log) => !log.kind.caseInsensitiveEquals(_gcLogKind),
defaultValue: true,
),
];
static final _possibleLogLevels = Level.LEVELS
// Omit Level.OFF from the possible minimum levels.
.where((level) => level != Level.OFF);
static const _kindFilterId = 'logging-kind-filter';
static const _isolateFilterId = 'logging-isolate-filter';
static const _zoneFilterId = 'logging-zone-filter';
@override
Map<String, QueryFilterArgument<LogData>> createQueryFilterArgs() =>
loggingQueryFilterArgs;
@visibleForTesting
static final loggingQueryFilterArgs = <String, QueryFilterArgument<LogData>>{
_kindFilterId: QueryFilterArgument<LogData>(
keys: ['kind', 'k'],
exampleUsages: ['k:stderr', '-k:stdout,gc'],
dataValueProvider: (log) => log.kind,
substringMatch: true,
),
_isolateFilterId: QueryFilterArgument<LogData>(
keys: ['isolate', 'i'],
exampleUsages: ['i:main', '-i:worker'],
dataValueProvider: (log) => log.isolateRef?.name,
substringMatch: true,
),
_zoneFilterId: QueryFilterArgument<LogData>(
keys: ['zone', 'z'],
exampleUsages: ['z:custom', '-z:root'],
dataValueProvider: (log) => log.zone?.name,
substringMatch: true,
),
};
@override
ValueNotifier<String>? get filterTagNotifier => preferences.logging.filterTag;
/// A stream of events for the textual description of the log contents.
///
/// See also [statusText].
Stream<String> get onLogStatusChanged => _logStatusController.stream;
final _logStatusController = StreamController<String>.broadcast();
late final LogDetailsController logDetailsController;
List<LogData> data = <LogData>[];
final selectedLog = ValueNotifier<LogData?>(null);
void _updateData(List<LogData> logs) {
data = logs;
filterData(activeFilter.value);
refreshSearchMatches();
_updateSelection();
_updateStatus();
}
void _updateSelection() {
final selected = selectedLog.value;
if (selected != null) {
final logs = filteredData.value;
if (!logs.contains(selected)) {
selectedLog.value = null;
}
}
}
ObjectGroup get objectGroup =>
serviceConnection.consoleService.objectGroup as ObjectGroup;
String get statusText {
final totalCount = data.length;
final showingCount = filteredData.value.length;
String label;
label = totalCount == showingCount
? nf.format(totalCount)
: 'showing ${nf.format(showingCount)} of '
'${nf.format(totalCount)}';
label = '$label ${pluralize('event', totalCount)}';
return label;
}
void _updateStatus() {
final label = statusText;
_logStatusController.add(label);
}
void clear() {
_updateData([]);
serviceConnection.errorBadgeManager.clearErrorCount(LoggingScreen.id);
}
void _handleConnectionStart(VmServiceWrapper service) {
// Log stdout events.
final stdoutHandler = StdoutEventHandler(this, 'stdout');
autoDisposeStreamSubscription(
service.onStdoutEventWithHistorySafe.listen(stdoutHandler.handle),
);
// Log stderr events.
final stderrHandler = StdoutEventHandler(this, 'stderr', isError: true);
autoDisposeStreamSubscription(
service.onStderrEventWithHistorySafe.listen(stderrHandler.handle),
);
// Log GC events.
autoDisposeStreamSubscription(service.onGCEvent.listen(_handleGCEvent));
// Log `dart:developer` `log` events.
autoDisposeStreamSubscription(
service.onLoggingEventWithHistorySafe.listen(_handleDeveloperLogEvent),
);
// Log Flutter extension events.
autoDisposeStreamSubscription(
service.onExtensionEventWithHistorySafe.listen(_handleExtensionEvent),
);
// Log timer events.
autoDisposeStreamSubscription(
service.onTimerEventWithHistorySafe.listen(_handleTimerEvent),
);
}
void _handleExtensionEvent(Event e) {
final kind = e.extensionKind!.toLowerCase();
final timestamp = e.timestamp;
final isolateRef = e.isolate;
if (e.extensionKind == FlutterEvent.frame) {
final frame = FrameInfo(e.extensionData!.data);
final frameId = '#${frame.number}';
final frameInfoText =
'$frameId ${frame.elapsedMs.toStringAsFixed(1).padLeft(4)}ms ';
log(
LogData(
kind,
jsonEncode(e.extensionData!.data),
timestamp,
summary: frameInfoText,
isolateRef: isolateRef,
),
);
} else if (e.extensionKind == FlutterEvent.imageSizesForFrame) {
final images = ImageSizesForFrame.from(e.extensionData!.data);
for (final image in images) {
log(
LogData(
kind,
jsonEncode(image.json),
timestamp,
summary: image.summary,
isolateRef: isolateRef,
),
);
}
} else if (e.extensionKind == FlutterEvent.navigation) {
final navInfo = NavigationInfo.from(e.extensionData!.data);
log(
LogData(
kind,
jsonEncode(e.json),
timestamp,
summary: navInfo.routeDescription,
isolateRef: isolateRef,
),
);
} else if (_hideSummaryLogKinds.contains(e.extensionKind)) {
log(
LogData(
kind,
jsonEncode(e.json),
timestamp,
summary: '',
isolateRef: isolateRef,
),
);
} else if (e.extensionKind == FlutterEvent.serviceExtensionStateChanged) {
final changedInfo = ServiceExtensionStateChangedInfo.from(
e.extensionData!.data,
);
log(
LogData(
kind,
jsonEncode(e.json),
timestamp,
summary: '${changedInfo.extension}: ${changedInfo.value}',
isolateRef: isolateRef,
),
);
} else if (e.extensionKind == FlutterEvent.error) {
// TODO(pq): add tests for error extension handling once framework changes
// are landed.
final node = RemoteDiagnosticsNode(
e.extensionData!.data,
objectGroup,
false,
null,
);
// Workaround the fact that the error objects from the server don't have
// style error.
node.style = DiagnosticsTreeStyle.error;
if (_verboseDebugging) {
_log.info('node toStringDeep:######\n${node.toStringDeep()}\n###');
}
final summary = _findFirstSummary(node) ?? node;
log(
LogData(
kind,
jsonEncode(e.extensionData!.data),
timestamp,
summary: summary.toDiagnosticsNode().toString(),
level: Level.SEVERE.value,
isError: true,
isolateRef: isolateRef,
),
);
} else {
log(
LogData(
kind,
jsonEncode(e.json),
timestamp,
summary: e.json.toString(),
isolateRef: isolateRef,
),
);
}
}
void _handleTimerEvent(Event e) {
log(
LogData(
e.kind!,
jsonEncode(e.json),
e.timestamp,
summary: e.details,
isolateRef: e.isolateRef,
),
);
}
void _handleGCEvent(Event e) {
final newSpace = HeapSpace.parse(e.json!['new'])!;
final oldSpace = HeapSpace.parse(e.json!['old'])!;
final isolateRef = (e.json!['isolate'] as Map).cast<String, Object?>();
final usedBytes = newSpace.used! + oldSpace.used!;
final capacityBytes = newSpace.capacity! + oldSpace.capacity!;
final time = ((newSpace.time! + oldSpace.time!) * 1000).round();
final summary =
'${isolateRef['name']} • '
'${e.json!['reason']} collection in $time ms • '
'${printBytes(usedBytes, unit: ByteUnit.mb, includeUnit: true)} used of '
'${printBytes(capacityBytes, unit: ByteUnit.mb, includeUnit: true)}';
final event = <String, Object>{
'reason': e.json!['reason'],
'new': newSpace.json,
'old': oldSpace.json,
'isolate': isolateRef,
};
final message = jsonEncode(event);
log(
LogData(
_gcFilterId,
message,
e.timestamp,
summary: summary,
isolateRef: e.isolateRef,
),
);
}
void _handleDeveloperLogEvent(Event e) {
final eventJson = e.json!;
final service = serviceConnection.serviceManager.service;
final logRecord = _LogRecord(eventJson['logRecord']);
String? loggerName = _valueAsString(
InstanceRef.parse(logRecord.loggerName),
);
if (loggerName == null || loggerName.isEmpty) {
loggerName = 'log';
}
final level = logRecord.level;
final zoneInstanceRef = InstanceRef.parse(logRecord.zone);
final zone = (
name: zoneInstanceRef?.classRef?.name,
identityHashCode: zoneInstanceRef?.identityHashCode,
);
final messageRef = InstanceRef.parse(logRecord.message)!;
String? summary = _valueAsString(messageRef);
if (messageRef.valueAsStringIsTruncated == true) {
summary = '${summary!}...';
}
final error = InstanceRef.parse(logRecord.error);
final stackTrace = InstanceRef.parse(logRecord.stackTrace);
// TODO(kenz): we may want to narrow down the details of dart developer logs
final details = jsonEncode(e.json);
Future<String> Function()? detailsComputer;
// If the message string was truncated by the VM, or the error object or
// stackTrace objects were non-null, we need to ask the VM for more
// information in order to render the log entry. We do this asynchronously
// on-demand using the `detailsComputer` Future.
if (messageRef.valueAsStringIsTruncated == true ||
_isNotNull(error) ||
_isNotNull(stackTrace)) {
detailsComputer = () async {
// Get the full string value of the message.
String result = await _retrieveFullStringValue(
service,
e.isolate!,
messageRef,
);
// Get information about the error object. Some users of the
// dart:developer log call may pass a data payload in the `error`
// field, encoded as a json encoded string, so handle that case.
if (_isNotNull(error)) {
if (error!.valueAsString != null) {
final errorString = await _retrieveFullStringValue(
service,
e.isolate!,
error,
);
result += '\n\n$errorString';
} else {
// Call `toString()` on the error object and display that.
final toStringResult = await service!.invoke(
e.isolate!.id!,
error.id!,
'toString',
<String>[],
disableBreakpoints: true,
);
if (toStringResult is ErrorRef) {
final errorString = _valueAsString(error);
result += '\n\n$errorString';
} else if (toStringResult is InstanceRef) {
final str = await _retrieveFullStringValue(
service,
e.isolate!,
toStringResult,
);
result += '\n\n$str';
}
}
}
// Get info about the stackTrace object.
if (_isNotNull(stackTrace)) {
result += '\n\n${_valueAsString(stackTrace)}';
}
return result;
};
}
const severeIssue = 1000;
final isError = level != null && level >= severeIssue ? true : false;
log(
LogData(
loggerName,
details,
e.timestamp,
level: level,
isError: isError,
summary: summary,
detailsComputer: detailsComputer,
isolateRef: e.isolateRef,
zone: zone,
),
);
}
void log(LogData log) {
data.add(log);
if (includeLogForFilter(log, filter: activeFilter.value)) {
// This will notify since [filteredData] is a [ListValueNotifier].
filteredData.add(log);
}
// TODO(kenz): we don't need to re-filter the data from this method if we
// trim the logs for the retention limit. This would require some
// refactoring to the _updateData method to support updating the notifiers
// without re-filtering all the data.
// If we need to trim logs to meet the retention limit, this will call
// [_updateData] and perform a re-filter of all the logs.
_updateForRetentionLimit();
// TODO(kenz): this will traverse all the logs to refresh search matches.
// We don't need to do this. We could optimize further by updating the
// search match status for the individual log and for the controller without
// traversing the entire data set. This is a no-op when the search value is
// empty, but this cost is O(N*N) when a search value is present.
refreshSearchMatches();
_updateStatus();
}
void _updateForRetentionLimit({
bool trimWithBuffer = true,
bool updateData = true,
}) {
// For performance reasons, we drop old logs in batches. Because it is
// expensive to drop from the beginning of a list, we only do it
// periodically (e.g. drop [_defaultBufferReductionSize] logs when the log
// retention limit has been reached.
final retentionLimit = preferences.logging.retentionLimit.value;
if (data.length > retentionLimit) {
final reduceToSize = math.max(
retentionLimit - (trimWithBuffer ? defaultLogBufferReductionSize : 0),
0,
);
int dropUntilIndex = data.length - reduceToSize;
// Ensure we remove an even number of rows to keep the alternating
// background in-sync.
if (dropUntilIndex % 2 == 1) {
dropUntilIndex--;
}
if (updateData) {
_updateData(data.sublist(math.max(dropUntilIndex, 0)));
}
}
}
static RemoteDiagnosticsNode? _findFirstSummary(RemoteDiagnosticsNode node) {
if (node.level == DiagnosticLevel.summary) {
return node;
}
RemoteDiagnosticsNode? summary;
for (final property in node.inlineProperties) {
summary = _findFirstSummary(property);
if (summary != null) return summary;
}
for (final child in node.childrenNow) {
summary = _findFirstSummary(child);
if (summary != null) return summary;
}
return null;
}
void _handleBusEvents() {
// TODO(jacobr): expose the messageBus for use by vm tests.
autoDisposeStreamSubscription(
messageBus.onEvent(type: 'reload.end').listen((BusEvent event) {
log(
LogData(
'hot.reload',
event.data as String?,
DateTime.now().millisecondsSinceEpoch,
),
);
}),
);
autoDisposeStreamSubscription(
messageBus.onEvent(type: 'restart.end').listen((BusEvent event) {
log(
LogData(
'hot.restart',
event.data as String?,
DateTime.now().millisecondsSinceEpoch,
),
);
}),
);
// Listen for debugger events.
autoDisposeStreamSubscription(
messageBus
.onEvent()
.where(
(event) =>
event.type == 'debugger' || event.type.startsWith('debugger.'),
)
.listen(_handleDebuggerEvent),
);
// Listen for DevTools internal events.
autoDisposeStreamSubscription(
messageBus
.onEvent()
.where((event) => event.type.startsWith('devtools.'))
.listen(_handleDevToolsEvent),
);
}
void _handleDebuggerEvent(BusEvent event) {
final debuggerEvent = event.data as Event;
// Filter ServiceExtensionAdded events as they're pretty noisy.
if (debuggerEvent.kind == EventKind.kServiceExtensionAdded) {
return;
}
log(
LogData(
event.type,
jsonEncode(debuggerEvent.json),
debuggerEvent.timestamp,
summary: '${debuggerEvent.kind} ${debuggerEvent.isolate!.id}',
),
);
}
void _handleDevToolsEvent(BusEvent event) {
var details = event.data.toString();
String? summary;
if (details.contains('\n')) {
final lines = details.split('\n');
summary = lines.first;
details = lines.sublist(1).join('\n');
}
log(
LogData(
event.type,
details,
DateTime.now().millisecondsSinceEpoch,
summary: summary,
),
);
}
@override
Iterable<LogData> get currentDataToSearchThrough => filteredData.value;
bool includeLogForFilter(LogData log, {required Filter filter}) {
final filteredOutBySettingFilters = filter.settingFilters.any(
(settingFilter) => !settingFilter.includeData(log),
);
if (filteredOutBySettingFilters) return false;
final queryFilter = filter.queryFilter;
if (!queryFilter.isEmpty) {
final filteredOutByQueryFilterArgument = queryFilter.filterArguments.any(
(argument) => !argument.matchesValue(log),
);
if (filteredOutByQueryFilterArgument) return false;
if (filter.queryFilter.substringExpressions.isNotEmpty) {
for (final substring in filter.queryFilter.substringExpressions) {
final matchesKind = log.kind.caseInsensitiveContains(substring);
if (matchesKind) return true;
final matchesLevel = log.levelName.caseInsensitiveContains(substring);
if (matchesLevel) return true;
final matchesIsolateName =
log.isolateRef?.name?.caseInsensitiveContains(substring) ?? false;
if (matchesIsolateName) return true;
final zone = log.zone;
final matchesZoneName =
zone?.name?.caseInsensitiveContains(substring) ?? false;
final matchesZoneIdentity =
zone?.identityHashCode?.toString().caseInsensitiveContains(
substring,
) ??
false;
if (matchesZoneName || matchesZoneIdentity) return true;
final matchesSummary =
log.summary != null &&
log.summary!.caseInsensitiveContains(substring);
if (matchesSummary) return true;
final matchesDetails =
log.details != null &&
log.details!.caseInsensitiveContains(substring);
if (matchesDetails) return true;
}
return false;
}
}
return true;
}
@override
void filterData(Filter<LogData> filter) {
super.filterData(filter);
filteredData
..clear()
..addAll(
data.where((log) => includeLogForFilter(log, filter: filter)).toList(),
);
}
@override
void releaseMemory({bool partial = false}) {
if (partial) {
// Trim logs from the front so that the oldest logs are removed.
_updateData(data.sublist(data.length ~/ 2));
} else {
clear();
}
}
}
extension type _LogRecord(Map<String, dynamic> json) {
int? get sequenceNumber => json['sequenceNumber'];
int? get level => json['level'];
Map<String, Object?> get loggerName => json['loggerName'];
Map<String, Object?> get message => json['message'];
Map<String, Object?> get zone => json['zone'];
Map<String, Object?> get error => json['error'];
Map<String, Object?> get stackTrace => json['stackTrace'];
}
/// Receive and log stdout / stderr events from the VM.
///
/// This class buffers the events for up to 1ms. This is in order to combine a
/// stdout message and its newline. Currently, `foo\n` is sent as two VM events;
/// we wait for up to 1ms when we get the `foo` event, to see if the next event
/// is a single newline. If so, we add the newline to the previous log message.
@visibleForTesting
class StdoutEventHandler {
StdoutEventHandler(this.loggingController, this.name, {this.isError = false});
final LoggingController loggingController;
final String name;
final bool isError;
LogData? _buffer;
Timer? _timer;
void handle(Event e) {
final message = decodeBase64(e.bytes!);
if (_handleBufferedMessage(message, e)) return;
const maxLength = 200;
String summary = message;
if (message.length > maxLength) {
summary = message.substring(0, maxLength);
}
final data = LogData(
name,
message,
e.timestamp,
summary: summary,
isError: isError,
isolateRef: e.isolateRef,
);
if (message == '\n') {
loggingController.log(data);
} else {
_setBuffer(data);
}
}
bool _handleBufferedMessage(String message, Event e) {
if (_buffer case final currentBuffer?) {
_timer?.cancel();
if (message == '\n') {
loggingController.log(
LogData(
currentBuffer.kind,
currentBuffer.details! + message,
currentBuffer.timestamp,
summary: currentBuffer.summary! + message,
isError: currentBuffer.isError,
isolateRef: e.isolateRef,
),
);
_buffer = null;
return true;
}
// If the buffered message ends with a newline, the next message is a
// continuation of the same print statement (e.g. debugPrint('line1\nline2')
// is sent by the VM as two events: 'line1\n' and 'line2'). Combine them
// into a single log entry.
// See: https://github.com/flutter/devtools/issues/9557
if (currentBuffer.details!.endsWith('\n')) {
_setBuffer(
LogData(
currentBuffer.kind,
currentBuffer.details! + message,
currentBuffer.timestamp,
summary: currentBuffer.summary,
isError: currentBuffer.isError,
isolateRef: e.isolateRef,
),
);
return true;
}
loggingController.log(currentBuffer);
_buffer = null;
}
return false;
}
void _setBuffer(LogData data) {
_buffer = data;
_timer?.cancel();
_timer = Timer(const Duration(milliseconds: 1), () {
if (_buffer case final currentBuffer?) {
loggingController.log(currentBuffer);
_buffer = null;
}
});
}
@visibleForTesting
LogData? get buffer => _buffer;
@visibleForTesting
Timer? get timer => _timer;
}
bool _isNotNull(InstanceRef? serviceRef) {
return serviceRef != null && serviceRef.kind != 'Null';
}
String? _valueAsString(InstanceRef? ref) {
if (ref == null) {
return null;
}
if (ref.valueAsString == null) {
return ref.valueAsString;
}
return ref.valueAsStringIsTruncated == true
? '${ref.valueAsString}...'
: ref.valueAsString;
}
/// A log data object that includes optional summary information about whether
/// the log entry represents an error entry, the log entry kind, and more
/// detailed data for the entry.
///
/// The details can optionally be loaded lazily on first use. If this is the
/// case, this log entry will have a non-null `detailsComputer` field. After the
/// data is calculated, the log entry will be modified to contain the calculated
/// `details` data.
class LogData with SearchableDataMixin {
LogData(
this.kind,
this._details,
this.timestamp, {
this.summary,
int? level,
this.isError = false,
this.detailsComputer,
this.node,
this.isolateRef,
this.zone,
}) : level = level ?? (isError ? Level.SEVERE.value : Level.INFO.value) {
final originalDetails = _details;
// Fetch details immediately on creation.
unawaited(
compute().catchError((Object? error) {
// On error, set the value of details to its original value.
_details = originalDetails;
detailsComputed.safeComplete(true);
error_handling.reportError(
'Error fetching details for $kind log'
'${error != null ? ': $error' : ''}.',
);
}),
);
}
final String kind;
final int level;