-
-
Notifications
You must be signed in to change notification settings - Fork 392
/
Copy pathdatachannel.hpp
93 lines (70 loc) · 2.41 KB
/
datachannel.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
81
82
83
84
85
86
87
88
89
90
91
92
93
/**
* Copyright (c) 2019 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_DATA_CHANNEL_H
#define RTC_IMPL_DATA_CHANNEL_H
#include "channel.hpp"
#include "common.hpp"
#include "message.hpp"
#include "peerconnection.hpp"
#include "queue.hpp"
#include "reliability.hpp"
#include "sctptransport.hpp"
#include <atomic>
#include <shared_mutex>
namespace rtc::impl {
struct PeerConnection;
struct DataChannel : Channel, std::enable_shared_from_this<DataChannel> {
static bool IsOpenMessage(message_ptr message);
DataChannel(weak_ptr<PeerConnection> pc, string label, string protocol,
Reliability reliability);
virtual ~DataChannel();
void close();
void remoteClose();
bool outgoing(message_ptr message);
void incoming(message_ptr message);
optional<message_variant> receive() override;
optional<message_variant> peek() override;
size_t availableAmount() const override;
optional<uint16_t> stream() const;
string label() const;
string protocol() const;
Reliability reliability() const;
bool isOpen(void) const;
bool isClosed(void) const;
size_t maxMessageSize() const;
virtual void assignStream(uint16_t stream);
virtual void open(shared_ptr<SctpTransport> transport);
virtual void processOpenMessage(message_ptr);
protected:
const weak_ptr<impl::PeerConnection> mPeerConnection;
weak_ptr<SctpTransport> mSctpTransport;
optional<uint16_t> mStream;
string mLabel;
string mProtocol;
shared_ptr<Reliability> mReliability;
mutable std::shared_mutex mMutex;
std::atomic<bool> mIsOpen = false;
std::atomic<bool> mIsClosed = false;
private:
Queue<message_ptr> mRecvQueue;
};
struct OutgoingDataChannel final : public DataChannel {
OutgoingDataChannel(weak_ptr<PeerConnection> pc, string label, string protocol,
Reliability reliability);
~OutgoingDataChannel();
void open(shared_ptr<SctpTransport> transport) override;
void processOpenMessage(message_ptr message) override;
};
struct IncomingDataChannel final : public DataChannel {
IncomingDataChannel(weak_ptr<PeerConnection> pc, weak_ptr<SctpTransport> transport);
~IncomingDataChannel();
void open(shared_ptr<SctpTransport> transport) override;
void processOpenMessage(message_ptr message) override;
};
} // namespace rtc::impl
#endif