-
-
Notifications
You must be signed in to change notification settings - Fork 392
/
Copy pathtransport.hpp
60 lines (45 loc) · 1.44 KB
/
transport.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
/**
* Copyright (c) 2019-2022 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_TRANSPORT_H
#define RTC_IMPL_TRANSPORT_H
#include "common.hpp"
#include "init.hpp"
#include "internals.hpp"
#include "message.hpp"
#include <atomic>
#include <functional>
#include <memory>
namespace rtc::impl {
class Transport {
public:
enum class State { Disconnected, Connecting, Connected, Completed, Failed };
using state_callback = std::function<void(State state)>;
Transport(shared_ptr<Transport> lower = nullptr, state_callback callback = nullptr);
virtual ~Transport();
void registerIncoming();
void unregisterIncoming();
State state() const;
void onRecv(message_callback callback);
void onStateChange(state_callback callback);
virtual void start();
virtual void stop();
virtual bool send(message_ptr message);
protected:
void recv(message_ptr message);
void changeState(State state);
virtual void incoming(message_ptr message);
virtual bool outgoing(message_ptr message);
private:
const init_token mInitToken = Init::Instance().token();
shared_ptr<Transport> mLower;
synchronized_callback<State> mStateChangeCallback;
synchronized_callback<message_ptr> mRecvCallback;
std::atomic<State> mState = State::Disconnected;
};
} // namespace rtc::impl
#endif