typo found by Andrey Cherepanov
[kdepim.git] / akonadi / resources / shared / collectionannotationsattribute.cpp
blobb7bf719cdadc2d979693ac3cd14b842d64f1428a
1 /*
2 Copyright (C) 2008 Omat Holding B.V. <info@omat.nl>
4 This library is free software; you can redistribute it and/or modify it
5 under the terms of the GNU Library General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or (at your
7 option) any later version.
9 This library is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
12 License for more details.
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to the
16 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 02110-1301, USA.
20 #include "collectionannotationsattribute.h"
22 #include <QByteArray>
23 #include <akonadi/attribute.h>
25 using namespace Akonadi;
27 CollectionAnnotationsAttribute::CollectionAnnotationsAttribute()
31 CollectionAnnotationsAttribute::CollectionAnnotationsAttribute( const QMap<QByteArray, QByteArray> &annotations )
32 : mAnnotations( annotations )
36 void CollectionAnnotationsAttribute::setAnnotations( const QMap<QByteArray, QByteArray> &annotations )
38 mAnnotations = annotations;
41 QMap<QByteArray, QByteArray> CollectionAnnotationsAttribute::annotations() const
43 return mAnnotations;
46 QByteArray CollectionAnnotationsAttribute::type() const
48 return "collectionannotations";
51 Akonadi::Attribute* CollectionAnnotationsAttribute::clone() const
53 return new CollectionAnnotationsAttribute( mAnnotations );
56 QByteArray CollectionAnnotationsAttribute::serialized() const
58 QByteArray result = "";
60 foreach ( const QByteArray &key, mAnnotations.keys() ) {
61 result+= key;
62 result+= ' ';
63 result+= mAnnotations[key];
64 result+= " % "; // We use this separator as '%' is not allowed in keys or values
66 result.chop( 3 );
68 return result;
71 void CollectionAnnotationsAttribute::deserialize( const QByteArray &data )
73 mAnnotations.clear();
74 QList<QByteArray> lines = data.split( '%' );
76 foreach ( const QByteArray &line, lines ) {
77 QByteArray trimmed = line.trimmed();
78 int wsIndex = trimmed.indexOf( ' ' );
79 const QByteArray key = trimmed.mid( 0, wsIndex ).trimmed();
80 const QByteArray value = trimmed.mid( wsIndex+1, line.length()-wsIndex ).trimmed();
81 mAnnotations[key] = value;