summaryrefslogtreecommitdiffstats
blob: addbbd728f55d587be36992ff4f5c04c6e7893fd (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 <vector>
#include <string>

#include <boost/filesystem/path.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/optional.hpp>

#include <Swiften/Base/API.h>
#include <Swiften/Base/Override.h>
#include <Swiften/FileTransfer/FileTransferManager.h>
#include <Swiften/FileTransfer/FileTransferOptions.h>
#include <Swiften/Base/boost_bsignals.h>
#include <Swiften/Base/IDGenerator.h>
#include <Swiften/JID/JID.h>
#include <Swiften/FileTransfer/OutgoingFileTransfer.h>
#include <Swiften/FileTransfer/IncomingFileTransfer.h>
#include <Swiften/Elements/S5BProxyRequest.h>

namespace Swift {
	class ConnectionFactory;
	class ConnectionServerFactory;
	class SOCKS5BytestreamServerManager;
	class EntityCapsProvider;
	class IQRouter;
	class IncomingFileTransferManager;
	class JingleSessionManager;
	class OutgoingFileTransferManager;
	class NATTraverser;
	class PresenceOracle;
	class ReadBytestream;
	class FileTransferTransporterFactory;
	class SOCKS5BytestreamRegistry;
	class SOCKS5BytestreamProxiesManager;
	class TimerFactory;
	class CryptoProvider;
	class NetworkEnvironment;

	class SWIFTEN_API FileTransferManagerImpl : public FileTransferManager {
		public:
			FileTransferManagerImpl(
					const JID& ownFullJID, 
					JingleSessionManager* jingleSessionManager, 
					IQRouter* router, 
					EntityCapsProvider* capsProvider, 
					PresenceOracle* presOracle, 
					ConnectionFactory* connectionFactory,
					ConnectionServerFactory* connectionServerFactory,
					TimerFactory* timerFactory, 
					NetworkEnvironment* networkEnvironment,
					NATTraverser* natTraverser,
					CryptoProvider* crypto);
			~FileTransferManagerImpl();
			
			OutgoingFileTransfer::ref createOutgoingFileTransfer(
					const JID& to, 
					const boost::filesystem::path& filepath, 
					const std::string& description, 
					boost::shared_ptr<ReadBytestream> bytestream,
					const FileTransferOptions&) SWIFTEN_OVERRIDE;
			OutgoingFileTransfer::ref createOutgoingFileTransfer(
					const JID& to, 
					const std::string& filename, 
					const std::string& description, 
					const boost::uintmax_t sizeInBytes, 
					const boost::posix_time::ptime& lastModified, 
					boost::shared_ptr<ReadBytestream> bytestream,
					const FileTransferOptions&) SWIFTEN_OVERRIDE;

			void start();
			void stop();
			
		private:
			boost::optional<JID> highestPriorityJIDSupportingFileTransfer(const JID& bareJID);
			
		private:
			JID ownJID;
			
			OutgoingFileTransferManager* outgoingFTManager;
			IncomingFileTransferManager* incomingFTManager;
			FileTransferTransporterFactory* transporterFactory;
			IQRouter* iqRouter;
			EntityCapsProvider* capsProvider;
			PresenceOracle* presenceOracle;
			IDGenerator idGenerator;
			SOCKS5BytestreamRegistry* bytestreamRegistry;
			SOCKS5BytestreamProxiesManager* bytestreamProxy;
			SOCKS5BytestreamServerManager* s5bServerManager;
	};
}