2011-04-27 10:05:43 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** This file is part of the test suite of the Qt Toolkit.
|
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
|
2012-09-19 12:28:29 +00: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
|
2015-01-28 08:44:43 +00:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
2016-01-15 12:36:27 +00:00
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2012-09-19 12:28:29 +00:00
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
2012-01-10 00:28:42 +00:00
|
|
|
#include <QtCore/QCoreApplication>
|
2011-04-27 10:05:43 +00:00
|
|
|
#include <QtTest/QtTest>
|
|
|
|
|
|
|
|
/* Custom event dispatcher to ensure we don't receive any spontaneous events */
|
|
|
|
class TestEventDispatcher : public QAbstractEventDispatcher
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
TestEventDispatcher(QObject* parent =0)
|
|
|
|
: QAbstractEventDispatcher(parent)
|
|
|
|
{}
|
|
|
|
void flush() {}
|
|
|
|
bool hasPendingEvents() { return false; }
|
|
|
|
void interrupt() {}
|
|
|
|
bool processEvents(QEventLoop::ProcessEventsFlags) { return false; }
|
|
|
|
void registerSocketNotifier(QSocketNotifier*) {}
|
2011-12-21 10:33:33 +00:00
|
|
|
void registerTimer(int,int,Qt::TimerType,QObject*) {}
|
2011-04-27 10:05:43 +00:00
|
|
|
QList<TimerInfo> registeredTimers(QObject*) const { return QList<TimerInfo>(); }
|
|
|
|
void unregisterSocketNotifier(QSocketNotifier*) {}
|
|
|
|
bool unregisterTimer(int) { return false; }
|
|
|
|
bool unregisterTimers(QObject*) { return false; }
|
Add a remainingTime() method to the public interface of the QTimer class
It is an extension coming from the use case when you, for instance, need to
implement a countdown timer in client codes, and manually maintain a dedicated
variable for counting down with the help of yet another Timer. There might be
other use cases as well. The returned value is meant to be in milliseconds, as
the method documentation says, since it is reasonable, and consistent with the
rest (ie. the interval accessor).
The elapsed time is already being tracked inside the event dispatcher, thus the
effort is only exposing that for all platforms supported according to the
desired timer identifier, and propagating up to the QTimer public API. It is
done by using the QTimerInfoList class in the glib and unix dispatchers, and the
WinTimeInfo struct for the windows dispatcher.
It might be a good idea to to establish a QWinTimerInfo
(qtimerinfo_win{_p.h,cpp}) in the future for resembling the interface for
windows with the glib/unix management so that it would be consistent. That would
mean abstracting out a base class (~interface) for the timer info classes.
Something like that QAbstractTimerInfo.
Test: Build test only on (Arch)Linux, Windows and Mac. I have also run the unit
tests and they passed as well.
Change-Id: Ie37b3aff909313ebc92e511e27d029abb070f110
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Bradley T. Hughes <bradley.hughes@nokia.com>
2012-02-23 05:41:30 +00:00
|
|
|
int remainingTime(int) { return 0; }
|
2011-04-27 10:05:43 +00:00
|
|
|
void wakeUp() {}
|
2012-04-03 13:36:32 +00:00
|
|
|
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
bool registerEventNotifier(QWinEventNotifier *) { return false; }
|
|
|
|
void unregisterEventNotifier(QWinEventNotifier *) { }
|
|
|
|
#endif
|
2011-04-27 10:05:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class tst_BenchlibOptions: public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void threeEvents();
|
|
|
|
};
|
|
|
|
|
|
|
|
class tst_BenchlibFifteenIterations : public tst_BenchlibOptions
|
|
|
|
{ Q_OBJECT };
|
|
|
|
class tst_BenchlibOneHundredMinimum : public tst_BenchlibOptions
|
|
|
|
{ Q_OBJECT };
|
|
|
|
|
|
|
|
void tst_BenchlibOptions::threeEvents()
|
|
|
|
{
|
|
|
|
QAbstractEventDispatcher* ed = QAbstractEventDispatcher::instance();
|
|
|
|
QBENCHMARK {
|
2012-06-23 19:48:53 +00:00
|
|
|
ed->filterNativeEvent("", 0, 0);
|
|
|
|
ed->filterNativeEvent("", 0, 0);
|
|
|
|
ed->filterNativeEvent("", 0, 0);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
TestEventDispatcher dispatcher;
|
|
|
|
QCoreApplication app(argc, argv);
|
|
|
|
|
|
|
|
/* Run with no special arguments. */
|
|
|
|
{
|
|
|
|
tst_BenchlibOptions test;
|
|
|
|
ret += QTest::qExec(&test, argc, argv);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Run with an exact number of iterations. */
|
|
|
|
{
|
|
|
|
QVector<char const*> args;
|
|
|
|
for (int i = 0; i < argc; ++i) args << argv[i];
|
|
|
|
args << "-iterations";
|
|
|
|
args << "15";
|
|
|
|
tst_BenchlibFifteenIterations test;
|
|
|
|
ret += QTest::qExec(&test, args.count(), const_cast<char**>(args.data()));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Run until getting a value of at least 100.
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
QVector<char const*> args;
|
|
|
|
for (int i = 0; i < argc; ++i) args << argv[i];
|
|
|
|
args << "-minimumvalue";
|
|
|
|
args << "100";
|
|
|
|
tst_BenchlibOneHundredMinimum test;
|
|
|
|
ret += QTest::qExec(&test, args.count(), const_cast<char**>(args.data()));
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "tst_benchliboptions.moc"
|