[2] | 1 | /****************************************************************************
|
---|
| 2 | **
|
---|
[846] | 3 | ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
---|
[561] | 4 | ** All rights reserved.
|
---|
| 5 | ** Contact: Nokia Corporation ([email protected])
|
---|
[2] | 6 | **
|
---|
| 7 | ** This file is part of the QtTest module of the Qt Toolkit.
|
---|
| 8 | **
|
---|
| 9 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
| 10 | ** Commercial Usage
|
---|
| 11 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
| 12 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
| 13 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
| 14 | ** a written agreement between you and Nokia.
|
---|
| 15 | **
|
---|
| 16 | ** GNU Lesser General Public License Usage
|
---|
| 17 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
| 18 | ** General Public License version 2.1 as published by the Free Software
|
---|
| 19 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
| 20 | ** packaging of this file. Please review the following information to
|
---|
| 21 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
| 22 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
| 23 | **
|
---|
[561] | 24 | ** In addition, as a special exception, Nokia gives you certain additional
|
---|
| 25 | ** rights. These rights are described in the Nokia Qt LGPL Exception
|
---|
| 26 | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
---|
[2] | 27 | **
|
---|
| 28 | ** GNU General Public License Usage
|
---|
| 29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
| 30 | ** General Public License version 3.0 as published by the Free Software
|
---|
| 31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
| 32 | ** packaging of this file. Please review the following information to
|
---|
| 33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
| 34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
| 35 | **
|
---|
[561] | 36 | ** If you have questions regarding the use of this file, please contact
|
---|
| 37 | ** Nokia at [email protected].
|
---|
[2] | 38 | ** $QT_END_LICENSE$
|
---|
| 39 | **
|
---|
| 40 | ****************************************************************************/
|
---|
| 41 |
|
---|
| 42 | #ifndef QBENCHMARK_P_H
|
---|
| 43 | #define QBENCHMARK_P_H
|
---|
| 44 |
|
---|
[846] | 45 | #include <stdlib.h>
|
---|
| 46 |
|
---|
[2] | 47 | //
|
---|
| 48 | // W A R N I N G
|
---|
| 49 | // -------------
|
---|
| 50 | //
|
---|
| 51 | // This file is not part of the Qt API. It exists purely as an
|
---|
| 52 | // implementation detail. This header file may change from version to
|
---|
| 53 | // version without notice, or even be removed.
|
---|
| 54 | //
|
---|
| 55 | // We mean it.
|
---|
| 56 | //
|
---|
| 57 |
|
---|
| 58 | #include <QtCore/qglobal.h>
|
---|
| 59 |
|
---|
[561] | 60 | #if (defined(Q_OS_LINUX) || defined Q_OS_MAC) && !defined(QT_NO_PROCESS)
|
---|
[2] | 61 | #define QTESTLIB_USE_VALGRIND
|
---|
| 62 | #else
|
---|
| 63 | #undef QTESTLIB_USE_VALGRIND
|
---|
| 64 | #endif
|
---|
| 65 |
|
---|
| 66 | #include "QtTest/private/qbenchmarkmeasurement_p.h"
|
---|
| 67 | #include <QtCore/QMap>
|
---|
| 68 | #include <QtTest/qtest_global.h>
|
---|
| 69 | #ifdef QTESTLIB_USE_VALGRIND
|
---|
| 70 | #include "QtTest/private/qbenchmarkvalgrind_p.h"
|
---|
| 71 | #endif
|
---|
| 72 | #include "QtTest/private/qbenchmarkevent_p.h"
|
---|
[846] | 73 | #include "QtTest/private/qbenchmarkmetric_p.h"
|
---|
[2] | 74 |
|
---|
| 75 | QT_BEGIN_NAMESPACE
|
---|
| 76 |
|
---|
| 77 | struct QBenchmarkContext
|
---|
| 78 | {
|
---|
| 79 | // None of the strings below are assumed to contain commas (see toString() below)
|
---|
| 80 | QString slotName;
|
---|
| 81 | QString tag; // from _data() function
|
---|
| 82 |
|
---|
| 83 | int checkpointIndex;
|
---|
| 84 |
|
---|
| 85 | QString toString() const
|
---|
| 86 | {
|
---|
[561] | 87 | QString s = QString::fromLatin1("%1,%2,%3").arg(slotName).arg(tag).arg(checkpointIndex);
|
---|
[2] | 88 | return s;
|
---|
| 89 | }
|
---|
| 90 |
|
---|
| 91 | QBenchmarkContext() : checkpointIndex(-1) {}
|
---|
| 92 | };
|
---|
| 93 |
|
---|
| 94 | class QBenchmarkResult
|
---|
| 95 | {
|
---|
| 96 | public:
|
---|
| 97 | QBenchmarkContext context;
|
---|
[846] | 98 | qreal value;
|
---|
[2] | 99 | int iterations;
|
---|
[846] | 100 | QTest::QBenchmarkMetric metric;
|
---|
| 101 | bool setByMacro;
|
---|
[2] | 102 | bool valid;
|
---|
| 103 |
|
---|
| 104 | QBenchmarkResult()
|
---|
| 105 | : value(-1)
|
---|
| 106 | , iterations(-1)
|
---|
[846] | 107 | , setByMacro(true)
|
---|
[2] | 108 | , valid(false)
|
---|
[846] | 109 | { }
|
---|
[2] | 110 |
|
---|
[846] | 111 | QBenchmarkResult(
|
---|
| 112 | const QBenchmarkContext &context, const qreal value, const int iterations,
|
---|
| 113 | QTest::QBenchmarkMetric metric, bool setByMacro)
|
---|
[2] | 114 | : context(context)
|
---|
| 115 | , value(value)
|
---|
| 116 | , iterations(iterations)
|
---|
[846] | 117 | , metric(metric)
|
---|
| 118 | , setByMacro(setByMacro)
|
---|
[2] | 119 | , valid(true)
|
---|
[846] | 120 | { }
|
---|
[2] | 121 |
|
---|
| 122 | bool operator<(const QBenchmarkResult &other) const
|
---|
| 123 | {
|
---|
| 124 | return (value / iterations) < (other.value / other.iterations);
|
---|
| 125 | }
|
---|
| 126 | };
|
---|
| 127 |
|
---|
| 128 | /*
|
---|
| 129 | The QBenchmarkGlobalData class stores global benchmark-related data.
|
---|
| 130 | QBenchmarkGlobalData:current is created at the beginning of qExec()
|
---|
| 131 | and cleared at the end.
|
---|
| 132 | */
|
---|
| 133 | class QBenchmarkGlobalData
|
---|
| 134 | {
|
---|
| 135 | public:
|
---|
| 136 | static QBenchmarkGlobalData *current;
|
---|
| 137 |
|
---|
| 138 | QBenchmarkGlobalData();
|
---|
| 139 | ~QBenchmarkGlobalData();
|
---|
| 140 | enum Mode { WallTime, CallgrindParentProcess, CallgrindChildProcess, TickCounter, EventCounter };
|
---|
| 141 | void setMode(Mode mode);
|
---|
| 142 | Mode mode() const { return mode_; }
|
---|
| 143 | QBenchmarkMeasurerBase *createMeasurer();
|
---|
| 144 | int adjustMedianIterationCount();
|
---|
| 145 |
|
---|
| 146 | QBenchmarkMeasurerBase *measurer;
|
---|
| 147 | QBenchmarkContext context;
|
---|
| 148 | int walltimeMinimum;
|
---|
| 149 | int iterationCount;
|
---|
| 150 | int medianIterationCount;
|
---|
| 151 | bool createChart;
|
---|
| 152 | bool verboseOutput;
|
---|
| 153 | QString callgrindOutFileBase;
|
---|
| 154 | private:
|
---|
| 155 | Mode mode_;
|
---|
| 156 | };
|
---|
| 157 |
|
---|
| 158 | /*
|
---|
| 159 | The QBenchmarkTestMethodData class stores all benchmark-related data
|
---|
| 160 | for the current test case. QBenchmarkTestMethodData:current is
|
---|
| 161 | created at the beginning of qInvokeTestMethod() and cleared at
|
---|
| 162 | the end.
|
---|
| 163 | */
|
---|
| 164 | class QBenchmarkTestMethodData
|
---|
| 165 | {
|
---|
| 166 | public:
|
---|
| 167 | static QBenchmarkTestMethodData *current;
|
---|
| 168 | QBenchmarkTestMethodData();
|
---|
| 169 | ~QBenchmarkTestMethodData();
|
---|
| 170 |
|
---|
| 171 | // Called once for each data row created by the _data function,
|
---|
| 172 | // before and after calling the test function itself.
|
---|
| 173 | void beginDataRun();
|
---|
| 174 | void endDataRun();
|
---|
| 175 |
|
---|
| 176 | bool isBenchmark() const { return result.valid; }
|
---|
| 177 | bool resultsAccepted() const { return resultAccepted; }
|
---|
| 178 | int adjustIterationCount(int suggestion);
|
---|
[846] | 179 | void setResult(qreal value, QTest::QBenchmarkMetric metric, bool setByMacro = true);
|
---|
[2] | 180 |
|
---|
| 181 | QBenchmarkResult result;
|
---|
| 182 | bool resultAccepted;
|
---|
[561] | 183 | bool runOnce;
|
---|
[2] | 184 | int iterationCount;
|
---|
| 185 | };
|
---|
| 186 |
|
---|
| 187 | // low-level API:
|
---|
| 188 | namespace QTest
|
---|
| 189 | {
|
---|
| 190 | int iterationCount();
|
---|
| 191 | void setIterationCountHint(int count);
|
---|
| 192 | void setIterationCount(int count);
|
---|
| 193 |
|
---|
| 194 | Q_TESTLIB_EXPORT void beginBenchmarkMeasurement();
|
---|
[846] | 195 | Q_TESTLIB_EXPORT quint64 endBenchmarkMeasurement();
|
---|
[2] | 196 | }
|
---|
| 197 |
|
---|
| 198 | QT_END_NAMESPACE
|
---|
| 199 |
|
---|
| 200 | #endif // QBENCHMARK_H
|
---|