summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorabcd <amos.choy@nokia.com>2012-06-20 14:04:02 +1000
committerQt by Nokia <qt-info@nokia.com>2012-06-21 08:56:42 +0200
commit5be51c2ea81f62a18f492c2f3a9a9f2090ae6941 (patch)
tree42fb102aad4b662777c69946f2b9de09e5dffc95
parente31bfba047580ab9933a0397a51da70ef679926b (diff)
downloadqtlocation-5be51c2ea81f62a18f492c2f3a9a9f2090ae6941.tar.gz
Removed unused files.
The v1 engine functionality was switched off some time ago. The class was not removed at that time, remove it now. Change-Id: Ib9ed219306d9169b0ff0d3734bd588f5b3b73bf4 Reviewed-by: Aaron McCarthy <aaron.mccarthy@nokia.com>
-rw-r--r--src/plugins/geoservices/nokia/qgeoserviceproviderplugin_nokia.cpp1
-rw-r--r--src/plugins/geoservices/nokia/qplacemanagerengine_nokiav1.cpp315
-rw-r--r--src/plugins/geoservices/nokia/qplacemanagerengine_nokiav1.h104
3 files changed, 0 insertions, 420 deletions
diff --git a/src/plugins/geoservices/nokia/qgeoserviceproviderplugin_nokia.cpp b/src/plugins/geoservices/nokia/qgeoserviceproviderplugin_nokia.cpp
index 00221be2..757cee6a 100644
--- a/src/plugins/geoservices/nokia/qgeoserviceproviderplugin_nokia.cpp
+++ b/src/plugins/geoservices/nokia/qgeoserviceproviderplugin_nokia.cpp
@@ -51,7 +51,6 @@
#include "qgeocodingmanagerengine_nokia.h"
#include "qgeoroutingmanagerengine_nokia.h"
#include "qgeotiledmappingmanagerengine_nokia.h"
-#include "qplacemanagerengine_nokiav1.h"
#include "qplacemanagerengine_nokiav2.h"
#include "qgeointrinsicnetworkaccessmanager.h"
#include "qgeoerror_messages.h"
diff --git a/src/plugins/geoservices/nokia/qplacemanagerengine_nokiav1.cpp b/src/plugins/geoservices/nokia/qplacemanagerengine_nokiav1.cpp
deleted file mode 100644
index 3b72e572..00000000
--- a/src/plugins/geoservices/nokia/qplacemanagerengine_nokiav1.cpp
+++ /dev/null
@@ -1,315 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/
-**
-** This file is part of the QtLocation module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** GNU Lesser General Public License Usage
-** This file may be used under the terms of the GNU Lesser General Public
-** License version 2.1 as published by the Free Software Foundation and
-** appearing in the file LICENSE.LGPL included in the packaging of this
-** file. Please review the following information to ensure the GNU Lesser
-** General Public License version 2.1 requirements will be met:
-** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Nokia gives you certain additional
-** rights. These rights are described in the Nokia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU General
-** Public License version 3.0 as published by the Free Software Foundation
-** and appearing in the file LICENSE.GPL included in the packaging of this
-** file. Please review the following information to ensure the GNU General
-** Public License version 3.0 requirements will be met:
-** http://www.gnu.org/copyleft/gpl.html.
-**
-** Other Usage
-** Alternatively, this file may be used in accordance with the terms and
-** conditions contained in a signed written agreement between you and Nokia.
-**
-**
-**
-**
-**
-**
-** $QT_END_LICENSE$
-**
-** This file is part of the Nokia services plugin for the Maps and
-** Navigation API. The use of these services, whether by use of the
-** plugin or by other means, is governed by the terms and conditions
-** described by the file NOKIA_TERMS_AND_CONDITIONS.txt in
-** this package, located in the directory containing the Nokia services
-** plugin source code.
-**
-****************************************************************************/
-
-#include "qplacemanagerengine_nokiav1.h"
-#include "qgeoerror_messages.h"
-
-#include <QCoreApplication>
-#include <QtLocation/QPlaceContentRequest>
-
-#include "placesv1/qplacecategoriesrepository.h"
-#include "placesv1/qplacecontentreplyimplv1.h"
-#include "placesv1/qplacetextpredictionreplyimpl.h"
-#include "placesv1/qplacesearchreplyimplv1.h"
-#include "placesv1/qplacerecommendationreplyimplv1.h"
-#include "placesv1/qplacedetailsreplyimplv1.h"
-#include "placesv1/qplaceratingreplyimpl.h"
-#include "placesv1/qplacerestmanager.h"
-#include "placesv1/qplacerestreply.h"
-#include "placesv1/unsupportedreplies.h"
-
-QT_USE_NAMESPACE
-
-QPlaceManagerEngineNokiaV1::QPlaceManagerEngineNokiaV1(
- QGeoNetworkAccessManager *networkManager,
- const QMap<QString, QVariant> &parameters,
- QGeoServiceProvider::Error *error,
- QString *errorString)
-: QPlaceManagerEngine(parameters)
-{
- qRegisterMetaType<QPlaceReply::Error>();
-
- Q_ASSERT(networkManager);
- QPlaceRestManager::instance()->setNetworkAccessManager(networkManager);
-
- if (error)
- *error = QGeoServiceProvider::NoError;
-
- if (errorString)
- errorString->clear();
-}
-
-QPlaceManagerEngineNokiaV1::~QPlaceManagerEngineNokiaV1()
-{
-}
-
-QPlaceDetailsReply *QPlaceManagerEngineNokiaV1::getPlaceDetails(const QString &placeId)
-{
- QPlaceDetailsReplyImplV1 *reply = 0;
- QPlaceRestReply *restReply = QPlaceRestManager::instance()->sendPlaceRequest(placeId);
- if (restReply) {
- reply = new QPlaceDetailsReplyImplV1(restReply, manager(), this);
- connect(reply, SIGNAL(processingError(QPlaceReply*,QPlaceReply::Error,QString)),
- this, SLOT(processingError(QPlaceReply*,QPlaceReply::Error,QString)));
- connect(reply, SIGNAL(processingFinished(QPlaceReply*)),
- this, SLOT(processingFinished(QPlaceReply*)));
- }
- return reply;
-}
-
-QPlaceContentReply *QPlaceManagerEngineNokiaV1::getPlaceContent(const QString &placeId, const QPlaceContentRequest &request)
-{
- QPlaceContentReplyImplV1 *reply;
- switch (request.contentType()) {
- case QPlaceContent::ImageType: {
- QPlaceRestReply *restReply = QPlaceRestManager::instance()->sendPlaceImagesRequest(placeId,
- request);
- reply = new QPlaceContentReplyImplV1(request, restReply, manager(), this);
-
- if (!restReply)
- QMetaObject::invokeMethod(reply, "restError", Qt::QueuedConnection,
- Q_ARG(QPlaceReply::Error, QPlaceReply::UnknownError),
- Q_ARG(QString, QString("Could not create rest reply for image content request")));
- break;
- }
- case QPlaceContent::ReviewType: {
- QPlaceRestReply *restReply = QPlaceRestManager::instance()->sendPlaceReviewRequest(placeId,
- request);
- reply = new QPlaceContentReplyImplV1(request, restReply, manager(), this);
-
- if (!restReply)
- QMetaObject::invokeMethod(reply, "restError", Qt::QueuedConnection,
- Q_ARG(QPlaceReply::Error, QPlaceReply::UnknownError),
- Q_ARG(QString, QString("Could not create rest reply for review content request")));
- break;
- }
- case QPlaceContent::EditorialType: {
- QPlaceRestReply *restReply =
- QPlaceRestManager::instance()->sendPlaceRequest(placeId);
-
- reply = new QPlaceContentReplyImplV1(request, restReply, manager(), this);
-
- if (!restReply) {
- QMetaObject::invokeMethod(reply, "restError", Qt::QueuedConnection,
- Q_ARG(QPlaceReply::Error, QPlaceReply::UnknownError),
- Q_ARG(QString, QString("Could not create rest reply for editorial content request")));
- }
-
- break;
- }
- default: {
- reply = new QPlaceContentReplyImplV1(request, 0, manager(), this);
- QMetaObject::invokeMethod(reply, "restError", Qt::QueuedConnection,
- Q_ARG(QPlaceReply::Error, QPlaceReply::UnsupportedError),
- Q_ARG(QString, QString("Retrieval of given content type not supported")));
- }
- }
-
- reply->setStartNumber(request.offset());
- connect(reply, SIGNAL(processingError(QPlaceReply*,QPlaceReply::Error,QString)),
- this, SLOT(processingError(QPlaceReply*,QPlaceReply::Error,QString)));
- connect(reply, SIGNAL(processingFinished(QPlaceReply*)),
- this, SLOT(processingFinished(QPlaceReply*)));
-
- return reply;
-}
-
-QPlaceSearchReply *QPlaceManagerEngineNokiaV1::search(const QPlaceSearchRequest &query)
-{
- QPlaceSearchReplyImplV1 *reply = 0;
-
- if (query.visibilityScope() == QtLocation::UnspecifiedVisibility ||
- query.visibilityScope() == QtLocation::PublicVisibility) {
-
- QPlaceRestReply *restReply = QPlaceRestManager::instance()->sendSearchRequest(query);
-
- if (restReply) {
- reply = new QPlaceSearchReplyImplV1(restReply, this);
- connect(reply, SIGNAL(processingError(QPlaceReply*,QPlaceReply::Error,QString)),
- this, SLOT(processingError(QPlaceReply*,QPlaceReply::Error,QString)));
- connect(reply, SIGNAL(processingFinished(QPlaceReply*)),
- this, SLOT(processingFinished(QPlaceReply*)));
- }
- } else {
- reply = new QPlaceSearchReplyImplV1(0, this);
- QMetaObject::invokeMethod(reply,
- "setError",
- Qt::QueuedConnection,
- Q_ARG(QPlaceReply::Error, QPlaceReply::UnsupportedError),
- Q_ARG(QString, "Searching for places with unsupported visibility scope"));
-
- }
- return reply;
-}
-
-QPlaceSearchReply *QPlaceManagerEngineNokiaV1::recommendations(const QString &placeId, const QPlaceSearchRequest &query)
-{
- QPlaceRecommendationReplyImplV1 *reply = 0;
- QPlaceSearchRequest newQuery = query;
- newQuery.setSearchTerm(placeId);
- QPlaceRestReply *restReply = QPlaceRestManager::instance()->sendRecommendationRequest(newQuery, QString());
- if (restReply) {
- reply = new QPlaceRecommendationReplyImplV1(restReply, manager(), this);
- connect(reply, SIGNAL(processingError(QPlaceReply*,QPlaceReply::Error,QString)),
- this, SLOT(processingError(QPlaceReply*,QPlaceReply::Error,QString)));
- connect(reply, SIGNAL(processingFinished(QPlaceReply*)),
- this, SLOT(processingFinished(QPlaceReply*)));
- }
- return reply;
-}
-
-QPlaceSearchSuggestionReply *QPlaceManagerEngineNokiaV1::searchSuggestions(const QPlaceSearchRequest &query)
-{
- QPlaceTextPredictionReplyImpl *reply = NULL;
- QPlaceRestReply *restReply = QPlaceRestManager::instance()->sendSuggestionRequest(query);
- if (restReply) {
- reply = new QPlaceTextPredictionReplyImpl(restReply, this);
- connect(reply, SIGNAL(processingError(QPlaceReply*,QPlaceReply::Error,QString)),
- this, SLOT(processingError(QPlaceReply*,QPlaceReply::Error,QString)));
- connect(reply, SIGNAL(processingFinished(QPlaceReply*)),
- this, SLOT(processingFinished(QPlaceReply*)));
- }
- return reply;
-}
-
-QPlaceIdReply *QPlaceManagerEngineNokiaV1::savePlace(const QPlace &place)
-{
- IdReply *reply = new IdReply(QPlaceIdReply::SavePlace, this);
- reply->setId(place.placeId());
- reply->triggerDone(QPlaceReply::UnsupportedError, QCoreApplication::translate(NOKIA_PLUGIN_CONTEXT_NAME, SAVING_PLACE_NOT_SUPPORTED));
- return reply;
-}
-
-QPlaceIdReply *QPlaceManagerEngineNokiaV1::removePlace(const QString &placeId)
-{
- IdReply *reply = new IdReply(QPlaceIdReply::RemovePlace, this);
- reply->setId(placeId);
- reply->triggerDone(QPlaceReply::UnsupportedError, QCoreApplication::translate(NOKIA_PLUGIN_CONTEXT_NAME, REMOVING_PLACE_NOT_SUPPORTED));
- return reply;
-}
-
-QPlaceIdReply *QPlaceManagerEngineNokiaV1::saveCategory(const QPlaceCategory &category, const QString &parentId)
-{
- Q_UNUSED(parentId)
-
- IdReply *reply = new IdReply(QPlaceIdReply::SaveCategory, this);
- reply->setId(category.categoryId());
- reply->triggerDone(QPlaceReply::UnsupportedError, QCoreApplication::translate(NOKIA_PLUGIN_CONTEXT_NAME, SAVING_CATEGORY_NOT_SUPPORTED));
- return reply;
-}
-
-QPlaceIdReply *QPlaceManagerEngineNokiaV1::removeCategory(const QString &categoryId)
-{
- IdReply *reply = new IdReply(QPlaceIdReply::RemoveCategory, this);
- reply->setId(categoryId);
- reply->triggerDone(QPlaceReply::UnsupportedError, QCoreApplication::translate(NOKIA_PLUGIN_CONTEXT_NAME, REMOVING_CATEGORY_NOT_SUPPORTED));
- return reply;
-}
-
-QPlaceReply *QPlaceManagerEngineNokiaV1::initializeCategories()
-{
- QPlaceReply *reply = QPlaceCategoriesRepository::instance()->initializeCategories();
- if (reply) {
- reply->setParent(this);
- connect(reply, SIGNAL(processingError(QPlaceReply*,QPlaceReply::Error,QString)),
- this, SLOT(processingError(QPlaceReply*,QPlaceReply::Error,QString)));
- connect(reply, SIGNAL(processingFinished(QPlaceReply*)),
- this, SLOT(processingFinished(QPlaceReply*)));
- }
- return reply;
-}
-
-QString QPlaceManagerEngineNokiaV1::parentCategoryId(const QString &categoryId) const
-{
- QPlaceCategoryTree tree = QPlaceCategoriesRepository::instance()->categories();
- return tree.value(categoryId).parentId;
-}
-
-QStringList QPlaceManagerEngineNokiaV1::childCategoryIds(const QString &categoryId) const
-{
- QPlaceCategoryTree tree = QPlaceCategoriesRepository::instance()->categories();
- return tree.value(categoryId).childIds;
-}
-
-QPlaceCategory QPlaceManagerEngineNokiaV1::category(const QString &categoryId) const
-{
- QPlaceCategoryTree tree = QPlaceCategoriesRepository::instance()->categories();
- return tree.value(categoryId).category;
-}
-
-QList<QPlaceCategory> QPlaceManagerEngineNokiaV1::childCategories(const QString &parentId) const
-{
- QList<QPlaceCategory> results;
- QPlaceCategoryTree tree = QPlaceCategoriesRepository::instance()->categories();
- PlaceCategoryNode node = tree.value(parentId);
- foreach (const QString &childId, node.childIds)
- results.append(tree.value(childId).category);
- return results;
-}
-
-QList<QLocale> QPlaceManagerEngineNokiaV1::locales() const
-{
- return QPlaceRestManager::instance()->locales();
-}
-
-void QPlaceManagerEngineNokiaV1::setLocales(const QList<QLocale> &locales)
-{
- QPlaceRestManager::instance()->setLocales(locales);
-}
-
-void QPlaceManagerEngineNokiaV1::processingError(QPlaceReply *reply,
- const QPlaceReply::Error &errorId,
- const QString &errorMessage)
-{
- emit error(reply, errorId, errorMessage);
-}
-
-void QPlaceManagerEngineNokiaV1::processingFinished(QPlaceReply *reply)
-{
- emit finished(reply);
-}
diff --git a/src/plugins/geoservices/nokia/qplacemanagerengine_nokiav1.h b/src/plugins/geoservices/nokia/qplacemanagerengine_nokiav1.h
deleted file mode 100644
index d85f981a..00000000
--- a/src/plugins/geoservices/nokia/qplacemanagerengine_nokiav1.h
+++ /dev/null
@@ -1,104 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/
-**
-** This file is part of the QtLocation module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** GNU Lesser General Public License Usage
-** This file may be used under the terms of the GNU Lesser General Public
-** License version 2.1 as published by the Free Software Foundation and
-** appearing in the file LICENSE.LGPL included in the packaging of this
-** file. Please review the following information to ensure the GNU Lesser
-** General Public License version 2.1 requirements will be met:
-** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Nokia gives you certain additional
-** rights. These rights are described in the Nokia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU General
-** Public License version 3.0 as published by the Free Software Foundation
-** and appearing in the file LICENSE.GPL included in the packaging of this
-** file. Please review the following information to ensure the GNU General
-** Public License version 3.0 requirements will be met:
-** http://www.gnu.org/copyleft/gpl.html.
-**
-** Other Usage
-** Alternatively, this file may be used in accordance with the terms and
-** conditions contained in a signed written agreement between you and Nokia.
-**
-**
-**
-**
-**
-**
-** $QT_END_LICENSE$
-**
-** This file is part of the Nokia services plugin for the Maps and
-** Navigation API. The use of these services, whether by use of the
-** plugin or by other means, is governed by the terms and conditions
-** described by the file NOKIA_TERMS_AND_CONDITIONS.txt in
-** this package, located in the directory containing the Nokia services
-** plugin source code.
-**
-****************************************************************************/
-
-#ifndef QPLACEMANAGERENGINE_NOKIAV1_H
-#define QPLACEMANAGERENGINE_NOKIAV1_H
-
-#include <qplacecontent.h>
-#include <qplacemanagerengine.h>
-#include <qgeoserviceprovider.h>
-
-QT_BEGIN_NAMESPACE
-
-class QNetworkInterface;
-class QPlaceContentReply;
-class QGeoNetworkAccessManager;
-
-class QPlaceManagerEngineNokiaV1 : public QPlaceManagerEngine
-{
- Q_OBJECT
-public:
-
- QPlaceManagerEngineNokiaV1(QGeoNetworkAccessManager *networkManager,
- const QMap<QString, QVariant> &parameters,
- QGeoServiceProvider::Error *error,
- QString *errorString);
- ~QPlaceManagerEngineNokiaV1();
-
- QPlaceDetailsReply *getPlaceDetails(const QString &placeId);
-
- QPlaceContentReply *getPlaceContent(const QString &placeId, const QPlaceContentRequest &request);
-
- QPlaceSearchReply *search(const QPlaceSearchRequest &query);
-
- QPlaceSearchReply *recommendations(const QString &placeId, const QPlaceSearchRequest &query);
- QPlaceSearchSuggestionReply *searchSuggestions(const QPlaceSearchRequest &query);
-
- QPlaceIdReply *savePlace(const QPlace &place);
- QPlaceIdReply *removePlace(const QString &placeId);
-
- QPlaceIdReply *saveCategory(const QPlaceCategory &category, const QString &parentId);
- QPlaceIdReply *removeCategory(const QString &categoryId);
-
- QPlaceReply *initializeCategories();
- QString parentCategoryId(const QString &categoryId) const;
- QStringList childCategoryIds(const QString &categoryId) const;
- QPlaceCategory category(const QString &categoryId) const;
- QList<QPlaceCategory> childCategories(const QString &parentId) const;
-
- QList<QLocale> locales() const;
- void setLocales(const QList<QLocale> &locales);
-
-private Q_SLOTS:
- void processingError(QPlaceReply *reply, const QPlaceReply::Error &error, const QString &errorMessage);
- void processingFinished(QPlaceReply *reply);
-};
-
-QT_END_NAMESPACE
-
-#endif // QPLACEMANAGERENGINE_NOKIAV1_H