Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(390)

Side by Side Diff: webrtc/api/peerconnectionfactory.cc

Issue 2021663002: Remove PeerConnectionFactory's certificate generator and ref counted wrapper. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/api/peerconnectionfactory.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2004 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2004 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 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 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 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 16 matching lines...) Expand all
27 #include "webrtc/base/bind.h" 27 #include "webrtc/base/bind.h"
28 #include "webrtc/media/engine/webrtcmediaengine.h" 28 #include "webrtc/media/engine/webrtcmediaengine.h"
29 #include "webrtc/media/engine/webrtcvideodecoderfactory.h" 29 #include "webrtc/media/engine/webrtcvideodecoderfactory.h"
30 #include "webrtc/media/engine/webrtcvideoencoderfactory.h" 30 #include "webrtc/media/engine/webrtcvideoencoderfactory.h"
31 #include "webrtc/modules/audio_device/include/audio_device.h" 31 #include "webrtc/modules/audio_device/include/audio_device.h"
32 #include "webrtc/p2p/base/basicpacketsocketfactory.h" 32 #include "webrtc/p2p/base/basicpacketsocketfactory.h"
33 #include "webrtc/p2p/client/basicportallocator.h" 33 #include "webrtc/p2p/client/basicportallocator.h"
34 34
35 namespace webrtc { 35 namespace webrtc {
36 36
37 namespace {
38
39 // Passes down the calls to |cert_generator_|. See usage in
40 // |CreatePeerConnection|.
41 class RTCCertificateGeneratorWrapper
42 : public rtc::RTCCertificateGeneratorInterface {
43 public:
44 RTCCertificateGeneratorWrapper(
45 const rtc::scoped_refptr<RefCountedRTCCertificateGenerator>& cert_gen)
46 : cert_generator_(cert_gen) {
47 RTC_DCHECK(cert_generator_);
48 }
49
50 void GenerateCertificateAsync(
51 const rtc::KeyParams& key_params,
52 const rtc::Optional<uint64_t>& expires_ms,
53 const rtc::scoped_refptr<rtc::RTCCertificateGeneratorCallback>& callback)
54 override {
55 cert_generator_->GenerateCertificateAsync(key_params, expires_ms, callback);
56 }
57
58 private:
59 rtc::scoped_refptr<RefCountedRTCCertificateGenerator> cert_generator_;
60 };
61
62 } // anonymous namespace
63
64 rtc::scoped_refptr<PeerConnectionFactoryInterface> 37 rtc::scoped_refptr<PeerConnectionFactoryInterface>
65 CreatePeerConnectionFactory() { 38 CreatePeerConnectionFactory() {
66 rtc::scoped_refptr<PeerConnectionFactory> pc_factory( 39 rtc::scoped_refptr<PeerConnectionFactory> pc_factory(
67 new rtc::RefCountedObject<PeerConnectionFactory>()); 40 new rtc::RefCountedObject<PeerConnectionFactory>());
68 41
69 RTC_CHECK(rtc::Thread::Current() == pc_factory->signaling_thread()); 42 RTC_CHECK(rtc::Thread::Current() == pc_factory->signaling_thread());
70 // The signaling thread is the current thread so we can 43 // The signaling thread is the current thread so we can
71 // safely call Initialize directly. 44 // safely call Initialize directly.
72 if (!pc_factory->Initialize()) { 45 if (!pc_factory->Initialize()) {
73 return nullptr; 46 return nullptr;
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 // TODO: Currently there is no way creating an external adm in 109 // TODO: Currently there is no way creating an external adm in
137 // libjingle source tree. So we can 't currently assert if this is NULL. 110 // libjingle source tree. So we can 't currently assert if this is NULL.
138 // ASSERT(default_adm != NULL); 111 // ASSERT(default_adm != NULL);
139 } 112 }
140 113
141 PeerConnectionFactory::~PeerConnectionFactory() { 114 PeerConnectionFactory::~PeerConnectionFactory() {
142 RTC_DCHECK(signaling_thread_->IsCurrent()); 115 RTC_DCHECK(signaling_thread_->IsCurrent());
143 channel_manager_.reset(nullptr); 116 channel_manager_.reset(nullptr);
144 117
145 // Make sure |worker_thread_| and |signaling_thread_| outlive 118 // Make sure |worker_thread_| and |signaling_thread_| outlive
146 // |cert_generator_|, |default_socket_factory_| and 119 // |default_socket_factory_| and |default_network_manager_|.
147 // |default_network_manager_|.
148 cert_generator_ = nullptr;
149 default_socket_factory_ = nullptr; 120 default_socket_factory_ = nullptr;
150 default_network_manager_ = nullptr; 121 default_network_manager_ = nullptr;
151 122
152 if (owns_ptrs_) { 123 if (owns_ptrs_) {
153 if (wraps_current_thread_) 124 if (wraps_current_thread_)
154 rtc::ThreadManager::Instance()->UnwrapCurrentThread(); 125 rtc::ThreadManager::Instance()->UnwrapCurrentThread();
155 delete worker_thread_; 126 delete worker_thread_;
156 delete network_thread_; 127 delete network_thread_;
157 } 128 }
158 } 129 }
(...skipping 20 matching lines...) Expand all
179 &PeerConnectionFactory::CreateMediaEngine_w, this)); 150 &PeerConnectionFactory::CreateMediaEngine_w, this));
180 151
181 channel_manager_.reset(new cricket::ChannelManager( 152 channel_manager_.reset(new cricket::ChannelManager(
182 media_engine, worker_thread_, network_thread_)); 153 media_engine, worker_thread_, network_thread_));
183 154
184 channel_manager_->SetVideoRtxEnabled(true); 155 channel_manager_->SetVideoRtxEnabled(true);
185 if (!channel_manager_->Init()) { 156 if (!channel_manager_->Init()) {
186 return false; 157 return false;
187 } 158 }
188 159
189 cert_generator_ =
190 new RefCountedRTCCertificateGenerator(signaling_thread_, network_thread_);
191
192 return true; 160 return true;
193 } 161 }
194 162
195 rtc::scoped_refptr<AudioSourceInterface> 163 rtc::scoped_refptr<AudioSourceInterface>
196 PeerConnectionFactory::CreateAudioSource( 164 PeerConnectionFactory::CreateAudioSource(
197 const MediaConstraintsInterface* constraints) { 165 const MediaConstraintsInterface* constraints) {
198 RTC_DCHECK(signaling_thread_->IsCurrent()); 166 RTC_DCHECK(signaling_thread_->IsCurrent());
199 rtc::scoped_refptr<LocalAudioSource> source( 167 rtc::scoped_refptr<LocalAudioSource> source(
200 LocalAudioSource::Create(options_, constraints)); 168 LocalAudioSource::Create(options_, constraints));
201 return source; 169 return source;
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 239
272 rtc::scoped_refptr<PeerConnectionInterface> 240 rtc::scoped_refptr<PeerConnectionInterface>
273 PeerConnectionFactory::CreatePeerConnection( 241 PeerConnectionFactory::CreatePeerConnection(
274 const PeerConnectionInterface::RTCConfiguration& configuration, 242 const PeerConnectionInterface::RTCConfiguration& configuration,
275 std::unique_ptr<cricket::PortAllocator> allocator, 243 std::unique_ptr<cricket::PortAllocator> allocator,
276 std::unique_ptr<rtc::RTCCertificateGeneratorInterface> cert_generator, 244 std::unique_ptr<rtc::RTCCertificateGeneratorInterface> cert_generator,
277 PeerConnectionObserver* observer) { 245 PeerConnectionObserver* observer) {
278 RTC_DCHECK(signaling_thread_->IsCurrent()); 246 RTC_DCHECK(signaling_thread_->IsCurrent());
279 247
280 if (!cert_generator.get()) { 248 if (!cert_generator.get()) {
281 // Because |pc|->Initialize takes ownership of the generator we need a new 249 // No certificate generator specified, use the default one.
282 // wrapper object that can be deleted without deleting the underlying
283 // |cert_generator_|, protecting it from being deleted multiple times.
284 cert_generator.reset( 250 cert_generator.reset(
285 new RTCCertificateGeneratorWrapper(cert_generator_)); 251 new rtc::RTCCertificateGenerator(signaling_thread_, network_thread_));
hbos 2016/06/01 10:08:56 Using network_thread_ instead of worker_thread_ he
tommi 2016/06/01 12:44:59 Keeping the existing behaviour makes sense. You c
286 } 252 }
287 253
288 if (!allocator) { 254 if (!allocator) {
289 allocator.reset(new cricket::BasicPortAllocator( 255 allocator.reset(new cricket::BasicPortAllocator(
290 default_network_manager_.get(), default_socket_factory_.get())); 256 default_network_manager_.get(), default_socket_factory_.get()));
291 } 257 }
292 network_thread_->Invoke<void>( 258 network_thread_->Invoke<void>(
293 rtc::Bind(&cricket::PortAllocator::SetNetworkIgnoreMask, allocator.get(), 259 rtc::Bind(&cricket::PortAllocator::SetNetworkIgnoreMask, allocator.get(),
294 options_.network_ignore_mask)); 260 options_.network_ignore_mask));
295 261
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 } 316 }
351 317
352 cricket::MediaEngineInterface* PeerConnectionFactory::CreateMediaEngine_w() { 318 cricket::MediaEngineInterface* PeerConnectionFactory::CreateMediaEngine_w() {
353 ASSERT(worker_thread_ == rtc::Thread::Current()); 319 ASSERT(worker_thread_ == rtc::Thread::Current());
354 return cricket::WebRtcMediaEngineFactory::Create( 320 return cricket::WebRtcMediaEngineFactory::Create(
355 default_adm_.get(), video_encoder_factory_.get(), 321 default_adm_.get(), video_encoder_factory_.get(),
356 video_decoder_factory_.get()); 322 video_decoder_factory_.get());
357 } 323 }
358 324
359 } // namespace webrtc 325 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/api/peerconnectionfactory.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698