1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_PEERCONNECTION_PEER_CONNECTION_DEPENDENCY_FACTORY_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_PEERCONNECTION_PEER_CONNECTION_DEPENDENCY_FACTORY_H_
#include "base/feature_list.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/scoped_refptr.h"
#include "base/task/sequenced_task_runner.h"
#include "base/task/single_thread_task_runner.h"
#include "base/threading/thread.h"
#include "base/threading/thread_checker.h"
#include "base/types/pass_key.h"
#include "third_party/blink/renderer/core/execution_context/execution_context.h"
#include "third_party/blink/renderer/core/execution_context/execution_context_lifecycle_observer.h"
#include "third_party/blink/renderer/modules/modules_export.h"
#include "third_party/blink/renderer/modules/peerconnection/rtc_rtp_transport.h"
#include "third_party/blink/renderer/modules/peerconnection/webrtc_video_perf_reporter.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include "third_party/blink/renderer/platform/heap/prefinalizer.h"
#include "third_party/blink/renderer/platform/mojo/mojo_binding_context.h"
#include "third_party/blink/renderer/platform/supplementable.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
#include "third_party/blink/renderer/platform/wtf/vector.h"
#include "third_party/webrtc/api/async_dns_resolver.h"
#include "third_party/webrtc/api/peer_connection_interface.h"
#include "third_party/webrtc_overrides/metronome_source.h"
namespace base {
class WaitableEvent;
}
namespace media {
class GpuVideoAcceleratorFactories;
class MojoVideoEncoderMetricsProviderFactory;
}
namespace gfx {
class ColorSpace;
}
namespace blink {
class IpcNetworkManager;
class IpcPacketSocketFactory;
class MdnsResponderAdapter;
class P2PSocketDispatcher;
class RTCPeerConnectionHandlerClient;
class RTCPeerConnectionHandler;
class WebLocalFrame;
class WebRtcAudioDeviceImpl;
// Object factory for RTC PeerConnections.
class MODULES_EXPORT PeerConnectionDependencyFactory
: public GarbageCollected<PeerConnectionDependencyFactory>,
public Supplement<ExecutionContext>,
public ExecutionContextLifecycleObserver {
USING_PRE_FINALIZER(PeerConnectionDependencyFactory,
CleanupPeerConnectionFactory);
public:
static const char kSupplementName[];
static PeerConnectionDependencyFactory& From(ExecutionContext& context);
PeerConnectionDependencyFactory(
ExecutionContext& context,
base::PassKey<PeerConnectionDependencyFactory>);
PeerConnectionDependencyFactory(const PeerConnectionDependencyFactory&) =
delete;
PeerConnectionDependencyFactory& operator=(
const PeerConnectionDependencyFactory&) = delete;
~PeerConnectionDependencyFactory() override;
// Create a RTCPeerConnectionHandler object.
std::unique_ptr<RTCPeerConnectionHandler> CreateRTCPeerConnectionHandler(
RTCPeerConnectionHandlerClient* client,
scoped_refptr<base::SingleThreadTaskRunner> task_runner,
bool encoded_insertable_streams);
// Create a proxy object for a VideoTrackSource that makes sure it's called on
// the correct threads.
virtual scoped_refptr<webrtc::VideoTrackSourceInterface>
CreateVideoTrackSourceProxy(webrtc::VideoTrackSourceInterface* source);
// Asks the PeerConnection factory to create a Local MediaStream object.
virtual scoped_refptr<webrtc::MediaStreamInterface> CreateLocalMediaStream(
const String& label);
// Asks the PeerConnection factory to create a Local VideoTrack object.
virtual scoped_refptr<webrtc::VideoTrackInterface> CreateLocalVideoTrack(
const String& id,
webrtc::VideoTrackSourceInterface* source);
// Asks the libjingle PeerConnection factory to create a libjingle
// PeerConnection object.
// The PeerConnection object is owned by PeerConnectionHandler.
virtual webrtc::scoped_refptr<webrtc::PeerConnectionInterface>
CreatePeerConnection(
const webrtc::PeerConnectionInterface::RTCConfiguration& config,
blink::WebLocalFrame* web_frame,
webrtc::PeerConnectionObserver* observer,
ExceptionState& exception_state,
RTCRtpTransport* rtp_transport);
// Creates a PortAllocator that uses Chrome IPC sockets and enforces privacy
// controls according to the permissions granted on the page.
virtual std::unique_ptr<webrtc::PortAllocator> CreatePortAllocator(
blink::WebLocalFrame* web_frame);
// Creates an AsyncDnsResolverFactory that uses the networking Mojo service.
virtual std::unique_ptr<webrtc::AsyncDnsResolverFactoryInterface>
CreateAsyncDnsResolverFactory();
// Creates a libjingle representation of an ice candidate.
virtual webrtc::IceCandidateInterface* CreateIceCandidate(
const String& sdp_mid,
int sdp_mline_index,
const String& sdp);
// Returns the most optimistic view of the capabilities of the system for
// sending or receiving media of the given kind ("audio" or "video").
virtual std::unique_ptr<webrtc::RtpCapabilities> GetSenderCapabilities(
const String& kind);
virtual std::unique_ptr<webrtc::RtpCapabilities> GetReceiverCapabilities(
const String& kind);
blink::WebRtcAudioDeviceImpl* GetWebRtcAudioDevice();
void EnsureInitialized();
// Returns the SingleThreadTaskRunner corresponding to the WebRTC worker or
// network threads (webrtc::Thread), if they exist. These threads are ensured
// to exist after an RTCPeerConnectionHandler has been Initialized().
scoped_refptr<base::SingleThreadTaskRunner> GetWebRtcWorkerTaskRunner();
virtual scoped_refptr<base::SingleThreadTaskRunner>
GetWebRtcNetworkTaskRunner();
virtual scoped_refptr<base::SingleThreadTaskRunner>
GetWebRtcSignalingTaskRunner();
media::GpuVideoAcceleratorFactories* GetGpuFactories();
// Create a webrtc Metronome driven by the same source as the decode metronome
// passed to the WebRTC PeerConnection, allowing blink events to be coalesced
// around the same ticks.
virtual std::unique_ptr<webrtc::Metronome> CreateDecodeMetronome();
void Trace(Visitor*) const override;
protected:
// Ctor for tests.
PeerConnectionDependencyFactory();
virtual const webrtc::scoped_refptr<webrtc::PeerConnectionFactoryInterface>&
GetPcFactory();
virtual bool PeerConnectionFactoryCreated();
// Helper method to create a WebRtcAudioDeviceImpl.
void EnsureWebRtcAudioDeviceImpl();
private:
// ExecutionContextLifecycleObserver:
void ContextDestroyed() override;
// Functions related to Stun probing trial to determine how fast we could send
// Stun request without being dropped by NAT.
void TryScheduleStunProbeTrial();
// Creates |pc_factory_|, which in turn is used for
// creating PeerConnection objects.
void CreatePeerConnectionFactory();
void InitializeSignalingThread(
const gfx::ColorSpace& render_color_space,
media::GpuVideoAcceleratorFactories* gpu_factories,
scoped_refptr<media::MojoVideoEncoderMetricsProviderFactory>
video_encoder_metrics_provider_factory,
base::WaitableEvent* event);
void CreateIpcNetworkManagerOnNetworkThread(
base::WaitableEvent* event,
std::unique_ptr<MdnsResponderAdapter> mdns_responder);
static void DeleteIpcNetworkManager(
std::unique_ptr<IpcNetworkManager> network_manager,
base::WaitableEvent* event);
void CleanupPeerConnectionFactory();
void DoGetDevtoolsToken(
base::OnceCallback<void(std::optional<base::UnguessableToken>)> then);
std::optional<base::UnguessableToken> GetDevtoolsToken();
scoped_refptr<base::SequencedTaskRunner> context_task_runner_;
// network_manager_ must be deleted on the network thread. The network manager
// uses |p2p_socket_dispatcher_|.
std::unique_ptr<IpcNetworkManager> network_manager_;
std::unique_ptr<IpcPacketSocketFactory> socket_factory_;
Member<WebrtcVideoPerfReporter> webrtc_video_perf_reporter_;
webrtc::scoped_refptr<webrtc::PeerConnectionFactoryInterface> pc_factory_;
// Dispatches all P2P sockets.
Member<P2PSocketDispatcher> p2p_socket_dispatcher_;
scoped_refptr<blink::WebRtcAudioDeviceImpl> audio_device_;
raw_ptr<media::GpuVideoAcceleratorFactories> gpu_factories_;
bool encode_decode_capabilities_reported_ = false;
THREAD_CHECKER(thread_checker_);
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_PEERCONNECTION_PEER_CONNECTION_DEPENDENCY_FACTORY_H_
|