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" |
Zhi Huang | 365381f | 2018-04-13 16:44:34 -0700 | [diff] [blame] | 17 | #include "call/rtp_demuxer.h" |
Zhi Huang | 942bc2e | 2017-11-13 13:26:07 -0800 | [diff] [blame] | 18 | #include "p2p/base/icetransportinternal.h" |
Zhi Huang | 365381f | 2018-04-13 16:44:34 -0700 | [diff] [blame] | 19 | #include "pc/sessiondescription.h" |
Zhi Huang | 942bc2e | 2017-11-13 13:26:07 -0800 | [diff] [blame] | 20 | #include "rtc_base/networkroute.h" |
Zhi Huang | e830e68 | 2018-03-30 10:48:35 -0700 | [diff] [blame] | 21 | #include "rtc_base/sslstreamadapter.h" |
Artem Titov | e41c433 | 2018-07-25 15:04:28 +0200 | [diff] [blame^] | 22 | #include "rtc_base/third_party/sigslot/sigslot.h" |
zstein | 398c3fd | 2017-07-19 13:38:02 -0700 | [diff] [blame] | 23 | |
| 24 | namespace rtc { |
| 25 | class CopyOnWriteBuffer; |
| 26 | struct PacketOptions; |
| 27 | struct PacketTime; |
| 28 | } // namespace rtc |
| 29 | |
| 30 | namespace webrtc { |
| 31 | |
Zhi Huang | e830e68 | 2018-03-30 10:48:35 -0700 | [diff] [blame] | 32 | // This represents the internal interface beneath SrtpTransportInterface; |
zstein | 398c3fd | 2017-07-19 13:38:02 -0700 | [diff] [blame] | 33 | // it is not accessible to API consumers but is accessible to internal classes |
| 34 | // in order to send and receive RTP and RTCP packets belonging to a single RTP |
| 35 | // session. Additional convenience and configuration methods are also provided. |
Zhi Huang | e830e68 | 2018-03-30 10:48:35 -0700 | [diff] [blame] | 36 | class RtpTransportInternal : public SrtpTransportInterface, |
zstein | 398c3fd | 2017-07-19 13:38:02 -0700 | [diff] [blame] | 37 | public sigslot::has_slots<> { |
| 38 | public: |
| 39 | virtual void SetRtcpMuxEnabled(bool enable) = 0; |
| 40 | |
| 41 | // TODO(zstein): Remove PacketTransport setters. Clients should pass these |
| 42 | // in to constructors instead and construct a new RtpTransportInternal instead |
| 43 | // of updating them. |
Zhi Huang | f2d7beb | 2017-11-20 14:35:11 -0800 | [diff] [blame] | 44 | virtual bool rtcp_mux_enabled() const = 0; |
zstein | 398c3fd | 2017-07-19 13:38:02 -0700 | [diff] [blame] | 45 | |
| 46 | virtual rtc::PacketTransportInternal* rtp_packet_transport() const = 0; |
| 47 | virtual void SetRtpPacketTransport(rtc::PacketTransportInternal* rtp) = 0; |
| 48 | |
| 49 | virtual rtc::PacketTransportInternal* rtcp_packet_transport() const = 0; |
| 50 | virtual void SetRtcpPacketTransport(rtc::PacketTransportInternal* rtcp) = 0; |
| 51 | |
Zhi Huang | e830e68 | 2018-03-30 10:48:35 -0700 | [diff] [blame] | 52 | virtual bool IsReadyToSend() const = 0; |
| 53 | |
zstein | 398c3fd | 2017-07-19 13:38:02 -0700 | [diff] [blame] | 54 | // Called whenever a transport's ready-to-send state changes. The argument |
| 55 | // is true if all used transports are ready to send. This is more specific |
| 56 | // than just "writable"; it means the last send didn't return ENOTCONN. |
| 57 | sigslot::signal1<bool> SignalReadyToSend; |
| 58 | |
Zhi Huang | 365381f | 2018-04-13 16:44:34 -0700 | [diff] [blame] | 59 | // Called whenever an RTCP packet is received. There is no equivalent signal |
| 60 | // for RTP packets because they would be forwarded to the BaseChannel through |
| 61 | // the RtpDemuxer callback. |
| 62 | sigslot::signal2<rtc::CopyOnWriteBuffer*, const rtc::PacketTime&> |
| 63 | SignalRtcpPacketReceived; |
zstein | 398c3fd | 2017-07-19 13:38:02 -0700 | [diff] [blame] | 64 | |
Zhi Huang | cd3fc5d | 2017-11-29 10:41:57 -0800 | [diff] [blame] | 65 | // Called whenever the network route of the P2P layer transport changes. |
| 66 | // The argument is an optional network route. |
Danil Chapovalov | 66cadcc | 2018-06-19 16:47:43 +0200 | [diff] [blame] | 67 | sigslot::signal1<absl::optional<rtc::NetworkRoute>> SignalNetworkRouteChanged; |
Zhi Huang | cd3fc5d | 2017-11-29 10:41:57 -0800 | [diff] [blame] | 68 | |
Zhi Huang | f2d7beb | 2017-11-20 14:35:11 -0800 | [diff] [blame] | 69 | // Called whenever a transport's writable state might change. The argument is |
| 70 | // true if the transport is writable, otherwise it is false. |
| 71 | sigslot::signal1<bool> SignalWritableState; |
| 72 | |
Zhi Huang | cd3fc5d | 2017-11-29 10:41:57 -0800 | [diff] [blame] | 73 | sigslot::signal1<const rtc::SentPacket&> SignalSentPacket; |
Zhi Huang | 942bc2e | 2017-11-13 13:26:07 -0800 | [diff] [blame] | 74 | |
zstein | 398c3fd | 2017-07-19 13:38:02 -0700 | [diff] [blame] | 75 | virtual bool IsWritable(bool rtcp) const = 0; |
| 76 | |
Zhi Huang | f2d7beb | 2017-11-20 14:35:11 -0800 | [diff] [blame] | 77 | // TODO(zhihuang): Pass the |packet| by copy so that the original data |
| 78 | // wouldn't be modified. |
Zhi Huang | cf990f5 | 2017-09-22 12:12:30 -0700 | [diff] [blame] | 79 | virtual bool SendRtpPacket(rtc::CopyOnWriteBuffer* packet, |
| 80 | const rtc::PacketOptions& options, |
| 81 | int flags) = 0; |
| 82 | |
| 83 | virtual bool SendRtcpPacket(rtc::CopyOnWriteBuffer* packet, |
| 84 | const rtc::PacketOptions& options, |
| 85 | int flags) = 0; |
zstein | 398c3fd | 2017-07-19 13:38:02 -0700 | [diff] [blame] | 86 | |
Zhi Huang | 365381f | 2018-04-13 16:44:34 -0700 | [diff] [blame] | 87 | // This method updates the RTP header extension map so that the RTP transport |
| 88 | // can parse the received packets and identify the MID. This is called by the |
| 89 | // BaseChannel when setting the content description. |
| 90 | // |
| 91 | // TODO(zhihuang): Merging and replacing following methods handling header |
| 92 | // extensions with SetParameters: |
| 93 | // UpdateRtpHeaderExtensionMap, |
| 94 | // UpdateSendEncryptedHeaderExtensionIds, |
| 95 | // UpdateRecvEncryptedHeaderExtensionIds, |
| 96 | // CacheRtpAbsSendTimeHeaderExtension, |
| 97 | virtual void UpdateRtpHeaderExtensionMap( |
| 98 | const cricket::RtpHeaderExtensions& header_extensions) = 0; |
| 99 | |
Zhi Huang | e830e68 | 2018-03-30 10:48:35 -0700 | [diff] [blame] | 100 | virtual bool IsSrtpActive() const = 0; |
Steve Anton | db67ba1 | 2018-03-19 17:41:42 -0700 | [diff] [blame] | 101 | |
Zhi Huang | 365381f | 2018-04-13 16:44:34 -0700 | [diff] [blame] | 102 | virtual bool RegisterRtpDemuxerSink(const RtpDemuxerCriteria& criteria, |
| 103 | RtpPacketSinkInterface* sink) = 0; |
| 104 | |
| 105 | virtual bool UnregisterRtpDemuxerSink(RtpPacketSinkInterface* sink) = 0; |
zstein | 398c3fd | 2017-07-19 13:38:02 -0700 | [diff] [blame] | 106 | }; |
| 107 | |
| 108 | } // namespace webrtc |
| 109 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 110 | #endif // PC_RTPTRANSPORTINTERNAL_H_ |