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 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
|
/****************************************************************************
**
** Copyright (C) 2017 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the QtVersit 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 "qversitproperty.h"
#include "qversitproperty_p.h"
#ifndef QT_NO_DEBUG_STREAM
#include <QtCore/qdebug.h>
#endif
#include <QtCore/qtextcodec.h>
#include "qversitdocument.h"
QT_BEGIN_NAMESPACE_VERSIT
/*!
\class QVersitProperty
\brief The QVersitProperty class stores the name, value, groups and parameters of a Versit property.
\ingroup versit
\inmodule QtVersit
A vCard is represented in abstract form as a QVersitDocument that consists of a number of
properties such as a name (N), a telephone number (TEL) and an email address (EMAIL), for
instance. Each of these properties is stored as an instance of a QVersitProperty in a
QVersitDocument.
A QVersitProperty consists of a list of groups, a name, a list of parameters (key/value pairs),
and a value.
The value of a QVersitProperty is stored as a QVariant and should always be one of four types:
QString for textual values, QByteArray for binary data (eg. images), QStringList for structured
textual data, or QVersitDocument for nested documents. The \l QVersitReader will parse Versit
properties and assign the correct type of object to the property value. The \l QVersitWriter will
serialize objects of these types correctly into the (text-based) Versit format.
For example, a property might appear in a vCard as:
\code
ADR;TYPE=home,postal:;;123 Main Street;Any Town;CA;91921-1234
\endcode
This would be stored as a QVersitProperty with the name \tt{ADR} and two parameters (both named
\tt{TYPE} and with values \tt{home} and \tt{postal} respectively. The value of the
QVersitProperty is a QStringList with six strings, and the valueType is CompoundType.
QVersitProperty supports implicit sharing. The property name and parameter names of a
QVersitProperty are converted to upper-case when they are stored to a QVersitProperty.
\sa QVersitDocument
*/
/*!
\enum QVersitProperty::ValueType
Describes the type of data held in the property's value.
The vCard and iCalendar specifications allows a property value to hold a string, binary data, or a
nested document. String values can either be unstructured or structured. Structured strings can
be either of compound type or list type. A compound value is one that is delimited by semicolons,
allows empty components, and has a property-specific cardinality and ordering. A list value is
one that is delimited by commas, does not have empty components, and has no restrictions on
cardinality or ordering.
\value PlainType The property value holds an unstructured string and can be retrieved with
QVersitProperty::value()
\value CompoundType The property value holds a compound string and can be retrieved with
QVersitProperty::value<QStringList>()
\value ListType The property value holds a list of strings and can be retrieved with
QVersitProperty::value<QStringList>()
\value BinaryType The property value holds a binary value and can be retrieved with
QVersitProperty::value<QByteArray>()
\value VersitDocumentType The property value holds a nested Versit document and can be retrieved
\value PreformattedType The property value holds a string that represents exactly the text for
the property in the vCard file, bar line-wrapping. That is, if the property were to be written
to file it should be written as-is, with no backslash escaping.
*/
/*! Constructs a new empty property */
QVersitProperty::QVersitProperty() : d(new QVersitPropertyPrivate())
{
}
/*! Constructs a property that is a copy of \a other */
QVersitProperty::QVersitProperty(const QVersitProperty& other) : d(other.d)
{
}
/*! Frees the memory used by the property */
QVersitProperty::~QVersitProperty()
{
}
/*! Assigns this property to \a other */
QVersitProperty& QVersitProperty::operator=(const QVersitProperty& other)
{
if (this != &other)
d = other.d;
return *this;
}
/*! Returns true if this is equal to \a other; false otherwise. */
bool QVersitProperty::operator==(const QVersitProperty& other) const
{
bool equal = d->mGroups == other.d->mGroups &&
d->mName == other.d->mName &&
d->mParameters == other.d->mParameters &&
d->mValueType == other.d->mValueType;
if (!equal)
return false;
// QVariant doesn't support == on QVersitDocuments - do it manually
if (d->mValue.userType() == qMetaTypeId<QVersitDocument>())
return other.d->mValue.userType() == qMetaTypeId<QVersitDocument>()
&& d->mValue.value<QVersitDocument>() == other.d->mValue.value<QVersitDocument>();
else
return d->mValue == other.d->mValue;
}
/*! Returns true if this is not equal to \a other; false otherwise. */
bool QVersitProperty::operator!=(const QVersitProperty& other) const
{
return !(*this == other);
}
/*! Returns the hash value for \a key. */
uint qHash(const QVersitProperty &key)
{
uint hash = QT_PREPEND_NAMESPACE(qHash)(key.name()) + QT_PREPEND_NAMESPACE(qHash)(key.value());
foreach (const QString& group, key.groups()) {
hash += QT_PREPEND_NAMESPACE(qHash)(group);
}
QHash<QString,QString>::const_iterator it = key.parameters().constBegin();
QHash<QString,QString>::const_iterator end = key.parameters().constEnd();
while (it != end) {
hash += QT_PREPEND_NAMESPACE(qHash)(it.key()) + QT_PREPEND_NAMESPACE(qHash)(it.value());
++it;
}
return hash;
}
#ifndef QT_NO_DEBUG_STREAM
QDebug operator<<(QDebug dbg, const QVersitProperty& property)
{
QStringList groups = property.groups();
QString name = property.name();
QMultiHash<QString,QString> parameters = property.parameters();
dbg.nospace() << "QVersitProperty(";
foreach (const QString& group, groups) {
dbg.nospace() << group << '.';
}
dbg.nospace() << name;
QHash<QString,QString>::const_iterator it;
for (it = parameters.constBegin(); it != parameters.constEnd(); ++it) {
dbg.nospace() << ';' << it.key() << '=' << it.value();
}
if (property.valueType() == QVersitProperty::VersitDocumentType)
dbg.nospace() << ':' << property.value<QVersitDocument>();
else
dbg.nospace() << ':' << property.variantValue();
dbg.nospace() << ')';
return dbg.maybeSpace();
}
#endif
/*!
* Sets the groups in the property to the given list of \a groups.
*/
void QVersitProperty::setGroups(const QStringList& groups)
{
d->mGroups.clear();
foreach (const QString& group, groups) {
d->mGroups.append(group);
}
}
/*!
* Gets the groups of the property.
*/
QStringList QVersitProperty::groups() const
{
return d->mGroups;
}
/*!
* Sets the \a name of the property.
* The \a name is converted to upper-case.
*/
void QVersitProperty::setName(const QString& name)
{
d->mName = name.toUpper();
}
/*!
* Gets the name of the property in upper-case.
*/
QString QVersitProperty::name() const
{
return d->mName;
}
/*!
* Replaces all the parameters with \a parameters.
* The names of the parameters are converted to upper-case.
*/
void QVersitProperty::setParameters(const QMultiHash<QString,QString>& parameters)
{
d->mParameters.clear();
// Traverse parameters in the reverse order, because they are added to
// d->mParameters using insert in QVersitProperty::addParameter
QList<QString> keys = parameters.uniqueKeys();
for (int i=keys.count()-1; i >= 0; i--) {
QString key = keys.at(i);
QList<QString> values = parameters.values(key);
for (int j=values.count()-1; j >= 0; j--) {
// Convert all the parameter names and values to upper case
insertParameter(key,values.at(j));
}
}
}
/*!
* Adds a new parameter with \a name and \a value.
* The parameter name is converted to upper-case.
*/
void QVersitProperty::insertParameter(const QString& name, const QString& value)
{
d->mParameters.insert(name.toUpper(), value);
}
/*!
* Removes a parameter with \a name and \a value.
*
* \sa removeParameters()
*/
void QVersitProperty::removeParameter(const QString& name, const QString& value)
{
d->mParameters.remove(name.toUpper(), value);
}
/*!
* Removes all parameters with the given \a name.
*
* \sa removeParameter()
*/
void QVersitProperty::removeParameters(const QString& name)
{
d->mParameters.remove(name.toUpper());
}
/*!
* Return a copy of the contained list of parameters.
* Note that actual the parameters cannot be modified using the copy.
*/
QMultiHash<QString,QString> QVersitProperty::parameters() const
{
return d->mParameters;
}
/*!
* Sets the property value to \a value.
*/
void QVersitProperty::setValue(const QVariant& value)
{
d->mValue = value;
}
/*!
* Returns the value of the property.
*/
QVariant QVersitProperty::variantValue() const
{
return d->mValue;
}
/*!
* \fn T QVersitProperty::value() const
* \overload
* Returns the value of the property as a \tt T.
*/
/*!
* Returns the value of the property as a string if possible, otherwise return an empty string.
* If the property is stored as a QByteArray, it is decoded using the charset specified in the
* property's parameters.
* \sa QVariant::toString()
*/
QString QVersitProperty::value() const
{
if (d->mValue.type() == QVariant::ByteArray) {
if (d->mParameters.contains(QStringLiteral("CHARSET"))) {
QTextCodec* codec = QTextCodec::codecForName(
d->mParameters.value(QStringLiteral("CHARSET")).toLatin1());
if (codec != NULL) {
return codec->toUnicode(d->mValue.toByteArray());
}
}
return QString();
} else {
return d->mValue.toString();
}
}
/*!
* Sets the type of value held in the property to \a type.
*/
void QVersitProperty::setValueType(QVersitProperty::ValueType type)
{
d->mValueType = type;
}
/*!
* Returns the type of value held in the property.
*/
QVersitProperty::ValueType QVersitProperty::valueType() const
{
return d->mValueType;
}
/*!
* Returns true if the property is empty.
*/
bool QVersitProperty::isEmpty() const
{
return d->mGroups.isEmpty()
&& d->mName.isEmpty()
&& d->mParameters.isEmpty()
&& !d->mValue.isValid();
}
/*!
* Clears the contents of this property.
*/
void QVersitProperty::clear()
{
d->mGroups.clear();
d->mName.clear();
d->mValue.clear();
d->mParameters.clear();
d->mValueType = QVersitProperty::PlainType;
}
QT_END_NAMESPACE_VERSIT
|