mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-10 23:52:51 -04:00
separated chat items from message items, separated chat into tree components: chat, distant chat and distributed chat (i.e. lobbies). moved all chat components into chat/. Removed deprecated chat items
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7670 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
04b3b432e8
commit
f6efa2fb92
15 changed files with 5089 additions and 4999 deletions
|
@ -45,7 +45,7 @@
|
||||||
#include <retroshare/rsids.h>
|
#include <retroshare/rsids.h>
|
||||||
#include "distantchat.h"
|
#include "distantchat.h"
|
||||||
|
|
||||||
#define DEBUG_DISTANT_CHAT
|
//#define DEBUG_DISTANT_CHAT
|
||||||
|
|
||||||
void DistantChatService::connectToTurtleRouter(p3turtle *tr)
|
void DistantChatService::connectToTurtleRouter(p3turtle *tr)
|
||||||
{
|
{
|
||||||
|
|
|
@ -26,6 +26,9 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <turtle/turtleclientservice.h>
|
#include <turtle/turtleclientservice.h>
|
||||||
|
#include <chat/rschatitems.h>
|
||||||
|
#include <retroshare/rsmsgs.h>
|
||||||
|
|
||||||
|
|
||||||
class p3IdService ;
|
class p3IdService ;
|
||||||
|
|
||||||
|
|
1736
libretroshare/src/chat/distributedchat.cc
Normal file
1736
libretroshare/src/chat/distributedchat.cc
Normal file
File diff suppressed because it is too large
Load diff
164
libretroshare/src/chat/distributedchat.h
Normal file
164
libretroshare/src/chat/distributedchat.h
Normal file
|
@ -0,0 +1,164 @@
|
||||||
|
/*
|
||||||
|
* libretroshare/src/chat/distributedchat.h
|
||||||
|
*
|
||||||
|
* Services for RetroShare.
|
||||||
|
*
|
||||||
|
* Copyright 2014 by Cyril Soler
|
||||||
|
*
|
||||||
|
* 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 "csoler@users.sourceforge.net".
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <retroshare/rstypes.h>
|
||||||
|
#include <retroshare/rsmsgs.h>
|
||||||
|
#include <retroshare/rsservicecontrol.h>
|
||||||
|
|
||||||
|
typedef RsPeerId ChatLobbyVirtualPeerId ;
|
||||||
|
|
||||||
|
class RsItem ;
|
||||||
|
class p3HistoryMgr ;
|
||||||
|
class p3ServiceControl;
|
||||||
|
class RsChatLobbyItem ;
|
||||||
|
class RsChatLobbyListRequestItem ;
|
||||||
|
class RsChatLobbyListItem ;
|
||||||
|
class RsChatLobbyEventItem ;
|
||||||
|
class RsChatLobbyBouncingObject ;
|
||||||
|
class RsChatLobbyInviteItem ;
|
||||||
|
class RsChatLobbyMsgItem ;
|
||||||
|
class RsChatLobbyConnectChallengeItem ;
|
||||||
|
class RsChatLobbyUnsubscribeItem ;
|
||||||
|
|
||||||
|
class RsChatItem ;
|
||||||
|
class RsChatMsgItem ;
|
||||||
|
|
||||||
|
class DistributedChatService
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
DistributedChatService(uint32_t service_type,p3ServiceControl *sc,p3HistoryMgr *hm) ;
|
||||||
|
|
||||||
|
virtual ~DistributedChatService() {}
|
||||||
|
|
||||||
|
void flush() ;
|
||||||
|
|
||||||
|
// Interface part to communicate with
|
||||||
|
//
|
||||||
|
bool getVirtualPeerId(const ChatLobbyId& lobby_id, RsPeerId& virtual_peer_id) ;
|
||||||
|
bool isLobbyId(const RsPeerId& virtual_peer_id, ChatLobbyId& lobby_id) ;
|
||||||
|
void getChatLobbyList(std::list<ChatLobbyInfo, std::allocator<ChatLobbyInfo> >& cl_infos) ;
|
||||||
|
bool acceptLobbyInvite(const ChatLobbyId& id) ;
|
||||||
|
void denyLobbyInvite(const ChatLobbyId& id) ;
|
||||||
|
void getPendingChatLobbyInvites(std::list<ChatLobbyInvite>& invites) ;
|
||||||
|
void invitePeerToLobby(const ChatLobbyId&, const RsPeerId& peer_id,bool connexion_challenge = false) ;
|
||||||
|
void unsubscribeChatLobby(const ChatLobbyId& lobby_id) ;
|
||||||
|
bool setNickNameForChatLobby(const ChatLobbyId& lobby_id,const std::string& nick) ;
|
||||||
|
bool getNickNameForChatLobby(const ChatLobbyId& lobby_id,std::string& nick) ;
|
||||||
|
bool setDefaultNickNameForChatLobby(const std::string& nick) ;
|
||||||
|
bool getDefaultNickNameForChatLobby(std::string& nick) ;
|
||||||
|
void setLobbyAutoSubscribe(const ChatLobbyId& lobby_id, const bool autoSubscribe);
|
||||||
|
bool getLobbyAutoSubscribe(const ChatLobbyId& lobby_id);
|
||||||
|
void sendLobbyStatusString(const ChatLobbyId& id,const std::string& status_string) ;
|
||||||
|
|
||||||
|
ChatLobbyId createChatLobby(const std::string& lobby_name,const std::string& lobby_topic, const std::list<RsPeerId>& invited_friends,uint32_t privacy_type) ;
|
||||||
|
|
||||||
|
void getListOfNearbyChatLobbies(std::vector<VisibleChatLobbyRecord>& public_lobbies) ;
|
||||||
|
bool joinVisibleChatLobby(const ChatLobbyId& id) ;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
bool handleRecvItem(RsChatItem *) ;
|
||||||
|
|
||||||
|
virtual void sendChatItem(RsChatItem *) =0 ;
|
||||||
|
virtual void locked_storeIncomingMsg(RsChatMsgItem *) =0 ;
|
||||||
|
virtual void triggerConfigSave() =0;
|
||||||
|
|
||||||
|
void addToSaveList(std::list<RsItem*>& list) const ;
|
||||||
|
bool processLoadListItem(const RsItem *item) ;
|
||||||
|
|
||||||
|
bool locked_checkAndRebuildPartialLobbyMessage(RsChatLobbyMsgItem *) ;
|
||||||
|
void checkSizeAndSendLobbyMessage(RsChatLobbyMsgItem *) ;
|
||||||
|
|
||||||
|
bool sendLobbyChat(const RsPeerId &id, const std::string&, const ChatLobbyId&) ;
|
||||||
|
bool handleRecvChatLobbyMsgItem(RsChatMsgItem *item) ;
|
||||||
|
|
||||||
|
private:
|
||||||
|
/// make some statistics about time shifts, to prevent various issues.
|
||||||
|
void addTimeShiftStatistics(int shift) ;
|
||||||
|
|
||||||
|
void handleRecvChatLobbyListRequest(RsChatLobbyListRequestItem *item) ;
|
||||||
|
void handleRecvChatLobbyList(RsChatLobbyListItem *item) ;
|
||||||
|
void handleRecvChatLobbyEventItem(RsChatLobbyEventItem *item) ;
|
||||||
|
|
||||||
|
|
||||||
|
/// Checks that the lobby object is not flooding a lobby.
|
||||||
|
bool locked_bouncingObjectCheck(RsChatLobbyBouncingObject *obj,const RsPeerId& peer_id,uint32_t lobby_count) ;
|
||||||
|
|
||||||
|
/// receive and handle chat lobby item
|
||||||
|
bool recvLobbyChat(RsChatLobbyMsgItem*,const RsPeerId& src_peer_id) ;
|
||||||
|
void handleRecvLobbyInvite(RsChatLobbyInviteItem*) ;
|
||||||
|
void checkAndRedirectMsgToLobby(RsChatMsgItem*) ;
|
||||||
|
void handleConnectionChallenge(RsChatLobbyConnectChallengeItem *item) ;
|
||||||
|
void sendConnectionChallenge(ChatLobbyId id) ;
|
||||||
|
void handleFriendUnsubscribeLobby(RsChatLobbyUnsubscribeItem*) ;
|
||||||
|
void cleanLobbyCaches() ;
|
||||||
|
bool bounceLobbyObject(RsChatLobbyBouncingObject *obj, const RsPeerId& peer_id) ;
|
||||||
|
|
||||||
|
void sendLobbyStatusItem(const ChatLobbyId&, int type, const std::string& status_string) ;
|
||||||
|
void sendLobbyStatusPeerLiving(const ChatLobbyId& lobby_id) ;
|
||||||
|
void sendLobbyStatusPeerChangedNickname(const ChatLobbyId& lobby_id, const std::string& newnick) ;
|
||||||
|
|
||||||
|
void sendLobbyStatusNewPeer(const ChatLobbyId& lobby_id) ;
|
||||||
|
void sendLobbyStatusKeepAlive(const ChatLobbyId&) ;
|
||||||
|
|
||||||
|
bool locked_initLobbyBouncableObject(const ChatLobbyId& id,RsChatLobbyBouncingObject&) ;
|
||||||
|
void locked_printDebugInfo() const ;
|
||||||
|
|
||||||
|
static ChatLobbyVirtualPeerId makeVirtualPeerId(ChatLobbyId) ;
|
||||||
|
static uint64_t makeConnexionChallengeCode(const RsPeerId& peer_id,ChatLobbyId lobby_id,ChatLobbyMsgId msg_id) ;
|
||||||
|
|
||||||
|
class ChatLobbyEntry: public ChatLobbyInfo
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
std::map<ChatLobbyMsgId,time_t> msg_cache ;
|
||||||
|
RsPeerId virtual_peer_id ;
|
||||||
|
int connexion_challenge_count ;
|
||||||
|
time_t last_connexion_challenge_time ;
|
||||||
|
time_t last_keep_alive_packet_time ;
|
||||||
|
std::set<RsPeerId> previously_known_peers ;
|
||||||
|
uint32_t flags ;
|
||||||
|
};
|
||||||
|
|
||||||
|
std::map<ChatLobbyId,ChatLobbyEntry> _chat_lobbys ;
|
||||||
|
std::map<ChatLobbyId,ChatLobbyInvite> _lobby_invites_queue ;
|
||||||
|
std::map<ChatLobbyId,VisibleChatLobbyRecord> _visible_lobbies ;
|
||||||
|
std::map<ChatLobbyVirtualPeerId,ChatLobbyId> _lobby_ids ;
|
||||||
|
std::map<ChatLobbyId,ChatLobbyFlags> _known_lobbies_flags ; // flags for all lobbies, including the ones that are not known. So we can't
|
||||||
|
std::map<ChatLobbyId,std::vector<RsChatLobbyMsgItem*> > _pendingPartialLobbyMessages ; // store them in _chat_lobbies (subscribed lobbies) nor _visible_lobbies.
|
||||||
|
// Known flags:
|
||||||
|
// RS_CHAT_LOBBY_FLAGS_AUTO_SUBSCRIBE
|
||||||
|
|
||||||
|
float _time_shift_average ;
|
||||||
|
time_t last_lobby_challenge_time ; // prevents bruteforce attack
|
||||||
|
time_t last_visible_lobby_info_request_time ; // allows to ask for updates
|
||||||
|
bool _should_reset_lobby_counts ;
|
||||||
|
std::string _default_nick_name ;
|
||||||
|
|
||||||
|
uint32_t mServType ;
|
||||||
|
RsMutex mDistributedChatMtx ;
|
||||||
|
|
||||||
|
p3ServiceControl *mServControl;
|
||||||
|
p3HistoryMgr *mHistMgr;
|
||||||
|
};
|
1447
libretroshare/src/chat/p3chatservice.cc
Normal file
1447
libretroshare/src/chat/p3chatservice.cc
Normal file
File diff suppressed because it is too large
Load diff
|
@ -35,6 +35,7 @@
|
||||||
#include "services/p3service.h"
|
#include "services/p3service.h"
|
||||||
#include "pqi/pqiservicemonitor.h"
|
#include "pqi/pqiservicemonitor.h"
|
||||||
#include "chat/distantchat.h"
|
#include "chat/distantchat.h"
|
||||||
|
#include "chat/distributedchat.h"
|
||||||
#include "retroshare/rsmsgs.h"
|
#include "retroshare/rsmsgs.h"
|
||||||
|
|
||||||
class p3ServiceControl;
|
class p3ServiceControl;
|
||||||
|
@ -50,7 +51,7 @@ typedef RsPeerId ChatLobbyVirtualPeerId ;
|
||||||
* This service uses rsnotify (callbacks librs clients (e.g. rs-gui))
|
* This service uses rsnotify (callbacks librs clients (e.g. rs-gui))
|
||||||
* @see NotifyBase
|
* @see NotifyBase
|
||||||
*/
|
*/
|
||||||
class p3ChatService: public p3Service, public DistantChatService, public p3Config, public pqiServiceMonitor
|
class p3ChatService: public p3Service, public DistantChatService, public DistributedChatService, public p3Config, public pqiServiceMonitor
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
p3ChatService(p3ServiceControl *cs, p3IdService *pids,p3LinkMgr *cm, p3HistoryMgr *historyMgr);
|
p3ChatService(p3ServiceControl *cs, p3IdService *pids,p3LinkMgr *cm, p3HistoryMgr *historyMgr);
|
||||||
|
@ -172,26 +173,6 @@ class p3ChatService: public p3Service, public DistantChatService, public p3Confi
|
||||||
*/
|
*/
|
||||||
bool clearPrivateChatQueue(bool incoming, const RsPeerId &id);
|
bool clearPrivateChatQueue(bool incoming, const RsPeerId &id);
|
||||||
|
|
||||||
bool getVirtualPeerId(const ChatLobbyId& lobby_id, RsPeerId& virtual_peer_id) ;
|
|
||||||
bool isLobbyId(const RsPeerId& virtual_peer_id, ChatLobbyId& lobby_id) ;
|
|
||||||
void getChatLobbyList(std::list<ChatLobbyInfo, std::allocator<ChatLobbyInfo> >& cl_infos) ;
|
|
||||||
bool acceptLobbyInvite(const ChatLobbyId& id) ;
|
|
||||||
void denyLobbyInvite(const ChatLobbyId& id) ;
|
|
||||||
void getPendingChatLobbyInvites(std::list<ChatLobbyInvite>& invites) ;
|
|
||||||
void invitePeerToLobby(const ChatLobbyId&, const RsPeerId& peer_id,bool connexion_challenge = false) ;
|
|
||||||
void unsubscribeChatLobby(const ChatLobbyId& lobby_id) ;
|
|
||||||
bool setNickNameForChatLobby(const ChatLobbyId& lobby_id,const std::string& nick) ;
|
|
||||||
bool getNickNameForChatLobby(const ChatLobbyId& lobby_id,std::string& nick) ;
|
|
||||||
bool setDefaultNickNameForChatLobby(const std::string& nick) ;
|
|
||||||
bool getDefaultNickNameForChatLobby(std::string& nick) ;
|
|
||||||
void setLobbyAutoSubscribe(const ChatLobbyId& lobby_id, const bool autoSubscribe);
|
|
||||||
bool getLobbyAutoSubscribe(const ChatLobbyId& lobby_id);
|
|
||||||
void sendLobbyStatusString(const ChatLobbyId& id,const std::string& status_string) ;
|
|
||||||
ChatLobbyId createChatLobby(const std::string& lobby_name,const std::string& lobby_topic, const std::list<RsPeerId>& invited_friends,uint32_t privacy_type) ;
|
|
||||||
|
|
||||||
void getListOfNearbyChatLobbies(std::vector<VisibleChatLobbyRecord>& public_lobbies) ;
|
|
||||||
bool joinVisibleChatLobby(const ChatLobbyId& id) ;
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
/************* from p3Config *******************/
|
/************* from p3Config *******************/
|
||||||
virtual RsSerialiser *setupSerialiser() ;
|
virtual RsSerialiser *setupSerialiser() ;
|
||||||
|
@ -204,6 +185,12 @@ class p3ChatService: public p3Service, public DistantChatService, public p3Confi
|
||||||
virtual bool loadList(std::list<RsItem*>& load) ;
|
virtual bool loadList(std::list<RsItem*>& load) ;
|
||||||
|
|
||||||
bool isOnline(const RsPeerId& id) ;
|
bool isOnline(const RsPeerId& id) ;
|
||||||
|
|
||||||
|
/// This is to be used by subclasses/parents to call IndicateConfigChanged()
|
||||||
|
virtual void triggerConfigSave() { IndicateConfigChanged() ; }
|
||||||
|
/// Same, for storing messages in incoming list
|
||||||
|
virtual void locked_storeIncomingMsg(RsChatMsgItem *) ;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
RsMutex mChatMtx;
|
RsMutex mChatMtx;
|
||||||
|
|
||||||
|
@ -214,13 +201,10 @@ class p3ChatService: public p3Service, public DistantChatService, public p3Confi
|
||||||
void receiveChatQueue();
|
void receiveChatQueue();
|
||||||
void handleIncomingItem(RsItem *); // called by the former, and turtle handler for incoming encrypted items
|
void handleIncomingItem(RsItem *); // called by the former, and turtle handler for incoming encrypted items
|
||||||
|
|
||||||
void sendPrivateChatItem(RsChatItem *) ;
|
virtual void sendChatItem(RsChatItem *) ;
|
||||||
|
|
||||||
void initRsChatInfo(RsChatMsgItem *c, ChatInfo &i);
|
void initRsChatInfo(RsChatMsgItem *c, ChatInfo &i);
|
||||||
|
|
||||||
/// make some statistics about time shifts, to prevent various issues.
|
|
||||||
void addTimeShiftStatistics(int shift) ;
|
|
||||||
|
|
||||||
/// Send avatar info to peer in jpeg format.
|
/// Send avatar info to peer in jpeg format.
|
||||||
void sendAvatarJpegData(const RsPeerId& peer_id) ;
|
void sendAvatarJpegData(const RsPeerId& peer_id) ;
|
||||||
|
|
||||||
|
@ -235,12 +219,6 @@ class p3ChatService: public p3Service, public DistantChatService, public p3Confi
|
||||||
bool handleRecvChatMsgItem(RsChatMsgItem *item) ; // returns false if the item should be deleted.
|
bool handleRecvChatMsgItem(RsChatMsgItem *item) ; // returns false if the item should be deleted.
|
||||||
void handleRecvChatStatusItem(RsChatStatusItem *item) ;
|
void handleRecvChatStatusItem(RsChatStatusItem *item) ;
|
||||||
void handleRecvChatAvatarItem(RsChatAvatarItem *item) ;
|
void handleRecvChatAvatarItem(RsChatAvatarItem *item) ;
|
||||||
void handleRecvChatLobbyListRequest(RsChatLobbyListRequestItem *item) ;
|
|
||||||
void handleRecvChatLobbyList(RsChatLobbyListItem *item) ;
|
|
||||||
void handleRecvChatLobbyEventItem(RsChatLobbyEventItem *item) ;
|
|
||||||
|
|
||||||
/// Checks that the lobby object is not flooding a lobby.
|
|
||||||
bool locked_bouncingObjectCheck(RsChatLobbyBouncingObject *obj,const RsPeerId& peer_id,uint32_t lobby_count) ;
|
|
||||||
|
|
||||||
/// Sends a request for an avatar to the peer of given id
|
/// Sends a request for an avatar to the peer of given id
|
||||||
void sendAvatarRequest(const RsPeerId& peer_id) ;
|
void sendAvatarRequest(const RsPeerId& peer_id) ;
|
||||||
|
@ -249,37 +227,12 @@ class p3ChatService: public p3Service, public DistantChatService, public p3Confi
|
||||||
void sendCustomStateRequest(const RsPeerId& peer_id);
|
void sendCustomStateRequest(const RsPeerId& peer_id);
|
||||||
|
|
||||||
/// called as a proxy to sendItem(). Possibly splits item into multiple items of size lower than the maximum item size.
|
/// called as a proxy to sendItem(). Possibly splits item into multiple items of size lower than the maximum item size.
|
||||||
void checkSizeAndSendMessage(RsChatLobbyMsgItem *item) ;
|
//void checkSizeAndSendMessage(RsChatLobbyMsgItem *item) ;
|
||||||
void checkSizeAndSendMessage_deprecated(RsChatMsgItem *item) ; // keep for compatibility for a few weeks.
|
void checkSizeAndSendMessage(RsChatMsgItem *item) ; // keep for compatibility for a few weeks.
|
||||||
|
|
||||||
/// Called when a RsChatMsgItem is received. The item may be collapsed with any waiting partial chat item from the same peer.
|
/// Called when a RsChatMsgItem is received. The item may be collapsed with any waiting partial chat item from the same peer.
|
||||||
bool locked_checkAndRebuildPartialMessage(RsChatLobbyMsgItem*) ;
|
bool locked_checkAndRebuildPartialMessage(RsChatMsgItem *) ;
|
||||||
bool locked_checkAndRebuildPartialMessage_deprecated(RsChatMsgItem*) ;
|
|
||||||
|
|
||||||
/// receive and handle chat lobby item
|
|
||||||
bool recvLobbyChat(RsChatLobbyMsgItem*,const RsPeerId& src_peer_id) ;
|
|
||||||
bool sendLobbyChat(const RsPeerId &id, const std::string&, const ChatLobbyId&) ;
|
|
||||||
void handleRecvLobbyInvite(RsChatLobbyInviteItem*) ;
|
|
||||||
void checkAndRedirectMsgToLobby(RsChatMsgItem*) ;
|
|
||||||
void handleConnectionChallenge(RsChatLobbyConnectChallengeItem *item) ;
|
|
||||||
void sendConnectionChallenge(ChatLobbyId id) ;
|
|
||||||
void handleFriendUnsubscribeLobby(RsChatLobbyUnsubscribeItem*) ;
|
|
||||||
void cleanLobbyCaches() ;
|
|
||||||
bool bounceLobbyObject(RsChatLobbyBouncingObject *obj, const RsPeerId& peer_id) ;
|
|
||||||
|
|
||||||
void sendLobbyStatusItem(const ChatLobbyId&, int type, const std::string& status_string) ;
|
|
||||||
void sendLobbyStatusPeerLiving(const ChatLobbyId& lobby_id) ;
|
|
||||||
void sendLobbyStatusPeerChangedNickname(const ChatLobbyId& lobby_id, const std::string& newnick) ;
|
|
||||||
|
|
||||||
void sendLobbyStatusNewPeer(const ChatLobbyId& lobby_id) ;
|
|
||||||
void sendLobbyStatusKeepAlive(const ChatLobbyId&) ;
|
|
||||||
|
|
||||||
bool locked_initLobbyBouncableObject(const ChatLobbyId& id,RsChatLobbyBouncingObject&) ;
|
|
||||||
|
|
||||||
static ChatLobbyVirtualPeerId makeVirtualPeerId(ChatLobbyId) ;
|
|
||||||
static uint64_t makeConnexionChallengeCode(const RsPeerId& peer_id,ChatLobbyId lobby_id,ChatLobbyMsgId msg_id) ;
|
|
||||||
|
|
||||||
void locked_printDebugInfo() const ;
|
|
||||||
RsChatAvatarItem *makeOwnAvatarItem() ;
|
RsChatAvatarItem *makeOwnAvatarItem() ;
|
||||||
RsChatStatusItem *makeOwnCustomStateStringItem() ;
|
RsChatStatusItem *makeOwnCustomStateStringItem() ;
|
||||||
|
|
||||||
|
@ -294,37 +247,10 @@ class p3ChatService: public p3Service, public DistantChatService, public p3Confi
|
||||||
AvatarInfo *_own_avatar ;
|
AvatarInfo *_own_avatar ;
|
||||||
std::map<RsPeerId,AvatarInfo *> _avatars ;
|
std::map<RsPeerId,AvatarInfo *> _avatars ;
|
||||||
std::map<RsPeerId,RsChatMsgItem *> _pendingPartialMessages ;
|
std::map<RsPeerId,RsChatMsgItem *> _pendingPartialMessages ;
|
||||||
std::map<ChatLobbyMsgId,std::vector<RsChatLobbyMsgItem*> > _pendingPartialLobbyMessages ; // should be used for all chat msgs after version updgrade
|
|
||||||
std::string _custom_status_string ;
|
std::string _custom_status_string ;
|
||||||
std::map<RsPeerId,StateStringInfo> _state_strings ;
|
std::map<RsPeerId,StateStringInfo> _state_strings ;
|
||||||
|
|
||||||
class ChatLobbyEntry: public ChatLobbyInfo
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
std::map<ChatLobbyMsgId,time_t> msg_cache ;
|
|
||||||
RsPeerId virtual_peer_id ;
|
|
||||||
int connexion_challenge_count ;
|
|
||||||
time_t last_connexion_challenge_time ;
|
|
||||||
time_t last_keep_alive_packet_time ;
|
|
||||||
std::set<RsPeerId> previously_known_peers ;
|
|
||||||
uint32_t flags ;
|
|
||||||
};
|
|
||||||
|
|
||||||
std::map<ChatLobbyId,ChatLobbyEntry> _chat_lobbys ;
|
|
||||||
std::map<ChatLobbyId,ChatLobbyInvite> _lobby_invites_queue ;
|
|
||||||
std::map<ChatLobbyId,VisibleChatLobbyRecord> _visible_lobbies ;
|
|
||||||
std::map<ChatLobbyVirtualPeerId,ChatLobbyId> _lobby_ids ;
|
|
||||||
std::map<ChatLobbyId,ChatLobbyFlags> _known_lobbies_flags ; // flags for all lobbies, including the ones that are not known. So we can't
|
|
||||||
// store them in _chat_lobbies (subscribed lobbies) nor _visible_lobbies.
|
|
||||||
// Known flags:
|
|
||||||
// RS_CHAT_LOBBY_FLAGS_AUTO_SUBSCRIBE
|
|
||||||
|
|
||||||
std::string _default_nick_name ;
|
|
||||||
float _time_shift_average ;
|
|
||||||
time_t last_lobby_challenge_time ; // prevents bruteforce attack
|
|
||||||
time_t last_visible_lobby_info_request_time ; // allows to ask for updates
|
|
||||||
bool _should_reset_lobby_counts ;
|
|
||||||
|
|
||||||
RsChatSerialiser *_serializer ;
|
RsChatSerialiser *_serializer ;
|
||||||
};
|
};
|
||||||
|
|
1276
libretroshare/src/chat/rschatitems.cc
Normal file
1276
libretroshare/src/chat/rschatitems.cc
Normal file
File diff suppressed because it is too large
Load diff
434
libretroshare/src/chat/rschatitems.h
Normal file
434
libretroshare/src/chat/rschatitems.h
Normal file
|
@ -0,0 +1,434 @@
|
||||||
|
/*
|
||||||
|
* 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"
|
||||||
|
#include "serialiser/rstlvkeys.h"
|
||||||
|
#include "serialiser/rsserviceids.h"
|
||||||
|
#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;
|
||||||
|
|
||||||
|
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 ;
|
||||||
|
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
|
||||||
|
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 ;
|
||||||
|
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 ;
|
||||||
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_LIST_REQUEST = 0x0D ;
|
||||||
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_LIST_deprecated = 0x0E ; // to be removed
|
||||||
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_INVITE = 0x0F ;
|
||||||
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_EVENT = 0x10 ;
|
||||||
|
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 = 0x12 ;
|
||||||
|
const uint8_t RS_PKT_SUBTYPE_DISTANT_INVITE_CONFIG = 0x13 ;
|
||||||
|
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_CONFIG = 0x15 ;
|
||||||
|
const uint8_t RS_PKT_SUBTYPE_DISTANT_CHAT_DH_PUBLIC_KEY = 0x16 ;
|
||||||
|
|
||||||
|
typedef uint64_t ChatLobbyId ;
|
||||||
|
typedef uint64_t ChatLobbyMsgId ;
|
||||||
|
typedef std::string ChatLobbyNickName ;
|
||||||
|
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() {}
|
||||||
|
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
|
||||||
|
};
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* For sending chat msgs
|
||||||
|
* @see p3ChatService
|
||||||
|
*/
|
||||||
|
class RsChatMsgItem: public RsChatItem
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
RsChatMsgItem() :RsChatItem(RS_PKT_SUBTYPE_DEFAULT) {}
|
||||||
|
RsChatMsgItem(uint8_t subtype) :RsChatItem(subtype) {}
|
||||||
|
|
||||||
|
RsChatMsgItem(void *data,uint32_t size,uint8_t subtype = RS_PKT_SUBTYPE_DEFAULT) ; // deserialization
|
||||||
|
|
||||||
|
virtual ~RsChatMsgItem() {}
|
||||||
|
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
|
||||||
|
|
||||||
|
uint32_t chatFlags;
|
||||||
|
uint32_t sendTime;
|
||||||
|
std::string message;
|
||||||
|
/* not serialised */
|
||||||
|
uint32_t recvTime;
|
||||||
|
};
|
||||||
|
|
||||||
|
// 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
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
RsChatLobbyMsgItem() :RsChatMsgItem(RS_PKT_SUBTYPE_CHAT_LOBBY_MSG) {}
|
||||||
|
|
||||||
|
RsChatLobbyMsgItem(void *data,uint32_t size) ; // deserialization /// TODO!!!
|
||||||
|
|
||||||
|
virtual ~RsChatLobbyMsgItem() {}
|
||||||
|
virtual std::ostream& print(std::ostream &out, uint16_t indent = 0);
|
||||||
|
virtual RsChatLobbyBouncingObject *duplicate() const { return new RsChatLobbyMsgItem(*this) ; }
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
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
|
||||||
|
uint32_t sendTime; // used to check for old looping messages
|
||||||
|
};
|
||||||
|
|
||||||
|
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);
|
||||||
|
};
|
||||||
|
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 ;
|
||||||
|
};
|
||||||
|
class RsChatLobbyListItem_deprecated2: public RsChatItem
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
RsChatLobbyListItem_deprecated2() : RsChatItem(RS_PKT_SUBTYPE_CHAT_LOBBY_LIST_deprecated2) {}
|
||||||
|
RsChatLobbyListItem_deprecated2(void *data,uint32_t size) ;
|
||||||
|
virtual ~RsChatLobbyListItem_deprecated2() {}
|
||||||
|
|
||||||
|
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<std::string> lobby_topics ;
|
||||||
|
std::vector<uint32_t> lobby_counts ;
|
||||||
|
};
|
||||||
|
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 ;
|
||||||
|
std::vector<std::string> lobby_topics ;
|
||||||
|
std::vector<uint32_t> lobby_counts ;
|
||||||
|
std::vector<uint32_t> lobby_privacy_levels ;
|
||||||
|
};
|
||||||
|
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
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
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
|
||||||
|
};
|
||||||
|
|
||||||
|
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 ;
|
||||||
|
std::string lobby_topic ;
|
||||||
|
uint32_t lobby_privacy_level ;
|
||||||
|
|
||||||
|
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
|
||||||
|
};
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* 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 RsPeerId &peerId, uint32_t confFlags);
|
||||||
|
/* get data from RsPrivateChatMsgConfigItem to RsChatMsgItem */
|
||||||
|
void get(RsChatMsgItem *ci);
|
||||||
|
|
||||||
|
RsPeerId configPeerId;
|
||||||
|
uint32_t chatFlags;
|
||||||
|
uint32_t configFlags;
|
||||||
|
uint32_t sendTime;
|
||||||
|
std::string message;
|
||||||
|
uint32_t recvTime;
|
||||||
|
};
|
||||||
|
class RsPrivateChatDistantInviteConfigItem: public RsChatItem
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
RsPrivateChatDistantInviteConfigItem() :RsChatItem(RS_PKT_SUBTYPE_DISTANT_INVITE_CONFIG) {}
|
||||||
|
RsPrivateChatDistantInviteConfigItem(void *data,uint32_t size) ; // deserialization
|
||||||
|
|
||||||
|
virtual ~RsPrivateChatDistantInviteConfigItem() {}
|
||||||
|
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
|
||||||
|
|
||||||
|
unsigned char aes_key[16] ;
|
||||||
|
RsFileHash hash ;
|
||||||
|
std::string encrypted_radix64_string ;
|
||||||
|
RsPgpId destination_pgp_id ;
|
||||||
|
uint32_t time_of_validity ;
|
||||||
|
uint32_t last_hit_time ;
|
||||||
|
uint32_t flags ;
|
||||||
|
};
|
||||||
|
class RsChatLobbyConfigItem: public RsChatItem
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
RsChatLobbyConfigItem() :RsChatItem(RS_PKT_SUBTYPE_CHAT_LOBBY_CONFIG) { lobby_Id = 0; }
|
||||||
|
RsChatLobbyConfigItem(void *data,uint32_t size) ; // deserialization
|
||||||
|
|
||||||
|
virtual ~RsChatLobbyConfigItem() {}
|
||||||
|
|
||||||
|
virtual void clear() { lobby_Id = 0; }
|
||||||
|
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
|
||||||
|
|
||||||
|
uint64_t lobby_Id;
|
||||||
|
uint32_t flags ;
|
||||||
|
};
|
||||||
|
|
||||||
|
// 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) {}
|
||||||
|
RsChatStatusItem(void *data,uint32_t size) ; // deserialization
|
||||||
|
|
||||||
|
virtual ~RsChatStatusItem() {}
|
||||||
|
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 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) ;}
|
||||||
|
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
|
||||||
|
};
|
||||||
|
|
||||||
|
// This class contains the public Diffie-Hellman parameters to be sent
|
||||||
|
// when performing a DH agreement over a distant chat tunnel.
|
||||||
|
//
|
||||||
|
class RsChatDHPublicKeyItem: public RsChatItem
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
RsChatDHPublicKeyItem() :RsChatItem(RS_PKT_SUBTYPE_DISTANT_CHAT_DH_PUBLIC_KEY) {setPriorityLevel(QOS_PRIORITY_RS_CHAT_ITEM) ;}
|
||||||
|
RsChatDHPublicKeyItem(void *data,uint32_t size) ; // deserialization
|
||||||
|
|
||||||
|
virtual ~RsChatDHPublicKeyItem() { BN_free(public_key) ; }
|
||||||
|
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
|
||||||
|
|
||||||
|
// Private data to DH public key item
|
||||||
|
//
|
||||||
|
BIGNUM *public_key ;
|
||||||
|
|
||||||
|
RsTlvKeySignature signature ; // signs the public key in a row.
|
||||||
|
RsTlvSecurityKey gxs_key ; // public key of the signer
|
||||||
|
|
||||||
|
private:
|
||||||
|
RsChatDHPublicKeyItem(const RsChatDHPublicKeyItem&) : RsChatItem(RS_PKT_SUBTYPE_DISTANT_CHAT_DH_PUBLIC_KEY) {} // make the object non copy-able
|
||||||
|
const RsChatDHPublicKeyItem& operator=(const RsChatDHPublicKeyItem&) { return *this ;}
|
||||||
|
};
|
||||||
|
|
||||||
|
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) ;
|
||||||
|
};
|
||||||
|
|
|
@ -319,7 +319,10 @@ HEADERS += ft/ftchunkmap.h \
|
||||||
ft/fttransfermodule.h \
|
ft/fttransfermodule.h \
|
||||||
ft/ftturtlefiletransferitem.h
|
ft/ftturtlefiletransferitem.h
|
||||||
|
|
||||||
HEADERS += chat/distantchat.h
|
HEADERS += chat/distantchat.h \
|
||||||
|
chat/p3chatservice.h \
|
||||||
|
chat/distributedchat.h \
|
||||||
|
chat/rschatitems.h
|
||||||
|
|
||||||
HEADERS += pqi/authssl.h \
|
HEADERS += pqi/authssl.h \
|
||||||
pqi/authgpg.h \
|
pqi/authgpg.h \
|
||||||
|
@ -418,8 +421,7 @@ HEADERS += serialiser/rsbaseserial.h \
|
||||||
serialiser/rsgxsupdateitems.h \
|
serialiser/rsgxsupdateitems.h \
|
||||||
serialiser/rsserviceinfoitems.h \
|
serialiser/rsserviceinfoitems.h \
|
||||||
|
|
||||||
HEADERS += services/p3chatservice.h \
|
HEADERS += services/p3msgservice.h \
|
||||||
services/p3msgservice.h \
|
|
||||||
services/p3service.h \
|
services/p3service.h \
|
||||||
services/p3statusservice.h \
|
services/p3statusservice.h \
|
||||||
services/p3banlist.h \
|
services/p3banlist.h \
|
||||||
|
@ -473,7 +475,10 @@ SOURCES += ft/ftchunkmap.cc \
|
||||||
ft/fttransfermodule.cc \
|
ft/fttransfermodule.cc \
|
||||||
ft/ftturtlefiletransferitem.cc
|
ft/ftturtlefiletransferitem.cc
|
||||||
|
|
||||||
SOURCES += chat/distantchat.cc
|
SOURCES += chat/distantchat.cc \
|
||||||
|
chat/p3chatservice.cc \
|
||||||
|
chat/distributedchat.cc \
|
||||||
|
chat/rschatitems.cc
|
||||||
|
|
||||||
SOURCES += pqi/authgpg.cc \
|
SOURCES += pqi/authgpg.cc \
|
||||||
pqi/authssl.cc \
|
pqi/authssl.cc \
|
||||||
|
@ -564,8 +569,7 @@ SOURCES += serialiser/rsbaseserial.cc \
|
||||||
serialiser/rsgxsupdateitems.cc \
|
serialiser/rsgxsupdateitems.cc \
|
||||||
serialiser/rsserviceinfoitems.cc \
|
serialiser/rsserviceinfoitems.cc \
|
||||||
|
|
||||||
SOURCES += services/p3chatservice.cc \
|
SOURCES += services/p3msgservice.cc \
|
||||||
services/p3msgservice.cc \
|
|
||||||
services/p3service.cc \
|
services/p3service.cc \
|
||||||
services/p3statusservice.cc \
|
services/p3statusservice.cc \
|
||||||
services/p3banlist.cc \
|
services/p3banlist.cc \
|
||||||
|
|
|
@ -38,8 +38,9 @@
|
||||||
#include "retroshare/rstypes.h"
|
#include "retroshare/rstypes.h"
|
||||||
#include "util/rsthreads.h"
|
#include "util/rsthreads.h"
|
||||||
|
|
||||||
|
#include "chat/p3chatservice.h"
|
||||||
|
|
||||||
#include "services/p3msgservice.h"
|
#include "services/p3msgservice.h"
|
||||||
#include "services/p3chatservice.h"
|
|
||||||
#include "services/p3statusservice.h"
|
#include "services/p3statusservice.h"
|
||||||
|
|
||||||
class p3heartbeat;
|
class p3heartbeat;
|
||||||
|
|
|
@ -39,7 +39,7 @@ const int p3facemsgzone = 11453;
|
||||||
#include "rsserver/p3msgs.h"
|
#include "rsserver/p3msgs.h"
|
||||||
|
|
||||||
#include "services/p3msgservice.h"
|
#include "services/p3msgservice.h"
|
||||||
#include "services/p3chatservice.h"
|
#include "chat/p3chatservice.h"
|
||||||
|
|
||||||
#include "pqi/authgpg.h"
|
#include "pqi/authgpg.h"
|
||||||
|
|
||||||
|
|
|
@ -852,9 +852,10 @@ RsGRouter *rsGRouter = NULL ;
|
||||||
#include "services/p3heartbeat.h"
|
#include "services/p3heartbeat.h"
|
||||||
#include "services/p3discovery2.h"
|
#include "services/p3discovery2.h"
|
||||||
#include "services/p3msgservice.h"
|
#include "services/p3msgservice.h"
|
||||||
#include "services/p3chatservice.h"
|
|
||||||
#include "services/p3statusservice.h"
|
#include "services/p3statusservice.h"
|
||||||
|
|
||||||
#include "turtle/p3turtle.h"
|
#include "turtle/p3turtle.h"
|
||||||
|
#include "chat/p3chatservice.h"
|
||||||
|
|
||||||
#ifdef RS_ENABLE_GXS
|
#ifdef RS_ENABLE_GXS
|
||||||
// NEW GXS SYSTEMS.
|
// NEW GXS SYSTEMS.
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -28,8 +28,6 @@
|
||||||
|
|
||||||
#include <map>
|
#include <map>
|
||||||
|
|
||||||
#include "openssl/bn.h"
|
|
||||||
|
|
||||||
#include "retroshare/rstypes.h"
|
#include "retroshare/rstypes.h"
|
||||||
#include "serialiser/rstlvkeys.h"
|
#include "serialiser/rstlvkeys.h"
|
||||||
#include "serialiser/rsserviceids.h"
|
#include "serialiser/rsserviceids.h"
|
||||||
|
@ -45,42 +43,6 @@
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|
||||||
/* 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;
|
|
||||||
|
|
||||||
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 ;
|
|
||||||
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
|
|
||||||
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 ;
|
|
||||||
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 ;
|
|
||||||
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_LIST_REQUEST = 0x0D ;
|
|
||||||
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_LIST_deprecated = 0x0E ; // to be removed
|
|
||||||
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_INVITE = 0x0F ;
|
|
||||||
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_EVENT = 0x10 ;
|
|
||||||
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 = 0x12 ;
|
|
||||||
const uint8_t RS_PKT_SUBTYPE_DISTANT_INVITE_CONFIG = 0x13 ;
|
|
||||||
const uint8_t RS_PKT_SUBTYPE_CHAT_LOBBY_CONFIG = 0x15 ;
|
|
||||||
const uint8_t RS_PKT_SUBTYPE_DISTANT_CHAT_DH_PUBLIC_KEY = 0x16 ;
|
|
||||||
|
|
||||||
// for defining tags themselves and msg tags
|
// for defining tags themselves and msg tags
|
||||||
const uint8_t RS_PKT_SUBTYPE_MSG_TAG_TYPE = 0x03;
|
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_TAGS = 0x04;
|
||||||
|
@ -88,367 +50,6 @@ const uint8_t RS_PKT_SUBTYPE_MSG_SRC_TAG = 0x05;
|
||||||
const uint8_t RS_PKT_SUBTYPE_MSG_PARENT_TAG = 0x06;
|
const uint8_t RS_PKT_SUBTYPE_MSG_PARENT_TAG = 0x06;
|
||||||
const uint8_t RS_PKT_SUBTYPE_MSG_INVITE = 0x07;
|
const uint8_t RS_PKT_SUBTYPE_MSG_INVITE = 0x07;
|
||||||
|
|
||||||
typedef uint64_t ChatLobbyId ;
|
|
||||||
typedef uint64_t ChatLobbyMsgId ;
|
|
||||||
typedef std::string ChatLobbyNickName ;
|
|
||||||
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() {}
|
|
||||||
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
|
|
||||||
};
|
|
||||||
|
|
||||||
/*!
|
|
||||||
* For sending chat msgs
|
|
||||||
* @see p3ChatService
|
|
||||||
*/
|
|
||||||
class RsChatMsgItem: public RsChatItem
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
RsChatMsgItem() :RsChatItem(RS_PKT_SUBTYPE_DEFAULT) {}
|
|
||||||
RsChatMsgItem(uint8_t subtype) :RsChatItem(subtype) {}
|
|
||||||
|
|
||||||
RsChatMsgItem(void *data,uint32_t size,uint8_t subtype = RS_PKT_SUBTYPE_DEFAULT) ; // deserialization
|
|
||||||
|
|
||||||
virtual ~RsChatMsgItem() {}
|
|
||||||
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
|
|
||||||
|
|
||||||
uint32_t chatFlags;
|
|
||||||
uint32_t sendTime;
|
|
||||||
std::string message;
|
|
||||||
/* not serialised */
|
|
||||||
uint32_t recvTime;
|
|
||||||
};
|
|
||||||
|
|
||||||
// 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
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
RsChatLobbyMsgItem() :RsChatMsgItem(RS_PKT_SUBTYPE_CHAT_LOBBY_MSG) {}
|
|
||||||
|
|
||||||
RsChatLobbyMsgItem(void *data,uint32_t size) ; // deserialization /// TODO!!!
|
|
||||||
|
|
||||||
virtual ~RsChatLobbyMsgItem() {}
|
|
||||||
virtual std::ostream& print(std::ostream &out, uint16_t indent = 0);
|
|
||||||
virtual RsChatLobbyBouncingObject *duplicate() const { return new RsChatLobbyMsgItem(*this) ; }
|
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
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
|
|
||||||
uint32_t sendTime; // used to check for old looping messages
|
|
||||||
};
|
|
||||||
|
|
||||||
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);
|
|
||||||
};
|
|
||||||
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 ;
|
|
||||||
};
|
|
||||||
class RsChatLobbyListItem_deprecated2: public RsChatItem
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
RsChatLobbyListItem_deprecated2() : RsChatItem(RS_PKT_SUBTYPE_CHAT_LOBBY_LIST_deprecated2) {}
|
|
||||||
RsChatLobbyListItem_deprecated2(void *data,uint32_t size) ;
|
|
||||||
virtual ~RsChatLobbyListItem_deprecated2() {}
|
|
||||||
|
|
||||||
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<std::string> lobby_topics ;
|
|
||||||
std::vector<uint32_t> lobby_counts ;
|
|
||||||
};
|
|
||||||
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 ;
|
|
||||||
std::vector<std::string> lobby_topics ;
|
|
||||||
std::vector<uint32_t> lobby_counts ;
|
|
||||||
std::vector<uint32_t> lobby_privacy_levels ;
|
|
||||||
};
|
|
||||||
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
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
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
|
|
||||||
};
|
|
||||||
|
|
||||||
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 ;
|
|
||||||
std::string lobby_topic ;
|
|
||||||
uint32_t lobby_privacy_level ;
|
|
||||||
|
|
||||||
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
|
|
||||||
};
|
|
||||||
|
|
||||||
/*!
|
|
||||||
* 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 RsPeerId &peerId, uint32_t confFlags);
|
|
||||||
/* get data from RsPrivateChatMsgConfigItem to RsChatMsgItem */
|
|
||||||
void get(RsChatMsgItem *ci);
|
|
||||||
|
|
||||||
RsPeerId configPeerId;
|
|
||||||
uint32_t chatFlags;
|
|
||||||
uint32_t configFlags;
|
|
||||||
uint32_t sendTime;
|
|
||||||
std::string message;
|
|
||||||
uint32_t recvTime;
|
|
||||||
};
|
|
||||||
class RsPrivateChatDistantInviteConfigItem: public RsChatItem
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
RsPrivateChatDistantInviteConfigItem() :RsChatItem(RS_PKT_SUBTYPE_DISTANT_INVITE_CONFIG) {}
|
|
||||||
RsPrivateChatDistantInviteConfigItem(void *data,uint32_t size) ; // deserialization
|
|
||||||
|
|
||||||
virtual ~RsPrivateChatDistantInviteConfigItem() {}
|
|
||||||
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
|
|
||||||
|
|
||||||
unsigned char aes_key[16] ;
|
|
||||||
RsFileHash hash ;
|
|
||||||
std::string encrypted_radix64_string ;
|
|
||||||
RsPgpId destination_pgp_id ;
|
|
||||||
uint32_t time_of_validity ;
|
|
||||||
uint32_t last_hit_time ;
|
|
||||||
uint32_t flags ;
|
|
||||||
};
|
|
||||||
class RsChatLobbyConfigItem: public RsChatItem
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
RsChatLobbyConfigItem() :RsChatItem(RS_PKT_SUBTYPE_CHAT_LOBBY_CONFIG) { lobby_Id = 0; }
|
|
||||||
RsChatLobbyConfigItem(void *data,uint32_t size) ; // deserialization
|
|
||||||
|
|
||||||
virtual ~RsChatLobbyConfigItem() {}
|
|
||||||
|
|
||||||
virtual void clear() { lobby_Id = 0; }
|
|
||||||
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
|
|
||||||
|
|
||||||
uint64_t lobby_Id;
|
|
||||||
uint32_t flags ;
|
|
||||||
};
|
|
||||||
|
|
||||||
// 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) {}
|
|
||||||
RsChatStatusItem(void *data,uint32_t size) ; // deserialization
|
|
||||||
|
|
||||||
virtual ~RsChatStatusItem() {}
|
|
||||||
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 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) ;}
|
|
||||||
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
|
|
||||||
};
|
|
||||||
|
|
||||||
// This class contains the public Diffie-Hellman parameters to be sent
|
|
||||||
// when performing a DH agreement over a distant chat tunnel.
|
|
||||||
//
|
|
||||||
class RsChatDHPublicKeyItem: public RsChatItem
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
RsChatDHPublicKeyItem() :RsChatItem(RS_PKT_SUBTYPE_DISTANT_CHAT_DH_PUBLIC_KEY) {setPriorityLevel(QOS_PRIORITY_RS_CHAT_ITEM) ;}
|
|
||||||
RsChatDHPublicKeyItem(void *data,uint32_t size) ; // deserialization
|
|
||||||
|
|
||||||
virtual ~RsChatDHPublicKeyItem() { BN_free(public_key) ; }
|
|
||||||
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
|
|
||||||
|
|
||||||
// Private data to DH public key item
|
|
||||||
//
|
|
||||||
BIGNUM *public_key ;
|
|
||||||
|
|
||||||
RsTlvKeySignature signature ; // signs the public key in a row.
|
|
||||||
RsTlvSecurityKey gxs_key ; // public key of the signer
|
|
||||||
|
|
||||||
private:
|
|
||||||
RsChatDHPublicKeyItem(const RsChatDHPublicKeyItem&) : RsChatItem(RS_PKT_SUBTYPE_DISTANT_CHAT_DH_PUBLIC_KEY) {} // make the object non copy-able
|
|
||||||
const RsChatDHPublicKeyItem& operator=(const RsChatDHPublicKeyItem&) { return *this ;}
|
|
||||||
};
|
|
||||||
|
|
||||||
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) ;
|
|
||||||
};
|
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue