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
|
/*
* Copyright (c) 2013-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
#include <vector>
#include <boost/optional/optional_fwd.hpp>
#include <boost/signals2.hpp>
#include <Swiften/Base/API.h>
#include <Swiften/Elements/JingleS5BTransportPayload.h>
namespace Swift {
class TransportSession;
class ErrorPayload;
class ReadBytestream;
class WriteBytestream;
/**
* @brief The FileTransferTransporter class is an abstract factory definition
* to generate SOCKS5 bytestream transports or IBB bytestreams for use in file
* transfers.
*/
class SWIFTEN_API FileTransferTransporter {
public:
virtual ~FileTransferTransporter();
virtual void startGeneratingLocalCandidates() = 0;
virtual void stopGeneratingLocalCandidates() = 0;
virtual void addRemoteCandidates(
const std::vector<JingleS5BTransportPayload::Candidate>&, const std::string&) = 0;
virtual void startTryingRemoteCandidates() = 0;
virtual void stopTryingRemoteCandidates() = 0;
virtual void startActivatingProxy(const JID& proxy) = 0;
virtual void stopActivatingProxy() = 0;
virtual std::shared_ptr<TransportSession> createIBBSendSession(
const std::string& sessionID, unsigned int blockSize, std::shared_ptr<ReadBytestream>) = 0;
virtual std::shared_ptr<TransportSession> createIBBReceiveSession(
const std::string& sessionID, unsigned long long size, std::shared_ptr<WriteBytestream>) = 0;
virtual std::shared_ptr<TransportSession> createRemoteCandidateSession(
std::shared_ptr<ReadBytestream>, const JingleS5BTransportPayload::Candidate& candidate) = 0;
virtual std::shared_ptr<TransportSession> createRemoteCandidateSession(
std::shared_ptr<WriteBytestream>, const JingleS5BTransportPayload::Candidate& candidate) = 0;
virtual std::shared_ptr<TransportSession> createLocalCandidateSession(
std::shared_ptr<ReadBytestream>, const JingleS5BTransportPayload::Candidate& candidate) = 0;
virtual std::shared_ptr<TransportSession> createLocalCandidateSession(
std::shared_ptr<WriteBytestream>, const JingleS5BTransportPayload::Candidate& candidate) = 0;
boost::signals2::signal<void (const std::string& /* sessionID */, const std::vector<JingleS5BTransportPayload::Candidate>&, const std::string& /* dstAddr */)> onLocalCandidatesGenerated;
boost::signals2::signal<void (const std::string& /* sessionID */, const boost::optional<JingleS5BTransportPayload::Candidate>&)> onRemoteCandidateSelectFinished;
boost::signals2::signal<void (const std::string& /* sessionID */, std::shared_ptr<ErrorPayload>)> onProxyActivated;
};
}
|