-
-
Notifications
You must be signed in to change notification settings - Fork 392
/
Copy pathtcptransport.hpp
80 lines (60 loc) · 1.97 KB
/
tcptransport.hpp
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) 2020 Paul-Louis Ageneau
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#ifndef RTC_IMPL_TCP_TRANSPORT_H
#define RTC_IMPL_TCP_TRANSPORT_H
#include "common.hpp"
#include "pollservice.hpp"
#include "queue.hpp"
#include "socket.hpp"
#include "transport.hpp"
#if RTC_ENABLE_WEBSOCKET
#include <chrono>
#include <list>
#include <mutex>
#include <tuple>
namespace rtc::impl {
class TcpTransport final : public Transport, public std::enable_shared_from_this<TcpTransport> {
public:
using amount_callback = std::function<void(size_t amount)>;
TcpTransport(string hostname, string service, state_callback callback); // active
TcpTransport(socket_t sock, state_callback callback); // passive
~TcpTransport();
void onBufferedAmount(amount_callback callback);
void setReadTimeout(std::chrono::milliseconds readTimeout);
void start() override;
bool send(message_ptr message) override;
void incoming(message_ptr message) override;
bool outgoing(message_ptr message) override;
bool isActive() const;
string remoteAddress() const;
private:
void connect();
void resolve();
void attempt();
void createSocket(const struct sockaddr *addr, socklen_t addrlen);
void configureSocket();
void setPoll(PollService::Direction direction);
void close();
bool trySendQueue();
bool trySendMessage(message_ptr &message);
void updateBufferedAmount(ptrdiff_t delta);
void triggerBufferedAmount(size_t amount);
void process(PollService::Event event);
const bool mIsActive;
string mHostname, mService;
amount_callback mBufferedAmountCallback;
optional<std::chrono::milliseconds> mReadTimeout;
std::list<std::tuple<struct sockaddr_storage, socklen_t>> mResolved;
socket_t mSock;
Queue<message_ptr> mSendQueue;
size_t mBufferedAmount = 0;
std::mutex mSendMutex;
};
} // namespace rtc::impl
#endif
#endif