2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2017-09-06 16:18:29 +02:00
|
|
|
|
|
|
|
|
#include "benchmarker.h"
|
2022-08-24 09:43:33 +02:00
|
|
|
#include "environment.h"
|
2017-09-06 16:18:29 +02:00
|
|
|
|
2017-11-22 15:16:09 +01:00
|
|
|
#include <QCoreApplication>
|
2017-09-06 16:18:29 +02:00
|
|
|
#include <QLoggingCategory>
|
2017-11-22 15:16:09 +01:00
|
|
|
#include <QTimer>
|
2017-09-06 16:18:29 +02:00
|
|
|
|
2018-10-12 09:33:30 +03:00
|
|
|
static Q_LOGGING_CATEGORY(benchmarksLog, "qtc.benchmark", QtWarningMsg);
|
2017-09-06 16:18:29 +02:00
|
|
|
|
|
|
|
|
namespace Utils {
|
|
|
|
|
|
|
|
|
|
Benchmarker::Benchmarker(const QString &testsuite, const QString &testcase,
|
|
|
|
|
const QString &tagData) :
|
2017-09-29 11:52:51 +02:00
|
|
|
Benchmarker(benchmarksLog(), testsuite, testcase, tagData)
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
Benchmarker::Benchmarker(const QLoggingCategory &cat,
|
|
|
|
|
const QString &testsuite, const QString &testcase,
|
|
|
|
|
const QString &tagData) :
|
|
|
|
|
m_category(cat),
|
2017-09-06 16:18:29 +02:00
|
|
|
m_tagData(tagData),
|
|
|
|
|
m_testsuite(testsuite),
|
|
|
|
|
m_testcase(testcase)
|
|
|
|
|
{
|
|
|
|
|
m_timer.start();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Benchmarker::~Benchmarker()
|
|
|
|
|
{
|
|
|
|
|
if (m_timer.isValid())
|
|
|
|
|
report(m_timer.elapsed());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Benchmarker::report(qint64 ms)
|
|
|
|
|
{
|
|
|
|
|
m_timer.invalidate();
|
2017-09-29 11:52:51 +02:00
|
|
|
report(m_category, m_testsuite, m_testcase, ms, m_tagData);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Benchmarker::report(const QString &testsuite,
|
|
|
|
|
const QString &testcase, qint64 ms, const QString &tags)
|
|
|
|
|
{
|
|
|
|
|
report(benchmarksLog(), testsuite, testcase, ms, tags);
|
2017-09-06 16:18:29 +02:00
|
|
|
}
|
|
|
|
|
|
2017-09-29 11:52:51 +02:00
|
|
|
void Benchmarker::report(const QLoggingCategory &cat, const QString &testsuite, const QString &testcase,
|
|
|
|
|
qint64 ms, const QString &tags)
|
2017-09-06 16:18:29 +02:00
|
|
|
{
|
2022-08-24 09:43:33 +02:00
|
|
|
static const QByteArray quitAfter = qtcEnvironmentVariable("QTC_QUIT_AFTER_BENCHMARK").toLatin1();
|
2017-09-06 16:18:29 +02:00
|
|
|
QString t = "unit=ms";
|
|
|
|
|
if (!tags.isEmpty())
|
|
|
|
|
t += "," + tags;
|
|
|
|
|
|
2017-11-22 15:16:09 +01:00
|
|
|
const QByteArray testSuite = testsuite.toUtf8();
|
|
|
|
|
const QByteArray testCase = testcase.toUtf8();
|
|
|
|
|
qCDebug(cat, "%s::%s: %lld { %s }", testSuite.data(), testCase.data(), ms, t.toUtf8().data());
|
|
|
|
|
if (!quitAfter.isEmpty() && quitAfter == testSuite + "::" + testCase)
|
|
|
|
|
QTimer::singleShot(1000, qApp, &QCoreApplication::quit);
|
2017-09-06 16:18:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace Utils
|