1fb726d48Sopenharmony_ci/*
2fb726d48Sopenharmony_ci * Copyright (C) 2022 Huawei Device Co., Ltd.
3fb726d48Sopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License");
4fb726d48Sopenharmony_ci * you may not use this file except in compliance with the License.
5fb726d48Sopenharmony_ci * You may obtain a copy of the License at
6fb726d48Sopenharmony_ci *
7fb726d48Sopenharmony_ci *     http://www.apache.org/licenses/LICENSE-2.0
8fb726d48Sopenharmony_ci *
9fb726d48Sopenharmony_ci * Unless required by applicable law or agreed to in writing, software
10fb726d48Sopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS,
11fb726d48Sopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12fb726d48Sopenharmony_ci * See the License for the specific language governing permissions and
13fb726d48Sopenharmony_ci * limitations under the License.
14fb726d48Sopenharmony_ci */
15fb726d48Sopenharmony_ci
16fb726d48Sopenharmony_ciexport class PerfBottomUpStruct {
17fb726d48Sopenharmony_ci  parentNode: PerfBottomUpStruct | undefined;
18fb726d48Sopenharmony_ci  symbolName: string;
19fb726d48Sopenharmony_ci  selfTime: number = 0;
20fb726d48Sopenharmony_ci  selfTimeStr?: string;
21fb726d48Sopenharmony_ci  selfTimePercent: string = '';
22fb726d48Sopenharmony_ci  totalTime: number = 0;
23fb726d48Sopenharmony_ci  totalTimeStr?: string;
24fb726d48Sopenharmony_ci  totalTimePercent: string = '';
25fb726d48Sopenharmony_ci  eventCount: number = 0;
26fb726d48Sopenharmony_ci  eventPercent: string = '';
27fb726d48Sopenharmony_ci  children: Array<PerfBottomUpStruct>;
28fb726d48Sopenharmony_ci  frameChildren?: Array<PerfBottomUpStruct>;
29fb726d48Sopenharmony_ci  isSearch: boolean = false;
30fb726d48Sopenharmony_ci  isSelected: boolean = false;
31fb726d48Sopenharmony_ci  tsArray: Array<number> = [];
32fb726d48Sopenharmony_ci  constructor(symbolName: string) {
33fb726d48Sopenharmony_ci    this.symbolName = symbolName;
34fb726d48Sopenharmony_ci    this.children = [];
35fb726d48Sopenharmony_ci  }
36fb726d48Sopenharmony_ci
37fb726d48Sopenharmony_ci  addChildren(child: PerfBottomUpStruct): void {
38fb726d48Sopenharmony_ci    child.parentNode = this;
39fb726d48Sopenharmony_ci    this.children.push(child);
40fb726d48Sopenharmony_ci  }
41fb726d48Sopenharmony_ci
42fb726d48Sopenharmony_ci  notifyParentUpdateSelfTime(): void {
43fb726d48Sopenharmony_ci    this.parentNode?.calculateSelfTime();
44fb726d48Sopenharmony_ci  }
45fb726d48Sopenharmony_ci
46fb726d48Sopenharmony_ci  calculateSelfTime(): void {
47fb726d48Sopenharmony_ci    const sum = this.children.reduce((total, obj) => total + obj.totalTime, 0);
48fb726d48Sopenharmony_ci    this.selfTime = this.totalTime - sum;
49fb726d48Sopenharmony_ci  }
50fb726d48Sopenharmony_ci}
51