summaryrefslogtreecommitdiff
path: root/src/plugins/qmlprofiler/qml/TimeMarks.qml
blob: d3e9c6f66cc1db7a6b6d074e69c02b98a1eb3073 (plain)
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
/****************************************************************************
**
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.  For licensing terms and
** conditions see http://qt.digia.com/licensing.  For further information
** use the contact form at http://qt.digia.com/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file.  Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Digia gives you certain additional
** rights.  These rights are described in the Digia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
****************************************************************************/

import QtQuick 2.1
import Monitor 1.0

Canvas {
    id: timeMarks
    objectName: "TimeMarks"
    contextType: "2d"

    readonly property int scaleMinHeight: 60
    readonly property int scaleStepping: 30
    readonly property string units: " kMGT"

    property real startTime
    property real endTime
    property real timePerPixel

    Connections {
        target: labels
        onHeightChanged: requestPaint()
    }

    onYChanged: requestPaint()

    onPaint: {
        if (context === null)
            return; // canvas isn't ready

        context.reset();
        drawBackgroundBars( context, region );

        var totalTime = endTime - startTime;
        var spacing = width / totalTime;

        var initialBlockLength = 120;
        var timePerBlock = Math.pow(2, Math.floor( Math.log( totalTime / width * initialBlockLength ) / Math.LN2 ) );
        var pixelsPerBlock = timePerBlock * spacing;
        var pixelsPerSection = pixelsPerBlock / 5;
        var blockCount = width / pixelsPerBlock;

        var realStartTime = Math.floor(startTime/timePerBlock) * timePerBlock;
        var realStartPos = (startTime-realStartTime) * spacing;

        timePerPixel = timePerBlock/pixelsPerBlock;

        var lineStart = y < 0 ? -y : 0;
        var lineEnd = Math.min(height, labels.height - y);

        for (var ii = 0; ii < blockCount+1; ii++) {
            var x = Math.floor(ii*pixelsPerBlock - realStartPos);
            context.strokeStyle = "#B0B0B0";
            context.beginPath();
            context.moveTo(x, lineStart);
            context.lineTo(x, lineEnd);
            context.stroke();

            context.strokeStyle = "#CCCCCC";
            for (var jj=1; jj < 5; jj++) {
                var xx = Math.floor(ii*pixelsPerBlock + jj*pixelsPerSection - realStartPos);
                context.beginPath();
                context.moveTo(xx, lineStart);
                context.lineTo(xx, lineEnd);
                context.stroke();
            }
        }
    }

    function updateMarks(start, end) {
        if (startTime !== start || endTime !== end) {
            startTime = start;
            endTime = end;
            requestPaint();
        }
    }

    function prettyPrintScale(amount) {
        var unitOffset = 0;
        for (unitOffset = 0; amount > (1 << ((unitOffset + 1) * 10)); ++unitOffset) {}
        var result = (amount >> (unitOffset * 10));
        if (result < 100) {
            var comma = Math.round(((amount >> ((unitOffset - 1) * 10)) & 1023) *
                                   (result < 10 ? 100 : 10) / 1024);
            if (comma < 10 && result < 10)
                return result + ".0" + comma + units[unitOffset];
            else
                return result + "." + comma + units[unitOffset];
        } else {
            return result + units[unitOffset];
        }
    }

    function drawBackgroundBars( context, region ) {
        var colorIndex = true;

        context.font = "8px sans-serif";

        // separators
        var cumulatedHeight = y < 0 ? -y : 0;
        for (var modelIndex = 0; modelIndex < qmlProfilerModelProxy.modelCount(); ++modelIndex) {
            var modelHeight = qmlProfilerModelProxy.height(modelIndex);
            if (cumulatedHeight + modelHeight < y) {
                cumulatedHeight += modelHeight;
                if (qmlProfilerModelProxy.rowCount(modelIndex) % 2 !== 0)
                    colorIndex = !colorIndex;
                continue;
            }

            for (var row = 0; row < qmlProfilerModelProxy.rowCount(modelIndex); ++row) {
                // row background
                var rowHeight = qmlProfilerModelProxy.rowHeight(modelIndex, row)
                cumulatedHeight += rowHeight;
                colorIndex = !colorIndex;
                if (cumulatedHeight < y - rowHeight)
                    continue;
                context.strokeStyle = context.fillStyle = colorIndex ? "#f0f0f0" : "white";
                context.fillRect(0, cumulatedHeight - rowHeight - y, width, rowHeight);

                if (rowHeight >= scaleMinHeight) {
                    var minVal = qmlProfilerModelProxy.rowMinValue(modelIndex, row);
                    var maxVal = qmlProfilerModelProxy.rowMaxValue(modelIndex, row);
                    if (minVal !== maxVal) {
                        context.strokeStyle = context.fillStyle = "#B0B0B0";

                        var stepValUgly = Math.ceil((maxVal - minVal) /
                                                Math.floor(rowHeight / scaleStepping));

                        // align to clean 2**x
                        var stepVal = 1;
                        while (stepValUgly >>= 1)
                            stepVal <<= 1;

                        var stepHeight = rowHeight / (maxVal - minVal);

                        for (var step = minVal; step <= maxVal - stepVal; step += stepVal) {
                            var offset = cumulatedHeight - step * stepHeight - y;
                            context.beginPath();
                            context.moveTo(0, offset);
                            context.lineTo(width, offset);
                            context.stroke();
                            context.fillText(prettyPrintScale(step), 5, offset - 2);
                        }
                        context.beginPath();
                        context.moveTo(0, cumulatedHeight - rowHeight - y);
                        context.lineTo(width, cumulatedHeight - rowHeight - y);
                        context.stroke();
                        context.fillText(prettyPrintScale(maxVal), 5,
                                         cumulatedHeight - rowHeight - y + 8);

                    }
                }

                if (cumulatedHeight > y + height)
                    return;
            }

            context.strokeStyle = "#B0B0B0";
            context.beginPath();
            context.moveTo(0, cumulatedHeight - y);
            context.lineTo(width, cumulatedHeight - y);
            context.stroke();
        }

        // bottom
        if (height > labels.height - y) {
            context.fillStyle = "#f5f5f5";
            context.fillRect(0, labels.height - y, width, height - labels.height + y);
        }
    }
}