blob: 8baa53f58d30e7ba4361bb12c734f46065e83897 (
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
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#include "callgrindhelper.h"
#include <cstdlib>
#include <QColor>
#include <QMap>
#include <QRandomGenerator>
#include <QString>
namespace Valgrind {
namespace Internal {
QColor CallgrindHelper::colorForString(const QString &text)
{
static QMap<QString, QColor> colorCache;
if (colorCache.contains(text))
return colorCache.value(text);
// Minimum lightness of 100 to be readable with black text.
const QColor color = QColor::fromHsl(
((qreal) QRandomGenerator::global()->generate() / RAND_MAX * 359),
((qreal) QRandomGenerator::global()->generate() / RAND_MAX * 255),
((qreal) QRandomGenerator::global()->generate() / RAND_MAX * 127) + 128);
colorCache[text] = color;
return color;
}
QColor CallgrindHelper::colorForCostRatio(qreal ratio)
{
ratio = qBound(qreal(0.0), ratio, qreal(1.0));
return QColor::fromHsv(120 - ratio * 120, 255, 255, (-((ratio-1) * (ratio-1))) * 120 + 120);
}
QString CallgrindHelper::toPercent(float costs, const QLocale &locale)
{
if (costs > 99.9f)
return locale.toString(100) + locale.percent();
if (costs > 9.99f)
return locale.toString(costs, 'f', 1) + locale.percent();
if (costs > 0.009f)
return locale.toString(costs, 'f', 2) + locale.percent();
return '<' + locale.toString(0.01f) + locale.percent();
}
} // namespace Internal
} // namespace Valgrind
|