2007-12-11 19:54:42 -05:00
|
|
|
#ifndef RS_MSG_ITEMS_H
|
|
|
|
#define RS_MSG_ITEMS_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* libretroshare/src/serialiser: rsmsgitems.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".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
#include "serialiser/rsserviceids.h"
|
|
|
|
#include "serialiser/rsserial.h"
|
|
|
|
#include "serialiser/rstlvtypes.h"
|
|
|
|
|
|
|
|
/**************************************************************************/
|
|
|
|
|
|
|
|
/* chat Flags */
|
2010-08-02 13:53:34 -04:00
|
|
|
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;
|
2011-05-04 16:52:45 -04:00
|
|
|
const uint32_t RS_CHAT_FLAG_PARTIAL_MESSAGE = 0x0100;
|
2011-11-25 16:31:52 -05:00
|
|
|
const uint32_t RS_CHAT_FLAG_LOBBY = 0x0200;
|
2007-12-11 19:54:42 -05:00
|
|
|
|
2011-11-26 10:58:52 -05:00
|
|
|
const uint32_t RS_CHATMSG_CONFIGFLAG_INCOMING = 0x0001;
|
2010-09-20 20:08:06 -04:00
|
|
|
|
2012-01-06 17:17:08 -05:00
|
|
|
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 ;
|
2012-01-14 16:09:04 -05: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
|
2012-01-06 17:17:08 -05: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 ;
|
2012-01-27 18:13:28 -05:00
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_EVENT_DEPREC = 0x0B ; // don't use ! Deprecated
|
2012-01-06 17:17:08 -05:00
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_MSG = 0x0C ;
|
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_LIST_REQUEST = 0x0D ;
|
2012-03-16 18:47:49 -04:00
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_LIST_deprecated = 0x0E ;
|
2012-01-14 16:09:04 -05:00
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_INVITE = 0x0F ;
|
2012-01-27 18:13:28 -05:00
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_EVENT = 0x10 ;
|
2012-03-16 18:47:49 -04:00
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_LIST = 0x11 ;
|
2009-05-05 09:18:53 -04:00
|
|
|
|
2010-08-19 17:47:26 -04:00
|
|
|
// for defining tags themselves and msg tags
|
2011-11-26 10:58:52 -05:00
|
|
|
const uint8_t RS_PKT_SUBTYPE_MSG_TAG_TYPE = 0x03;
|
|
|
|
const uint8_t RS_PKT_SUBTYPE_MSG_TAGS = 0x04;
|
|
|
|
const uint8_t RS_PKT_SUBTYPE_MSG_SRC_TAG = 0x05;
|
|
|
|
const uint8_t RS_PKT_SUBTYPE_MSG_PARENT_TAG = 0x06;
|
2010-08-19 17:47:26 -04:00
|
|
|
|
2011-11-25 16:31:52 -05:00
|
|
|
typedef uint64_t ChatLobbyId ;
|
|
|
|
typedef uint64_t ChatLobbyMsgId ;
|
|
|
|
typedef std::string ChatLobbyNickName ;
|
2010-08-19 17:47:26 -04:00
|
|
|
|
2007-12-11 19:54:42 -05:00
|
|
|
class RsChatItem: public RsItem
|
|
|
|
{
|
|
|
|
public:
|
2011-09-04 16:01:30 -04:00
|
|
|
RsChatItem(uint8_t chat_subtype) : RsItem(RS_PKT_VERSION_SERVICE,RS_SERVICE_TYPE_CHAT,chat_subtype)
|
|
|
|
{
|
|
|
|
setPriorityLevel(QOS_PRIORITY_RS_CHAT_ITEM) ;
|
|
|
|
}
|
2009-05-05 09:18:53 -04:00
|
|
|
|
|
|
|
virtual ~RsChatItem() {}
|
|
|
|
virtual void clear() {}
|
|
|
|
virtual std::ostream& print(std::ostream &out, uint16_t indent = 0) = 0 ;
|
|
|
|
|
|
|
|
virtual bool serialise(void *data,uint32_t& size) = 0 ; // Isn't it better that items can serialize themselves ?
|
|
|
|
virtual uint32_t serial_size() = 0 ; // deserialise is handled using a constructor
|
|
|
|
};
|
|
|
|
|
2010-08-02 16:33:53 -04:00
|
|
|
/*!
|
|
|
|
* For sending chat msgs
|
|
|
|
* @see p3ChatService
|
|
|
|
*/
|
2009-05-05 09:18:53 -04:00
|
|
|
class RsChatMsgItem: public RsChatItem
|
|
|
|
{
|
|
|
|
public:
|
2011-11-25 16:31:52 -05:00
|
|
|
RsChatMsgItem() :RsChatItem(RS_PKT_SUBTYPE_DEFAULT) {}
|
|
|
|
RsChatMsgItem(uint8_t subtype) :RsChatItem(subtype) {}
|
|
|
|
|
2011-11-26 10:58:52 -05:00
|
|
|
RsChatMsgItem(void *data,uint32_t size,uint8_t subtype = RS_PKT_SUBTYPE_DEFAULT) ; // deserialization
|
2007-12-11 19:54:42 -05:00
|
|
|
|
2009-05-05 09:18:53 -04:00
|
|
|
virtual ~RsChatMsgItem() {}
|
|
|
|
virtual void clear() {}
|
|
|
|
virtual std::ostream& print(std::ostream &out, uint16_t indent = 0);
|
2007-12-11 19:54:42 -05:00
|
|
|
|
2009-05-05 09:18:53 -04:00
|
|
|
virtual bool serialise(void *data,uint32_t& size) ; // Isn't it better that items can serialize themselves ?
|
|
|
|
virtual uint32_t serial_size() ; // deserialise is handled using a constructor
|
2007-12-11 19:54:42 -05:00
|
|
|
|
2009-05-05 09:18:53 -04:00
|
|
|
uint32_t chatFlags;
|
|
|
|
uint32_t sendTime;
|
|
|
|
std::wstring message;
|
|
|
|
/* not serialised */
|
2010-09-20 20:08:06 -04:00
|
|
|
uint32_t recvTime;
|
|
|
|
};
|
|
|
|
|
2012-01-06 17:17:08 -05:00
|
|
|
// This class contains the info to bounce an object throughout a lobby, while
|
|
|
|
// maintaining cache info to avoid duplicates.
|
|
|
|
//
|
|
|
|
class RsChatLobbyBouncingObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ChatLobbyId lobby_id ;
|
|
|
|
ChatLobbyMsgId msg_id ;
|
|
|
|
ChatLobbyNickName nick ; // Nickname of sender
|
|
|
|
|
|
|
|
virtual RsChatLobbyBouncingObject *duplicate() const = 0 ;
|
|
|
|
virtual uint32_t serial_size() ;
|
|
|
|
virtual bool serialise(void *data,uint32_t tlvsize,uint32_t& offset) ;
|
|
|
|
virtual std::ostream& print(std::ostream &out, uint16_t indent = 0);
|
|
|
|
|
|
|
|
bool deserialise(void *data,uint32_t rssize,uint32_t& offset) ;
|
|
|
|
};
|
|
|
|
|
|
|
|
class RsChatLobbyMsgItem: public RsChatMsgItem, public RsChatLobbyBouncingObject
|
2011-11-25 16:31:52 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsChatLobbyMsgItem() :RsChatMsgItem(RS_PKT_SUBTYPE_CHAT_LOBBY_MSG) {}
|
|
|
|
|
2011-11-26 10:58:52 -05:00
|
|
|
RsChatLobbyMsgItem(void *data,uint32_t size) ; // deserialization /// TODO!!!
|
2011-11-25 16:31:52 -05:00
|
|
|
|
|
|
|
virtual ~RsChatLobbyMsgItem() {}
|
2011-11-26 10:58:52 -05:00
|
|
|
virtual std::ostream& print(std::ostream &out, uint16_t indent = 0);
|
2012-01-06 17:17:08 -05:00
|
|
|
virtual RsChatLobbyBouncingObject *duplicate() const { return new RsChatLobbyMsgItem(*this) ; }
|
2011-11-26 10:58:52 -05:00
|
|
|
|
|
|
|
virtual bool serialise(void *data,uint32_t& size) ; // Isn't it better that items can serialize themselves ?
|
|
|
|
virtual uint32_t serial_size() ; // deserialise is handled using a constructor
|
2011-11-25 16:31:52 -05:00
|
|
|
|
2012-01-06 17:17:08 -05:00
|
|
|
uint8_t subpacket_id ; // this is for proper handling of split packets.
|
|
|
|
ChatLobbyMsgId parent_msg_id ; // Used for threaded chat.
|
|
|
|
};
|
|
|
|
|
|
|
|
class RsChatLobbyEventItem: public RsChatItem, public RsChatLobbyBouncingObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsChatLobbyEventItem() :RsChatItem(RS_PKT_SUBTYPE_CHAT_LOBBY_EVENT) {}
|
|
|
|
RsChatLobbyEventItem(void *data,uint32_t size) ; // deserialization /// TODO!!!
|
|
|
|
|
|
|
|
virtual ~RsChatLobbyEventItem() {}
|
|
|
|
virtual std::ostream& print(std::ostream &out, uint16_t indent = 0);
|
|
|
|
virtual RsChatLobbyBouncingObject *duplicate() const { return new RsChatLobbyEventItem(*this) ; }
|
|
|
|
//
|
|
|
|
virtual bool serialise(void *data,uint32_t& size) ;
|
|
|
|
virtual uint32_t serial_size() ;
|
|
|
|
|
|
|
|
// members.
|
|
|
|
//
|
|
|
|
uint8_t event_type ; // used for defining the type of event.
|
|
|
|
std::string string1; // used for any string
|
2012-01-27 18:13:28 -05:00
|
|
|
uint32_t sendTime; // used to check for old looping messages
|
2012-01-06 17:17:08 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
class RsChatLobbyListRequestItem: public RsChatItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsChatLobbyListRequestItem() : RsChatItem(RS_PKT_SUBTYPE_CHAT_LOBBY_LIST_REQUEST) {}
|
|
|
|
RsChatLobbyListRequestItem(void *data,uint32_t size) ;
|
|
|
|
virtual ~RsChatLobbyListRequestItem() {}
|
|
|
|
|
|
|
|
virtual bool serialise(void *data,uint32_t& size) ;
|
|
|
|
virtual uint32_t serial_size() ;
|
|
|
|
|
|
|
|
virtual std::ostream& print(std::ostream &out, uint16_t indent = 0);
|
|
|
|
};
|
2012-03-16 18:47:49 -04:00
|
|
|
class RsChatLobbyListItem_deprecated: public RsChatItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsChatLobbyListItem_deprecated() : RsChatItem(RS_PKT_SUBTYPE_CHAT_LOBBY_LIST_deprecated) {}
|
|
|
|
RsChatLobbyListItem_deprecated(void *data,uint32_t size) ;
|
|
|
|
virtual ~RsChatLobbyListItem_deprecated() {}
|
|
|
|
|
|
|
|
virtual std::ostream& print(std::ostream &out, uint16_t indent = 0);
|
|
|
|
|
|
|
|
virtual bool serialise(void *data,uint32_t& size) ;
|
|
|
|
virtual uint32_t serial_size() ;
|
|
|
|
|
|
|
|
std::vector<ChatLobbyId> lobby_ids ;
|
|
|
|
std::vector<std::string> lobby_names ;
|
|
|
|
std::vector<uint32_t> lobby_counts ;
|
|
|
|
};
|
2012-01-06 17:17:08 -05:00
|
|
|
class RsChatLobbyListItem: public RsChatItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsChatLobbyListItem() : RsChatItem(RS_PKT_SUBTYPE_CHAT_LOBBY_LIST) {}
|
|
|
|
RsChatLobbyListItem(void *data,uint32_t size) ;
|
|
|
|
virtual ~RsChatLobbyListItem() {}
|
|
|
|
|
|
|
|
virtual std::ostream& print(std::ostream &out, uint16_t indent = 0);
|
|
|
|
|
|
|
|
virtual bool serialise(void *data,uint32_t& size) ;
|
|
|
|
virtual uint32_t serial_size() ;
|
|
|
|
|
|
|
|
std::vector<ChatLobbyId> lobby_ids ;
|
|
|
|
std::vector<std::string> lobby_names ;
|
2012-03-16 18:47:49 -04:00
|
|
|
std::vector<std::string> lobby_topics ;
|
2012-01-06 17:17:08 -05:00
|
|
|
std::vector<uint32_t> lobby_counts ;
|
2011-11-26 10:58:52 -05:00
|
|
|
};
|
2011-12-27 08:47:37 -05:00
|
|
|
class RsChatLobbyUnsubscribeItem: public RsChatItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsChatLobbyUnsubscribeItem() :RsChatItem(RS_PKT_SUBTYPE_CHAT_LOBBY_UNSUBSCRIBE) {}
|
|
|
|
RsChatLobbyUnsubscribeItem(void *data,uint32_t size) ; // deserialization
|
|
|
|
|
|
|
|
virtual ~RsChatLobbyUnsubscribeItem() {}
|
|
|
|
virtual std::ostream& print(std::ostream &out, uint16_t indent = 0);
|
|
|
|
|
|
|
|
uint64_t lobby_id ;
|
|
|
|
|
|
|
|
virtual bool serialise(void *data,uint32_t& size) ; // Isn't it better that items can serialize themselves ?
|
|
|
|
virtual uint32_t serial_size() ; // deserialise is handled using a constructor
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-12-26 09:45:45 -05:00
|
|
|
class RsChatLobbyConnectChallengeItem: public RsChatItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsChatLobbyConnectChallengeItem() :RsChatItem(RS_PKT_SUBTYPE_CHAT_LOBBY_CHALLENGE) {}
|
|
|
|
RsChatLobbyConnectChallengeItem(void *data,uint32_t size) ; // deserialization
|
|
|
|
|
|
|
|
virtual ~RsChatLobbyConnectChallengeItem() {}
|
|
|
|
virtual std::ostream& print(std::ostream &out, uint16_t indent = 0);
|
|
|
|
|
|
|
|
uint64_t challenge_code ;
|
|
|
|
|
|
|
|
virtual bool serialise(void *data,uint32_t& size) ; // Isn't it better that items can serialize themselves ?
|
|
|
|
virtual uint32_t serial_size() ; // deserialise is handled using a constructor
|
|
|
|
};
|
|
|
|
|
2011-11-26 10:58:52 -05:00
|
|
|
class RsChatLobbyInviteItem: public RsChatItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsChatLobbyInviteItem() :RsChatItem(RS_PKT_SUBTYPE_CHAT_LOBBY_INVITE) {}
|
|
|
|
RsChatLobbyInviteItem(void *data,uint32_t size) ; // deserialization
|
|
|
|
|
|
|
|
virtual ~RsChatLobbyInviteItem() {}
|
|
|
|
virtual std::ostream& print(std::ostream &out, uint16_t indent = 0);
|
|
|
|
|
|
|
|
ChatLobbyId lobby_id ;
|
|
|
|
std::string lobby_name ;
|
2012-03-16 18:47:49 -04:00
|
|
|
std::string lobby_topic ;
|
2012-01-14 16:09:04 -05:00
|
|
|
uint32_t lobby_privacy_level ;
|
2011-11-25 16:31:52 -05:00
|
|
|
|
2011-11-26 10:58:52 -05:00
|
|
|
virtual bool serialise(void *data,uint32_t& size) ; // Isn't it better that items can serialize themselves ?
|
|
|
|
virtual uint32_t serial_size() ; // deserialise is handled using a constructor
|
2011-11-25 16:31:52 -05:00
|
|
|
};
|
|
|
|
|
2010-09-20 20:08:06 -04:00
|
|
|
/*!
|
|
|
|
* For saving incoming and outgoing chat msgs
|
|
|
|
* @see p3ChatService
|
|
|
|
*/
|
|
|
|
class RsPrivateChatMsgConfigItem: public RsChatItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsPrivateChatMsgConfigItem() :RsChatItem(RS_PKT_SUBTYPE_PRIVATECHATMSG_CONFIG) {}
|
|
|
|
RsPrivateChatMsgConfigItem(void *data,uint32_t size) ; // deserialization
|
|
|
|
|
|
|
|
virtual ~RsPrivateChatMsgConfigItem() {}
|
|
|
|
virtual void clear() {}
|
|
|
|
virtual std::ostream& print(std::ostream &out, uint16_t indent = 0);
|
|
|
|
|
|
|
|
virtual bool serialise(void *data,uint32_t& size) ; // Isn't it better that items can serialize themselves ?
|
|
|
|
virtual uint32_t serial_size() ; // deserialise is handled using a constructor
|
|
|
|
|
|
|
|
/* set data from RsChatMsgItem to RsPrivateChatMsgConfigItem */
|
|
|
|
void set(RsChatMsgItem *ci, const std::string &peerId, uint32_t confFlags);
|
|
|
|
/* get data from RsPrivateChatMsgConfigItem to RsChatMsgItem */
|
|
|
|
void get(RsChatMsgItem *ci);
|
|
|
|
|
|
|
|
std::string configPeerId;
|
|
|
|
uint32_t chatFlags;
|
|
|
|
uint32_t configFlags;
|
|
|
|
uint32_t sendTime;
|
|
|
|
std::wstring message;
|
|
|
|
uint32_t recvTime;
|
2007-12-11 19:54:42 -05:00
|
|
|
};
|
|
|
|
|
2009-05-05 09:18:53 -04:00
|
|
|
// This class contains activity info for the sending peer: active, idle, typing, etc.
|
|
|
|
//
|
|
|
|
class RsChatStatusItem: public RsChatItem
|
2007-12-11 19:54:42 -05:00
|
|
|
{
|
|
|
|
public:
|
2009-05-05 09:18:53 -04:00
|
|
|
RsChatStatusItem() :RsChatItem(RS_PKT_SUBTYPE_CHAT_STATUS) {}
|
|
|
|
RsChatStatusItem(void *data,uint32_t size) ; // deserialization
|
2007-12-11 19:54:42 -05:00
|
|
|
|
2009-05-05 09:18:53 -04:00
|
|
|
virtual ~RsChatStatusItem() {}
|
|
|
|
virtual std::ostream& print(std::ostream &out, uint16_t indent = 0);
|
2007-12-11 19:54:42 -05:00
|
|
|
|
2009-05-05 09:18:53 -04:00
|
|
|
virtual bool serialise(void *data,uint32_t& size) ; // Isn't it better that items can serialize themselves ?
|
|
|
|
virtual uint32_t serial_size() ; // deserialise is handled using a constructor
|
2007-12-11 19:54:42 -05:00
|
|
|
|
2009-09-29 16:37:20 -04:00
|
|
|
uint32_t flags ;
|
2009-05-05 09:18:53 -04:00
|
|
|
std::string status_string;
|
|
|
|
};
|
2007-12-11 19:54:42 -05:00
|
|
|
|
2009-09-29 16:37:20 -04:00
|
|
|
// This class contains avatar images in Qt format.
|
|
|
|
//
|
|
|
|
class RsChatAvatarItem: public RsChatItem
|
|
|
|
{
|
|
|
|
public:
|
2011-09-04 16:01:30 -04:00
|
|
|
RsChatAvatarItem() :RsChatItem(RS_PKT_SUBTYPE_CHAT_AVATAR) {setPriorityLevel(QOS_PRIORITY_RS_CHAT_AVATAR_ITEM) ;}
|
2009-09-29 16:37:20 -04:00
|
|
|
RsChatAvatarItem(void *data,uint32_t size) ; // deserialization
|
|
|
|
|
|
|
|
virtual ~RsChatAvatarItem() ;
|
|
|
|
virtual std::ostream& print(std::ostream &out, uint16_t indent = 0);
|
|
|
|
|
|
|
|
virtual bool serialise(void *data,uint32_t& size) ; // Isn't it better that items can serialize themselves ?
|
|
|
|
virtual uint32_t serial_size() ; // deserialise is handled using a constructor
|
|
|
|
|
|
|
|
uint32_t image_size ; // size of data in bytes
|
|
|
|
unsigned char *image_data ; // image
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-05-05 09:18:53 -04:00
|
|
|
class RsChatSerialiser: public RsSerialType
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsChatSerialiser() :RsSerialType(RS_PKT_VERSION_SERVICE, RS_SERVICE_TYPE_CHAT) {}
|
|
|
|
|
|
|
|
virtual uint32_t size (RsItem *item)
|
|
|
|
{
|
|
|
|
return static_cast<RsChatItem *>(item)->serial_size() ;
|
|
|
|
}
|
|
|
|
virtual bool serialise(RsItem *item, void *data, uint32_t *size)
|
|
|
|
{
|
|
|
|
return static_cast<RsChatItem *>(item)->serialise(data,*size) ;
|
|
|
|
}
|
|
|
|
virtual RsItem *deserialise (void *data, uint32_t *size) ;
|
2007-12-11 19:54:42 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/**************************************************************************/
|
|
|
|
|
2010-08-22 18:12:26 -04:00
|
|
|
const uint32_t RS_MSG_FLAGS_OUTGOING = 0x0001;
|
|
|
|
const uint32_t RS_MSG_FLAGS_PENDING = 0x0002;
|
|
|
|
const uint32_t RS_MSG_FLAGS_DRAFT = 0x0004;
|
|
|
|
const uint32_t RS_MSG_FLAGS_NEW = 0x0010;
|
|
|
|
const uint32_t RS_MSG_FLAGS_TRASH = 0x0020;
|
|
|
|
const uint32_t RS_MSG_FLAGS_UNREAD_BY_USER = 0x0040;
|
2010-11-02 17:11:11 -04:00
|
|
|
const uint32_t RS_MSG_FLAGS_REPLIED = 0x0080;
|
|
|
|
const uint32_t RS_MSG_FLAGS_FORWARDED = 0x0100;
|
2011-05-23 19:45:31 -04:00
|
|
|
const uint32_t RS_MSG_FLAGS_STAR = 0x0200;
|
2011-09-09 15:37:38 -04:00
|
|
|
const uint32_t RS_MSG_FLAGS_PARTIAL = 0x0400;
|
2012-05-01 05:18:55 -04:00
|
|
|
// system message
|
|
|
|
const uint32_t RS_MSG_FLAGS_USER_REQUEST = 0x0800;
|
|
|
|
const uint32_t RS_MSG_FLAGS_SYSTEM = RS_MSG_FLAGS_USER_REQUEST;
|
2007-12-11 19:54:42 -05:00
|
|
|
|
|
|
|
class RsMsgItem: public RsItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsMsgItem()
|
|
|
|
:RsItem(RS_PKT_VERSION_SERVICE, RS_SERVICE_TYPE_MSG,
|
|
|
|
RS_PKT_SUBTYPE_DEFAULT)
|
2011-09-04 16:01:30 -04:00
|
|
|
{ setPriorityLevel(QOS_PRIORITY_RS_MSG_ITEM) ; }
|
2008-06-26 09:08:48 -04:00
|
|
|
|
|
|
|
RsMsgItem(uint16_t type)
|
|
|
|
:RsItem(RS_PKT_VERSION_SERVICE, type,
|
|
|
|
RS_PKT_SUBTYPE_DEFAULT)
|
2011-09-04 16:01:30 -04:00
|
|
|
{ setPriorityLevel(QOS_PRIORITY_RS_MSG_ITEM) ; }
|
2008-06-26 09:08:48 -04:00
|
|
|
|
2007-12-11 19:54:42 -05:00
|
|
|
virtual ~RsMsgItem();
|
|
|
|
virtual void clear();
|
|
|
|
std::ostream &print(std::ostream &out, uint16_t indent = 0);
|
|
|
|
|
|
|
|
uint32_t msgFlags;
|
|
|
|
uint32_t msgId;
|
|
|
|
|
|
|
|
uint32_t sendTime;
|
|
|
|
uint32_t recvTime;
|
|
|
|
|
2008-01-26 08:00:57 -05:00
|
|
|
std::wstring subject;
|
|
|
|
std::wstring message;
|
2007-12-11 19:54:42 -05:00
|
|
|
|
|
|
|
RsTlvPeerIdSet msgto;
|
|
|
|
RsTlvPeerIdSet msgcc;
|
|
|
|
RsTlvPeerIdSet msgbcc;
|
|
|
|
|
|
|
|
RsTlvFileSet attachment;
|
|
|
|
};
|
|
|
|
|
2010-08-19 17:47:26 -04:00
|
|
|
class RsMsgTagType : public RsItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsMsgTagType()
|
|
|
|
:RsItem(RS_PKT_VERSION_SERVICE, RS_SERVICE_TYPE_MSG,
|
|
|
|
RS_PKT_SUBTYPE_MSG_TAG_TYPE)
|
|
|
|
{ return; }
|
|
|
|
|
|
|
|
std::ostream &print(std::ostream &out, uint16_t indent = 0);
|
|
|
|
|
|
|
|
|
|
|
|
virtual ~RsMsgTagType();
|
|
|
|
virtual void clear();
|
|
|
|
|
|
|
|
std::string text;
|
|
|
|
uint32_t rgb_color;
|
|
|
|
uint32_t tagId;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class RsMsgTags : public RsItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsMsgTags()
|
|
|
|
:RsItem(RS_PKT_VERSION_SERVICE, RS_SERVICE_TYPE_MSG,
|
|
|
|
RS_PKT_SUBTYPE_MSG_TAGS)
|
|
|
|
{ return; }
|
|
|
|
|
|
|
|
std::ostream &print(std::ostream &out, uint16_t indent = 0);
|
|
|
|
|
|
|
|
virtual ~RsMsgTags();
|
|
|
|
virtual void clear();
|
|
|
|
|
2010-08-22 18:12:26 -04:00
|
|
|
uint32_t msgId;
|
|
|
|
std::list<uint32_t> tagIds;
|
2010-08-19 17:47:26 -04:00
|
|
|
};
|
|
|
|
|
2010-10-03 07:56:53 -04:00
|
|
|
class RsMsgSrcId : public RsItem
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
RsMsgSrcId()
|
|
|
|
: RsItem(RS_PKT_VERSION_SERVICE, RS_SERVICE_TYPE_MSG,
|
|
|
|
RS_PKT_SUBTYPE_MSG_SRC_TAG)
|
|
|
|
{ return;}
|
|
|
|
|
|
|
|
std::ostream &print(std::ostream &out, uint16_t indent = 0);
|
|
|
|
|
|
|
|
virtual ~RsMsgSrcId();
|
|
|
|
virtual void clear();
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t msgId;
|
|
|
|
std::string srcId;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2010-11-02 17:11:11 -04:00
|
|
|
class RsMsgParentId : public RsItem
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
RsMsgParentId()
|
|
|
|
: RsItem(RS_PKT_VERSION_SERVICE, RS_SERVICE_TYPE_MSG,
|
|
|
|
RS_PKT_SUBTYPE_MSG_PARENT_TAG)
|
|
|
|
{ return;}
|
|
|
|
|
|
|
|
std::ostream &print(std::ostream &out, uint16_t indent = 0);
|
|
|
|
|
|
|
|
virtual ~RsMsgParentId();
|
|
|
|
virtual void clear();
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t msgId;
|
|
|
|
uint32_t msgParentId;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2007-12-11 19:54:42 -05:00
|
|
|
class RsMsgSerialiser: public RsSerialType
|
|
|
|
{
|
|
|
|
public:
|
2010-06-04 19:39:33 -04:00
|
|
|
RsMsgSerialiser(bool bConfiguration = false)
|
|
|
|
:RsSerialType(RS_PKT_VERSION_SERVICE, RS_SERVICE_TYPE_MSG), m_bConfiguration (bConfiguration)
|
2007-12-11 19:54:42 -05:00
|
|
|
{ return; }
|
2008-06-26 09:08:48 -04:00
|
|
|
|
|
|
|
RsMsgSerialiser(uint16_t type)
|
2010-06-04 19:39:33 -04:00
|
|
|
:RsSerialType(RS_PKT_VERSION_SERVICE, type), m_bConfiguration (false)
|
2008-06-26 09:08:48 -04:00
|
|
|
{ return; }
|
|
|
|
|
2007-12-11 19:54:42 -05:00
|
|
|
virtual ~RsMsgSerialiser() { return; }
|
|
|
|
|
|
|
|
virtual uint32_t size(RsItem *);
|
|
|
|
virtual bool serialise (RsItem *item, void *data, uint32_t *size);
|
|
|
|
virtual RsItem * deserialise(void *data, uint32_t *size);
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2010-08-19 17:47:26 -04:00
|
|
|
virtual uint32_t sizeMsgItem(RsMsgItem *);
|
|
|
|
virtual bool serialiseMsgItem (RsMsgItem *item, void *data, uint32_t *size);
|
|
|
|
virtual RsMsgItem *deserialiseMsgItem(void *data, uint32_t *size);
|
|
|
|
|
|
|
|
virtual uint32_t sizeTagItem(RsMsgTagType *);
|
|
|
|
virtual bool serialiseTagItem (RsMsgTagType *item, void *data, uint32_t *size);
|
|
|
|
virtual RsMsgTagType *deserialiseTagItem(void *data, uint32_t *size);
|
|
|
|
|
|
|
|
virtual uint32_t sizeMsgTagItem(RsMsgTags *);
|
|
|
|
virtual bool serialiseMsgTagItem (RsMsgTags *item, void *data, uint32_t *size);
|
|
|
|
virtual RsMsgTags *deserialiseMsgTagItem(void *data, uint32_t *size);
|
|
|
|
|
2010-10-03 07:56:53 -04:00
|
|
|
virtual uint32_t sizeMsgSrcIdItem(RsMsgSrcId *);
|
|
|
|
virtual bool serialiseMsgSrcIdItem (RsMsgSrcId *item, void *data, uint32_t *size);
|
|
|
|
virtual RsMsgSrcId *deserialiseMsgSrcIdItem(void *data, uint32_t *size);
|
|
|
|
|
2010-11-02 17:11:11 -04:00
|
|
|
virtual uint32_t sizeMsgParentIdItem(RsMsgParentId *);
|
|
|
|
virtual bool serialiseMsgParentIdItem (RsMsgParentId *item, void *data, uint32_t *size);
|
|
|
|
virtual RsMsgParentId *deserialiseMsgParentIdItem(void *data, uint32_t *size);
|
2010-08-19 17:47:26 -04:00
|
|
|
|
2007-12-11 19:54:42 -05:00
|
|
|
|
2010-06-04 19:39:33 -04:00
|
|
|
bool m_bConfiguration; // is set to true for saving configuration (enables serialising msgId)
|
2007-12-11 19:54:42 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/**************************************************************************/
|
|
|
|
|
|
|
|
#endif /* RS_MSG_ITEMS_H */
|
|
|
|
|
|
|
|
|