/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the test suite of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** 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 ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** 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. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include #include #include #include #include QT_USE_NAMESPACE class DummySource : public QGeoPositionInfoSource { Q_OBJECT public: DummySource(QObject *parent = nullptr); ~DummySource(); void startUpdates(); void stopUpdates(); void requestUpdate(int timeout=5000); QGeoPositionInfo lastKnownPosition(bool fromSatellitePositioningMethodsOnly) const; PositioningMethods supportedPositioningMethods() const; void setUpdateInterval(int msec); int minimumUpdateInterval() const; Error error() const; private: QTimer *timer; QTimer *timeoutTimer; QTimer *singleTimer; QGeoPositionInfo lastPosition; QDateTime lastUpdateTime; private slots: void updatePosition(); void doTimeout(); }; DummySource::DummySource(QObject *parent) : QGeoPositionInfoSource(parent), timer(new QTimer(this)), timeoutTimer(new QTimer(this)), singleTimer(new QTimer(this)), lastPosition(QGeoCoordinate(0,0), QDateTime::currentDateTime()) { timer->setInterval(1000); connect(timer, SIGNAL(timeout()), this, SLOT(updatePosition())); connect(singleTimer, SIGNAL(timeout()), this, SLOT(updatePosition())); connect(timeoutTimer, SIGNAL(timeout()), this, SLOT(doTimeout())); } QGeoPositionInfoSource::Error DummySource::error() const { return QGeoPositionInfoSource::NoError; } void DummySource::setUpdateInterval(int msec) { if (msec == 0) { timer->setInterval(1000); } else if (msec < 1000) { msec = 1000; timer->setInterval(msec); } else { timer->setInterval(msec); } QGeoPositionInfoSource::setUpdateInterval(msec); } int DummySource::minimumUpdateInterval() const { return 1000; } QGeoPositionInfo DummySource::lastKnownPosition(bool fromSatellitePositioningMethodsOnly) const { Q_UNUSED(fromSatellitePositioningMethodsOnly); return lastPosition; } QGeoPositionInfoSource::PositioningMethods DummySource::supportedPositioningMethods() const { return QGeoPositionInfoSource::AllPositioningMethods; } void DummySource::startUpdates() { timer->start(); } void DummySource::stopUpdates() { timer->stop(); } void DummySource::requestUpdate(int timeout) { if (timeout == 0) timeout = 5000; if (timeout < 0) timeout = 0; timeoutTimer->setInterval(timeout); timeoutTimer->start(); if (timer->isActive()) { timer->stop(); timer->start(); } singleTimer->setInterval(1000); singleTimer->start(); } DummySource::~DummySource() {} void DummySource::updatePosition() { timeoutTimer->stop(); singleTimer->stop(); const QDateTime now = QDateTime::currentDateTime(); QGeoCoordinate coord(lastPosition.coordinate().latitude() + 0.1, lastPosition.coordinate().longitude() + 0.1); QGeoPositionInfo info(coord, now); info.setAttribute(QGeoPositionInfo::Direction, lastPosition.coordinate().azimuthTo(coord)); if (lastUpdateTime.isValid()) { double speed = lastPosition.coordinate().distanceTo(coord) / lastUpdateTime.msecsTo(now); info.setAttribute(QGeoPositionInfo::GroundSpeed, 1000 * speed); } lastUpdateTime = now; lastPosition = info; emit positionUpdated(info); } void DummySource::doTimeout() { timeoutTimer->stop(); singleTimer->stop(); emit updateTimeout(); } class QGeoPositionInfoSourceFactoryTestV1 : public QObject, public QGeoPositionInfoSourceFactory { Q_OBJECT Q_PLUGIN_METADATA(IID "org.qt-project.qt.position.sourcefactory/5.0" FILE "plugin.json") Q_INTERFACES(QGeoPositionInfoSourceFactory) public: QGeoPositionInfoSource *positionInfoSource(QObject *parent); QGeoSatelliteInfoSource *satelliteInfoSource(QObject *parent); QGeoAreaMonitorSource *areaMonitor(QObject *parent); }; QGeoPositionInfoSource *QGeoPositionInfoSourceFactoryTestV1::positionInfoSource(QObject *parent) { return new DummySource(parent); } QGeoSatelliteInfoSource *QGeoPositionInfoSourceFactoryTestV1::satelliteInfoSource(QObject *parent) { Q_UNUSED(parent); return nullptr; } QGeoAreaMonitorSource *QGeoPositionInfoSourceFactoryTestV1::areaMonitor(QObject* parent) { Q_UNUSED(parent); return nullptr; } #include "plugin.moc"