• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (C) 2022 Huawei Device Co., Ltd.
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 */
15
16import { ColorUtils } from '../../component/trace/base/ColorUtils';
17import {
18  BaseStruct,
19  drawLines,
20  drawLoading,
21  Render,
22  RequestMessage,
23  mem,
24  drawFlagLine,
25  drawSelection,
26  isFrameContainPoint,
27  drawLoadingFrame,
28} from './ProcedureWorkerCommon';
29import { TraceRow } from '../../component/trace/base/TraceRow';
30
31export class VirtualMemoryRender extends Render {
32  renderMainThread(
33    req: {
34      context: CanvasRenderingContext2D;
35      useCache: boolean;
36      type: string;
37    },
38    row: TraceRow<VirtualMemoryStruct>
39  ) {
40    mem(
41      row.dataList,
42      row.dataListCache,
43      TraceRow.range?.startNS || 0,
44      TraceRow.range?.endNS || 0,
45      TraceRow.range?.totalNS || 0,
46      row.frame,
47      req.useCache || (TraceRow.range?.refresh ?? false)
48    );
49    drawLoadingFrame(req.context, row.dataListCache, row);
50    req.context.beginPath();
51    let find = false;
52    for (let re of row.dataListCache) {
53      if (row.isHover && re.frame && isFrameContainPoint(re.frame, row.hoverX, row.hoverY)) {
54        VirtualMemoryStruct.hoverStruct = re;
55        find = true;
56      }
57      VirtualMemoryStruct.draw(req.context, re);
58    }
59    if (!find && row.isHover) VirtualMemoryStruct.hoverStruct = undefined;
60    req.context.closePath();
61  }
62}
63
64export class VirtualMemoryStruct extends BaseStruct {
65  static hoverStruct: VirtualMemoryStruct | undefined;
66  filterID: number | undefined;
67  value: number | undefined;
68  startTime: number | undefined;
69  duration: number | undefined;
70  maxValue: number | undefined;
71  delta: number | undefined;
72
73  static draw(virtualMemoryContext: CanvasRenderingContext2D, data: VirtualMemoryStruct) {
74    if (data.frame) {
75      let width = data.frame.width || 0;
76      virtualMemoryContext.fillStyle = ColorUtils.colorForTid(data.maxValue || 0);
77      virtualMemoryContext.strokeStyle = ColorUtils.colorForTid(data.maxValue || 0);
78      if (data === VirtualMemoryStruct.hoverStruct) {
79        virtualMemoryContext.lineWidth = 1;
80        virtualMemoryContext.globalAlpha = 0.6;
81        let virtualMemoryDrawHeight: number = Math.floor(
82          ((data.value || 0) * (data.frame.height || 0) * 1.0) / (data.maxValue || 1)
83        );
84        virtualMemoryContext.fillRect(
85          data.frame.x,
86          data.frame.y + data.frame.height - virtualMemoryDrawHeight,
87          width,
88          virtualMemoryDrawHeight
89        );
90        virtualMemoryContext.beginPath();
91        virtualMemoryContext.arc(
92          data.frame.x,
93          data.frame.y + data.frame.height - virtualMemoryDrawHeight,
94          3,
95          0,
96          2 * Math.PI,
97          true
98        );
99        virtualMemoryContext.fill();
100        virtualMemoryContext.globalAlpha = 1.0;
101        virtualMemoryContext.stroke();
102        virtualMemoryContext.beginPath();
103        virtualMemoryContext.moveTo(data.frame.x + 3, data.frame.y + data.frame.height - virtualMemoryDrawHeight);
104        virtualMemoryContext.lineWidth = 3;
105        virtualMemoryContext.lineTo(data.frame.x + width, data.frame.y + data.frame.height - virtualMemoryDrawHeight);
106        virtualMemoryContext.stroke();
107      } else {
108        virtualMemoryContext.globalAlpha = 0.6;
109        virtualMemoryContext.lineWidth = 1;
110        let drawHeight: number = ((data.value || 0) * (data.frame.height || 0) * 1.0) / (data.maxValue || 1);
111        virtualMemoryContext.fillRect(data.frame.x, data.frame.y + data.frame.height - drawHeight, width, drawHeight);
112      }
113    }
114    virtualMemoryContext.globalAlpha = 1.0;
115    virtualMemoryContext.lineWidth = 1;
116  }
117}
118