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
|
/****************************************************************************
**
** Copyright (C) 2017 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the QtOrganizer 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 "qorganizercollection.h"
#include "qorganizercollection_p.h"
#ifndef QT_NO_DATASTREAM
#include <QtCore/qdatastream.h>
#endif
#ifndef QT_NO_DEBUG_STREAM
#include <QtCore/qdebug.h>
#endif
QT_BEGIN_NAMESPACE_ORGANIZER
/*!
\class QOrganizerCollection
\brief The QOrganizerCollection class represents a collection of items in a manager.
\inmodule QtOrganizer
\ingroup organizer-main
A collection has an ID and optionally some metadata, and contains zero or more items.
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 meta data defined in it prior to save.
For example, most managers require a valid value for the QOrganizerCollection::KeyName
meta data key to be set prior to save.
Every QOrganizerItem is contained within a collection when stored in a manager.
To save an item in a collection, the client should call QOrganizerItem::setCollectionId()
on the item, passing in the ID of the destination collection as the argument, and then
save the item in the manager. To move an item from one collection to another, the client
must fetch the item from the manager, set the collection ID in the item to the ID of the
collection to which the client wishes the item to be moved, and then resave the item in the
manager. That is, the collection which an item is part of is treated as a property of the
item.
*/
/*!
\enum QOrganizerCollection::MetaDataKey
This enumeration describes the key of the organizer 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.
*/
QOrganizerCollection::QOrganizerCollection()
: d(new QOrganizerCollectionData)
{
}
/*!
Cleans up any memory in use by the collection.
*/
QOrganizerCollection::~QOrganizerCollection()
{
}
/*!
Constructs a new copy of the \a other collection.
*/
QOrganizerCollection::QOrganizerCollection(const QOrganizerCollection &other)
: d(other.d)
{
}
/*!
Assigns this collection to be equal to the \a other collection.
*/
QOrganizerCollection &QOrganizerCollection::operator=(const QOrganizerCollection &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 QOrganizerCollection::operator==(const QOrganizerCollection &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<QOrganizerCollection::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 QOrganizerCollection::operator!=(const QOrganizerCollection &other) const
Returns true if the collection is not the same as the \a other collection.
*/
/*!
Returns the ID of the collection.
*/
QOrganizerCollectionId QOrganizerCollection::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 QOrganizerCollection::setId(const QOrganizerCollectionId &id)
{
d->m_id = id;
}
/*!
Sets the metadata of the collection to be \a metaData.
*/
void QOrganizerCollection::setMetaData(const QMap<QOrganizerCollection::MetaDataKey, QVariant> &metaData)
{
d->m_metaData = metaData;
}
/*!
Returns the meta data of the collection.
*/
QMap<QOrganizerCollection::MetaDataKey, QVariant> QOrganizerCollection::metaData() const
{
return d->m_metaData;
}
/*!
Sets the meta data of the collection for the given \a key to the given \a value.
*/
void QOrganizerCollection::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 QOrganizerCollection::setExtendedMetaData(const QString &key, const QVariant &value)
{
QVariantMap variantMap = d->m_metaData.value(QOrganizerCollection::KeyExtended).toMap();
variantMap.insert(key, value);
d->m_metaData.insert(QOrganizerCollection::KeyExtended, variantMap);
}
/*!
Returns the value of extended metadata with the given \a key.
*/
QVariant QOrganizerCollection::extendedMetaData(const QString &key) const
{
return d->m_metaData.value(QOrganizerCollection::KeyExtended).toMap().value(key);
}
/*!
Returns the meta data of the collection for the given \a key.
*/
QVariant QOrganizerCollection::metaData(MetaDataKey key) const
{
return d->m_metaData.value(key);
}
/*!
\relates QOrganizerCollection
Returns the hash value for \a key.
*/
Q_ORGANIZER_EXPORT uint qHash(const QOrganizerCollection &key)
{
uint hash = qHash(key.id());
QMap<QOrganizerCollection::MetaDataKey, QVariant>::const_iterator i = key.d->m_metaData.constBegin();
while (i != key.d->m_metaData.constEnd()) {
if (i.key() == QOrganizerCollection::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 QOrganizerCollection
Streams the \a collection to the given debug stream \a dbg, and returns the stream.
*/
QDebug operator<<(QDebug dbg, const QOrganizerCollection& collection)
{
dbg.nospace() << "QOrganizerCollection(id=" << collection.id();
QMap<QOrganizerCollection::MetaDataKey, QVariant> metaData = collection.metaData();
QMap<QOrganizerCollection::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 QOrganizerCollection
Writes \a collection to the stream \a out.
*/
QDataStream &operator<<(QDataStream &out, const QOrganizerCollection &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 QOrganizerCollection
Reads an organizer collection from stream \a in into \a collection.
*/
QDataStream &operator>>(QDataStream &in, QOrganizerCollection &collection)
{
quint8 formatVersion;
in >> formatVersion;
if (formatVersion == 1) {
QString idString;
QMap<int, QVariant> values;
in >> idString >> values;
collection = QOrganizerCollection();
collection.setId(QOrganizerCollectionId::fromString(idString));
QMap<int, QVariant>::const_iterator i = values.constBegin();
while (i != values.constEnd()) {
collection.setMetaData(static_cast<QOrganizerCollection::MetaDataKey>(i.key()), i.value());
++i;
}
} else {
in.setStatus(QDataStream::ReadCorruptData);
}
return in;
}
#endif // QT_NO_DATASTREAM
QT_END_NAMESPACE_ORGANIZER
|