2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-03-25 09:25:17 +01:00
|
|
|
**
|
2013-01-28 17:12:19 +01:00
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2011-03-25 09:25:17 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-03-25 09:25:17 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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.
|
2011-03-25 09:25:17 +01:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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
|
2011-03-25 09:25:17 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-03-25 09:25:17 +01:00
|
|
|
|
2011-03-11 12:22:57 +01:00
|
|
|
.pragma library
|
|
|
|
|
|
2012-02-24 10:47:17 +01:00
|
|
|
var qmlProfilerDataModel = 0;
|
2011-03-11 12:22:57 +01:00
|
|
|
|
|
|
|
|
//draw background of the graph
|
|
|
|
|
function drawGraph(canvas, ctxt, region)
|
|
|
|
|
{
|
2011-11-16 16:08:05 +01:00
|
|
|
ctxt.fillStyle = "#eaeaea";
|
2011-10-28 16:22:45 +02:00
|
|
|
ctxt.fillRect(0, 0, canvas.width, canvas.height);
|
2011-03-11 12:22:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//draw the actual data to be graphed
|
|
|
|
|
function drawData(canvas, ctxt, region)
|
|
|
|
|
{
|
2012-02-24 10:47:17 +01:00
|
|
|
if ((!qmlProfilerDataModel) || qmlProfilerDataModel.count() == 0)
|
2011-03-11 12:22:57 +01:00
|
|
|
return;
|
|
|
|
|
|
2011-11-16 16:08:05 +01:00
|
|
|
var typeCount = 5;
|
2011-10-28 16:22:45 +02:00
|
|
|
var width = canvas.width;
|
2011-11-16 16:08:05 +01:00
|
|
|
var bump = 10;
|
|
|
|
|
var height = canvas.height - bump;
|
|
|
|
|
var blockHeight = height / typeCount;
|
2011-03-11 12:22:57 +01:00
|
|
|
|
2012-02-24 10:47:17 +01:00
|
|
|
var spacing = width / qmlProfilerDataModel.traceDuration();
|
2011-03-11 12:22:57 +01:00
|
|
|
|
2011-11-16 16:08:05 +01:00
|
|
|
var highest = [0,0,0,0,0]; // note: change if typeCount changes
|
2011-04-05 12:49:02 +02:00
|
|
|
|
2012-02-24 10:47:17 +01:00
|
|
|
for (var ii = 0; ii < qmlProfilerDataModel.count(); ++ii) {
|
2011-03-11 12:22:57 +01:00
|
|
|
|
2012-02-24 10:47:17 +01:00
|
|
|
var xx = (qmlProfilerDataModel.getStartTime(ii) -
|
|
|
|
|
qmlProfilerDataModel.traceStartTime()) * spacing;
|
2011-03-11 12:22:57 +01:00
|
|
|
if (xx > region.x + region.width)
|
|
|
|
|
continue;
|
|
|
|
|
|
2012-02-24 10:47:17 +01:00
|
|
|
var eventWidth = qmlProfilerDataModel.getDuration(ii) * spacing;
|
2011-11-16 16:08:05 +01:00
|
|
|
if (xx + eventWidth < region.x)
|
2011-03-11 12:22:57 +01:00
|
|
|
continue;
|
|
|
|
|
|
2011-11-16 16:08:05 +01:00
|
|
|
if (eventWidth < 1)
|
|
|
|
|
eventWidth = 1;
|
2011-03-11 12:22:57 +01:00
|
|
|
|
2011-04-05 12:49:02 +02:00
|
|
|
xx = Math.round(xx);
|
2012-02-24 10:47:17 +01:00
|
|
|
var ty = qmlProfilerDataModel.getType(ii);
|
2011-11-16 16:08:05 +01:00
|
|
|
if (xx + eventWidth > highest[ty]) {
|
2011-12-14 16:44:33 +01:00
|
|
|
// special: animations
|
2012-02-24 10:47:17 +01:00
|
|
|
if (ty === 0 && qmlProfilerDataModel.getAnimationCount(ii) >= 0) {
|
|
|
|
|
var vertScale = qmlProfilerDataModel.getMaximumAnimationCount() -
|
|
|
|
|
qmlProfilerDataModel.getMinimumAnimationCount();
|
2011-12-14 16:44:33 +01:00
|
|
|
if (vertScale < 1)
|
|
|
|
|
vertScale = 1;
|
2012-02-24 10:47:17 +01:00
|
|
|
var fraction = (qmlProfilerDataModel.getAnimationCount(ii) -
|
|
|
|
|
qmlProfilerDataModel.getMinimumAnimationCount()) / vertScale;
|
2011-12-14 16:44:33 +01:00
|
|
|
var eventHeight = blockHeight * (fraction * 0.85 + 0.15);
|
|
|
|
|
var yy = bump + ty*blockHeight + blockHeight - eventHeight;
|
|
|
|
|
|
2012-02-24 10:47:17 +01:00
|
|
|
var fpsFraction = qmlProfilerDataModel.getFramerate(ii) / 60.0;
|
2011-12-14 16:44:33 +01:00
|
|
|
if (fpsFraction > 1.0)
|
|
|
|
|
fpsFraction = 1.0;
|
|
|
|
|
ctxt.fillStyle = "hsl("+(fpsFraction*0.27+0.028)+",0.3,0.65)";
|
|
|
|
|
ctxt.fillRect(xx, yy, eventWidth, eventHeight);
|
|
|
|
|
} else {
|
2012-02-24 10:47:17 +01:00
|
|
|
var hue = ( qmlProfilerDataModel.getEventId(ii) * 25 ) % 360;
|
2011-12-14 16:44:33 +01:00
|
|
|
ctxt.fillStyle = "hsl("+(hue/360.0+0.001)+",0.3,0.65)";
|
|
|
|
|
ctxt.fillRect(xx, bump + ty*blockHeight, eventWidth, blockHeight);
|
|
|
|
|
}
|
2011-11-16 16:08:05 +01:00
|
|
|
highest[ty] = xx+eventWidth;
|
2011-04-05 12:49:02 +02:00
|
|
|
}
|
2011-03-11 12:22:57 +01:00
|
|
|
}
|
2012-02-06 16:08:56 +01:00
|
|
|
|
|
|
|
|
// binding loops
|
|
|
|
|
ctxt.strokeStyle = "orange";
|
|
|
|
|
ctxt.lineWidth = 2;
|
|
|
|
|
var radius = 1;
|
2012-02-24 10:47:17 +01:00
|
|
|
for (var ii = 0; ii < qmlProfilerDataModel.count(); ++ii) {
|
|
|
|
|
if (qmlProfilerDataModel.getBindingLoopDest(ii) >= 0) {
|
|
|
|
|
var xcenter = Math.round(qmlProfilerDataModel.getStartTime(ii) +
|
|
|
|
|
qmlProfilerDataModel.getDuration(ii) -
|
|
|
|
|
qmlProfilerDataModel.traceStartTime()) * spacing;
|
|
|
|
|
var ycenter = Math.round(bump + qmlProfilerDataModel.getType(ii) *
|
|
|
|
|
blockHeight + blockHeight/2);
|
2012-02-06 16:08:56 +01:00
|
|
|
ctxt.arc(xcenter, ycenter, radius, 0, 2*Math.PI, true);
|
|
|
|
|
ctxt.stroke();
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-03-11 12:22:57 +01:00
|
|
|
}
|
|
|
|
|
|
2011-11-16 16:08:05 +01:00
|
|
|
function drawTimeBar(canvas, ctxt, region)
|
|
|
|
|
{
|
2012-02-24 10:47:17 +01:00
|
|
|
if (!qmlProfilerDataModel)
|
2011-12-05 16:32:05 +01:00
|
|
|
return;
|
|
|
|
|
|
2011-11-16 16:08:05 +01:00
|
|
|
var width = canvas.width;
|
|
|
|
|
var height = 10;
|
2012-02-24 10:47:17 +01:00
|
|
|
var startTime = qmlProfilerDataModel.traceStartTime();
|
|
|
|
|
var endTime = qmlProfilerDataModel.traceEndTime();
|
2011-11-16 16:08:05 +01:00
|
|
|
|
2012-02-24 10:47:17 +01:00
|
|
|
var totalTime = qmlProfilerDataModel.traceDuration();
|
2011-11-16 16:08:05 +01:00
|
|
|
var spacing = width / totalTime;
|
|
|
|
|
|
|
|
|
|
var initialBlockLength = 120;
|
2012-02-24 10:47:17 +01:00
|
|
|
var timePerBlock = Math.pow(2, Math.floor( Math.log( totalTime / width *
|
|
|
|
|
initialBlockLength ) / Math.LN2 ) );
|
2011-11-16 16:08:05 +01:00
|
|
|
var pixelsPerBlock = timePerBlock * spacing;
|
|
|
|
|
var pixelsPerSection = pixelsPerBlock / 5;
|
|
|
|
|
var blockCount = width / pixelsPerBlock;
|
|
|
|
|
|
|
|
|
|
var realStartTime = Math.floor(startTime/timePerBlock) * timePerBlock;
|
|
|
|
|
var realStartPos = (startTime-realStartTime) * spacing;
|
|
|
|
|
|
|
|
|
|
var timePerPixel = timePerBlock/pixelsPerBlock;
|
|
|
|
|
|
|
|
|
|
ctxt.fillStyle = "#000000";
|
|
|
|
|
ctxt.font = "6px sans-serif";
|
|
|
|
|
|
|
|
|
|
ctxt.fillStyle = "#cccccc";
|
|
|
|
|
ctxt.fillRect(0, 0, width, height);
|
|
|
|
|
for (var ii = 0; ii < blockCount+1; ii++) {
|
|
|
|
|
var x = Math.floor(ii*pixelsPerBlock - realStartPos);
|
|
|
|
|
|
|
|
|
|
// block boundary
|
|
|
|
|
ctxt.strokeStyle = "#525252";
|
|
|
|
|
ctxt.beginPath();
|
|
|
|
|
ctxt.moveTo(x, height/2);
|
|
|
|
|
ctxt.lineTo(x, height);
|
|
|
|
|
ctxt.stroke();
|
|
|
|
|
|
|
|
|
|
// block time label
|
|
|
|
|
ctxt.fillStyle = "#000000";
|
|
|
|
|
var timeString = prettyPrintTime((ii+0.5)*timePerBlock + realStartTime);
|
|
|
|
|
ctxt.textAlign = "center";
|
|
|
|
|
ctxt.fillText(timeString, x + pixelsPerBlock/2, height/2 + 3);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ctxt.fillStyle = "#808080";
|
|
|
|
|
ctxt.fillRect(0, height-1, width, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function prettyPrintTime( t )
|
|
|
|
|
{
|
|
|
|
|
if (t <= 0) return "0";
|
|
|
|
|
if (t<1000) return t+" ns";
|
|
|
|
|
t = t/1000;
|
|
|
|
|
if (t<1000) return t+" μs";
|
|
|
|
|
t = Math.floor(t/100)/10;
|
|
|
|
|
if (t<1000) return t+" ms";
|
|
|
|
|
t = Math.floor(t)/1000;
|
|
|
|
|
if (t<60) return t+" s";
|
|
|
|
|
var m = Math.floor(t/60);
|
|
|
|
|
t = Math.floor(t - m*60);
|
|
|
|
|
return m+"m"+t+"s";
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-11 12:22:57 +01:00
|
|
|
function plot(canvas, ctxt, region)
|
|
|
|
|
{
|
|
|
|
|
drawGraph(canvas, ctxt, region);
|
|
|
|
|
drawData(canvas, ctxt, region);
|
2011-11-16 16:08:05 +01:00
|
|
|
drawTimeBar(canvas, ctxt, region);
|
|
|
|
|
|
2011-03-11 12:22:57 +01:00
|
|
|
}
|