mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
c8a805b8e7
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3020 b45a01b8-16f6-495d-af2f-9b41ad6348cc
119 lines
3.2 KiB
C++
119 lines
3.2 KiB
C++
/*
|
|
* 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>
|
|
|
|
#include "rsiface/rsmsgs.h"
|
|
|
|
#include "pqi/pqi.h"
|
|
#include "pqi/pqiindic.h"
|
|
|
|
#include "pqi/pqimonitor.h"
|
|
#include "pqi/p3cfgmgr.h"
|
|
|
|
#include "services/p3service.h"
|
|
#include "serialiser/rsmsgitems.h"
|
|
#include "util/rsthreads.h"
|
|
|
|
class p3ConnectMgr;
|
|
|
|
class p3MsgService: public p3Service, public pqiConfig, public pqiMonitor
|
|
{
|
|
public:
|
|
p3MsgService(p3ConnectMgr *cm);
|
|
|
|
/* External Interface */
|
|
bool MsgsChanged(); /* should update display */
|
|
bool MsgNotifications(); /* popup - messages */
|
|
bool getMessageNotifications(std::list<MsgInfoSummary> ¬eList);
|
|
|
|
bool getMessageSummaries(std::list<MsgInfoSummary> &msgList);
|
|
bool getMessage(std::string mid, MessageInfo &msg);
|
|
void getMessageCount(unsigned int *pnInbox, unsigned int *pnInboxNew, unsigned int *pnOutbox, unsigned int *pnDraftbox, unsigned int *pnSentbox, unsigned int *pnTrashbox);
|
|
|
|
bool removeMsgId(std::string mid);
|
|
bool markMsgIdRead(std::string mid);
|
|
|
|
bool MessageSend(MessageInfo &info);
|
|
bool MessageToDraft(MessageInfo &info);
|
|
bool MessageToTrash(std::string mid, bool bTrash);
|
|
|
|
|
|
void loadWelcomeMsg(); /* startup message */
|
|
|
|
//std::list<RsMsgItem *> &getMsgList();
|
|
//std::list<RsMsgItem *> &getMsgOutList();
|
|
|
|
int tick();
|
|
int status();
|
|
|
|
/*** Overloaded from pqiConfig ****/
|
|
virtual bool loadConfiguration(std::string &loadHash);
|
|
virtual bool saveConfiguration();
|
|
/*** Overloaded from pqiConfig ****/
|
|
|
|
/*** Overloaded from pqiMonitor ***/
|
|
virtual void statusChange(const std::list<pqipeer> &plist);
|
|
int checkOutgoingMessages();
|
|
/*** Overloaded from pqiMonitor ***/
|
|
|
|
private:
|
|
|
|
uint32_t getNewUniqueMsgId();
|
|
int sendMessage(RsMsgItem *item);
|
|
int incomingMsgs();
|
|
|
|
void initRsMI(RsMsgItem *msg, MessageInfo &mi);
|
|
void initRsMIS(RsMsgItem *msg, MsgInfoSummary &mis);
|
|
RsMsgItem *initMIRsMsg(MessageInfo &info, std::string to);
|
|
|
|
p3ConnectMgr *mConnMgr;
|
|
|
|
/* Mutex Required for stuff below */
|
|
|
|
RsMutex mMsgMtx;
|
|
|
|
/* stored list of messages */
|
|
std::map<uint32_t, RsMsgItem *> imsg;
|
|
/* ones that haven't made it out yet! */
|
|
std::map<uint32_t, RsMsgItem *> msgOutgoing;
|
|
|
|
/* List of notifications to post via Toaster */
|
|
std::list<MsgInfoSummary> msgNotifications;
|
|
|
|
Indicator msgChanged;
|
|
uint32_t mMsgUniqueId;
|
|
|
|
std::string config_dir;
|
|
};
|
|
|
|
#endif // MESSAGE_SERVICE_HEADER
|