summaryrefslogtreecommitdiffstats
blob: 651ac5f9fee7ec0081110c18e6bc0809490dd929 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
 * Copyright (c) 2011 Tobias Markmann
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

/*
 * Copyright (c) 2013 Remko Tronçon
 * Licensed under the GNU General Public License.
 * See the COPYING file for more information.
 */

#pragma once

#include <boost/shared_ptr.hpp>
#include <string>
#include <vector>
#include <boost/variant.hpp>

#include <Swiften/Base/API.h>
#include <Swiften/Base/SimpleIDGenerator.h>
#include <Swiften/Base/boost_bsignals.h>
#include <Swiften/Base/Override.h>
#include <Swiften/JID/JID.h>
#include <Swiften/Elements/JinglePayload.h>
#include <Swiften/Jingle/JingleSession.h>
#include <Swiften/Jingle/JingleContentID.h>

namespace Swift {
	class JingleContentID;

	class SWIFTEN_API FakeJingleSession : public JingleSession {
		public:
		struct InitiateCall {
			InitiateCall(JingleContentID contentId, JingleDescription::ref desc, JingleTransportPayload::ref payL) : id(contentId), description(desc), payload(payL) {}
			JingleContentID id;
			JingleDescription::ref description;
			JingleTransportPayload::ref payload;
		};

		struct  TerminateCall {
			TerminateCall(JinglePayload::Reason::Type r) : reason(r) {}
			JinglePayload::Reason::Type reason;
		};

		struct InfoCall {
			InfoCall(boost::shared_ptr<Payload> info) : payload(info) {}
			boost::shared_ptr<Payload> payload;
		};

		struct AcceptCall {
			AcceptCall(JingleContentID contentId, JingleDescription::ref desc, JingleTransportPayload::ref payL) : id(contentId), description(desc), payload(payL) {}
			JingleContentID id;
			JingleDescription::ref description;
			JingleTransportPayload::ref payload;
		};

		struct InfoTransportCall {
			InfoTransportCall(JingleContentID contentId, JingleTransportPayload::ref payL) : id(contentId), payload(payL) {}
			JingleContentID id;
			JingleTransportPayload::ref payload;
		};

		struct AcceptTransportCall {
			AcceptTransportCall(JingleContentID contentId, JingleTransportPayload::ref payL) : id(contentId), payload(payL) {}
			JingleContentID id;
			JingleTransportPayload::ref payload;
		};

		struct RejectTransportCall {
			RejectTransportCall(JingleContentID contentId, JingleTransportPayload::ref payL) : id(contentId), payload(payL) {}
			JingleContentID id;
			JingleTransportPayload::ref payload;
		};
		
		struct ReplaceTransportCall {
			ReplaceTransportCall(JingleContentID contentId, JingleTransportPayload::ref payL) : id(contentId), payload(payL) {}
			JingleContentID id;
			JingleTransportPayload::ref payload;
		};

		typedef boost::variant<InitiateCall, TerminateCall, AcceptCall, InfoCall, InfoTransportCall, AcceptTransportCall, RejectTransportCall, ReplaceTransportCall> Command;

		public:
			typedef boost::shared_ptr<FakeJingleSession> ref;

			FakeJingleSession(const JID& initiator, const std::string& id);
			virtual ~FakeJingleSession();

			virtual void sendInitiate(const JingleContentID&, JingleDescription::ref, JingleTransportPayload::ref) SWIFTEN_OVERRIDE;
			virtual void sendTerminate(JinglePayload::Reason::Type reason) SWIFTEN_OVERRIDE;
			virtual void sendInfo(boost::shared_ptr<Payload>) SWIFTEN_OVERRIDE;
			virtual void sendAccept(const JingleContentID&, JingleDescription::ref, JingleTransportPayload::ref = JingleTransportPayload::ref()) SWIFTEN_OVERRIDE;
			virtual std::string sendTransportInfo(const JingleContentID&, JingleTransportPayload::ref) SWIFTEN_OVERRIDE;
			virtual void sendTransportAccept(const JingleContentID&, JingleTransportPayload::ref) SWIFTEN_OVERRIDE;
			virtual void sendTransportReject(const JingleContentID&, JingleTransportPayload::ref) SWIFTEN_OVERRIDE;
			virtual void sendTransportReplace(const JingleContentID&, JingleTransportPayload::ref) SWIFTEN_OVERRIDE;

		public:
			std::vector<Command> calledCommands;
			SimpleIDGenerator idGenerator;
	};
}