mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 10:22:50 +00:00
74 lines
2 KiB
C++
74 lines
2 KiB
C++
/*
|
|
Copyright (c) 2007 Till Adam <adam@kde.org>
|
|
Copyright (c) 2007 Volker Krause <vkrause@kde.org>
|
|
|
|
This library is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU Library General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or (at your
|
|
option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
|
|
License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to the
|
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
02110-1301, USA.
|
|
*/
|
|
|
|
#include "itemserializerplugin.h"
|
|
#include "item.h"
|
|
#include "itemserializer_p.h"
|
|
|
|
#include <QtCore/QBuffer>
|
|
|
|
using namespace Akonadi;
|
|
|
|
ItemSerializerPlugin::~ItemSerializerPlugin()
|
|
{
|
|
}
|
|
|
|
QSet<QByteArray> ItemSerializerPlugin::parts(const Item &item) const
|
|
{
|
|
QSet<QByteArray> set;
|
|
if (item.hasPayload()) {
|
|
set.insert(Item::FullPayload);
|
|
}
|
|
|
|
return set;
|
|
}
|
|
|
|
void ItemSerializerPlugin::overridePluginLookup(QObject *p)
|
|
{
|
|
ItemSerializer::overridePluginLookup(p);
|
|
}
|
|
|
|
ItemSerializerPluginV2::~ItemSerializerPluginV2()
|
|
{
|
|
}
|
|
|
|
QSet<QByteArray> ItemSerializerPluginV2::availableParts(const Item &item) const
|
|
{
|
|
if (item.hasPayload()) {
|
|
return QSet<QByteArray>();
|
|
}
|
|
|
|
return QSet<QByteArray>() << Item::FullPayload;
|
|
}
|
|
|
|
void ItemSerializerPluginV2::apply(Item &item, const Item &other)
|
|
{
|
|
QBuffer buffer;
|
|
QByteArray data(other.payloadData());
|
|
buffer.setBuffer(&data);
|
|
buffer.open(QIODevice::ReadOnly);
|
|
|
|
foreach (const QByteArray &part, other.loadedPayloadParts()) {
|
|
buffer.seek(0);
|
|
deserialize(item, part, buffer, 0);
|
|
}
|
|
|
|
buffer.close();
|
|
}
|