mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-18 02:47:12 -05:00
53 lines
1.5 KiB
C++
53 lines
1.5 KiB
C++
#pragma once
|
|
|
|
#include "ResourceRouter.h"
|
|
#include "StateTokenServer.h"
|
|
#include "ChatHandler.h"
|
|
#include <retroshare/rsnotify.h>
|
|
#include <util/rsthreads.h>
|
|
|
|
class RsPeers;
|
|
class RsMsgs;
|
|
|
|
namespace resource_api
|
|
{
|
|
|
|
class PeersHandler: public ResourceRouter, NotifyClient, Tickable, public UnreadMsgNotify
|
|
{
|
|
public:
|
|
PeersHandler(StateTokenServer* sts, RsNotify* notify, RsPeers* peers, RsMsgs* msgs);
|
|
virtual ~PeersHandler();
|
|
|
|
// from NotifyClient
|
|
// note: this may get called from foreign threads
|
|
virtual void notifyListChange(int list, int type); // friends list change
|
|
virtual void notifyPeerHasNewAvatar(std::string /*peer_id*/);
|
|
|
|
// from Tickable
|
|
virtual void tick();
|
|
|
|
// from UnreadMsgNotify
|
|
// ChatHandler calls this to tell us about unreadmsgs
|
|
// this allows to merge unread msgs info with the peers list
|
|
virtual void notifyUnreadMsgCountChanged(const RsPeerId& peer, uint32_t count);
|
|
|
|
private:
|
|
void handleWildcard(Request& req, Response& resp);
|
|
void handleExamineCert(Request& req, Response& resp);
|
|
|
|
// a helper which ensures proper mutex locking
|
|
StateToken getCurrentStateToken();
|
|
|
|
StateTokenServer* mStateTokenServer;
|
|
RsNotify* mNotify;
|
|
RsPeers* mRsPeers;
|
|
RsMsgs* mRsMsgs; // required for avatar data
|
|
|
|
std::list<RsPeerId> mOnlinePeers;
|
|
|
|
RsMutex mMtx;
|
|
StateToken mStateToken; // mutex protected
|
|
std::map<RsPeerId, uint32_t> mUnreadMsgsCounts;
|
|
};
|
|
} // namespace resource_api
|