1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
|
/****************************************************************************
**
** 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 <QtCore/qdatastream.h>
#endif
#ifndef QT_NO_DEBUG_STREAM
#include <QtCore/qdebug.h>
#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<QContactCollection::MetaDataKey, QVariant>::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<QContactCollection::MetaDataKey, QVariant> &metaData)
{
d->m_metaData = metaData;
}
/*!
Returns the meta data of the collection.
*/
QMap<QContactCollection::MetaDataKey, QVariant> 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<QContactCollection::MetaDataKey, QVariant>::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<QContactCollection::MetaDataKey, QVariant> metaData = collection.metaData();
QMap<QContactCollection::MetaDataKey, QVariant>::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<int, QVariant> 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<int, QVariant> values;
in >> idString >> values;
collection = QContactCollection();
collection.setId(QContactCollectionId::fromString(idString));
QMap<int, QVariant>::const_iterator i = values.constBegin();
while (i != values.constEnd()) {
collection.setMetaData(static_cast<QContactCollection::MetaDataKey>(i.key()), i.value());
++i;
}
} else {
in.setStatus(QDataStream::ReadCorruptData);
}
return in;
}
#endif // QT_NO_DATASTREAM
QT_END_NAMESPACE_CONTACTS
|