-
Notifications
You must be signed in to change notification settings - Fork 412
/
Copy pathprofile-view.js
2145 lines (1980 loc) · 63.1 KB
/
profile-view.js
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
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// @flow
import { oneLine } from 'common-tags';
import { getLastVisibleThreadTabSlug } from 'firefox-profiler/selectors/app';
import {
getCommittedRange,
getCounterSelectors,
getGlobalTracks,
getGlobalTrackAndIndexByPid,
getLocalTracks,
getLocalTrackFromReference,
getGlobalTrackFromReference,
getPreviewSelection,
getActiveTabGlobalTrackFromReference,
getActiveTabResourceTrackFromReference,
getLocalTracksByPid,
getThreads,
getLastNonShiftClick,
} from 'firefox-profiler/selectors/profile';
import {
getThreadSelectors,
getThreadSelectorsFromThreadsKey,
selectedThreadSelectors,
} from 'firefox-profiler/selectors/per-thread';
import {
getAllCommittedRanges,
getImplementationFilter,
getSelectedThreadIndexes,
getSelectedThreadsKey,
getHiddenGlobalTracks,
getGlobalTrackOrder,
getLocalTrackOrder,
getSelectedTab,
getHiddenLocalTracks,
getInvertCallstack,
getHash,
} from 'firefox-profiler/selectors/url-state';
import {
assertExhaustiveCheck,
getFirstItemFromSet,
ensureExists,
} from 'firefox-profiler/utils/flow';
import { sendAnalytics } from 'firefox-profiler/utils/analytics';
import { objectShallowEquals } from 'firefox-profiler/utils/index';
import {
getTrackReferenceFromTid,
getTrackReferenceFromThreadIndex,
} from 'firefox-profiler/profile-logic/tracks';
import type {
PreviewSelection,
ImplementationFilter,
CallTreeSummaryStrategy,
TrackReference,
TimelineType,
DataSource,
ActiveTabTrackReference,
State,
Action,
ThunkAction,
ThreadIndex,
Pid,
IndexIntoSamplesTable,
CallNodePath,
CallNodeInfo,
IndexIntoCallNodeTable,
IndexIntoResourceTable,
TrackIndex,
MarkerIndex,
Transform,
ThreadsKey,
Milliseconds,
Tid,
GlobalTrack,
KeyboardModifiers,
TableViewOptions,
SelectionContext,
BottomBoxInfo,
} from 'firefox-profiler/types';
import {
funcHasDirectRecursiveCall,
funcHasRecursiveCall,
} from '../profile-logic/transforms';
import { changeStoredProfileNameInDb } from 'firefox-profiler/app-logic/uploaded-profiles-db';
import type { TabSlug } from '../app-logic/tabs-handling';
import { intersectSets } from 'firefox-profiler/utils/set';
/**
* This file contains actions that pertain to changing the view on the profile, including
* searching and filtering. Currently the call tree's actions are in this file, but
* should be split apart. These actions should most likely affect every panel.
*/
/**
* Select a call node for a given thread. An optional call node path can be provided
* to expand child nodes beyond the selected call node path.
*
* Note that optionalExpandedToCallNodePath, if specified, must be a descendant call node
* of selectedCallNodePath.
*/
export function changeSelectedCallNode(
threadsKey: ThreadsKey,
selectedCallNodePath: CallNodePath,
context: SelectionContext = { source: 'auto' },
optionalExpandedToCallNodePath?: CallNodePath
): ThunkAction<void> {
return (dispatch, getState) => {
if (optionalExpandedToCallNodePath) {
for (let i = 0; i < selectedCallNodePath.length; i++) {
if (selectedCallNodePath[i] !== optionalExpandedToCallNodePath[i]) {
// This assertion ensures that the selectedCallNode will be correctly expanded.
throw new Error(
oneLine`
The optional expanded call node path provided to the changeSelectedCallNode
must contain the selected call node path.
`
);
}
}
}
const isInverted = getInvertCallstack(getState());
dispatch({
type: 'CHANGE_SELECTED_CALL_NODE',
isInverted,
selectedCallNodePath,
optionalExpandedToCallNodePath,
threadsKey,
context,
});
};
}
/**
* This action is used when the user right clicks on a call node (in panels such
* as the call tree, the flame chart, or the stack chart). It's especially used
* to display the context menu.
*/
export function changeRightClickedCallNode(
threadsKey: ThreadsKey,
callNodePath: CallNodePath | null
) {
return {
type: 'CHANGE_RIGHT_CLICKED_CALL_NODE',
threadsKey,
callNodePath,
};
}
/**
* Given a threadIndex and a sampleIndex, select the call node which carries the
* sample's self time. In the inverted tree, this will be a root node.
*/
export function selectSelfCallNode(
threadsKey: ThreadsKey,
sampleIndex: IndexIntoSamplesTable | null
): ThunkAction<void> {
return (dispatch, getState) => {
const threadSelectors = getThreadSelectorsFromThreadsKey(threadsKey);
const sampleCallNodes =
threadSelectors.getSampleIndexToNonInvertedCallNodeIndexForFilteredThread(
getState()
);
if (
sampleIndex === null ||
sampleIndex < 0 ||
sampleIndex >= sampleCallNodes.length
) {
dispatch(changeSelectedCallNode(threadsKey, []));
return;
}
const nonInvertedSelfCallNode = sampleCallNodes[sampleIndex];
if (nonInvertedSelfCallNode === null) {
dispatch(changeSelectedCallNode(threadsKey, []));
return;
}
const callNodeInfo = threadSelectors.getCallNodeInfo(getState());
// Compute the call path based on the non-inverted call node table.
// We're not calling callNodeInfo.getCallNodePathFromIndex here because we
// only have a non-inverted call node index, which wouldn't be accepted by
// the inverted call node info.
const callNodeTable = callNodeInfo.getNonInvertedCallNodeTable();
const callNodePath = [];
let cni = nonInvertedSelfCallNode;
while (cni !== -1) {
callNodePath.push(callNodeTable.func[cni]);
cni = callNodeTable.prefix[cni];
}
if (callNodeInfo.isInverted()) {
// In the inverted tree, we want to select the inverted tree root node
// with the "self" function, and also expand the path to the non-inverted root.
dispatch(
changeSelectedCallNode(
threadsKey,
callNodePath.slice(0, 1), // Select a root node
{ source: 'auto' },
callNodePath // Expand the full path
)
);
} else {
// In the non-inverted tree, we want to select the self node.
dispatch(changeSelectedCallNode(threadsKey, callNodePath.reverse()));
}
};
}
/**
* This selects a set of thread from thread indexes.
* Please use it in tests only.
*/
export function changeSelectedThreads(
selectedThreadIndexes: Set<ThreadIndex>
): Action {
return {
type: 'CHANGE_SELECTED_THREAD',
selectedThreadIndexes,
};
}
// This structure contains information needed to find the selected track from a
// track reference.
type TrackInformation = {|
type: 'global' | 'local',
// This is the thread index for this specific track reference. This is null if
// this track isn't a thread track.
threadIndex: null | ThreadIndex,
// This is the thread index for the thread related to this track.
relatedThreadIndex: ThreadIndex,
// This is the track index for the global track where this track is located.
globalTrackIndex: TrackIndex,
// This is the PID for the process that this track belongs to.
pid: Pid,
// This is the track index of the local track in its process group. This is
// null for global tracks.
localTrackIndex: null | TrackIndex,
// This is the tab that should be selected from this track. `null` if this
// track doesn't have a prefered tab.
relatedTab: null | TabSlug,
// This is the track reference that was passed to
// getInformationFromTrackReference to generate this structure.
trackReference: TrackReference,
|};
/**
* This function collects some information about a track by requesting
* information in the state. Because of all possible cases this isn't trivial.
* This will return null for tracks that are not selectable.
*/
function getInformationFromTrackReference(
state: State,
trackReference: TrackReference
): null | TrackInformation {
switch (trackReference.type) {
case 'global': {
// Handle the case of global tracks.
const globalTrack = getGlobalTrackFromReference(state, trackReference);
// Go through each type, and determine the selected slug and thread index.
switch (globalTrack.type) {
case 'process': {
const { mainThreadIndex, pid } = globalTrack;
if (mainThreadIndex === null) {
// Do not allow selecting process tracks without a thread index.
return null;
}
return {
type: 'global',
trackReference,
threadIndex: mainThreadIndex,
relatedThreadIndex: mainThreadIndex,
globalTrackIndex: trackReference.trackIndex,
pid,
localTrackIndex: null,
// Move to a relevant thread-based tab when the previous tab was
// the network chart.
relatedTab:
getSelectedTab(state) === 'network-chart'
? getLastVisibleThreadTabSlug(state)
: null,
};
}
case 'screenshots':
case 'visual-progress':
case 'perceptual-visual-progress':
case 'contentful-visual-progress':
// Do not allow selecting these tracks.
return null;
default:
throw assertExhaustiveCheck(
globalTrack,
`Unhandled GlobalTrack type.`
);
}
}
case 'local': {
// Handle the case of local tracks.
const localTrack = getLocalTrackFromReference(state, trackReference);
const { globalTrackIndex } = getGlobalTrackAndIndexByPid(
state,
trackReference.pid
);
const commonLocalProperties = {
type: 'local',
trackReference,
pid: trackReference.pid,
globalTrackIndex,
localTrackIndex: trackReference.trackIndex,
};
// Go through each type, and determine the tab slug and thread index.
switch (localTrack.type) {
case 'thread':
return {
...commonLocalProperties,
threadIndex: localTrack.threadIndex,
relatedThreadIndex: localTrack.threadIndex,
// Move to a relevant thread-based tab when the previous tab was
// the network chart.
relatedTab:
getSelectedTab(state) === 'network-chart'
? getLastVisibleThreadTabSlug(state)
: null,
};
case 'network':
return {
...commonLocalProperties,
threadIndex: null,
relatedThreadIndex: localTrack.threadIndex,
relatedTab: 'network-chart',
};
case 'marker':
case 'ipc':
return {
...commonLocalProperties,
threadIndex: null,
relatedThreadIndex: localTrack.threadIndex,
relatedTab: 'marker-chart',
};
case 'event-delay':
return {
...commonLocalProperties,
threadIndex: null,
relatedThreadIndex: localTrack.threadIndex,
relatedTab: null,
};
case 'memory':
case 'bandwidth':
case 'process-cpu':
case 'power': {
const counterSelectors = getCounterSelectors(localTrack.counterIndex);
const counter = counterSelectors.getCounter(state);
return {
...commonLocalProperties,
threadIndex: null,
relatedThreadIndex: counter.mainThreadIndex,
relatedTab: null,
};
}
default:
throw assertExhaustiveCheck(localTrack, `Unhandled LocalTrack type.`);
}
}
default:
throw assertExhaustiveCheck(
trackReference,
'Unhandled TrackReference type'
);
}
}
/**
* This Redux action selects one track only from its reference as well as the
* related tab.
*/
function setOneTrackSelection(
trackInformation: TrackInformation,
selectedTab: TabSlug
): Action {
const selectedThreadIndexes = new Set([trackInformation.relatedThreadIndex]);
return {
type: 'SELECT_TRACK',
selectedThreadIndexes,
selectedTab,
lastNonShiftClickInformation: {
clickedTrack: trackInformation.trackReference,
selection: selectedThreadIndexes,
},
};
}
/*
* This thunk action changes the current selection, by either selecting this
* additional track, or unselecting if it's already selected.
*/
function toggleOneTrack(
trackInformation: TrackInformation,
selectedTab: TabSlug
): ThunkAction<void> {
return (dispatch, getState) => {
const selectedThreadIndexes = new Set(getSelectedThreadIndexes(getState()));
// Toggle the selection.
if (selectedThreadIndexes.has(trackInformation.relatedThreadIndex)) {
selectedThreadIndexes.delete(trackInformation.relatedThreadIndex);
if (selectedThreadIndexes.size === 0) {
// Always keep at least one thread selected. Bail out.
return;
}
} else {
selectedThreadIndexes.add(trackInformation.relatedThreadIndex);
}
dispatch({
type: 'SELECT_TRACK',
selectedThreadIndexes,
selectedTab,
lastNonShiftClickInformation: {
clickedTrack: trackInformation.trackReference,
selection: selectedThreadIndexes,
},
});
};
}
/**
* This compares the relative order of two tracks.
* Returns:
* < 0 => if trackA is above track B
* > 0 => if trackB is above track A
* 0 => if trackA and trackB represent the same track
*/
function compareTrackOrder(
state,
trackA: TrackInformation,
trackB: TrackInformation
): number {
if (trackA.globalTrackIndex === trackB.globalTrackIndex) {
// Same global track!
// Then we need to look at their local order
// If one is a global track, its localTrackIndex is null, and therefore the
// indexOf operation will return -1, which is exactly what we want.
const localTrackOrder = getLocalTrackOrder(state, trackA.pid);
const orderA = localTrackOrder.indexOf(trackA.localTrackIndex);
const orderB = localTrackOrder.indexOf(trackB.localTrackIndex);
return orderA - orderB;
}
// Different global tracks, let's check the global track order
const globalTrackOrder = getGlobalTrackOrder(state);
const orderA = globalTrackOrder.indexOf(trackA.globalTrackIndex);
const orderB = globalTrackOrder.indexOf(trackB.globalTrackIndex);
return orderA - orderB;
}
/**
* This computes the set of threads that's between two tracks (including
* themselves). This skips over hidden tracks.
*/
function findThreadsBetweenTracks(
state: State,
fromTrack: TrackInformation,
toTrack: TrackInformation
): Array<ThreadIndex> {
const globalTracks = getGlobalTracks(state);
const globalTrackOrder = getGlobalTrackOrder(state);
const hiddenGlobalTracks = getHiddenGlobalTracks(state);
const foundThreadIndexes = [];
// Check the relative order of from and to, and possibly invert them
if (compareTrackOrder(state, fromTrack, toTrack) > 0) {
[toTrack, fromTrack] = [fromTrack, toTrack];
}
// Where are they located in the track order?
const fromGlobalOrder = globalTrackOrder.indexOf(fromTrack.globalTrackIndex);
const toGlobalOrder = globalTrackOrder.indexOf(toTrack.globalTrackIndex);
for (
let globalOrderIndex = fromGlobalOrder;
globalOrderIndex <= toGlobalOrder;
globalOrderIndex++
) {
const globalTrackIndex = globalTrackOrder[globalOrderIndex];
if (hiddenGlobalTracks.has(globalTrackIndex)) {
continue;
}
const globalTrack = globalTracks[globalTrackIndex];
if (globalTrack.type !== 'process') {
continue;
}
const localTrackOrder = getLocalTrackOrder(state, globalTrack.pid);
const hiddenLocalTracks = getHiddenLocalTracks(state, globalTrack.pid);
const localTracks = getLocalTracks(state, globalTrack.pid);
let shouldAddStartGlobalTrack = true;
let localTrackOrderStart = 0;
let localTrackOrderEnd = localTrackOrder.length - 1;
if (globalOrderIndex === fromGlobalOrder) {
// This is the first process group, this means we possibly shouldn't add
// all tracks.
if (fromTrack.type === 'local') {
shouldAddStartGlobalTrack = false;
localTrackOrderStart = localTrackOrder.indexOf(
fromTrack.localTrackIndex
);
}
}
if (globalOrderIndex === toGlobalOrder) {
// This is the last process group, this means we possibly shouldn't add
// all tracks.
if (toTrack.type === 'global') {
// No local track should be added
localTrackOrderEnd = -1;
} else {
localTrackOrderEnd = localTrackOrder.indexOf(toTrack.localTrackIndex);
}
}
// Add the global track if it's not a virtual track and not out of the range.
if (shouldAddStartGlobalTrack && globalTrack.mainThreadIndex !== null) {
foundThreadIndexes.push(globalTrack.mainThreadIndex);
}
// Then add the local tracks.
for (
let localTrackOrderIndex = localTrackOrderStart;
localTrackOrderIndex <= localTrackOrderEnd;
localTrackOrderIndex++
) {
const localTrackIndex = localTrackOrder[localTrackOrderIndex];
if (hiddenLocalTracks.has(localTrackIndex)) {
continue;
}
const localTrack = localTracks[localTrackIndex];
if (localTrack.type !== 'thread') {
continue;
}
foundThreadIndexes.push(localTrack.threadIndex);
}
}
// Also add the related threads, just like the user clicked them without using
// the shift modifier.
foundThreadIndexes.push(fromTrack.relatedThreadIndex);
foundThreadIndexes.push(toTrack.relatedThreadIndex);
return foundThreadIndexes;
}
/**
* This thunk action selects a range of tracks that are between 2 clicked
* tracks.
*/
function selectRangeOfTracks(
clickedTrackInformation: TrackInformation,
selectedTab: TabSlug
): ThunkAction<void> {
return (dispatch, getState) => {
const lastNonShiftClickInformation = getLastNonShiftClick(getState());
let lastClickedTrack =
lastNonShiftClickInformation && lastNonShiftClickInformation.clickedTrack;
if (!lastClickedTrack) {
const selectedThreadIndexes = getSelectedThreadIndexes(getState());
const threadIndex = getFirstItemFromSet(selectedThreadIndexes);
if (threadIndex !== undefined) {
lastClickedTrack = getTrackReferenceFromThreadIndex(
threadIndex,
getGlobalTracks(getState()),
getLocalTracksByPid(getState())
);
}
}
if (lastClickedTrack) {
const lastClickedTrackInformation = getInformationFromTrackReference(
getState(),
lastClickedTrack
);
if (lastClickedTrackInformation) {
const foundThreadIndexes = findThreadsBetweenTracks(
getState(),
lastClickedTrackInformation,
clickedTrackInformation
);
const newSelectedThreadIndexes = new Set([
...foundThreadIndexes,
...(lastNonShiftClickInformation
? lastNonShiftClickInformation.selection
: []),
]);
dispatch({
type: 'SELECT_TRACK',
selectedThreadIndexes: newSelectedThreadIndexes,
selectedTab,
// In this case, we keep the old information.
// This allows the user to do shift+click again to cancel the last
// shift+click and do it again.
lastNonShiftClickInformation,
});
return;
}
}
// If we couldn't select a range for some reason, then select just the
// clicked track. Most likely the user just loaded a profile with several
// selected tracks, and tried to use shift-click immediately.
dispatch(setOneTrackSelection(clickedTrackInformation, selectedTab));
};
}
/**
* This selects a track from its reference.
* This will ultimately select the thread that this track belongs to, using its
* thread index, and may also change the selected tab if it makes sense for this
* track.
*/
export function selectTrackWithModifiers(
trackReference: TrackReference,
modifiers: $Shape<KeyboardModifiers> = {}
): ThunkAction<void> {
return (dispatch, getState) => {
// These get assigned based on the track type.
const clickedTrackInformation = getInformationFromTrackReference(
getState(),
trackReference
);
if (!clickedTrackInformation) {
// This track isn't selectable.
return;
}
let selectedTab =
clickedTrackInformation.relatedTab ?? getSelectedTab(getState());
const visibleTabs = getThreadSelectors(
clickedTrackInformation.relatedThreadIndex
).getUsefulTabs(getState());
if (!visibleTabs.includes(selectedTab)) {
// If the user switches to another track that doesn't have the current
// selectedTab then switch to the first tab.
selectedTab = visibleTabs[0];
}
if (modifiers.shift) {
dispatch(selectRangeOfTracks(clickedTrackInformation, selectedTab));
} else if (modifiers.ctrlOrMeta) {
dispatch(toggleOneTrack(clickedTrackInformation, selectedTab));
} else {
dispatch(setOneTrackSelection(clickedTrackInformation, selectedTab));
}
};
}
/**
* Selects the track from the provided tid.
* Since it can be either a global track or local track, we check its type first
* and select it depending on that. Also, we check if the track is visible or
* not, and make it visible if it's hidden.
*/
export function selectTrackFromTid(tid: Tid): ThunkAction<void> {
return (dispatch, getState) => {
const globalTracks = getGlobalTracks(getState());
const localTracksByPid = getLocalTracksByPid(getState());
const threads = getThreads(getState());
const trackReference = getTrackReferenceFromTid(
tid,
globalTracks,
localTracksByPid,
threads
);
if (trackReference === null) {
// Return early if we failed to find the thread from tid.
console.warn(`Failed to find a track with tid: ${tid}`);
return;
}
// Make the track visible just in case if it's hidden.
// It's safe to call them even if they are already visible.
switch (trackReference.type) {
case 'global':
dispatch(showGlobalTrack(trackReference.trackIndex));
break;
case 'local': {
const { globalTrackIndex } = getGlobalTrackAndIndexByPid(
getState(),
trackReference.pid
);
dispatch(showGlobalTrack(globalTrackIndex));
dispatch(showLocalTrack(trackReference.pid, trackReference.trackIndex));
break;
}
default:
throw assertExhaustiveCheck(trackReference.type);
}
dispatch(selectTrackWithModifiers(trackReference));
};
}
/**
* This selects an active tab track from its reference.
* This will ultimately select the thread that this track belongs to, using its
* thread index, and may also change the selected tab if it makes sense for this
* track.
*/
export function selectActiveTabTrack(
trackReference: ActiveTabTrackReference
): ThunkAction<void> {
return (dispatch, getState) => {
const currentlySelectedTab = getSelectedTab(getState());
const currentlySelectedThreadIndex = getSelectedThreadIndexes(getState());
// These get assigned based on the track type.
let selectedThreadIndexes;
let selectedTab = currentlySelectedTab;
switch (trackReference.type) {
case 'global': {
// Handle the case of global tracks.
const globalTrack = getActiveTabGlobalTrackFromReference(
getState(),
trackReference
);
// Go through each type, and determine the selected slug and thread index.
switch (globalTrack.type) {
case 'tab': {
selectedThreadIndexes = new Set([...globalTrack.threadIndexes]);
// Ensure a relevant thread-based tab is used.
if (selectedTab === 'network-chart') {
selectedTab = getLastVisibleThreadTabSlug(getState());
}
break;
}
case 'screenshots':
// Do not allow selecting this track.
return;
default:
throw assertExhaustiveCheck(
globalTrack,
`Unhandled ActiveTabGlobalTrack type.`
);
}
break;
}
case 'resource': {
// Handle the case of resource tracks.
const resourceTrack = getActiveTabResourceTrackFromReference(
getState(),
trackReference
);
// Go through each type, and determine the selected slug and thread index.
switch (resourceTrack.type) {
case 'sub-frame':
case 'thread': {
selectedThreadIndexes = new Set([resourceTrack.threadIndex]);
// Ensure a relevant thread-based tab is used.
if (selectedTab === 'network-chart') {
selectedTab = getLastVisibleThreadTabSlug(getState());
}
break;
}
default:
throw assertExhaustiveCheck(
resourceTrack,
`Unhandled ActiveTabResourceTrack type.`
);
}
break;
}
default:
throw assertExhaustiveCheck(
trackReference,
'Unhandled TrackReference type'
);
}
const visibleTabs = getThreadSelectors(selectedThreadIndexes).getUsefulTabs(
getState()
);
if (!visibleTabs.includes(selectedTab)) {
// If the user switches to another track that doesn't have the current
// selectedTab then switch to the first tab.
selectedTab = visibleTabs[0];
}
if (
currentlySelectedTab === selectedTab &&
currentlySelectedThreadIndex === selectedThreadIndexes
) {
return;
}
dispatch({
type: 'SELECT_TRACK',
selectedThreadIndexes,
selectedTab,
lastNonShiftClickInformation: null,
});
};
}
export function focusCallTree(): Action {
return {
type: 'FOCUS_CALL_TREE',
};
}
/**
* This action is used when the user right clicks a track, and is especially
* used to display its context menu.
*/
export function changeRightClickedTrack(
trackReference: TrackReference | null
): Action {
return {
type: 'CHANGE_RIGHT_CLICKED_TRACK',
trackReference,
};
}
export function setContextMenuVisibility(isVisible: boolean): Action {
return {
type: 'SET_CONTEXT_MENU_VISIBILITY',
isVisible,
};
}
/**
* This action is used to change the displayed order of the global tracks.
*/
export function changeGlobalTrackOrder(globalTrackOrder: TrackIndex[]): Action {
sendAnalytics({
hitType: 'event',
eventCategory: 'timeline',
eventAction: 'change global track order',
});
return {
type: 'CHANGE_GLOBAL_TRACK_ORDER',
globalTrackOrder,
};
}
/**
* This action is used to hide a global track.
* During this process we select a different thread if the hidden track is the
* currently selected thread. We also prevent from hiding the last displayed
* thread.
*/
export function hideGlobalTrack(trackIndex: TrackIndex): ThunkAction<void> {
return (dispatch, getState) => {
const hiddenGlobalTracks = getHiddenGlobalTracks(getState());
if (hiddenGlobalTracks.has(trackIndex)) {
// This track is already hidden, don't do anything.
return;
}
const globalTracks = getGlobalTracks(getState());
if (globalTracks.length === hiddenGlobalTracks.size + 1) {
// Bail out if attempting to hide the last global track.
return;
}
const globalTrackToHide = globalTracks[trackIndex];
const newSelectedThreadIndexes: Set<ThreadIndex> = new Set(
getSelectedThreadIndexes(getState())
);
// Find another selectedThreadIndex if the current selected thread is hidden
// with this operation.
_removeSelectedThreadIndexesForGlobalTrack(
getState,
newSelectedThreadIndexes,
globalTrackToHide,
trackIndex
);
if (newSelectedThreadIndexes.size === 0) {
// Hiding this process would make it so that there is no selected thread.
// Bail out.
return;
}
sendAnalytics({
hitType: 'event',
eventCategory: 'timeline',
eventAction: 'hide global track',
});
dispatch({
type: 'HIDE_GLOBAL_TRACK',
trackIndex,
pid: globalTrackToHide.type === 'process' ? globalTrackToHide.pid : null,
selectedThreadIndexes: newSelectedThreadIndexes,
});
};
}
/**
* Find another selectedThreadIndex if the current selected thread is hidden
* with this operation.
*/
function _removeSelectedThreadIndexesForGlobalTrack(
getState: () => State,
selectedThreadIndexes: Set<ThreadIndex>,
globalTrackToHide: GlobalTrack,
trackIndex: TrackIndex
) {
if (globalTrackToHide.type === 'process') {
// This is a process global track, this operation could potentially hide
// the selectedThreadIndex.
if (globalTrackToHide.mainThreadIndex !== null) {
selectedThreadIndexes.delete(globalTrackToHide.mainThreadIndex);
}
// Check in the local tracks for the selectedThreadIndex
if (selectedThreadIndexes.size !== 0) {
for (const localTrack of getLocalTracks(
getState(),
globalTrackToHide.pid
)) {
if (localTrack.type === 'thread') {
selectedThreadIndexes.delete(localTrack.threadIndex);
}
}
}
if (selectedThreadIndexes.size === 0) {
const threadIndex = _findOtherVisibleThread(
getState,
new Set([trackIndex])
);
if (threadIndex === null) {
// Could not find another thread index, bail out.
return;
}
selectedThreadIndexes.add(threadIndex);
}
}
}
/**
* This action shows all tracks
*/
export function showAllTracks(): ThunkAction<void> {
return (dispatch) => {
sendAnalytics({
hitType: 'event',
eventCategory: 'timeline',
eventAction: 'show all tracks',
});
dispatch({
type: 'SHOW_ALL_TRACKS',
});
};
}
/**
* This action makes the tracks that are provided visible.
*/
export function showProvidedTracks(
globalTracksToShow: Set<TrackIndex>,
localTracksByPidToShow: Map<Pid, Set<TrackIndex>>
): ThunkAction<void> {
return (dispatch, getState) => {
sendAnalytics({
hitType: 'event',
eventCategory: 'timeline',
eventAction: 'show provided tracks',
});
// We got the global and local tracks, but if a local track's global track
// is not visible, we should still make it visible so the local one can be
// visible too. Let's iterate over the global tracks and include them if
// their children are going to be made visible.
const globalTracks = getGlobalTracks(getState());
for (const [globalTrackIndex, globalTrack] of globalTracks.entries()) {
if (globalTrack.pid && localTracksByPidToShow.has(globalTrack.pid)) {
globalTracksToShow.add(globalTrackIndex);
}
}
dispatch({
type: 'SHOW_PROVIDED_TRACKS',
globalTracksToShow,
localTracksByPidToShow,
});
};
}