2012-10-17 21:20:57 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* libretroshare/src/gxs: rsopsteditems.cc
|
|
|
|
*
|
|
|
|
* RetroShare Serialiser.
|
|
|
|
*
|
2013-03-11 20:40:28 +00:00
|
|
|
* Copyright 2012-2013 by Robert Fernie, Christopher Evi-Parker
|
2012-10-17 21:20:57 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
2013-03-11 20:40:28 +00:00
|
|
|
* License Version 2.1 as published by the Free Software Foundation.
|
2012-10-17 21:20:57 +00:00
|
|
|
*
|
|
|
|
* 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; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA.
|
|
|
|
*
|
|
|
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "serialiser/rsposteditems.h"
|
2017-04-27 14:41:31 +02:00
|
|
|
#include "serialization/rstypeserializer.h"
|
2012-10-17 21:20:57 +00:00
|
|
|
|
2017-04-27 14:41:31 +02:00
|
|
|
void RsGxsPostedPostItem::serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx)
|
2012-10-17 21:20:57 +00:00
|
|
|
{
|
2017-04-27 14:41:31 +02:00
|
|
|
RsTypeSerializer::serial_process(j,ctx,TLV_TYPE_STR_LINK,mPost.mLink,"mPost.mLink") ;
|
|
|
|
RsTypeSerializer::serial_process(j,ctx,TLV_TYPE_STR_MSG ,mPost.mNotes,"mPost.mNotes") ;
|
2012-10-17 21:20:57 +00:00
|
|
|
}
|
|
|
|
|
2017-04-27 14:41:31 +02:00
|
|
|
void RsGxsPostedGroupItem::serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx)
|
2012-10-17 21:20:57 +00:00
|
|
|
{
|
2017-04-27 14:41:31 +02:00
|
|
|
RsTypeSerializer::serial_process(j,ctx,TLV_TYPE_STR_DESCR ,mGroup.mDescription,"mGroup.mDescription") ;
|
2012-10-17 21:20:57 +00:00
|
|
|
}
|
|
|
|
|
2017-04-27 14:41:31 +02:00
|
|
|
RsItem *RsGxsPostedSerialiser::create_item(uint16_t service_id,uint8_t item_subtype) const
|
2012-10-17 21:20:57 +00:00
|
|
|
{
|
2017-04-27 14:41:31 +02:00
|
|
|
if(service_id != RS_SERVICE_GXS_TYPE_POSTED)
|
|
|
|
return NULL ;
|
2013-03-11 20:40:28 +00:00
|
|
|
|
2017-04-27 14:41:31 +02:00
|
|
|
switch(item_subtype)
|
|
|
|
{
|
|
|
|
case RS_PKT_SUBTYPE_POSTED_GRP_ITEM: return new RsGxsPostedGroupItem() ;
|
|
|
|
case RS_PKT_SUBTYPE_POSTED_POST_ITEM: return new RsGxsPostedPostItem() ;
|
|
|
|
default:
|
|
|
|
return RsGxsCommentSerialiser::create_item(service_id,item_subtype) ;
|
|
|
|
}
|
2012-10-17 21:20:57 +00:00
|
|
|
}
|
|
|
|
|
2013-03-11 20:40:28 +00:00
|
|
|
void RsGxsPostedPostItem::clear()
|
2012-10-17 21:20:57 +00:00
|
|
|
{
|
2013-03-11 20:40:28 +00:00
|
|
|
mPost.mLink.clear();
|
|
|
|
mPost.mNotes.clear();
|
2012-10-17 21:20:57 +00:00
|
|
|
}
|
2013-03-11 20:40:28 +00:00
|
|
|
void RsGxsPostedGroupItem::clear()
|
|
|
|
{
|
|
|
|
mGroup.mDescription.clear();
|
2012-10-17 21:20:57 +00:00
|
|
|
}
|