zstein | 398c3fd | 2017-07-19 13:38:02 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2017 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #ifndef PC_RTPTRANSPORTINTERNAL_H_ |
| 12 | #define PC_RTPTRANSPORTINTERNAL_H_ |
zstein | 398c3fd | 2017-07-19 13:38:02 -0700 | [diff] [blame] | 13 | |
Zhi Huang | 942bc2e | 2017-11-13 13:26:07 -0800 | [diff] [blame] | 14 | #include <string> |
| 15 | |
Zhi Huang | e830e68 | 2018-03-30 10:48:35 -0700 | [diff] [blame^] | 16 | #include "api/ortc/srtptransportinterface.h" |
Steve Anton | db67ba1 | 2018-03-19 17:41:42 -0700 | [diff] [blame] | 17 | #include "api/umametrics.h" |
Zhi Huang | 942bc2e | 2017-11-13 13:26:07 -0800 | [diff] [blame] | 18 | #include "p2p/base/icetransportinternal.h" |
| 19 | #include "rtc_base/networkroute.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 20 | #include "rtc_base/sigslot.h" |
Zhi Huang | e830e68 | 2018-03-30 10:48:35 -0700 | [diff] [blame^] | 21 | #include "rtc_base/sslstreamadapter.h" |
zstein | 398c3fd | 2017-07-19 13:38:02 -0700 | [diff] [blame] | 22 | |
| 23 | namespace rtc { |
| 24 | class CopyOnWriteBuffer; |
| 25 | struct PacketOptions; |
| 26 | struct PacketTime; |
| 27 | } // namespace rtc |
| 28 | |
| 29 | namespace webrtc { |
| 30 | |
Zhi Huang | e830e68 | 2018-03-30 10:48:35 -0700 | [diff] [blame^] | 31 | // This represents the internal interface beneath SrtpTransportInterface; |
zstein | 398c3fd | 2017-07-19 13:38:02 -0700 | [diff] [blame] | 32 | // it is not accessible to API consumers but is accessible to internal classes |
| 33 | // in order to send and receive RTP and RTCP packets belonging to a single RTP |
| 34 | // session. Additional convenience and configuration methods are also provided. |
Zhi Huang | e830e68 | 2018-03-30 10:48:35 -0700 | [diff] [blame^] | 35 | class RtpTransportInternal : public SrtpTransportInterface, |
zstein | 398c3fd | 2017-07-19 13:38:02 -0700 | [diff] [blame] | 36 | public sigslot::has_slots<> { |
| 37 | public: |
| 38 | virtual void SetRtcpMuxEnabled(bool enable) = 0; |
| 39 | |
| 40 | // TODO(zstein): Remove PacketTransport setters. Clients should pass these |
| 41 | // in to constructors instead and construct a new RtpTransportInternal instead |
| 42 | // of updating them. |
Zhi Huang | f2d7beb | 2017-11-20 14:35:11 -0800 | [diff] [blame] | 43 | virtual bool rtcp_mux_enabled() const = 0; |
zstein | 398c3fd | 2017-07-19 13:38:02 -0700 | [diff] [blame] | 44 | |
| 45 | virtual rtc::PacketTransportInternal* rtp_packet_transport() const = 0; |
| 46 | virtual void SetRtpPacketTransport(rtc::PacketTransportInternal* rtp) = 0; |
| 47 | |
| 48 | virtual rtc::PacketTransportInternal* rtcp_packet_transport() const = 0; |
| 49 | virtual void SetRtcpPacketTransport(rtc::PacketTransportInternal* rtcp) = 0; |
| 50 | |
Zhi Huang | e830e68 | 2018-03-30 10:48:35 -0700 | [diff] [blame^] | 51 | virtual bool IsReadyToSend() const = 0; |
| 52 | |
zstein | 398c3fd | 2017-07-19 13:38:02 -0700 | [diff] [blame] | 53 | // Called whenever a transport's ready-to-send state changes. The argument |
| 54 | // is true if all used transports are ready to send. This is more specific |
| 55 | // than just "writable"; it means the last send didn't return ENOTCONN. |
| 56 | sigslot::signal1<bool> SignalReadyToSend; |
| 57 | |
Zhi Huang | 95e7dbb | 2018-03-29 00:08:03 +0000 | [diff] [blame] | 58 | // TODO(zstein): Consider having two signals - RtpPacketReceived and |
| 59 | // RtcpPacketReceived. |
| 60 | // The first argument is true for RTCP packets and false for RTP packets. |
| 61 | sigslot::signal3<bool, rtc::CopyOnWriteBuffer*, const rtc::PacketTime&> |
| 62 | SignalPacketReceived; |
zstein | 398c3fd | 2017-07-19 13:38:02 -0700 | [diff] [blame] | 63 | |
Zhi Huang | cd3fc5d | 2017-11-29 10:41:57 -0800 | [diff] [blame] | 64 | // Called whenever the network route of the P2P layer transport changes. |
| 65 | // The argument is an optional network route. |
| 66 | sigslot::signal1<rtc::Optional<rtc::NetworkRoute>> SignalNetworkRouteChanged; |
| 67 | |
Zhi Huang | f2d7beb | 2017-11-20 14:35:11 -0800 | [diff] [blame] | 68 | // Called whenever a transport's writable state might change. The argument is |
| 69 | // true if the transport is writable, otherwise it is false. |
| 70 | sigslot::signal1<bool> SignalWritableState; |
| 71 | |
Zhi Huang | cd3fc5d | 2017-11-29 10:41:57 -0800 | [diff] [blame] | 72 | sigslot::signal1<const rtc::SentPacket&> SignalSentPacket; |
Zhi Huang | 942bc2e | 2017-11-13 13:26:07 -0800 | [diff] [blame] | 73 | |
zstein | 398c3fd | 2017-07-19 13:38:02 -0700 | [diff] [blame] | 74 | virtual bool IsWritable(bool rtcp) const = 0; |
| 75 | |
Zhi Huang | f2d7beb | 2017-11-20 14:35:11 -0800 | [diff] [blame] | 76 | // TODO(zhihuang): Pass the |packet| by copy so that the original data |
| 77 | // wouldn't be modified. |
Zhi Huang | cf990f5 | 2017-09-22 12:12:30 -0700 | [diff] [blame] | 78 | virtual bool SendRtpPacket(rtc::CopyOnWriteBuffer* packet, |
| 79 | const rtc::PacketOptions& options, |
| 80 | int flags) = 0; |
| 81 | |
| 82 | virtual bool SendRtcpPacket(rtc::CopyOnWriteBuffer* packet, |
| 83 | const rtc::PacketOptions& options, |
| 84 | int flags) = 0; |
zstein | 398c3fd | 2017-07-19 13:38:02 -0700 | [diff] [blame] | 85 | |
Zhi Huang | e830e68 | 2018-03-30 10:48:35 -0700 | [diff] [blame^] | 86 | virtual bool IsSrtpActive() const = 0; |
Steve Anton | db67ba1 | 2018-03-19 17:41:42 -0700 | [diff] [blame] | 87 | |
| 88 | virtual void SetMetricsObserver( |
| 89 | rtc::scoped_refptr<MetricsObserverInterface> metrics_observer) = 0; |
zstein | 398c3fd | 2017-07-19 13:38:02 -0700 | [diff] [blame] | 90 | }; |
| 91 | |
| 92 | } // namespace webrtc |
| 93 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 94 | #endif // PC_RTPTRANSPORTINTERNAL_H_ |