mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-23 06:31:20 -04:00
121 lines
4.5 KiB
C++
121 lines
4.5 KiB
C++
/*******************************************************************************
|
|
* libretroshare/src/rsitems: rsgxsiditems.cc *
|
|
* *
|
|
* libretroshare: retroshare core library *
|
|
* *
|
|
* Copyright 2012-2012 by Robert Fernie <retroshare@lunamutt.com> *
|
|
* *
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU Lesser General Public License as *
|
|
* published by the Free Software Foundation, either version 3 of the *
|
|
* License, or (at your option) any later version. *
|
|
* *
|
|
* This program 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 Lesser General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Lesser General Public License *
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
* *
|
|
*******************************************************************************/
|
|
#include <iostream>
|
|
|
|
#include "rsgxsiditems.h"
|
|
#include "serialiser/rstlvbase.h"
|
|
#include "serialiser/rsbaseserial.h"
|
|
#include "serialiser/rstlvstring.h"
|
|
#include "util/rsstring.h"
|
|
|
|
#include "serialiser/rstypeserializer.h"
|
|
|
|
// #define GXSID_DEBUG 1
|
|
|
|
RsItem *RsGxsIdSerialiser::create_item(uint16_t service_id,uint8_t item_subtype) const
|
|
{
|
|
if(service_id != RS_SERVICE_GXS_TYPE_GXSID)
|
|
return NULL ;
|
|
|
|
switch(item_subtype)
|
|
{
|
|
case RS_PKT_SUBTYPE_GXSID_GROUP_ITEM : return new RsGxsIdGroupItem ();
|
|
case RS_PKT_SUBTYPE_GXSID_LOCAL_INFO_ITEM: return new RsGxsIdLocalInfoItem() ;
|
|
default:
|
|
return NULL ;
|
|
}
|
|
}
|
|
void RsGxsIdLocalInfoItem::clear()
|
|
{
|
|
mTimeStamps.clear() ;
|
|
}
|
|
void RsGxsIdGroupItem::clear()
|
|
{
|
|
mPgpIdHash.clear();
|
|
mPgpIdSign.clear();
|
|
|
|
mRecognTags.clear();
|
|
mImage.TlvClear();
|
|
}
|
|
void RsGxsIdLocalInfoItem::serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx)
|
|
{
|
|
RsTypeSerializer::serial_process(j,ctx,mTimeStamps,"mTimeStamps") ;
|
|
RsTypeSerializer::serial_process(j,ctx,mContacts,"mContacts") ;
|
|
}
|
|
|
|
void RsGxsIdGroupItem::serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx)
|
|
{
|
|
RsTypeSerializer::serial_process(j,ctx,mPgpIdHash,"mPgpIdHash") ;
|
|
RsTypeSerializer::serial_process(j,ctx,TLV_TYPE_STR_SIGN,mPgpIdSign,"mPgpIdSign") ;
|
|
|
|
RsTlvStringSetRef rset(TLV_TYPE_RECOGNSET,mRecognTags) ;
|
|
|
|
RsTypeSerializer::serial_process<RsTlvItem>(j,ctx,rset,"mRecognTags") ;
|
|
|
|
// image is optional
|
|
|
|
if(j == RsGenericSerializer::DESERIALIZE && ctx.mOffset == ctx.mSize)
|
|
return ;
|
|
|
|
RsTypeSerializer::serial_process<RsTlvItem>(j,ctx,mImage,"mImage") ;
|
|
}
|
|
|
|
bool RsGxsIdGroupItem::fromGxsIdGroup(RsGxsIdGroup &group, bool moveImage)
|
|
{
|
|
clear();
|
|
meta = group.mMeta;
|
|
mPgpIdHash = group.mPgpIdHash;
|
|
mPgpIdSign = group.mPgpIdSign;
|
|
mRecognTags = group.mRecognTags;
|
|
|
|
if (moveImage)
|
|
{
|
|
mImage.binData.bin_data = group.mImage.mData;
|
|
mImage.binData.bin_len = group.mImage.mSize;
|
|
group.mImage.shallowClear();
|
|
}
|
|
else
|
|
{
|
|
mImage.binData.setBinData(group.mImage.mData, group.mImage.mSize);
|
|
}
|
|
return true ;
|
|
}
|
|
bool RsGxsIdGroupItem::toGxsIdGroup(RsGxsIdGroup &group, bool moveImage)
|
|
{
|
|
group.mMeta = meta;
|
|
group.mPgpIdHash = mPgpIdHash;
|
|
group.mPgpIdSign = mPgpIdSign;
|
|
group.mRecognTags = mRecognTags;
|
|
|
|
if (moveImage)
|
|
{
|
|
group.mImage.take((uint8_t *) mImage.binData.bin_data, mImage.binData.bin_len);
|
|
// mImage doesn't have a ShallowClear at the moment!
|
|
mImage.binData.TlvShallowClear();
|
|
}
|
|
else
|
|
{
|
|
group.mImage.copy((uint8_t *) mImage.binData.bin_data, mImage.binData.bin_len);
|
|
}
|
|
return true ;
|
|
}
|
|
|