/**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the Qt Mobility Components. ** ** $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$ ** ****************************************************************************/ #include "qlandmarkfetchbyidrequest.h" #include "qlandmarkrequests_p.h" #include "qlandmark.h" QTM_BEGIN_NAMESPACE /*! \class QLandmarkFetchByIdRequest \brief The QLandmarkFetchByIdRequest class allows a client to asynchronously request a list of landmarks by id from a landmark manager. For a QLandmarkFetchByIdRequest, the resultsAvailable() signal will be emitted when the resultant landmarks (which may be retrieved by calling landmarks()) are updated, whenever indiviual items error out(individual errors may be retrieved by calling errorMap()), or when an overall operation error occurs(which may be retrieved by calling error()). Please see the class documentation for QLandmarkAbstractRequest for more information about the usage of request classes and ownership semantics. \inmodule QtLocation \ingroup landmarks-request \since 1.1 */ /*! Creates a new request object with the given \a manager \a parent. */ QLandmarkFetchByIdRequest::QLandmarkFetchByIdRequest(QLandmarkManager *manager, QObject *parent) : QLandmarkAbstractRequest(new QLandmarkFetchByIdRequestPrivate(manager), parent) { } /*! Destroys the request object. */ QLandmarkFetchByIdRequest::~QLandmarkFetchByIdRequest() { } /*! Returns a list of identifiers of landmarks which are to be retrieved by this request. */ QList QLandmarkFetchByIdRequest::landmarkIds() const { Q_D(const QLandmarkFetchByIdRequest); QMutexLocker ml(&d->mutex); return d->landmarkIds; } /*! Sets the \a landmarkIds to be retrieved by this request. */ void QLandmarkFetchByIdRequest::setLandmarkIds(const QList &landmarkIds) { Q_D(QLandmarkFetchByIdRequest); QMutexLocker ml(&d->mutex); d->landmarkIds = landmarkIds; } /*! Convenience function that sets a single landmark, specified by \a landmarkId, to be retrieved by this request. */ void QLandmarkFetchByIdRequest::setLandmarkId(const QLandmarkId &landmarkId) { Q_D(QLandmarkFetchByIdRequest); QMutexLocker ml(&d->mutex); d->landmarkIds.clear(); d->landmarkIds.append(landmarkId); } /*! Returns the list of landmarks fetched by this request. */ QList QLandmarkFetchByIdRequest::landmarks() const { Q_D(const QLandmarkFetchByIdRequest); QMutexLocker ml(&d->mutex); return d->landmarks; } /*! Returns the mapping of input landmark ID list indices to the errors which occurred. */ QMap QLandmarkFetchByIdRequest::errorMap() const { Q_D(const QLandmarkFetchByIdRequest); QMutexLocker ml(&d->mutex); return d->errorMap; } #include "moc_qlandmarkfetchbyidrequest.cpp" QTM_END_NAMESPACE