blob: a51ba4b8f64af4208194181e441c37edf69db543 [file] [log] [blame]
Steve Anton2d8609c2018-01-23 16:38:46 -08001/*
2 * Copyright 2018 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
Steve Anton10542f22019-01-11 09:11:00 -080011#ifndef PC_PEER_CONNECTION_INTERNAL_H_
12#define PC_PEER_CONNECTION_INTERNAL_H_
Steve Anton2d8609c2018-01-23 16:38:46 -080013
14#include <map>
15#include <memory>
Steve Anton5dfde182018-02-06 10:34:40 -080016#include <set>
Steve Anton2d8609c2018-01-23 16:38:46 -080017#include <string>
18#include <vector>
19
Steve Anton10542f22019-01-11 09:11:00 -080020#include "api/peer_connection_interface.h"
Niels Möller8366e172018-02-14 12:20:13 +010021#include "call/call.h"
Steve Anton10542f22019-01-11 09:11:00 -080022#include "pc/data_channel.h"
23#include "pc/rtp_transceiver.h"
Steve Anton2d8609c2018-01-23 16:38:46 -080024
25namespace webrtc {
26
Steve Anton2d8609c2018-01-23 16:38:46 -080027// Internal interface for extra PeerConnection methods.
28class PeerConnectionInternal : public PeerConnectionInterface {
29 public:
30 virtual rtc::Thread* network_thread() const = 0;
31 virtual rtc::Thread* worker_thread() const = 0;
32 virtual rtc::Thread* signaling_thread() const = 0;
33
34 // The SDP session ID as defined by RFC 3264.
Steve Antonbe5e2082018-01-24 15:29:17 -080035 virtual std::string session_id() const = 0;
Steve Anton2d8609c2018-01-23 16:38:46 -080036
37 // Returns true if we were the initial offerer.
38 virtual bool initial_offerer() const = 0;
39
Steve Anton2d8609c2018-01-23 16:38:46 -080040 virtual std::vector<
41 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Steve Antonb8867112018-02-13 10:07:54 -080042 GetTransceiversInternal() const = 0;
Steve Anton2d8609c2018-01-23 16:38:46 -080043
Steve Anton2d8609c2018-01-23 16:38:46 -080044 virtual sigslot::signal1<DataChannel*>& SignalDataChannelCreated() = 0;
45
46 // Only valid when using deprecated RTP data channels.
47 virtual cricket::RtpDataChannel* rtp_data_channel() const = 0;
48
Steve Antonbe5e2082018-01-24 15:29:17 -080049 virtual std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels()
50 const = 0;
Steve Anton2d8609c2018-01-23 16:38:46 -080051
Danil Chapovalov66cadcc2018-06-19 16:47:43 +020052 virtual absl::optional<std::string> sctp_content_name() const = 0;
53 virtual absl::optional<std::string> sctp_transport_name() const = 0;
Steve Anton2d8609c2018-01-23 16:38:46 -080054
Qingsi Wang72a43a12018-02-20 16:03:18 -080055 virtual cricket::CandidateStatsList GetPooledCandidateStats() const = 0;
56
Steve Anton5dfde182018-02-06 10:34:40 -080057 // Returns a map from MID to transport name for all active media sections.
58 virtual std::map<std::string, std::string> GetTransportNamesByMid() const = 0;
59
60 // Returns a map from transport name to transport stats for all given
61 // transport names.
62 virtual std::map<std::string, cricket::TransportStats>
63 GetTransportStatsByNames(const std::set<std::string>& transport_names) = 0;
Steve Anton2d8609c2018-01-23 16:38:46 -080064
65 virtual Call::Stats GetCallStats() = 0;
66
67 virtual bool GetLocalCertificate(
68 const std::string& transport_name,
69 rtc::scoped_refptr<rtc::RTCCertificate>* certificate) = 0;
Taylor Brandstetterc3928662018-02-23 13:04:51 -080070 virtual std::unique_ptr<rtc::SSLCertChain> GetRemoteSSLCertChain(
Steve Anton2d8609c2018-01-23 16:38:46 -080071 const std::string& transport_name) = 0;
72
73 // Returns true if there was an ICE restart initiated by the remote offer.
74 virtual bool IceRestartPending(const std::string& content_name) const = 0;
75
76 // Returns true if the ICE restart flag above was set, and no ICE restart has
77 // occurred yet for this transport (by applying a local description with
78 // changed ufrag/password). If the transport has been deleted as a result of
79 // bundling, returns false.
80 virtual bool NeedsIceRestart(const std::string& content_name) const = 0;
81
82 // Get SSL role for an arbitrary m= section (handles bundling correctly).
83 virtual bool GetSslRole(const std::string& content_name,
84 rtc::SSLRole* role) = 0;
85};
86
87} // namespace webrtc
88
Steve Anton10542f22019-01-11 09:11:00 -080089#endif // PC_PEER_CONNECTION_INTERNAL_H_