blob: 0665fd76bc5bf43882d031c30e3e8f4335048cba [file] [log] [blame]
zstein398c3fd2017-07-19 13:38:02 -07001/*
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 Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef PC_RTPTRANSPORTINTERNAL_H_
12#define PC_RTPTRANSPORTINTERNAL_H_
zstein398c3fd2017-07-19 13:38:02 -070013
Zhi Huang942bc2e2017-11-13 13:26:07 -080014#include <string>
15
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020016#include "api/ortc/rtptransportinterface.h"
Steve Antondb67ba12018-03-19 17:41:42 -070017#include "api/umametrics.h"
Zhi Huang942bc2e2017-11-13 13:26:07 -080018#include "p2p/base/icetransportinternal.h"
19#include "rtc_base/networkroute.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020020#include "rtc_base/sigslot.h"
zstein398c3fd2017-07-19 13:38:02 -070021
22namespace rtc {
23class CopyOnWriteBuffer;
24struct PacketOptions;
25struct PacketTime;
26} // namespace rtc
27
28namespace webrtc {
29
30// This represents the internal interface beneath RtpTransportInterface;
31// it is not accessible to API consumers but is accessible to internal classes
32// in order to send and receive RTP and RTCP packets belonging to a single RTP
33// session. Additional convenience and configuration methods are also provided.
34class RtpTransportInternal : public RtpTransportInterface,
35 public sigslot::has_slots<> {
36 public:
37 virtual void SetRtcpMuxEnabled(bool enable) = 0;
38
39 // TODO(zstein): Remove PacketTransport setters. Clients should pass these
40 // in to constructors instead and construct a new RtpTransportInternal instead
41 // of updating them.
Zhi Huangf2d7beb2017-11-20 14:35:11 -080042 virtual bool rtcp_mux_enabled() const = 0;
zstein398c3fd2017-07-19 13:38:02 -070043
44 virtual rtc::PacketTransportInternal* rtp_packet_transport() const = 0;
45 virtual void SetRtpPacketTransport(rtc::PacketTransportInternal* rtp) = 0;
46
47 virtual rtc::PacketTransportInternal* rtcp_packet_transport() const = 0;
48 virtual void SetRtcpPacketTransport(rtc::PacketTransportInternal* rtcp) = 0;
49
50 // Called whenever a transport's ready-to-send state changes. The argument
51 // is true if all used transports are ready to send. This is more specific
52 // than just "writable"; it means the last send didn't return ENOTCONN.
53 sigslot::signal1<bool> SignalReadyToSend;
54
55 // TODO(zstein): Consider having two signals - RtpPacketReceived and
56 // RtcpPacketReceived.
57 // The first argument is true for RTCP packets and false for RTP packets.
58 sigslot::signal3<bool, rtc::CopyOnWriteBuffer*, const rtc::PacketTime&>
59 SignalPacketReceived;
60
Zhi Huangcd3fc5d2017-11-29 10:41:57 -080061 // Called whenever the network route of the P2P layer transport changes.
62 // The argument is an optional network route.
63 sigslot::signal1<rtc::Optional<rtc::NetworkRoute>> SignalNetworkRouteChanged;
64
Zhi Huangf2d7beb2017-11-20 14:35:11 -080065 // Called whenever a transport's writable state might change. The argument is
66 // true if the transport is writable, otherwise it is false.
67 sigslot::signal1<bool> SignalWritableState;
68
Zhi Huangcd3fc5d2017-11-29 10:41:57 -080069 sigslot::signal1<const rtc::SentPacket&> SignalSentPacket;
Zhi Huang942bc2e2017-11-13 13:26:07 -080070
zstein398c3fd2017-07-19 13:38:02 -070071 virtual bool IsWritable(bool rtcp) const = 0;
72
Zhi Huangf2d7beb2017-11-20 14:35:11 -080073 // TODO(zhihuang): Pass the |packet| by copy so that the original data
74 // wouldn't be modified.
Zhi Huangcf990f52017-09-22 12:12:30 -070075 virtual bool SendRtpPacket(rtc::CopyOnWriteBuffer* packet,
76 const rtc::PacketOptions& options,
77 int flags) = 0;
78
79 virtual bool SendRtcpPacket(rtc::CopyOnWriteBuffer* packet,
80 const rtc::PacketOptions& options,
81 int flags) = 0;
zstein398c3fd2017-07-19 13:38:02 -070082
83 virtual bool HandlesPayloadType(int payload_type) const = 0;
84
85 virtual void AddHandledPayloadType(int payload_type) = 0;
Steve Antondb67ba12018-03-19 17:41:42 -070086
87 virtual void SetMetricsObserver(
88 rtc::scoped_refptr<MetricsObserverInterface> metrics_observer) = 0;
zstein398c3fd2017-07-19 13:38:02 -070089};
90
91} // namespace webrtc
92
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020093#endif // PC_RTPTRANSPORTINTERNAL_H_