2007-12-11 20:43:17 -05:00
|
|
|
/*
|
|
|
|
* libretroshare/src/services msgservice.h
|
|
|
|
*
|
|
|
|
* Services for RetroShare.
|
|
|
|
*
|
|
|
|
* Copyright 2004-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".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef MESSAGE_SERVICE_HEADER
|
|
|
|
#define MESSAGE_SERVICE_HEADER
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
#include <map>
|
|
|
|
#include <iostream>
|
|
|
|
|
2010-08-06 05:40:23 -04:00
|
|
|
#include "retroshare/rsmsgs.h"
|
2008-02-04 12:55:13 -05:00
|
|
|
|
2007-12-11 20:43:17 -05:00
|
|
|
#include "pqi/pqi.h"
|
|
|
|
#include "pqi/pqiindic.h"
|
2008-06-24 00:22:42 -04:00
|
|
|
|
|
|
|
#include "pqi/pqimonitor.h"
|
|
|
|
#include "pqi/p3cfgmgr.h"
|
|
|
|
|
2007-12-11 20:43:17 -05:00
|
|
|
#include "services/p3service.h"
|
|
|
|
#include "serialiser/rsmsgitems.h"
|
2008-02-04 12:55:13 -05:00
|
|
|
#include "util/rsthreads.h"
|
2013-04-29 16:44:48 -04:00
|
|
|
#include "turtle/p3turtle.h"
|
|
|
|
#include "turtle/turtleclientservice.h"
|
2007-12-11 20:43:17 -05:00
|
|
|
|
2011-07-09 14:39:34 -04:00
|
|
|
class p3LinkMgr;
|
2007-12-11 20:43:17 -05:00
|
|
|
|
2013-04-29 16:44:48 -04:00
|
|
|
class p3MsgService: public p3Service, public p3Config, public pqiMonitor, public RsTurtleClientService
|
2007-12-11 20:43:17 -05:00
|
|
|
{
|
|
|
|
public:
|
2011-07-09 14:39:34 -04:00
|
|
|
p3MsgService(p3LinkMgr *lm);
|
2007-12-11 20:43:17 -05:00
|
|
|
|
2008-02-04 12:55:13 -05:00
|
|
|
/* External Interface */
|
|
|
|
bool getMessageSummaries(std::list<MsgInfoSummary> &msgList);
|
2010-11-02 17:11:11 -04:00
|
|
|
bool getMessage(const std::string &mid, MessageInfo &msg);
|
2010-05-28 10:42:54 -04:00
|
|
|
void getMessageCount(unsigned int *pnInbox, unsigned int *pnInboxNew, unsigned int *pnOutbox, unsigned int *pnDraftbox, unsigned int *pnSentbox, unsigned int *pnTrashbox);
|
2008-02-04 12:55:13 -05:00
|
|
|
|
2010-11-02 17:11:11 -04:00
|
|
|
bool removeMsgId(const std::string &mid);
|
|
|
|
bool markMsgIdRead(const std::string &mid, bool bUnreadByUser);
|
|
|
|
bool setMsgFlag(const std::string &mid, uint32_t flag, uint32_t mask);
|
|
|
|
bool getMsgParentId(const std::string &msgId, std::string &msgParentId);
|
|
|
|
// msgParentId == 0 --> remove
|
|
|
|
bool setMsgParentId(uint32_t msgId, uint32_t msgParentId);
|
2008-02-04 12:55:13 -05:00
|
|
|
|
|
|
|
bool MessageSend(MessageInfo &info);
|
2012-05-01 05:18:55 -04:00
|
|
|
bool SystemMessage(const std::wstring &title, const std::wstring &message, uint32_t systemFlag);
|
2010-11-02 17:11:11 -04:00
|
|
|
bool MessageToDraft(MessageInfo &info, const std::string &msgParentId);
|
|
|
|
bool MessageToTrash(const std::string &mid, bool bTrash);
|
2008-02-04 12:55:13 -05:00
|
|
|
|
2010-08-22 18:12:26 -04:00
|
|
|
bool getMessageTagTypes(MsgTagType& tags);
|
|
|
|
bool setMessageTagType(uint32_t tagId, std::string& text, uint32_t rgb_color);
|
|
|
|
bool removeMessageTagType(uint32_t tagId);
|
2010-08-19 17:47:26 -04:00
|
|
|
|
2010-11-02 17:11:11 -04:00
|
|
|
bool getMessageTag(const std::string &msgId, MsgTagInfo& info);
|
2010-08-22 18:12:26 -04:00
|
|
|
/* set == false && tagId == 0 --> remove all */
|
2010-11-02 17:11:11 -04:00
|
|
|
bool setMessageTag(const std::string &msgId, uint32_t tagId, bool set);
|
2010-08-22 18:12:26 -04:00
|
|
|
|
|
|
|
bool resetMessageStandardTagTypes(MsgTagType& tags);
|
2008-02-04 12:55:13 -05:00
|
|
|
|
2007-12-11 20:43:17 -05:00
|
|
|
void loadWelcomeMsg(); /* startup message */
|
|
|
|
|
2008-02-07 11:18:34 -05:00
|
|
|
//std::list<RsMsgItem *> &getMsgList();
|
|
|
|
//std::list<RsMsgItem *> &getMsgOutList();
|
2007-12-11 20:43:17 -05:00
|
|
|
|
|
|
|
int tick();
|
|
|
|
int status();
|
|
|
|
|
2010-09-20 18:11:09 -04:00
|
|
|
/*** Overloaded from p3Config ****/
|
|
|
|
virtual RsSerialiser *setupSerialiser();
|
2010-12-18 14:35:07 -05:00
|
|
|
virtual bool saveList(bool& cleanup, std::list<RsItem*>&);
|
|
|
|
virtual bool loadList(std::list<RsItem*>& load);
|
2010-09-20 18:11:09 -04:00
|
|
|
virtual void saveDone();
|
|
|
|
/*** Overloaded from p3Config ****/
|
2008-02-07 11:18:34 -05:00
|
|
|
|
|
|
|
/*** Overloaded from pqiMonitor ***/
|
|
|
|
virtual void statusChange(const std::list<pqipeer> &plist);
|
|
|
|
int checkOutgoingMessages();
|
|
|
|
/*** Overloaded from pqiMonitor ***/
|
|
|
|
|
2013-04-29 16:44:48 -04:00
|
|
|
/*** overloaded from p3turtle ***/
|
|
|
|
|
|
|
|
void connectToTurtleRouter(p3turtle *) ;
|
|
|
|
|
|
|
|
struct DistantMessengingInvite
|
|
|
|
{
|
|
|
|
time_t time_of_validity ;
|
|
|
|
};
|
|
|
|
struct DistantMessengingContact
|
|
|
|
{
|
|
|
|
time_t last_hit_time ;
|
|
|
|
std::string virtual_peer_id ;
|
|
|
|
uint32_t status ;
|
|
|
|
std::vector<RsMsgItem*> pending_messages ;
|
|
|
|
};
|
|
|
|
|
|
|
|
bool createDistantOfflineMessengingInvite(time_t time_of_validity,TurtleFileHash& hash) ;
|
|
|
|
bool getDistantOfflineMessengingInvites(std::vector<DistantOfflineMessengingInvite>& invites) ;
|
|
|
|
void sendPrivateMsgItem(RsMsgItem *) ;
|
|
|
|
|
2007-12-11 20:43:17 -05:00
|
|
|
private:
|
2013-04-29 16:44:48 -04:00
|
|
|
// This maps contains the current invitations to respond to.
|
|
|
|
//
|
|
|
|
std::map<std::string,DistantMessengingInvite> _messenging_invites ;
|
|
|
|
|
|
|
|
// This contains the ongoing tunnel handling contacts.
|
|
|
|
//
|
|
|
|
std::map<std::string,DistantMessengingContact> _messenging_contacts ;
|
|
|
|
|
|
|
|
// Overloaded from RsTurtleClientService
|
|
|
|
|
|
|
|
virtual bool handleTunnelRequest(const std::string& hash,const std::string& peer_id) ;
|
|
|
|
virtual void receiveTurtleData(RsTurtleGenericTunnelItem *item,const std::string& hash,const std::string& virtual_peer_id,RsTurtleGenericTunnelItem::Direction direction) ;
|
|
|
|
void addVirtualPeer(const TurtleFileHash&, const TurtleVirtualPeerId&,RsTurtleGenericTunnelItem::Direction dir) ;
|
|
|
|
void removeVirtualPeer(const TurtleFileHash&, const TurtleVirtualPeerId&) ;
|
|
|
|
|
|
|
|
// Utility functions
|
|
|
|
|
|
|
|
void manageDistantPeers() ;
|
|
|
|
void sendTurtleData(const std::string& hash,RsMsgItem *) ;
|
|
|
|
void handleIncomingItem(RsMsgItem *) ;
|
|
|
|
|
|
|
|
p3turtle *mTurtle ;
|
2007-12-11 20:43:17 -05:00
|
|
|
|
2008-02-04 16:40:34 -05:00
|
|
|
uint32_t getNewUniqueMsgId();
|
2008-02-04 12:55:13 -05:00
|
|
|
int sendMessage(RsMsgItem *item);
|
2011-09-09 15:37:38 -04:00
|
|
|
void checkSizeAndSendMessage(RsMsgItem *msg);
|
|
|
|
|
2007-12-11 20:43:17 -05:00
|
|
|
int incomingMsgs();
|
2012-05-01 05:18:55 -04:00
|
|
|
void processMsg(RsMsgItem *mi, bool incoming);
|
2011-09-09 15:37:38 -04:00
|
|
|
bool checkAndRebuildPartialMessage(RsMsgItem*) ;
|
2007-12-11 20:43:17 -05:00
|
|
|
|
2008-02-04 12:55:13 -05:00
|
|
|
void initRsMI(RsMsgItem *msg, MessageInfo &mi);
|
|
|
|
void initRsMIS(RsMsgItem *msg, MsgInfoSummary &mis);
|
2012-05-01 05:18:55 -04:00
|
|
|
RsMsgItem *initMIRsMsg(MessageInfo &info, const std::string &to);
|
2008-02-04 12:55:13 -05:00
|
|
|
|
2010-08-22 18:12:26 -04:00
|
|
|
void initStandardTagTypes();
|
|
|
|
|
2011-07-09 14:39:34 -04:00
|
|
|
p3LinkMgr *mLinkMgr;
|
2007-12-11 20:43:17 -05:00
|
|
|
|
2008-02-04 12:55:13 -05:00
|
|
|
/* Mutex Required for stuff below */
|
|
|
|
|
2008-02-04 16:40:34 -05:00
|
|
|
RsMutex mMsgMtx;
|
2013-04-29 16:44:48 -04:00
|
|
|
RsMsgSerialiser *_serialiser ;
|
2008-02-04 12:55:13 -05:00
|
|
|
|
2008-02-04 16:40:34 -05:00
|
|
|
/* stored list of messages */
|
|
|
|
std::map<uint32_t, RsMsgItem *> imsg;
|
|
|
|
/* ones that haven't made it out yet! */
|
|
|
|
std::map<uint32_t, RsMsgItem *> msgOutgoing;
|
2007-12-11 20:43:17 -05:00
|
|
|
|
2011-09-09 15:37:38 -04:00
|
|
|
std::map<std::string, RsMsgItem *> _pendingPartialMessages ;
|
|
|
|
|
2010-08-19 17:47:26 -04:00
|
|
|
/* maps for tags types and msg tags */
|
|
|
|
|
|
|
|
std::map<uint32_t, RsMsgTagType*> mTags;
|
2010-08-22 18:12:26 -04:00
|
|
|
std::map<uint32_t, RsMsgTags*> mMsgTags;
|
2010-08-19 17:47:26 -04:00
|
|
|
|
2008-02-04 16:40:34 -05:00
|
|
|
uint32_t mMsgUniqueId;
|
2007-12-11 20:43:17 -05:00
|
|
|
|
2010-10-31 15:29:26 -04:00
|
|
|
// used delete msgSrcIds after config save
|
2011-05-21 12:26:00 -04:00
|
|
|
std::map<uint32_t, RsMsgSrcId*> mSrcIds;
|
2010-10-31 15:29:26 -04:00
|
|
|
|
2010-11-02 17:11:11 -04:00
|
|
|
// save the parent of the messages in draft for replied and forwarded
|
|
|
|
std::map<uint32_t, RsMsgParentId*> mParentId;
|
|
|
|
|
2008-02-04 12:55:13 -05:00
|
|
|
std::string config_dir;
|
2007-12-11 20:43:17 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MESSAGE_SERVICE_HEADER
|