2011-04-27 10:05:43 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2015-01-28 08:44:43 +00:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
** Contact: http://www.qt.io/licensing/
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** This file is part of the test suite of the Qt Toolkit.
|
|
|
|
**
|
2014-08-21 13:51:22 +00:00
|
|
|
** $QT_BEGIN_LICENSE:LGPL21$
|
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
|
|
|
|
** and conditions see http://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at http://www.qt.io/contact-us.
|
2012-09-19 12:28:29 +00:00
|
|
|
**
|
2011-04-27 10:05:43 +00:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-09-19 12:28:29 +00:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-08-21 13:51:22 +00:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2012-09-19 12:28:29 +00:00
|
|
|
**
|
2015-01-28 08:44:43 +00:00
|
|
|
** As a special exception, The Qt Company gives you certain additional
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
2011-04-27 10:05:43 +00:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
|
|
|
** $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_BenchlibEventCounter: public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void events();
|
|
|
|
void events_data();
|
|
|
|
};
|
|
|
|
|
|
|
|
void tst_BenchlibEventCounter::events()
|
|
|
|
{
|
|
|
|
QFETCH(int, eventCount);
|
|
|
|
|
|
|
|
QAbstractEventDispatcher* ed = QAbstractEventDispatcher::instance();
|
|
|
|
QBENCHMARK {
|
|
|
|
for (int i = 0; i < eventCount; ++i) {
|
2012-06-23 19:48:53 +00:00
|
|
|
ed->filterNativeEvent("", 0, 0);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void tst_BenchlibEventCounter::events_data()
|
|
|
|
{
|
|
|
|
QTest::addColumn<int>("eventCount");
|
|
|
|
|
|
|
|
QTest::newRow("0") << 0;
|
|
|
|
QTest::newRow("1") << 1;
|
|
|
|
QTest::newRow("10") << 10;
|
|
|
|
QTest::newRow("100") << 100;
|
|
|
|
QTest::newRow("500") << 500;
|
|
|
|
QTest::newRow("5000") << 5000;
|
|
|
|
QTest::newRow("100000") << 100000;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
TestEventDispatcher dispatcher;
|
|
|
|
QCoreApplication app(argc, argv);
|
|
|
|
tst_BenchlibEventCounter test;
|
|
|
|
return QTest::qExec(&test, argc, argv);
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "tst_benchlibeventcounter.moc"
|