2018-05-29 15:08:17 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
* libretroshare/src/rsitems: rsstatusitems.h *
|
|
|
|
* *
|
|
|
|
* libretroshare: retroshare core library *
|
|
|
|
* *
|
|
|
|
* Copyright 2007-2008 by Vinny Do. *
|
|
|
|
* *
|
|
|
|
* 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/>. *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
2008-05-14 06:35:12 -04:00
|
|
|
#ifndef RS_STATUS_ITEMS_H
|
|
|
|
#define RS_STATUS_ITEMS_H
|
|
|
|
|
2017-04-18 15:11:37 -04:00
|
|
|
#include "rsitems/rsserviceids.h"
|
2017-04-26 05:40:46 -04:00
|
|
|
#include "rsitems/itempriorities.h"
|
|
|
|
#include "rsitems/rsitem.h"
|
2008-05-14 06:35:12 -04:00
|
|
|
|
2017-04-30 10:05:37 -04:00
|
|
|
#include "serialiser/rstypeserializer.h"
|
2017-04-27 15:20:30 -04:00
|
|
|
|
2008-05-14 06:35:12 -04:00
|
|
|
/**************************************************************************/
|
|
|
|
|
|
|
|
class RsStatusItem: public RsItem
|
|
|
|
{
|
2017-04-27 15:20:30 -04:00
|
|
|
public:
|
|
|
|
RsStatusItem() :RsItem(RS_PKT_VERSION_SERVICE, RS_SERVICE_TYPE_STATUS, RS_PKT_SUBTYPE_DEFAULT)
|
2011-09-04 16:01:30 -04:00
|
|
|
{
|
|
|
|
setPriorityLevel(QOS_PRIORITY_RS_STATUS_ITEM);
|
|
|
|
}
|
2017-04-27 15:20:30 -04:00
|
|
|
virtual ~RsStatusItem() {}
|
|
|
|
virtual void clear() {}
|
2008-05-14 06:35:12 -04:00
|
|
|
|
2017-04-27 15:20:30 -04:00
|
|
|
virtual void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx)
|
|
|
|
{
|
|
|
|
RsTypeSerializer::serial_process<uint32_t>(j,ctx,sendTime,"sendTime") ;
|
|
|
|
RsTypeSerializer::serial_process<uint32_t>(j,ctx,status ,"status") ;
|
|
|
|
}
|
2008-05-14 06:35:12 -04:00
|
|
|
|
2017-04-27 15:20:30 -04:00
|
|
|
uint32_t sendTime;
|
2008-05-14 06:35:12 -04:00
|
|
|
uint32_t status;
|
|
|
|
|
|
|
|
/* not serialised */
|
|
|
|
uint32_t recvTime;
|
|
|
|
};
|
|
|
|
|
2017-04-27 15:20:30 -04:00
|
|
|
class RsStatusSerialiser: public RsServiceSerializer
|
2008-05-14 06:35:12 -04:00
|
|
|
{
|
2017-04-27 15:20:30 -04:00
|
|
|
public:
|
|
|
|
RsStatusSerialiser() :RsServiceSerializer(RS_SERVICE_TYPE_STATUS) {}
|
|
|
|
virtual ~RsStatusSerialiser() {}
|
|
|
|
|
|
|
|
virtual RsItem *create_item(uint16_t service,uint8_t item_subtype) const
|
|
|
|
{
|
|
|
|
if(service == RS_SERVICE_TYPE_STATUS && item_subtype == RS_PKT_SUBTYPE_DEFAULT)
|
|
|
|
return new RsStatusItem();
|
|
|
|
else
|
|
|
|
return NULL ;
|
|
|
|
}
|
2008-05-14 06:35:12 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/**************************************************************************/
|
|
|
|
|
|
|
|
#endif /* RS_STATUS_ITEMS_H */
|
|
|
|
|
|
|
|
|