summaryrefslogtreecommitdiffstats
blob: 10f27d537ea7f76c74428ff2958673688a3b26ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
 * Copyright (c) 2012 Mateusz Piękos
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

#pragma once

#include <map>

#include <Swiften/Queries/IQRouter.h>
#include <Swiften/JID/JID.h>
#include <Swiften/Base/boost_bsignals.h>
#include <Swiften/Whiteboard/WhiteboardSession.h>
#include <Swiften/Whiteboard/IncomingWhiteboardSession.h>
#include <Swiften/Whiteboard/OutgoingWhiteboardSession.h>

namespace Swift {
	class IQRouter;
	class WhiteboardResponder;
	class PresenceOracle;

	class WhiteboardSessionManager {
		friend class WhiteboardResponder;
	public:
		WhiteboardSessionManager(IQRouter* router, PresenceOracle* presenceOracle);
		~WhiteboardSessionManager();
		WhiteboardSession::ref getSession(const JID& to);
		WhiteboardSession::ref requestSession(const JID& to);

	public:
		boost::signal< void (const JID&, bool senderIsSelf)> onSessionRequest;
		boost::signal< void (const JID&)> onSessionTerminate;
		boost::signal< void (const JID&)> onRequestAccepted;

	private:
		JID getFullJID(const JID& bareJID);
		OutgoingWhiteboardSession::ref createOutgoingSession(const JID& to);
		void handleIncomingSession(IncomingWhiteboardSession::ref session);
		void handleSessionTerminate(const JID& contact);
		void handleSessionCancel(const JID& contact);
		void handleSessionAccept(const JID& contact);

	private:
		std::map<JID, boost::shared_ptr<WhiteboardSession> > sessions_;
		IQRouter* router_;
		PresenceOracle* presenceOracle_;
		WhiteboardResponder* responder;
	};
}