/**************************************************************************** ** ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtContacts module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** 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 Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 2.0 or (at your option) the GNU General ** Public license version 3 or any later version approved by the KDE Free ** Qt Foundation. The licenses are as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 ** 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-2.0.html and ** https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qcontactfetchbyidrequest.h" #include "qcontactrequests_p.h" QT_BEGIN_NAMESPACE_CONTACTS /*! \class QContactFetchByIdRequest \brief The QContactFetchByIdRequest class allows a client to asynchronously request contacts from a contacts store manager, given a list of contact IDs. The contacts fetched by the backend should have a one-to-one correspondence to the IDs passed into this class. That is, the nth contact in the returned list should have an ID which is equal to the nth ID in the list of IDs. Any invalid ID should correspond to an empty QContact. For a QContactFetchByIdRequest, the resultsAvailable() signal will be emitted when the resultant contacts (which may be retrieved by calling contacts()), are updated, as well as if the overall operation error (which may be retrieved by calling error()) is updated. Please see the class documentation of QContactAbstractRequest for more information about the usage of request classes and ownership semantics. \inmodule QtContacts \ingroup contacts-requests */ /*! Constructs a new contact fetch request whose parent is the specified \a parent */ QContactFetchByIdRequest::QContactFetchByIdRequest(QObject* parent) : QContactAbstractRequest(new QContactFetchByIdRequestPrivate, parent) { } /*! Frees any memory used by this request */ QContactFetchByIdRequest::~QContactFetchByIdRequest() { } /*! Sets the list of ids of the contacts that the backend should retrieve to \a ids. */ void QContactFetchByIdRequest::setIds(const QList& ids) { Q_D(QContactFetchByIdRequest); QMutexLocker ml(&d->m_mutex); d->m_contactIds = ids; } /*! Sets the fetch hint which may be used by the backend to optimize contact retrieval to \a fetchHint. A client should not make changes to a contact which has been retrieved using a fetch hint other than the default fetch hint. Doing so will result in information loss when saving the contact back to the manager (as the "new" restricted contact will replace the previously saved contact in the backend). \sa QContactFetchHint */ void QContactFetchByIdRequest::setFetchHint(const QContactFetchHint &fetchHint) { Q_D(QContactFetchByIdRequest); QMutexLocker ml(&d->m_mutex); d->m_fetchHint = fetchHint; } /*! Returns the list of ids of the contacts that the backend should retrieve. */ QList QContactFetchByIdRequest::contactIds() const { Q_D(const QContactFetchByIdRequest); QMutexLocker ml(&d->m_mutex); return d->m_contactIds; } /*! Returns the fetch hint which may be used by the backend to optimize contact retrieval. A client should not make changes to a contact which has been retrieved using a fetch hint other than the default fetch hint. Doing so will result in information loss when saving the contact back to the manager (as the "new" restricted contact will replace the previously saved contact in the backend). \sa QContactFetchHint */ QContactFetchHint QContactFetchByIdRequest::fetchHint() const { Q_D(const QContactFetchByIdRequest); QMutexLocker ml(&d->m_mutex); return d->m_fetchHint; } /*! Returns the list of contacts retrieved by this request */ QList QContactFetchByIdRequest::contacts() const { Q_D(const QContactFetchByIdRequest); QMutexLocker ml(&d->m_mutex); return d->m_contacts; } /*! Returns the map of input definition list indices to errors which occurred. In case of global errors like QContactManager::TimeoutError affecting to all items in the input definitions the error map may be empty. */ QMap QContactFetchByIdRequest::errorMap() const { Q_D(const QContactFetchByIdRequest); QMutexLocker ml(&d->m_mutex); return d->m_errors; } QT_END_NAMESPACE_CONTACTS #include "moc_qcontactfetchbyidrequest.cpp"