summaryrefslogtreecommitdiffstats
blob: 0bbbf318602839bcc79808ed95f22f2a4fcbd792 (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
/*
 * Copyright (c) 2011 Tobias Markmann
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt 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/FileTransfer/FileTransferManager.h>
#include <Swiften/Base/boost_bsignals.h>
#include <Swiften/JID/JID.h>
#include <Swiften/FileTransfer/OutgoingFileTransfer.h>
#include <Swiften/FileTransfer/IncomingFileTransfer.h>
#include <Swiften/Elements/S5BProxyRequest.h>

namespace Swift {
	class Client;
	class ConnectionFactory;
	class ConnectionServerFactory;
	class ConnectivityManager;
	class EntityCapsProvider;
	class IQRouter;
	class IncomingFileTransferManager;
	class JingleSessionManager;
	class LocalJingleTransportCandidateGeneratorFactory;
	class OutgoingFileTransferManager;
	class NATTraverser;
	class PresenceOracle;
	class ReadBytestream;
	class RemoteJingleTransportCandidateSelectorFactory;
	class SOCKS5BytestreamRegistry;
	class SOCKS5BytestreamServer;
	class SOCKS5BytestreamProxy;
	class TimerFactory;
	class SOCKS5BytestreamProxyFinder;

	class FileTransferManagerImpl : public FileTransferManager {
		public:
			FileTransferManagerImpl(const JID& ownFullJID, JingleSessionManager* jingleSessionManager, IQRouter* router, EntityCapsProvider* capsProvider, PresenceOracle* presOracle, ConnectionFactory* connectionFactory, ConnectionServerFactory* connectionServerFactory, TimerFactory* timerFactory, NATTraverser* natTraverser);
			~FileTransferManagerImpl();
			
			void startListeningOnPort(int port);
			void addS5BProxy(S5BProxyRequest::ref proxy);

			OutgoingFileTransfer::ref createOutgoingFileTransfer(const JID& to, const boost::filesystem::path& filepath, const std::string& description, boost::shared_ptr<ReadBytestream> bytestream);
			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);
			
		private:
			boost::optional<JID> highestPriorityJIDSupportingFileTransfer(const JID& bareJID);
			
		private:
			JID ownJID;
			
			OutgoingFileTransferManager* outgoingFTManager;
			IncomingFileTransferManager* incomingFTManager;
			RemoteJingleTransportCandidateSelectorFactory* remoteCandidateSelectorFactory;
			LocalJingleTransportCandidateGeneratorFactory* localCandidateGeneratorFactory;
			JingleSessionManager* jingleSM;
			IQRouter* iqRouter;
			EntityCapsProvider* capsProvider;
			PresenceOracle* presenceOracle;

			ConnectionServerFactory* connectionServerFactory;
			SOCKS5BytestreamRegistry* bytestreamRegistry;
			SOCKS5BytestreamServer* bytestreamServer;
			SOCKS5BytestreamProxy* bytestreamProxy;
			ConnectivityManager* connectivityManager;
			SOCKS5BytestreamProxyFinder* s5bProxyFinder;
	};

}