summaryrefslogtreecommitdiffstats
blob: b38eaeafc599ccd3e36501ca2ea257b03627f944 (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
/*
 * 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.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 PlatformNATTraversalWorker;
class PresenceOracle;
class ReadBytestream;
class RemoteJingleTransportCandidateSelectorFactory;
class SOCKS5BytestreamRegistry;
class SOCKS5BytestreamServer;
class SOCKS5BytestreamProxy;
class TimerFactory;

class FileTransferManagerImpl : public FileTransferManager {
public:
	FileTransferManagerImpl(const JID& ownFullJID, JingleSessionManager* jingleSessionManager, IQRouter* router, EntityCapsProvider* capsProvider, PresenceOracle* presOracle, ConnectionFactory* connectionFactory, ConnectionServerFactory* connectionServerFactory, TimerFactory* timerFactory, PlatformNATTraversalWorker* natTraversalWorker);
	~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;

	TimerFactory* timerFactory;
	ConnectionFactory* connectionFactory;
	ConnectionServerFactory* connectionServerFactory;
	PlatformNATTraversalWorker* natTraversalWorker;
	SOCKS5BytestreamRegistry* bytestreamRegistry;
	SOCKS5BytestreamServer* bytestreamServer;
	SOCKS5BytestreamProxy* bytestreamProxy;
	ConnectivityManager* connectivityManager;
};

}