/**************************************************************************** ** ** 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$ ** ****************************************************************************/ #ifndef QGEOROUTINGMANAGERENGINE_TEST_H #define QGEOROUTINGMANAGERENGINE_TEST_H #include #include #include #include #include #include #include #include QT_USE_NAMESPACE class RouteReplyTest :public QGeoRouteReply { Q_OBJECT public: RouteReplyTest(QObject *parent=0) :QGeoRouteReply (QGeoRouteRequest(), parent) {} void callSetError ( Error error, const QString & errorString ) {setError(error, errorString);} void callSetFinished ( bool finished ) {setFinished(finished);} void callSetRoutes(const QList &routes) {setRoutes(routes);} }; class QGeoRoutingManagerEngineTest: public QGeoRoutingManagerEngine { Q_OBJECT RouteReplyTest* routeReply_; bool finishRequestImmediately_; int timerId_; QGeoRouteReply::Error errorCode_; QString errorString_; public: QGeoRoutingManagerEngineTest(const QVariantMap ¶meters, QGeoServiceProvider::Error *error, QString *errorString) : QGeoRoutingManagerEngine(parameters), routeReply_(0), finishRequestImmediately_(true), timerId_(0), errorCode_(QGeoRouteReply::NoError) { Q_UNUSED(error) Q_UNUSED(errorString) if (parameters.contains("gc_finishRequestImmediately")) { finishRequestImmediately_ = qvariant_cast(parameters.value("gc_finishRequestImmediately")); } setLocale(QLocale (QLocale::German, QLocale::Germany)); setSupportedFeatureTypes ( QGeoRouteRequest::NoFeature | QGeoRouteRequest::TollFeature | QGeoRouteRequest::HighwayFeature | QGeoRouteRequest::PublicTransitFeature | QGeoRouteRequest::FerryFeature | QGeoRouteRequest::TunnelFeature | QGeoRouteRequest::DirtRoadFeature | QGeoRouteRequest::ParksFeature | QGeoRouteRequest::MotorPoolLaneFeature ); setSupportedFeatureWeights ( QGeoRouteRequest::NeutralFeatureWeight | QGeoRouteRequest::PreferFeatureWeight | QGeoRouteRequest::RequireFeatureWeight | QGeoRouteRequest::AvoidFeatureWeight | QGeoRouteRequest::DisallowFeatureWeight ); setSupportedManeuverDetails ( QGeoRouteRequest::NoManeuvers | QGeoRouteRequest::BasicManeuvers); setSupportedRouteOptimizations ( QGeoRouteRequest::ShortestRoute | QGeoRouteRequest::FastestRoute | QGeoRouteRequest::MostEconomicRoute | QGeoRouteRequest::MostScenicRoute); setSupportedSegmentDetails ( QGeoRouteRequest::NoSegmentData | QGeoRouteRequest::BasicSegmentData ); setSupportedTravelModes ( QGeoRouteRequest::CarTravel | QGeoRouteRequest::PedestrianTravel | QGeoRouteRequest::BicycleTravel | QGeoRouteRequest::PublicTransitTravel | QGeoRouteRequest::TruckTravel ); } virtual QGeoRouteReply* calculateRoute(const QGeoRouteRequest& request) { routeReply_ = new RouteReplyTest(); connect(routeReply_, SIGNAL(aborted()), this, SLOT(requestAborted())); if (request.numberAlternativeRoutes() > 70) { errorCode_ = (QGeoRouteReply::Error)(request.numberAlternativeRoutes() - 70); errorString_ = "error"; } else { errorCode_ = QGeoRouteReply::NoError; errorString_ = ""; } setRoutes(request, routeReply_); if (finishRequestImmediately_) { if (errorCode_) { routeReply_->callSetError(errorCode_, errorString_); } else { routeReply_->callSetError(QGeoRouteReply::NoError, "no error"); routeReply_->callSetFinished(true); } } else { // we only allow serialized requests in QML - previous must have been aborted or finished Q_ASSERT(timerId_ == 0); timerId_ = startTimer(200); } return static_cast(routeReply_); } void setRoutes(const QGeoRouteRequest& request, RouteReplyTest* reply) { QList routes; for (int i = 0; i < request.numberAlternativeRoutes(); ++i) { QGeoRoute route; route.setPath(request.waypoints()); routes.append(route); } reply->callSetRoutes(routes); } public Q_SLOTS: void requestAborted() { if (timerId_) { killTimer(timerId_); timerId_ = 0; } errorCode_ = QGeoRouteReply::NoError; errorString_ = ""; } protected: void timerEvent(QTimerEvent *event) { Q_UNUSED(event); Q_ASSERT(timerId_ == event->timerId()); Q_ASSERT(routeReply_); killTimer(timerId_); timerId_ = 0; if (errorCode_) { routeReply_->callSetError(errorCode_, errorString_); emit error(routeReply_, errorCode_, errorString_); } else { routeReply_->callSetError(QGeoRouteReply::NoError, "no error"); routeReply_->callSetFinished(true); emit finished(routeReply_); } } }; #endif