blob: 415ae121b5f607d95be6e33a140fd166ae426a45 [file] [log] [blame]
Harald Alvestranda39689c2020-10-15 08:34:311/*
2 * Copyright 2020 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_CONNECTION_CONTEXT_H_
12#define PC_CONNECTION_CONTEXT_H_
13
14#include <memory>
15#include <string>
16
Harald Alvestrandffd5dc72020-10-20 15:35:3117#include "api/call/call_factory_interface.h"
Jonas Orelande62c2f22022-03-29 09:04:4818#include "api/field_trials_view.h"
Harald Alvestranda39689c2020-10-15 08:34:3119#include "api/media_stream_interface.h"
20#include "api/peer_connection_interface.h"
Tommi86ee89f2021-04-20 14:58:0121#include "api/ref_counted_base.h"
Harald Alvestranda39689c2020-10-15 08:34:3122#include "api/scoped_refptr.h"
Artem Titovd15a5752021-02-10 13:31:2423#include "api/sequence_checker.h"
Harald Alvestrandffd5dc72020-10-20 15:35:3124#include "api/transport/sctp_transport_factory_interface.h"
Harald Alvestrandffd5dc72020-10-20 15:35:3125#include "media/base/media_engine.h"
Harald Alvestranda39689c2020-10-15 08:34:3126#include "p2p/base/basic_packet_socket_factory.h"
Harald Alvestrandffd5dc72020-10-20 15:35:3127#include "rtc_base/checks.h"
28#include "rtc_base/network.h"
29#include "rtc_base/network_monitor_factory.h"
Harald Alvestranda39689c2020-10-15 08:34:3130#include "rtc_base/rtc_certificate_generator.h"
Harald Alvestrandc24a2182022-02-23 13:44:5931#include "rtc_base/socket_factory.h"
Harald Alvestranda39689c2020-10-15 08:34:3132#include "rtc_base/thread.h"
Harald Alvestrandffd5dc72020-10-20 15:35:3133#include "rtc_base/thread_annotations.h"
Harald Alvestranda39689c2020-10-15 08:34:3134
Harald Alvestrand9e334b72022-05-04 13:38:3135namespace cricket {
36class ChannelManager;
37}
38
Harald Alvestranda39689c2020-10-15 08:34:3139namespace rtc {
Harald Alvestranda39689c2020-10-15 08:34:3140class BasicPacketSocketFactory;
Harald Alvestrandc3fa7c32022-05-22 10:57:0141class UniqueRandomIdGenerator;
Harald Alvestranda39689c2020-10-15 08:34:3142} // namespace rtc
43
44namespace webrtc {
45
46class RtcEventLog;
47
48// This class contains resources needed by PeerConnection and associated
49// objects. A reference to this object is passed to each PeerConnection. The
50// methods on this object are assumed not to change the state in any way that
51// interferes with the operation of other PeerConnections.
Harald Alvestrandffd5dc72020-10-20 15:35:3152//
53// This class must be created and destroyed on the signaling thread.
Tommi86ee89f2021-04-20 14:58:0154class ConnectionContext final
55 : public rtc::RefCountedNonVirtual<ConnectionContext> {
Harald Alvestranda39689c2020-10-15 08:34:3156 public:
Harald Alvestrandffd5dc72020-10-20 15:35:3157 // Creates a ConnectionContext. May return null if initialization fails.
58 // The Dependencies class allows simple management of all new dependencies
59 // being added to the ConnectionContext.
60 static rtc::scoped_refptr<ConnectionContext> Create(
61 PeerConnectionFactoryDependencies* dependencies);
62
Harald Alvestrand4244b5f2020-10-15 12:57:0563 // This class is not copyable or movable.
64 ConnectionContext(const ConnectionContext&) = delete;
65 ConnectionContext& operator=(const ConnectionContext&) = delete;
66
Harald Alvestranda39689c2020-10-15 08:34:3167 // Functions called from PeerConnection and friends
68 SctpTransportFactoryInterface* sctp_transport_factory() const {
Harald Alvestranda39689c2020-10-15 08:34:3169 return sctp_factory_.get();
70 }
71
Harald Alvestrandc3fa7c32022-05-22 10:57:0172 cricket::MediaEngineInterface* media_engine() const {
73 return media_engine_.get();
74 }
Harald Alvestranda39689c2020-10-15 08:34:3175
Harald Alvestrand4244b5f2020-10-15 12:57:0576 rtc::Thread* signaling_thread() { return signaling_thread_; }
77 const rtc::Thread* signaling_thread() const { return signaling_thread_; }
Harald Alvestrand00579e82022-05-03 11:37:3478 rtc::Thread* worker_thread() { return worker_thread_.get(); }
79 const rtc::Thread* worker_thread() const { return worker_thread_.get(); }
Harald Alvestrand4244b5f2020-10-15 12:57:0580 rtc::Thread* network_thread() { return network_thread_; }
81 const rtc::Thread* network_thread() const { return network_thread_; }
Harald Alvestranda39689c2020-10-15 08:34:3182
Jonas Oreland6c7f9842022-04-19 15:24:1083 // Field trials associated with the PeerConnectionFactory.
84 // Note: that there can be different field trials for different
85 // PeerConnections (but they are not supposed change after creating the
86 // PeerConnection).
87 const FieldTrialsView& field_trials() const { return *trials_.get(); }
Harald Alvestranda39689c2020-10-15 08:34:3188
89 // Accessors only used from the PeerConnectionFactory class
Niels Möllerdcb5a582022-06-20 13:33:5990 rtc::NetworkManager* default_network_manager() {
Harald Alvestrand4244b5f2020-10-15 12:57:0591 RTC_DCHECK_RUN_ON(signaling_thread_);
Harald Alvestranda39689c2020-10-15 08:34:3192 return default_network_manager_.get();
93 }
Niels Möller573b1452022-06-21 09:37:2994 rtc::PacketSocketFactory* default_socket_factory() {
Harald Alvestrand4244b5f2020-10-15 12:57:0595 RTC_DCHECK_RUN_ON(signaling_thread_);
Harald Alvestranda39689c2020-10-15 08:34:3196 return default_socket_factory_.get();
97 }
Harald Alvestrand4244b5f2020-10-15 12:57:0598 CallFactoryInterface* call_factory() {
Harald Alvestrand00579e82022-05-03 11:37:3499 RTC_DCHECK_RUN_ON(worker_thread());
Harald Alvestranda39689c2020-10-15 08:34:31100 return call_factory_.get();
101 }
Harald Alvestrandc3fa7c32022-05-22 10:57:01102 rtc::UniqueRandomIdGenerator* ssrc_generator() { return &ssrc_generator_; }
103 // Note: There is lots of code that wants to know whether or not we
104 // use RTX, but so far, no code has been found that sets it to false.
105 // Kept in the API in order to ease introduction if we want to resurrect
106 // the functionality.
107 bool use_rtx() { return true; }
Harald Alvestranda39689c2020-10-15 08:34:31108
109 protected:
Harald Alvestrandffd5dc72020-10-20 15:35:31110 explicit ConnectionContext(PeerConnectionFactoryDependencies* dependencies);
Harald Alvestranda39689c2020-10-15 08:34:31111
Tommi86ee89f2021-04-20 14:58:01112 friend class rtc::RefCountedNonVirtual<ConnectionContext>;
113 ~ConnectionContext();
Harald Alvestranda39689c2020-10-15 08:34:31114
115 private:
Harald Alvestrand4244b5f2020-10-15 12:57:05116 // The following three variables are used to communicate between the
117 // constructor and the destructor, and are never exposed externally.
Harald Alvestranda39689c2020-10-15 08:34:31118 bool wraps_current_thread_;
Niels Möllerb02e1ac2022-02-04 13:29:50119 std::unique_ptr<rtc::SocketFactory> owned_socket_factory_;
Harald Alvestranda39689c2020-10-15 08:34:31120 std::unique_ptr<rtc::Thread> owned_network_thread_
Harald Alvestrand4244b5f2020-10-15 12:57:05121 RTC_GUARDED_BY(signaling_thread_);
Harald Alvestranda39689c2020-10-15 08:34:31122 rtc::Thread* const network_thread_;
Harald Alvestrand00579e82022-05-03 11:37:34123 AlwaysValidPointer<rtc::Thread> const worker_thread_;
Harald Alvestranda39689c2020-10-15 08:34:31124 rtc::Thread* const signaling_thread_;
Jonas Orelanded99dae2022-03-09 08:28:10125
126 // Accessed both on signaling thread and worker thread.
Jonas Orelande62c2f22022-03-29 09:04:48127 std::unique_ptr<FieldTrialsView> const trials_;
Jonas Orelanded99dae2022-03-09 08:28:10128
Harald Alvestrand0ac50b92022-05-18 07:51:34129 const std::unique_ptr<cricket::MediaEngineInterface> media_engine_;
130
131 // This object should be used to generate any SSRC that is not explicitly
132 // specified by the user (or by the remote party).
133 // TODO(bugs.webrtc.org/12666): This variable is used from both the signaling
134 // and worker threads. See if we can't restrict usage to a single thread.
135 rtc::UniqueRandomIdGenerator ssrc_generator_;
Harald Alvestranda39689c2020-10-15 08:34:31136 std::unique_ptr<rtc::NetworkMonitorFactory> const network_monitor_factory_
Harald Alvestrand4244b5f2020-10-15 12:57:05137 RTC_GUARDED_BY(signaling_thread_);
Niels Möllerdcb5a582022-06-20 13:33:59138 std::unique_ptr<rtc::NetworkManager> default_network_manager_
Harald Alvestrand4244b5f2020-10-15 12:57:05139 RTC_GUARDED_BY(signaling_thread_);
Harald Alvestranda39689c2020-10-15 08:34:31140 std::unique_ptr<webrtc::CallFactoryInterface> const call_factory_
Harald Alvestrand00579e82022-05-03 11:37:34141 RTC_GUARDED_BY(worker_thread());
Harald Alvestranda39689c2020-10-15 08:34:31142
Niels Möller573b1452022-06-21 09:37:29143 std::unique_ptr<rtc::PacketSocketFactory> default_socket_factory_
Harald Alvestrand4244b5f2020-10-15 12:57:05144 RTC_GUARDED_BY(signaling_thread_);
Tommic3257d02021-02-10 17:40:08145 std::unique_ptr<SctpTransportFactoryInterface> const sctp_factory_;
Harald Alvestranda39689c2020-10-15 08:34:31146};
147
148} // namespace webrtc
149
150#endif // PC_CONNECTION_CONTEXT_H_