blob: c1fe8b4a90e9798799b3f80ef579a9df546c667d [file] [log] [blame]
Hector Dearman916c7612018-07-09 15:42:22 +01001// Copyright (C) 2018 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Deepanjan Roy75b46a92018-07-24 09:11:29 -040015/**
16 * A plain js object, holding objects of type |Class| keyed by string id.
17 * We use this instead of using |Map| object since it is simpler and faster to
18 * serialize for use in postMessage.
19 */
20export interface ObjectById<Class extends{id: string}> { [id: string]: Class; }
21
Deepanjan Roy75b46a92018-07-24 09:11:29 -040022export interface TrackState {
23 id: string;
Hector Dearmana38bd902018-08-02 10:38:41 +010024 engineId: string;
Primiano Tucci9b5f13e2018-08-10 00:36:19 +010025 maxDepth: number;
Hector Dearmanc62a5e32018-07-27 12:54:44 +010026 kind: string;
Hector Dearmana38bd902018-08-02 10:38:41 +010027 name: string;
Primiano Tuccidc3dbcb2018-08-10 00:34:33 +010028 // TODO: These need to be nested into track kind spesific state.
29 // cpu slice state:
Hector Dearmana38bd902018-08-02 10:38:41 +010030 cpu: number;
Primiano Tuccidc3dbcb2018-08-10 00:34:33 +010031 // chrome slice state:
32 upid?: number;
33 utid?: number;
Primiano Tuccie36ca632018-08-21 14:32:23 +020034 dataReq?: TrackDataRequest;
35}
36
37export interface TrackDataRequest {
38 start: number;
39 end: number;
40 resolution: number;
Hector Dearmana38bd902018-08-02 10:38:41 +010041}
42
43export interface EngineConfig {
44 id: string;
Primiano Tucci8afc06d2018-08-06 19:11:42 +010045 ready: boolean;
Hector Dearmanf9f2db02018-08-03 13:09:32 +010046 source: string|File;
Hector Dearmana38bd902018-08-02 10:38:41 +010047}
48
49export interface QueryConfig {
50 id: string;
51 engineId: string;
52 query: string;
53}
54
Primiano Tuccie36ca632018-08-21 14:32:23 +020055export interface PermalinkConfig {
56 requestId?: string; // Set by the frontend to request a new permalink.
57 hash?: string; // Set by the controller when the link has been created.
58}
Hector Dearman03f962c2018-08-09 17:00:32 +010059
Primiano Tuccif30cd9c2018-08-13 01:53:26 +020060export interface TraceTime {
61 startSec: number;
62 endSec: number;
Primiano Tuccie36ca632018-08-21 14:32:23 +020063 lastUpdate: number; // Epoch in seconds (Date.now() / 1000).
64}
65
66export interface Status {
67 msg: string;
68 timestamp: number; // Epoch in seconds (Date.now() / 1000).
Primiano Tuccif30cd9c2018-08-13 01:53:26 +020069}
70
Hector Dearmana38bd902018-08-02 10:38:41 +010071export interface State {
72 route: string|null;
73 nextId: number;
74
75 /**
76 * Open traces.
77 */
78 engines: ObjectById<EngineConfig>;
Primiano Tuccif30cd9c2018-08-13 01:53:26 +020079 traceTime: TraceTime;
Primiano Tuccie36ca632018-08-21 14:32:23 +020080 visibleTraceTime: TraceTime;
Hector Dearmana38bd902018-08-02 10:38:41 +010081 tracks: ObjectById<TrackState>;
Hector Dearmana926f4e2018-09-17 13:33:30 +010082 scrollingTracks: string[];
83 pinnedTracks: string[];
Hector Dearmana38bd902018-08-02 10:38:41 +010084 queries: ObjectById<QueryConfig>;
Primiano Tuccie36ca632018-08-21 14:32:23 +020085 permalink: PermalinkConfig;
86 status: Status;
Deepanjan Roy75b46a92018-07-24 09:11:29 -040087}
Hector Dearman916c7612018-07-09 15:42:22 +010088
89export function createEmptyState(): State {
90 return {
Hector Dearmana38bd902018-08-02 10:38:41 +010091 route: null,
92 nextId: 0,
Primiano Tuccif30cd9c2018-08-13 01:53:26 +020093 engines: {},
Primiano Tuccie36ca632018-08-21 14:32:23 +020094 traceTime: {startSec: 0, endSec: 10, lastUpdate: 0},
95 visibleTraceTime: {startSec: 0, endSec: 10, lastUpdate: 0},
Deepanjan Roy75b46a92018-07-24 09:11:29 -040096 tracks: {},
Hector Dearmana926f4e2018-09-17 13:33:30 +010097 pinnedTracks: [],
98 scrollingTracks: [],
Hector Dearmana38bd902018-08-02 10:38:41 +010099 queries: {},
Primiano Tuccie36ca632018-08-21 14:32:23 +0200100 permalink: {},
101 status: {msg: '', timestamp: 0},
Hector Dearman916c7612018-07-09 15:42:22 +0100102 };
103}