blob: 0f942d2c2cca7699bdba133b542a2e2b129fb52b [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
11#ifndef PC_PEERCONNECTIONINTERNAL_H_
12#define PC_PEERCONNECTIONINTERNAL_H_
13
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
20#include "api/peerconnectioninterface.h"
21#include "pc/datachannel.h"
22#include "pc/rtptransceiver.h"
23
24namespace webrtc {
25
Steve Anton2d8609c2018-01-23 16:38:46 -080026// Internal interface for extra PeerConnection methods.
27class PeerConnectionInternal : public PeerConnectionInterface {
28 public:
29 virtual rtc::Thread* network_thread() const = 0;
30 virtual rtc::Thread* worker_thread() const = 0;
31 virtual rtc::Thread* signaling_thread() const = 0;
32
33 // The SDP session ID as defined by RFC 3264.
Steve Antonbe5e2082018-01-24 15:29:17 -080034 virtual std::string session_id() const = 0;
Steve Anton2d8609c2018-01-23 16:38:46 -080035
36 // Returns true if we were the initial offerer.
37 virtual bool initial_offerer() const = 0;
38
Steve Antonb8867112018-02-13 10:07:54 -080039 // TODO(steveanton): Remove these and replace with GetTransceiversInternal.
Steve Anton2d8609c2018-01-23 16:38:46 -080040 virtual cricket::VoiceChannel* voice_channel() const = 0;
41 virtual cricket::VideoChannel* video_channel() const = 0;
42
Steve Anton2d8609c2018-01-23 16:38:46 -080043 virtual std::vector<
44 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Steve Antonb8867112018-02-13 10:07:54 -080045 GetTransceiversInternal() const = 0;
Steve Anton2d8609c2018-01-23 16:38:46 -080046
47 // Get the id used as a media stream track's "id" field from ssrc.
48 virtual bool GetLocalTrackIdBySsrc(uint32_t ssrc, std::string* track_id) = 0;
49 virtual bool GetRemoteTrackIdBySsrc(uint32_t ssrc, std::string* track_id) = 0;
50
51 virtual sigslot::signal1<DataChannel*>& SignalDataChannelCreated() = 0;
52
53 // Only valid when using deprecated RTP data channels.
54 virtual cricket::RtpDataChannel* rtp_data_channel() const = 0;
55
Steve Antonbe5e2082018-01-24 15:29:17 -080056 virtual std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels()
57 const = 0;
Steve Anton2d8609c2018-01-23 16:38:46 -080058
59 virtual rtc::Optional<std::string> sctp_content_name() const = 0;
60 virtual rtc::Optional<std::string> sctp_transport_name() const = 0;
61
Steve Anton5dfde182018-02-06 10:34:40 -080062 // Returns a map from MID to transport name for all active media sections.
63 virtual std::map<std::string, std::string> GetTransportNamesByMid() const = 0;
64
65 // Returns a map from transport name to transport stats for all given
66 // transport names.
67 virtual std::map<std::string, cricket::TransportStats>
68 GetTransportStatsByNames(const std::set<std::string>& transport_names) = 0;
Steve Anton2d8609c2018-01-23 16:38:46 -080069
70 virtual Call::Stats GetCallStats() = 0;
71
72 virtual bool GetLocalCertificate(
73 const std::string& transport_name,
74 rtc::scoped_refptr<rtc::RTCCertificate>* certificate) = 0;
75 virtual std::unique_ptr<rtc::SSLCertificate> GetRemoteSSLCertificate(
76 const std::string& transport_name) = 0;
77
78 // Returns true if there was an ICE restart initiated by the remote offer.
79 virtual bool IceRestartPending(const std::string& content_name) const = 0;
80
81 // Returns true if the ICE restart flag above was set, and no ICE restart has
82 // occurred yet for this transport (by applying a local description with
83 // changed ufrag/password). If the transport has been deleted as a result of
84 // bundling, returns false.
85 virtual bool NeedsIceRestart(const std::string& content_name) const = 0;
86
87 // Get SSL role for an arbitrary m= section (handles bundling correctly).
88 virtual bool GetSslRole(const std::string& content_name,
89 rtc::SSLRole* role) = 0;
90};
91
92} // namespace webrtc
93
94#endif // PC_PEERCONNECTIONINTERNAL_H_