2014-11-11 16:10:54 +00:00
|
|
|
/*
|
|
|
|
* libretroshare/src/serialiser: rschatitems.h
|
|
|
|
*
|
|
|
|
* RetroShare Serialiser.
|
|
|
|
*
|
|
|
|
* Copyright 2007-2008 by Robert Fernie.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License Version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "openssl/bn.h"
|
|
|
|
#include "retroshare/rstypes.h"
|
2017-04-30 16:05:37 +02:00
|
|
|
#include "serialiser/rsserializer.h"
|
2014-11-11 16:10:54 +00:00
|
|
|
#include "serialiser/rstlvkeys.h"
|
2017-04-18 21:11:37 +02:00
|
|
|
#include "rsitems/rsserviceids.h"
|
2017-04-26 11:40:46 +02:00
|
|
|
#include "rsitems/itempriorities.h"
|
|
|
|
#include "rsitems/rsitem.h"
|
2014-11-11 16:10:54 +00:00
|
|
|
#include "serialiser/rsserial.h"
|
|
|
|
|
|
|
|
#include "serialiser/rstlvidset.h"
|
|
|
|
#include "serialiser/rstlvfileitem.h"
|
|
|
|
|
|
|
|
/* chat Flags */
|
|
|
|
const uint32_t RS_CHAT_FLAG_PRIVATE = 0x0001;
|
|
|
|
const uint32_t RS_CHAT_FLAG_REQUESTS_AVATAR = 0x0002;
|
|
|
|
const uint32_t RS_CHAT_FLAG_CONTAINS_AVATAR = 0x0004;
|
|
|
|
const uint32_t RS_CHAT_FLAG_AVATAR_AVAILABLE = 0x0008;
|
|
|
|
const uint32_t RS_CHAT_FLAG_CUSTOM_STATE = 0x0010; // used for transmitting peer status string
|
|
|
|
const uint32_t RS_CHAT_FLAG_PUBLIC = 0x0020;
|
|
|
|
const uint32_t RS_CHAT_FLAG_REQUEST_CUSTOM_STATE = 0x0040;
|
|
|
|
const uint32_t RS_CHAT_FLAG_CUSTOM_STATE_AVAILABLE = 0x0080;
|
|
|
|
const uint32_t RS_CHAT_FLAG_PARTIAL_MESSAGE = 0x0100;
|
|
|
|
const uint32_t RS_CHAT_FLAG_LOBBY = 0x0200;
|
|
|
|
const uint32_t RS_CHAT_FLAG_CLOSING_DISTANT_CONNECTION = 0x0400;
|
|
|
|
const uint32_t RS_CHAT_FLAG_ACK_DISTANT_CONNECTION = 0x0800;
|
2014-12-07 21:51:30 +00:00
|
|
|
const uint32_t RS_CHAT_FLAG_KEEP_ALIVE = 0x1000;
|
2015-12-27 22:16:04 -05:00
|
|
|
const uint32_t RS_CHAT_FLAG_CONNEXION_REFUSED = 0x2000;
|
2014-11-11 16:10:54 +00:00
|
|
|
|
|
|
|
const uint32_t RS_CHATMSG_CONFIGFLAG_INCOMING = 0x0001;
|
|
|
|
|
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_AVATAR = 0x03 ;
|
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_STATUS = 0x04 ;
|
|
|
|
const uint8_t RS_PKT_SUBTYPE_PRIVATECHATMSG_CONFIG = 0x05 ;
|
2015-03-06 21:13:23 +00:00
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_MSG_DEPRECATED = 0x06 ; // don't use ! Deprecated
|
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_INVITE_DEPREC = 0x07 ; // don't use ! Deprecated
|
2014-11-11 16:10:54 +00:00
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_ACCEPT = 0x08 ;
|
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_CHALLENGE = 0x09 ;
|
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_UNSUBSCRIBE = 0x0A ;
|
2015-03-06 21:13:23 +00:00
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_EVENT_DEPREC = 0x0B ; // don't use ! Deprecated
|
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_MSG = 0x0C ; // will be deprecated when only signed messages are accepted (02/2015)
|
2014-11-11 16:10:54 +00:00
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_LIST_REQUEST = 0x0D ;
|
2015-03-06 21:13:23 +00:00
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_LIST_deprecated = 0x0E ; // to be removed
|
2015-03-07 08:41:32 +00:00
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_INVITE_deprecated = 0x0F ; // to be removed
|
2014-11-11 16:10:54 +00:00
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_EVENT = 0x10 ;
|
2015-03-06 21:13:23 +00:00
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_LIST_deprecated2 = 0x11 ; // to be removed (deprecated since 02 Dec. 2012)
|
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_LIST_deprecated3 = 0x12 ;
|
2014-11-11 16:10:54 +00:00
|
|
|
const uint8_t RS_PKT_SUBTYPE_DISTANT_INVITE_CONFIG = 0x13 ;
|
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_CONFIG = 0x15 ;
|
2015-03-06 21:13:23 +00:00
|
|
|
const uint8_t RS_PKT_SUBTYPE_DISTANT_CHAT_DH_PUBLIC_KEY = 0x16 ;
|
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_SIGNED_MSG = 0x17 ;
|
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_SIGNED_EVENT = 0x18 ;
|
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_LIST = 0x19 ;
|
2015-03-07 08:41:32 +00:00
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_INVITE = 0x1A ;
|
2017-02-27 22:18:37 +01:00
|
|
|
const uint8_t RS_PKT_SUBTYPE_OUTGOING_MAP = 0x1B ;
|
2014-11-11 16:10:54 +00:00
|
|
|
|
|
|
|
typedef uint64_t ChatLobbyId ;
|
|
|
|
typedef uint64_t ChatLobbyMsgId ;
|
2017-04-04 16:37:57 +02:00
|
|
|
typedef std::string ChatLobbyNickName ;
|
2014-11-11 16:10:54 +00:00
|
|
|
typedef uint64_t DistantChatDHSessionId ;
|
|
|
|
|
|
|
|
class RsChatItem: public RsItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsChatItem(uint8_t chat_subtype) : RsItem(RS_PKT_VERSION_SERVICE,RS_SERVICE_TYPE_CHAT,chat_subtype)
|
|
|
|
{
|
|
|
|
setPriorityLevel(QOS_PRIORITY_RS_CHAT_ITEM) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~RsChatItem() {}
|
2017-04-04 16:37:57 +02:00
|
|
|
virtual std::ostream& print(std::ostream &out, uint16_t indent = 0) { return out; } // derived from RsItem, but should be removed
|
2014-11-11 16:10:54 +00:00
|
|
|
|
2017-04-04 15:33:59 +02:00
|
|
|
virtual void clear() {}
|
2014-11-11 16:10:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* For sending chat msgs
|
|
|
|
* @see p3ChatService
|
|
|
|
*/
|
|
|
|
class RsChatMsgItem: public RsChatItem
|
|
|
|
{
|
2015-03-06 21:13:23 +00:00
|
|
|
public:
|
|
|
|
RsChatMsgItem() :RsChatItem(RS_PKT_SUBTYPE_DEFAULT) {}
|
|
|
|
RsChatMsgItem(uint8_t subtype) :RsChatItem(subtype) {}
|
2014-11-11 16:10:54 +00:00
|
|
|
|
2017-04-04 15:33:59 +02:00
|
|
|
//RsChatMsgItem() {}
|
2014-11-11 16:10:54 +00:00
|
|
|
|
2015-03-06 21:13:23 +00:00
|
|
|
virtual ~RsChatMsgItem() {}
|
2014-11-11 16:10:54 +00:00
|
|
|
|
2017-04-04 15:33:59 +02:00
|
|
|
// derived from RsItem
|
|
|
|
|
2017-04-26 11:40:46 +02:00
|
|
|
void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx);
|
2017-04-04 15:33:59 +02:00
|
|
|
virtual void clear() {}
|
2014-11-11 16:10:54 +00:00
|
|
|
|
2015-03-06 21:13:23 +00:00
|
|
|
uint32_t chatFlags;
|
|
|
|
uint32_t sendTime;
|
|
|
|
std::string message;
|
|
|
|
|
|
|
|
/* not serialised */
|
|
|
|
uint32_t recvTime;
|
2014-11-11 16:10:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// This class contains the info to bounce an object throughout a lobby, while
|
|
|
|
// maintaining cache info to avoid duplicates.
|
|
|
|
//
|
|
|
|
class RsChatLobbyBouncingObject
|
|
|
|
{
|
2015-03-06 21:13:23 +00:00
|
|
|
public:
|
|
|
|
ChatLobbyId lobby_id ;
|
|
|
|
ChatLobbyMsgId msg_id ;
|
|
|
|
ChatLobbyNickName nick ; // Nickname of sender
|
2014-11-11 16:10:54 +00:00
|
|
|
|
2015-03-06 21:13:23 +00:00
|
|
|
RsTlvKeySignature signature ;
|
2014-11-11 16:10:54 +00:00
|
|
|
|
2015-03-06 21:13:23 +00:00
|
|
|
virtual RsChatLobbyBouncingObject *duplicate() const = 0 ;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// The functions below handle the serialisation of data that is specific to the bouncing object level.
|
|
|
|
// They are called by serial_size() and serialise() from children, but should not overload the serial_size() and
|
|
|
|
// serialise() methods, otherwise the wrong method will be called when serialising from this top level class.
|
|
|
|
|
2017-04-26 11:40:46 +02:00
|
|
|
virtual void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx);
|
2017-04-04 22:53:50 +02:00
|
|
|
|
|
|
|
virtual uint32_t PacketId() const= 0;
|
2014-11-11 16:10:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class RsChatLobbyMsgItem: public RsChatMsgItem, public RsChatLobbyBouncingObject
|
|
|
|
{
|
2015-03-06 21:13:23 +00:00
|
|
|
public:
|
|
|
|
RsChatLobbyMsgItem() :RsChatMsgItem(RS_PKT_SUBTYPE_CHAT_LOBBY_SIGNED_MSG) {}
|
2014-11-11 16:10:54 +00:00
|
|
|
|
2015-03-06 21:13:23 +00:00
|
|
|
virtual ~RsChatLobbyMsgItem() {}
|
|
|
|
virtual RsChatLobbyBouncingObject *duplicate() const { return new RsChatLobbyMsgItem(*this) ; }
|
2014-11-11 16:10:54 +00:00
|
|
|
|
2017-04-26 11:40:46 +02:00
|
|
|
virtual void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx);
|
2015-03-06 21:13:23 +00:00
|
|
|
|
|
|
|
ChatLobbyMsgId parent_msg_id ; // Used for threaded chat.
|
2017-04-04 22:53:50 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual uint32_t PacketId() const { return RsChatMsgItem::PacketId() ; }
|
2014-11-11 16:10:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class RsChatLobbyEventItem: public RsChatItem, public RsChatLobbyBouncingObject
|
|
|
|
{
|
2017-04-05 20:49:32 +02:00
|
|
|
public:
|
|
|
|
RsChatLobbyEventItem() :RsChatItem(RS_PKT_SUBTYPE_CHAT_LOBBY_SIGNED_EVENT) {}
|
2015-03-06 21:13:23 +00:00
|
|
|
|
2017-04-05 20:49:32 +02:00
|
|
|
virtual ~RsChatLobbyEventItem() {}
|
|
|
|
virtual RsChatLobbyBouncingObject *duplicate() const { return new RsChatLobbyEventItem(*this) ; }
|
|
|
|
//
|
2017-04-26 11:40:46 +02:00
|
|
|
virtual void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx);
|
2015-03-06 21:13:23 +00:00
|
|
|
|
2017-04-05 20:49:32 +02:00
|
|
|
// members.
|
|
|
|
//
|
|
|
|
uint8_t event_type ; // used for defining the type of event.
|
|
|
|
std::string string1; // used for any string
|
|
|
|
uint32_t sendTime; // used to check for old looping messages
|
2017-04-04 22:53:50 +02:00
|
|
|
|
|
|
|
protected:
|
2017-04-05 20:49:32 +02:00
|
|
|
virtual uint32_t PacketId() const { return RsChatItem::PacketId() ; }
|
2014-11-11 16:10:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class RsChatLobbyListRequestItem: public RsChatItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsChatLobbyListRequestItem() : RsChatItem(RS_PKT_SUBTYPE_CHAT_LOBBY_LIST_REQUEST) {}
|
|
|
|
virtual ~RsChatLobbyListRequestItem() {}
|
|
|
|
|
2017-04-26 11:40:46 +02:00
|
|
|
void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx);
|
2015-03-06 21:13:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct VisibleChatLobbyInfo
|
|
|
|
{
|
|
|
|
ChatLobbyId id ;
|
|
|
|
std::string name ;
|
|
|
|
std::string topic ;
|
|
|
|
uint32_t count ;
|
|
|
|
ChatLobbyFlags flags ;
|
2014-11-11 16:10:54 +00:00
|
|
|
};
|
2015-03-06 21:13:23 +00:00
|
|
|
|
2014-11-11 16:10:54 +00:00
|
|
|
class RsChatLobbyListItem: public RsChatItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsChatLobbyListItem() : RsChatItem(RS_PKT_SUBTYPE_CHAT_LOBBY_LIST) {}
|
|
|
|
virtual ~RsChatLobbyListItem() {}
|
|
|
|
|
2017-04-26 11:40:46 +02:00
|
|
|
void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx);
|
2014-11-11 16:10:54 +00:00
|
|
|
|
2015-03-06 21:13:23 +00:00
|
|
|
std::vector<VisibleChatLobbyInfo> lobbies ;
|
2014-11-11 16:10:54 +00:00
|
|
|
};
|
2015-03-06 21:13:23 +00:00
|
|
|
|
2014-11-11 16:10:54 +00:00
|
|
|
class RsChatLobbyUnsubscribeItem: public RsChatItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsChatLobbyUnsubscribeItem() :RsChatItem(RS_PKT_SUBTYPE_CHAT_LOBBY_UNSUBSCRIBE) {}
|
|
|
|
|
|
|
|
virtual ~RsChatLobbyUnsubscribeItem() {}
|
|
|
|
|
2017-04-26 11:40:46 +02:00
|
|
|
void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx);
|
2014-11-11 16:10:54 +00:00
|
|
|
|
2017-04-04 16:37:57 +02:00
|
|
|
uint64_t lobby_id ;
|
2014-11-11 16:10:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class RsChatLobbyConnectChallengeItem: public RsChatItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsChatLobbyConnectChallengeItem() :RsChatItem(RS_PKT_SUBTYPE_CHAT_LOBBY_CHALLENGE) {}
|
|
|
|
|
|
|
|
virtual ~RsChatLobbyConnectChallengeItem() {}
|
|
|
|
|
2017-04-26 11:40:46 +02:00
|
|
|
void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx);
|
2014-11-11 16:10:54 +00:00
|
|
|
|
2017-04-04 16:37:57 +02:00
|
|
|
uint64_t challenge_code ;
|
2014-11-11 16:10:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class RsChatLobbyInviteItem: public RsChatItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsChatLobbyInviteItem() :RsChatItem(RS_PKT_SUBTYPE_CHAT_LOBBY_INVITE) {}
|
2017-04-04 22:53:50 +02:00
|
|
|
virtual ~RsChatLobbyInviteItem() {}
|
2014-11-11 16:10:54 +00:00
|
|
|
|
2017-04-26 11:40:46 +02:00
|
|
|
void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx);
|
2014-11-11 16:10:54 +00:00
|
|
|
|
|
|
|
ChatLobbyId lobby_id ;
|
|
|
|
std::string lobby_name ;
|
|
|
|
std::string lobby_topic ;
|
2015-03-06 21:13:23 +00:00
|
|
|
ChatLobbyFlags lobby_flags ;
|
2014-11-11 16:10:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* For saving incoming and outgoing chat msgs
|
|
|
|
* @see p3ChatService
|
|
|
|
*/
|
2017-02-27 22:18:37 +01:00
|
|
|
struct RsPrivateChatMsgConfigItem : RsChatItem
|
2014-11-11 16:10:54 +00:00
|
|
|
{
|
2017-05-05 15:44:22 +02:00
|
|
|
RsPrivateChatMsgConfigItem() :
|
|
|
|
RsChatItem(RS_PKT_SUBTYPE_PRIVATECHATMSG_CONFIG) {}
|
2017-02-27 22:18:37 +01:00
|
|
|
|
|
|
|
virtual ~RsPrivateChatMsgConfigItem() {}
|
|
|
|
virtual void clear() {}
|
|
|
|
|
2017-05-05 15:44:22 +02:00
|
|
|
virtual void serial_process( RsGenericSerializer::SerializeJob j,
|
|
|
|
RsGenericSerializer::SerializeContext& ctx );
|
2017-02-27 22:18:37 +01:00
|
|
|
|
2017-05-05 15:44:22 +02:00
|
|
|
/** set data from RsChatMsgItem to RsPrivateChatMsgConfigItem */
|
2017-02-27 22:18:37 +01:00
|
|
|
void set(RsChatMsgItem *ci, const RsPeerId &peerId, uint32_t confFlags);
|
2017-05-05 15:44:22 +02:00
|
|
|
/** get data from RsPrivateChatMsgConfigItem to RsChatMsgItem */
|
2017-02-27 22:18:37 +01:00
|
|
|
void get(RsChatMsgItem *ci);
|
|
|
|
|
|
|
|
RsPeerId configPeerId;
|
|
|
|
uint32_t chatFlags;
|
|
|
|
uint32_t configFlags;
|
|
|
|
uint32_t sendTime;
|
|
|
|
std::string message;
|
|
|
|
uint32_t recvTime;
|
2014-11-11 16:10:54 +00:00
|
|
|
};
|
2017-04-04 22:53:50 +02:00
|
|
|
|
2014-11-11 16:10:54 +00:00
|
|
|
class RsChatLobbyConfigItem: public RsChatItem
|
|
|
|
{
|
|
|
|
public:
|
2017-04-04 16:37:57 +02:00
|
|
|
RsChatLobbyConfigItem() :RsChatItem(RS_PKT_SUBTYPE_CHAT_LOBBY_CONFIG) { lobby_Id = 0; }
|
2014-11-11 16:10:54 +00:00
|
|
|
|
2017-04-04 16:37:57 +02:00
|
|
|
virtual ~RsChatLobbyConfigItem() {}
|
2014-11-11 16:10:54 +00:00
|
|
|
|
2017-04-04 16:37:57 +02:00
|
|
|
virtual void clear() { lobby_Id = 0; }
|
2014-11-11 16:10:54 +00:00
|
|
|
|
2017-04-26 11:40:46 +02:00
|
|
|
void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx);
|
2014-11-11 16:10:54 +00:00
|
|
|
|
2017-04-04 16:37:57 +02:00
|
|
|
uint64_t lobby_Id;
|
|
|
|
uint32_t flags ;
|
2014-11-11 16:10:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// This class contains activity info for the sending peer: active, idle, typing, etc.
|
|
|
|
//
|
|
|
|
class RsChatStatusItem: public RsChatItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsChatStatusItem() :RsChatItem(RS_PKT_SUBTYPE_CHAT_STATUS) {}
|
|
|
|
|
|
|
|
virtual ~RsChatStatusItem() {}
|
|
|
|
|
2017-04-26 11:40:46 +02:00
|
|
|
void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx);
|
2014-11-11 16:10:54 +00:00
|
|
|
|
|
|
|
uint32_t flags ;
|
|
|
|
std::string status_string;
|
|
|
|
};
|
|
|
|
|
|
|
|
// This class contains avatar images in Qt format.
|
|
|
|
//
|
|
|
|
class RsChatAvatarItem: public RsChatItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsChatAvatarItem() :RsChatItem(RS_PKT_SUBTYPE_CHAT_AVATAR) {setPriorityLevel(QOS_PRIORITY_RS_CHAT_AVATAR_ITEM) ;}
|
|
|
|
|
|
|
|
virtual ~RsChatAvatarItem() ;
|
2017-04-26 11:40:46 +02:00
|
|
|
void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx);
|
2014-11-11 16:10:54 +00:00
|
|
|
|
|
|
|
uint32_t image_size ; // size of data in bytes
|
|
|
|
unsigned char *image_data ; // image
|
|
|
|
};
|
|
|
|
|
2017-05-05 15:44:22 +02:00
|
|
|
struct RsChatSerialiser : RsServiceSerializer
|
2014-11-11 16:10:54 +00:00
|
|
|
{
|
2017-05-05 15:44:22 +02:00
|
|
|
RsChatSerialiser(SerializationFlags flags = SERIALIZATION_FLAG_NONE) :
|
|
|
|
RsServiceSerializer( RS_SERVICE_TYPE_CHAT,
|
|
|
|
RsGenericSerializer::FORMAT_BINARY, flags ) {}
|
2014-11-11 16:10:54 +00:00
|
|
|
|
2017-05-05 15:44:22 +02:00
|
|
|
virtual RsItem *create_item(uint16_t service_id,uint8_t item_sub_id) const;
|
2014-11-11 16:10:54 +00:00
|
|
|
};
|
|
|
|
|