/**************************************************************************** ** ** Copyright (C) 2017 The Qt Company Ltd. ** Copyright (C) 2017 Canonical 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 "qcontactcollection.h" #include "qcontactcollection_p.h" #ifndef QT_NO_DATASTREAM #include #endif #ifndef QT_NO_DEBUG_STREAM #include #endif QT_BEGIN_NAMESPACE_CONTACTS /*! \class QContactCollection \brief The QContactCollection class represents a collection of contacts in a manager. \inmodule QtContacts \ingroup contacts-main A collection has an ID and optionally some metadata, and contains zero or more contacts. Each different manager will have different requirements before a collection may be saved in it. Some managers do not allow collections to be saved at all, while others may require a collection to have some minimal amount of metadata defined in it prior to save. For example, most managers require a valid value for the QContactCollection::KeyName meta data key to be set prior to save. Every QContact is contained within a collection when stored in a manager. To save an contact in a collection, the client should call QContact::setCollectionId() on the contact, passing in the ID of the destination collection as the argument, and then save the contact in the manager. To move an contact from one collection to another, the client must fetch the contact from the manager, set the collection ID in the contact to the ID of the collection to which the client wishes the contact to be moved, and then resave the contact in the manager. That is, the collection which a contact is part of is treated as a property of the contact. */ /*! \enum QContactCollection::MetaDataKey This enumeration describes the key of the contact collection metadata. \value KeyName This metadata describes the name of the collection. \value KeyDescription This metadata gives a description of the collection. \value KeyColor This metadata describes the color of the collection. \value KeySecondaryColor This metadata describes the secondary color of the collection. \value KeyImage This metadata describes the image of the collection. \value KeyExtended This is an extened metadata, which is stored as a QVariantMap. */ /*! Constructs a new collection. */ QContactCollection::QContactCollection() : d(new QContactCollectionData) { } /*! Cleans up any memory in use by the collection. */ QContactCollection::~QContactCollection() { } /*! Constructs a new copy of the \a other collection. */ QContactCollection::QContactCollection(const QContactCollection &other) : d(other.d) { } /*! Assigns this collection to be equal to the \a other collection. */ QContactCollection &QContactCollection::operator=(const QContactCollection &other) { d = other.d; return *this; } /*! Returns true if the collection is the same as that of the \a other collection, false if either the ID or any of the stored metadata are not the same. */ bool QContactCollection::operator==(const QContactCollection &other) const { if (d == other.d) return true; if (d->m_id != other.d->m_id || d->m_metaData.size() != other.d->m_metaData.size()) { return false; } QMap::const_iterator i = d->m_metaData.constBegin(); while (i != d->m_metaData.constEnd()) { if (i.value() != other.d->m_metaData.value(i.key())) return false; ++i; } return true; } /*! \fn QContactCollection::operator!=(const QContactCollection &other) const Returns true if the collection is not the same as the \a other collection. */ /*! Returns the ID of the collection. */ QContactCollectionId QContactCollection::id() const { return d->m_id; } /*! Sets the ID of the collection to \a id. If the ID is set to a null (default-constructed) ID, saving the collection will cause the manager to save the collection as a new collection. */ void QContactCollection::setId(const QContactCollectionId &id) { d->m_id = id; } /*! Sets the metadata of the collection to be \a metaData. */ void QContactCollection::setMetaData(const QMap &metaData) { d->m_metaData = metaData; } /*! Returns the meta data of the collection. */ QMap QContactCollection::metaData() const { return d->m_metaData; } /*! Sets the meta data of the collection for the given \a key to the given \a value. */ void QContactCollection::setMetaData(MetaDataKey key, const QVariant &value) { d->m_metaData.insert(key, value); } /*! Sets the value of the extended metadata with the given \a key to \a value. */ void QContactCollection::setExtendedMetaData(const QString &key, const QVariant &value) { QVariantMap variantMap = d->m_metaData.value(QContactCollection::KeyExtended).toMap(); variantMap.insert(key, value); d->m_metaData.insert(QContactCollection::KeyExtended, variantMap); } /*! Returns the value of extended metadata with the given \a key. */ QVariant QContactCollection::extendedMetaData(const QString &key) const { return d->m_metaData.value(QContactCollection::KeyExtended).toMap().value(key); } /*! Returns all extended metadata of the collection. */ QVariantMap QContactCollection::extendedMetaData() const { return d->m_metaData.value(QContactCollection::KeyExtended).toMap(); } /*! Returns the meta data of the collection for the given \a key. */ QVariant QContactCollection::metaData(MetaDataKey key) const { return d->m_metaData.value(key); } /*! \relates QContactCollection Returns the hash value for \a key. */ Q_CONTACTS_EXPORT size_t qHash(const QContactCollection &key) { size_t hash = qHash(key.id()); QMap::const_iterator i = key.d->m_metaData.constBegin(); while (i != key.d->m_metaData.constEnd()) { if (i.key() == QContactCollection::KeyExtended) { QVariantMap variantMap = i.value().toMap(); QVariantMap::const_iterator j = variantMap.constBegin(); while (j != variantMap.constEnd()) { hash += QT_PREPEND_NAMESPACE(qHash)(j.key()) + QT_PREPEND_NAMESPACE(qHash)(j.value().toString()); ++j; } } else { hash += QT_PREPEND_NAMESPACE(qHash)(i.key()) + QT_PREPEND_NAMESPACE(qHash)(i.value().toString()); } ++i; } return hash; } #ifndef QT_NO_DEBUG_STREAM /*! \relates QContactCollection Streams the \a collection to the given debug stream \a dbg, and returns the stream. */ QDebug operator<<(QDebug dbg, const QContactCollection& collection) { dbg.nospace() << "QContactCollection(id=" << collection.id(); QMap metaData = collection.metaData(); QMap::const_iterator i = metaData.constBegin(); while (i != metaData.constEnd()) { dbg.nospace() << ", " << i.key() << '=' << i.value(); ++i; } dbg.nospace() << ')'; return dbg.maybeSpace(); } #endif // QT_NO_DEBUG_STREAM #ifndef QT_NO_DATASTREAM /*! \relates QContactCollection Writes \a collection to the stream \a out. */ QDataStream &operator<<(QDataStream &out, const QContactCollection &collection) { quint8 formatVersion = 1; QMap values; auto i = collection.metaData().constBegin(); auto end = collection.metaData().constEnd(); for ( ; i != end; ++i) values.insert(i.key(), i.value()); return out << formatVersion << collection.id().toString() << values; } /*! \relates QContactCollection Reads a contact collection from stream \a in into \a collection. */ QDataStream &operator>>(QDataStream &in, QContactCollection &collection) { quint8 formatVersion; in >> formatVersion; if (formatVersion == 1) { QString idString; QMap values; in >> idString >> values; collection = QContactCollection(); collection.setId(QContactCollectionId::fromString(idString)); QMap::const_iterator i = values.constBegin(); while (i != values.constEnd()) { collection.setMetaData(static_cast(i.key()), i.value()); ++i; } } else { in.setStatus(QDataStream::ReadCorruptData); } return in; } #endif // QT_NO_DATASTREAM QT_END_NAMESPACE_CONTACTS