/**************************************************************************** ** ** 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 "qcontactsaverequest.h" #include "qcontactrequests_p.h" QT_BEGIN_NAMESPACE_CONTACTS /*! \class QContactSaveRequest \brief The QContactSaveRequest class allows a client to asynchronously request that certain contacts be saved to a contacts store. For a QContactSaveRequest, the resultsAvailable() signal will be emitted when either the individual item errors (which may be retrieved by calling errorMap()), or 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 save request whose parent is the specified \a parent */ QContactSaveRequest::QContactSaveRequest(QObject* parent) : QContactAbstractRequest(new QContactSaveRequestPrivate, parent) { } /*! Frees any memory used by this request */ QContactSaveRequest::~QContactSaveRequest() { } /*! Sets the contact to be saved to \a contact. Equivalent to calling: \code setContacts(QList() << contact); \endcode */ void QContactSaveRequest::setContact(const QContact& contact) { Q_D(QContactSaveRequest); QMutexLocker ml(&d->m_mutex); d->m_contacts.clear(); d->m_contacts.append(contact); } /*! Sets the list of contacts to be saved to \a contacts */ void QContactSaveRequest::setContacts(const QList& contacts) { Q_D(QContactSaveRequest); QMutexLocker ml(&d->m_mutex); d->m_contacts = contacts; } /*! Returns the list of contacts which will be saved if called prior to calling \c start(), otherwise returns the list of contacts with their ids set appropriately (successfully saved new contacts will have an id assigned). */ QList QContactSaveRequest::contacts() const { Q_D(const QContactSaveRequest); QMutexLocker ml(&d->m_mutex); return d->m_contacts; } /*! Returns the map of input contact list indices to errors which occurred */ QMap QContactSaveRequest::errorMap() const { Q_D(const QContactSaveRequest); QMutexLocker ml(&d->m_mutex); return d->m_errors; } /*! Set the list of definitions to restrict saving to \a typeMask. This allows you to perform partial save (and remove) operations on existing contacts. If \a typeMask is empty (the default), no restrictions will apply, and the passed in contacts will be saved as is. Otherwise, only details whose types are in the typeMask will be saved. If a type is present in the list, but there are no corresponding details in the contact passed into this request, any existing details in the manager for that contact will be removed. This is useful if you've used a fetch hint to fetch a partial contact from a manager so that you can save changes to the details you actually fetched without removing the details you didn't. Additionally, when performing synchronization operations with other managers that don't support the full range of details, you can restrict the update operation to only those details so that you don't lose the extra details that are supported in this manager. \note Some managers do not support partial updates natively, in which case the QtContacts framework will emulate the functionality (fetching the whole contact, applying the new restricted details, and saving the contact back). */ void QContactSaveRequest::setTypeMask(const QList &typeMask) { Q_D(QContactSaveRequest); QMutexLocker ml(&d->m_mutex); d->m_typeMask = typeMask; } /*! Returns the list of definitions that this request will operate on. If the list is empty, the request will operate on all details. */ QList QContactSaveRequest::typeMask() const { Q_D(const QContactSaveRequest); QMutexLocker ml(&d->m_mutex); return d->m_typeMask; } #include "moc_qcontactsaverequest.cpp" QT_END_NAMESPACE_CONTACTS