blob: 336c51c3c4d23598e40607e49a20ac3dd4f080d8 (
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
|
/*
* Copyright (c) 2011 Tobias Markmann
* Licensed under the simplified BSD license.
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
#pragma once
#include <boost/cstdint.hpp>
#include <boost/optional.hpp>
#include <boost/shared_ptr.hpp>
#include <Swiften/Base/boost_bsignals.h>
#include <Swiften/FileTransfer/FileTransferError.h>
namespace Swift {
class FileTransfer {
public:
struct State {
enum FTState {
Canceled,
Failed,
Finished,
Negotiating,
Transferring,
WaitingForStart,
WaitingForAccept,
};
FTState state;
std::string message;
State(FTState state) : state(state), message("") {}
State(FTState state, std::string message) : state(state), message(message) {}
};
public:
typedef boost::shared_ptr<FileTransfer> ref;
public:
boost::uintmax_t fileSizeInBytes;
std::string filename;
std::string algo;
std::string hash;
public:
virtual void cancel() = 0;
public:
boost::signal<void (int /* proccessedBytes */)> onProcessedBytes;
boost::signal<void (State)> onStateChange;
boost::signal<void (boost::optional<FileTransferError>)> onFinished;
public:
virtual ~FileTransfer() {}
};
}
|