2018-05-29 21:08:17 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
* libretroshare/src/rsitems: rsposteditems.h *
|
|
|
|
* *
|
|
|
|
* libretroshare: retroshare core library *
|
|
|
|
* *
|
|
|
|
* Copyright 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/>. *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
2017-04-27 14:44:41 +02:00
|
|
|
#include "rsitems/rsposteditems.h"
|
2017-04-30 16:05:37 +02:00
|
|
|
#include "serialiser/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
|
|
|
}
|