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 */
|
2009-05-05 09:18:53 -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;
|
2009-01-30 14:52:47 -05:00
|
|
|
const uint32_t RS_CHAT_FLAG_AVATAR_AVAILABLE = 0x0008;
|
2010-04-24 06:30:36 -04:00
|
|
|
|
|
|
|
const uint32_t RS_CHAT_FLAG_CUSTOM_STATE = 0x0001; // used for transmitting peer status string
|
|
|
|
const uint32_t RS_CHAT_FLAG_REQUEST_CUSTOM_STATE = 0x0002;
|
|
|
|
const uint32_t RS_CHAT_FLAG_CUSTOM_STATE_AVAILABLE = 0x0004;
|
2009-09-29 16:37:20 -04:00
|
|
|
const uint32_t RS_CHAT_FLAG_PUBLIC = 0x0020;
|
2007-12-11 19:54:42 -05:00
|
|
|
|
2009-09-29 16:37:20 -04:00
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_AVATAR = 0x03 ; // default is 0x01
|
|
|
|
const uint8_t RS_PKT_SUBTYPE_CHAT_STATUS = 0x04 ; // default is 0x01
|
2009-05-05 09:18:53 -04:00
|
|
|
|
2007-12-11 19:54:42 -05:00
|
|
|
class RsChatItem: public RsItem
|
|
|
|
{
|
|
|
|
public:
|
2009-05-05 09:18:53 -04:00
|
|
|
RsChatItem(uint8_t chat_subtype) : RsItem(RS_PKT_VERSION_SERVICE,RS_SERVICE_TYPE_CHAT,chat_subtype) {}
|
|
|
|
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class RsChatMsgItem: public RsChatItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsChatMsgItem() :RsChatItem(RS_PKT_SUBTYPE_DEFAULT) {}
|
|
|
|
RsChatMsgItem(void *data,uint32_t size) ; // 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 */
|
|
|
|
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:
|
|
|
|
RsChatAvatarItem() :RsChatItem(RS_PKT_SUBTYPE_CHAT_AVATAR) {}
|
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
/**************************************************************************/
|
|
|
|
|
|
|
|
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;
|
2010-05-28 10:42:54 -04:00
|
|
|
const uint32_t RS_MSG_FLAGS_TRASH = 0x0020;
|
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)
|
|
|
|
{ return; }
|
2008-06-26 09:08:48 -04:00
|
|
|
|
|
|
|
RsMsgItem(uint16_t type)
|
|
|
|
:RsItem(RS_PKT_VERSION_SERVICE, type,
|
|
|
|
RS_PKT_SUBTYPE_DEFAULT)
|
|
|
|
{ return; }
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
virtual uint32_t sizeItem(RsMsgItem *);
|
|
|
|
virtual bool serialiseItem (RsMsgItem *item, void *data, uint32_t *size);
|
|
|
|
virtual RsMsgItem *deserialiseItem(void *data, uint32_t *size);
|
|
|
|
|
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 */
|
|
|
|
|
|
|
|
|