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

Unified Diff: talk/app/webrtc/webrtcsession.cc

Issue 1246913005: TransportController refactoring (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Set media engine on voice channel Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: talk/app/webrtc/webrtcsession.cc
diff --git a/talk/app/webrtc/webrtcsession.cc b/talk/app/webrtc/webrtcsession.cc
index b6a178cf392c2a671453de59da79410ac477b658..6d4fc20fae457e7e4729ab03589f8de8f48e3924 100644
--- a/talk/app/webrtc/webrtcsession.cc
+++ b/talk/app/webrtc/webrtcsession.cc
@@ -31,6 +31,7 @@
#include <algorithm>
#include <vector>
+#include <set>
#include "talk/app/webrtc/jsepicecandidate.h"
#include "talk/app/webrtc/jsepsessiondescription.h"
@@ -81,6 +82,7 @@ const char kDtlsSetupFailureRtp[] =
"Couldn't set up DTLS-SRTP on RTP channel.";
const char kDtlsSetupFailureRtcp[] =
"Couldn't set up DTLS-SRTP on RTCP channel.";
+const char kEnableBundleFailed[] = "Failed to enable BUNDLE.";
const int kMaxUnsignalledRecvStreams = 20;
// Compares |answer| against |offer|. Comparision is done
@@ -481,7 +483,6 @@ WebRtcSession::WebRtcSession(
worker_thread,
port_allocator,
rtc::ToString(rtc::CreateRandomId64() & LLONG_MAX),
- cricket::NS_JINGLE_RTP,
false),
// RFC 3264: The numeric value of the session id and version in the
// o line MUST be representable with a "64 bit signed integer".
@@ -496,6 +497,14 @@ WebRtcSession::WebRtcSession(
data_channel_type_(cricket::DCT_NONE),
ice_restart_latch_(new IceRestartAnswerLatch),
metrics_observer_(NULL) {
+ transport_controller()->SignalConnectionState.connect(
+ this, &WebRtcSession::OnTransportControllerConnectionState);
+ transport_controller()->SignalReceiving.connect(
+ this, &WebRtcSession::OnTransportControllerReceiving);
+ transport_controller()->SignalGatheringState.connect(
+ this, &WebRtcSession::OnTransportControllerGatheringState);
+ transport_controller()->SignalCandidatesGathered.connect(
+ this, &WebRtcSession::OnTransportControllerCandidatesGathered);
}
WebRtcSession::~WebRtcSession() {
@@ -517,7 +526,6 @@ WebRtcSession::~WebRtcSession() {
for (size_t i = 0; i < saved_candidates_.size(); ++i) {
delete saved_candidates_[i];
}
- delete identity();
}
bool WebRtcSession::Initialize(
@@ -527,7 +535,7 @@ bool WebRtcSession::Initialize(
const PeerConnectionInterface::RTCConfiguration& rtc_configuration) {
bundle_policy_ = rtc_configuration.bundle_policy;
rtcp_mux_policy_ = rtc_configuration.rtcp_mux_policy;
- SetSslMaxProtocolVersion(options.ssl_max_version);
+ transport_controller()->SetSslMaxProtocolVersion(options.ssl_max_version);
// TODO(perkj): Take |constraints| into consideration. Return false if not all
// mandatory constraints can be fulfilled. Note that |constraints|
@@ -683,16 +691,13 @@ bool WebRtcSession::Initialize(
void WebRtcSession::Terminate() {
SetState(STATE_RECEIVEDTERMINATE);
- RemoveUnusedChannelsAndTransports(NULL);
+ RemoveUnusedChannels(NULL);
ASSERT(!voice_channel_);
ASSERT(!video_channel_);
ASSERT(!data_channel_);
}
-bool WebRtcSession::StartCandidatesAllocation() {
- // SpeculativelyConnectTransportChannels, will call ConnectChannels method
- // from TransportProxy to start gathering ice candidates.
- SpeculativelyConnectAllTransportChannels();
+bool WebRtcSession::StartGatheringCandidates() {
if (!saved_candidates_.empty()) {
// If there are saved candidates which arrived before local description is
// set, copy those to remote description.
@@ -718,17 +723,7 @@ bool WebRtcSession::GetSslRole(rtc::SSLRole* role) {
return false;
}
- // TODO(mallinath) - Return role of each transport, as role may differ from
- // one another.
- // In current implementaion we just return the role of first transport in the
- // transport map.
- for (cricket::TransportMap::const_iterator iter = transport_proxies().begin();
- iter != transport_proxies().end(); ++iter) {
- if (iter->second->impl()) {
- return iter->second->impl()->GetSslRole(role);
- }
- }
- return false;
+ return transport_controller()->GetSslRole(role);
}
void WebRtcSession::CreateOffer(
@@ -744,6 +739,8 @@ void WebRtcSession::CreateAnswer(CreateSessionDescriptionObserver* observer,
bool WebRtcSession::SetLocalDescription(SessionDescriptionInterface* desc,
std::string* err_desc) {
+ ASSERT(signaling_thread()->IsCurrent());
+
// Takes the ownership of |desc| regardless of the result.
rtc::scoped_ptr<SessionDescriptionInterface> desc_temp(desc);
@@ -776,16 +773,30 @@ bool WebRtcSession::SetLocalDescription(SessionDescriptionInterface* desc,
return BadLocalSdp(desc->type(), kCreateChannelFailed, err_desc);
}
- // Remove channel and transport proxies, if MediaContentDescription is
- // rejected.
- RemoveUnusedChannelsAndTransports(local_desc_->description());
+ // Enable BUNDLE before when kMaxBundle policy is in effect
+ if (bundle_policy_ == PeerConnectionInterface::kBundlePolicyMaxBundle) {
+ const cricket::ContentGroup* local_bundle =
+ BaseSession::local_description()->GetGroupByName(
+ cricket::GROUP_TYPE_BUNDLE);
+ if (!local_bundle) {
+ LOG(LS_WARNING) << "max-bundle specified without BUNDLE specified";
+ return false;
+ }
+ if (!EnableBundle(*local_bundle)) {
+ LOG(LS_WARNING) << "max-bundle failed to enable bundling.";
+ return false;
+ }
+ }
+
+ // Remove unused channels if MediaContentDescription is rejected.
+ RemoveUnusedChannels(local_desc_->description());
if (!UpdateSessionState(action, cricket::CS_LOCAL, err_desc)) {
return false;
}
// Kick starting the ice candidates allocation.
- StartCandidatesAllocation();
+ StartGatheringCandidates();
pthatcher1 2015/08/18 22:32:47 Here's where that code can be inlined. Just delet
Taylor Brandstetter 2015/08/25 01:04:05 Done.
// Update state and SSRC of local MediaStreams and DataChannels based on the
// local session description.
@@ -803,6 +814,8 @@ bool WebRtcSession::SetLocalDescription(SessionDescriptionInterface* desc,
bool WebRtcSession::SetRemoteDescription(SessionDescriptionInterface* desc,
std::string* err_desc) {
+ ASSERT(signaling_thread()->IsCurrent());
+
// Takes the ownership of |desc| regardless of the result.
rtc::scoped_ptr<SessionDescriptionInterface> desc_temp(desc);
@@ -819,9 +832,8 @@ bool WebRtcSession::SetRemoteDescription(SessionDescriptionInterface* desc,
return BadRemoteSdp(desc->type(), kCreateChannelFailed, err_desc);
}
- // Remove channel and transport proxies, if MediaContentDescription is
- // rejected.
- RemoveUnusedChannelsAndTransports(desc->description());
+ // Remove unused channels if MediaContentDescription is rejected.
+ RemoveUnusedChannels(desc->description());
// NOTE: Candidates allocation will be initiated only when SetLocalDescription
// is called.
@@ -880,6 +892,8 @@ bool WebRtcSession::SetRemoteDescription(SessionDescriptionInterface* desc,
bool WebRtcSession::UpdateSessionState(
Action action, cricket::ContentSource source,
std::string* err_desc) {
+ ASSERT(signaling_thread()->IsCurrent());
+
// If there's already a pending error then no state transition should happen.
// But all call-sites should be verifying this before calling us!
ASSERT(error() == cricket::BaseSession::ERROR_NONE);
@@ -913,7 +927,21 @@ bool WebRtcSession::UpdateSessionState(
if (!PushdownTransportDescription(source, cricket::CA_ANSWER, &td_err)) {
return BadAnswerSdp(source, MakeTdErrorString(td_err), err_desc);
}
- MaybeEnableMuxingSupport();
+ const cricket::ContentGroup* local_bundle =
+ BaseSession::local_description()->GetGroupByName(
+ cricket::GROUP_TYPE_BUNDLE);
+ const cricket::ContentGroup* remote_bundle =
+ BaseSession::remote_description()->GetGroupByName(
+ cricket::GROUP_TYPE_BUNDLE);
+ if (local_bundle && remote_bundle) {
+ // The answerer decides the transport to bundle on
+ const cricket::ContentGroup* answer_bundle =
+ (source == cricket::CS_LOCAL ? local_bundle : remote_bundle);
+ if (!EnableBundle(*answer_bundle)) {
+ LOG(LS_WARNING) << "Failed to enable BUNDLE.";
+ return BadAnswerSdp(source, kEnableBundleFailed, err_desc);
+ }
+ }
EnableChannels();
SetState(source == cricket::CS_LOCAL ?
STATE_SENTACCEPT : STATE_RECEIVEDACCEPT);
@@ -962,32 +990,113 @@ WebRtcSession::Action WebRtcSession::GetAction(const std::string& type) {
bool WebRtcSession::GetTransportStats(cricket::SessionStats* stats) {
ASSERT(signaling_thread()->IsCurrent());
+ return (GetChannelTransportStats(voice_channel(), stats) &&
+ GetChannelTransportStats(video_channel(), stats) &&
+ GetChannelTransportStats(data_channel(), stats));
+}
- const auto get_transport_stats = [stats](const std::string& content_name,
- cricket::Transport* transport) {
- const std::string& transport_id = transport->content_name();
- stats->proxy_to_transport[content_name] = transport_id;
- if (stats->transport_stats.find(transport_id)
- != stats->transport_stats.end()) {
- // Transport stats already done for this transport.
- return true;
- }
-
- cricket::TransportStats tstats;
- if (!transport->GetStats(&tstats)) {
- return false;
- }
+bool WebRtcSession::GetChannelTransportStats(cricket::BaseChannel* ch,
+ cricket::SessionStats* stats) {
+ ASSERT(signaling_thread()->IsCurrent());
+ if (!ch) {
+ // Not using this channel.
+ return true;
+ }
- stats->transport_stats[transport_id] = tstats;
+ const std::string& content_name = ch->content_name();
+ const std::string& transport_name = ch->transport_name();
+ stats->proxy_to_transport[content_name] = transport_name;
+ if (stats->transport_stats.find(transport_name) !=
+ stats->transport_stats.end()) {
+ // Transport stats already done for this transport.
return true;
- };
+ }
- for (const auto& kv : transport_proxies()) {
- cricket::Transport* transport = kv.second->impl();
- if (transport && !get_transport_stats(kv.first, transport)) {
- return false;
- }
+ cricket::TransportStats tstats;
+ if (!transport_controller()->GetStats(transport_name, &tstats)) {
+ return false;
}
+
+ stats->transport_stats[transport_name] = tstats;
+ return true;
+}
+
+bool WebRtcSession::GetIdentity(const std::string& content_name,
+ rtc::SSLIdentity** identity) {
+ ASSERT(signaling_thread()->IsCurrent());
+
+ cricket::BaseChannel* ch = GetChannel(content_name);
+ if (!ch) {
+ return false;
+ }
+
+ return transport_controller()->GetIdentity(ch->transport_name(), identity);
+}
+
+bool WebRtcSession::GetRemoteCertificate(const std::string& content_name,
+ rtc::SSLCertificate** cert) {
+ ASSERT(signaling_thread()->IsCurrent());
+
+ cricket::BaseChannel* ch = GetChannel(content_name);
+ if (!ch) {
+ return false;
+ }
+
+ return transport_controller()->GetRemoteCertificate(ch->transport_name(),
+ cert);
+}
+
+cricket::BaseChannel* WebRtcSession::GetChannel(
+ const std::string& content_name) {
+ if (voice_channel() && voice_channel()->content_name() == content_name) {
+ return voice_channel();
+ }
+ if (video_channel() && video_channel()->content_name() == content_name) {
+ return video_channel();
+ }
+ if (data_channel() && data_channel()->content_name() == content_name) {
+ return data_channel();
+ }
+ return nullptr;
+}
+
+bool WebRtcSession::EnableBundle(const cricket::ContentGroup& bundle) {
+ const std::string* first_content_name = bundle.FirstContentName();
+ if (!first_content_name) {
+ LOG(LS_WARNING) << "Tried to BUNDLE with no contents.";
+ return false;
+ }
+ const std::string& transport_name = *first_content_name;
+ cricket::BaseChannel* first_channel = GetChannel(transport_name);
+
+ auto maybe_set_transport =
+ [this, bundle, transport_name, first_channel](cricket::BaseChannel* ch) {
+ if (!ch || !bundle.HasContentName(ch->content_name())) {
+ return true;
+ }
+
+ if (ch->transport_name() == transport_name) {
+ LOG(LS_INFO) << "BUNDLE already enabled for " << ch->content_name()
+ << " on " << transport_name << ".";
+ return true;
+ }
+
+ if (!ch->SetTransport(transport_name)) {
+ LOG(LS_WARNING) << "Failed to enable BUNDLE for "
+ << ch->content_name();
+ return false;
+ }
+ LOG(LS_INFO) << "Enabled BUNDLE for " << ch->content_name() << " on "
+ << transport_name << ".";
+ return true;
+ };
+
+ if (!maybe_set_transport(voice_channel()) ||
+ !maybe_set_transport(video_channel()) ||
+ !maybe_set_transport(data_channel())) {
+ return false;
+ }
+
return true;
}
@@ -1305,7 +1414,7 @@ void WebRtcSession::ResetIceRestartLatch() {
}
void WebRtcSession::OnIdentityReady(rtc::SSLIdentity* identity) {
- SetIdentity(identity);
+ transport_controller()->SetIdentity(identity);
}
bool WebRtcSession::waiting_for_identity() const {
@@ -1322,6 +1431,8 @@ void WebRtcSession::SetIceConnectionState(
// WebRtcSession does not implement "kIceConnectionClosed" (that is handled
// within PeerConnection). This switch statement should compile away when
// ASSERTs are disabled.
+ LOG(LS_INFO) << "Changing IceConnectionState " << ice_connection_state_
+ << " => " << state;
switch (ice_connection_state_) {
case PeerConnectionInterface::kIceConnectionNew:
ASSERT(state == PeerConnectionInterface::kIceConnectionChecking);
@@ -1362,70 +1473,67 @@ void WebRtcSession::SetIceConnectionState(
}
}
-void WebRtcSession::OnTransportRequestSignaling(
- cricket::Transport* transport) {
- ASSERT(signaling_thread()->IsCurrent());
- transport->OnSignalingReady();
- if (ice_observer_) {
- ice_observer_->OnIceGatheringChange(
- PeerConnectionInterface::kIceGatheringGathering);
- }
-}
-
-void WebRtcSession::OnTransportConnecting(cricket::Transport* transport) {
- ASSERT(signaling_thread()->IsCurrent());
- // start monitoring for the write state of the transport.
- OnTransportWritable(transport);
-}
-
-void WebRtcSession::OnTransportWritable(cricket::Transport* transport) {
- ASSERT(signaling_thread()->IsCurrent());
- if (transport->all_channels_writable()) {
- SetIceConnectionState(PeerConnectionInterface::kIceConnectionConnected);
- } else if (transport->HasChannels()) {
- // If the current state is Connected or Completed, then there were writable
- // channels but now there are not, so the next state must be Disconnected.
- if (ice_connection_state_ ==
- PeerConnectionInterface::kIceConnectionConnected ||
- ice_connection_state_ ==
- PeerConnectionInterface::kIceConnectionCompleted) {
- SetIceConnectionState(
- PeerConnectionInterface::kIceConnectionDisconnected);
- }
- }
-}
-
-void WebRtcSession::OnTransportCompleted(cricket::Transport* transport) {
- ASSERT(signaling_thread()->IsCurrent());
- PeerConnectionInterface::IceConnectionState old_state = ice_connection_state_;
- SetIceConnectionState(PeerConnectionInterface::kIceConnectionCompleted);
- // Only report once when Ice connection is completed.
- if (old_state != PeerConnectionInterface::kIceConnectionCompleted) {
- cricket::TransportStats stats;
- if (metrics_observer_ && transport->GetStats(&stats)) {
- ReportBestConnectionState(stats);
- ReportNegotiatedCiphers(stats);
- }
+void WebRtcSession::OnTransportControllerConnectionState(
+ cricket::ConnectionState state) {
+ switch (state) {
+ case cricket::kConnectionConnecting:
+ // If the current state is Connected or Completed, then there were
+ // writable channels but now there are not, so the next state must
+ // be Disconnected.
+ if (ice_connection_state_ ==
+ PeerConnectionInterface::kIceConnectionConnected ||
+ ice_connection_state_ ==
+ PeerConnectionInterface::kIceConnectionCompleted) {
+ SetIceConnectionState(
+ PeerConnectionInterface::kIceConnectionDisconnected);
+ }
+ break;
+ case cricket::kConnectionFailed:
+ SetIceConnectionState(PeerConnectionInterface::kIceConnectionFailed);
+ break;
+ case cricket::kConnectionConnected:
+ LOG(LS_INFO) << "Changing to ICE connected state because "
+ << "all transports are writable.";
+ SetIceConnectionState(PeerConnectionInterface::kIceConnectionConnected);
+ break;
+ case cricket::kConnectionCompleted:
+ LOG(LS_INFO) << "Changing to ICE completed state because "
+ << "all transports are complete.";
+ if (ice_connection_state_ !=
+ PeerConnectionInterface::kIceConnectionConnected) {
+ // If jumping directly from "checking" to "connected",
+ // signal "connected" first.
+ SetIceConnectionState(PeerConnectionInterface::kIceConnectionConnected);
+ }
+ SetIceConnectionState(PeerConnectionInterface::kIceConnectionCompleted);
+ if (metrics_observer_) {
+ // Once ICE connection is completed, report stats for all transports
+ // in use.
+ std::set<std::string> transport_names;
+ if (voice_channel()) {
+ transport_names.insert(voice_channel()->transport_name());
+ }
+ if (video_channel()) {
+ transport_names.insert(video_channel()->transport_name());
+ }
+ if (data_channel()) {
+ transport_names.insert(data_channel()->transport_name());
+ }
+ for (auto name : transport_names) {
+ cricket::TransportStats stats;
+ if (transport_controller()->GetStats(name, &stats)) {
+ ReportBestConnectionState(stats);
+ ReportNegotiatedCiphers(stats);
+ }
+ }
+ }
+ break;
+ default:
+ ASSERT(false);
}
}
-void WebRtcSession::OnTransportFailed(cricket::Transport* transport) {
- ASSERT(signaling_thread()->IsCurrent());
- SetIceConnectionState(PeerConnectionInterface::kIceConnectionFailed);
-}
-
-void WebRtcSession::OnTransportReceiving(cricket::Transport* transport) {
- ASSERT(signaling_thread()->IsCurrent());
- // The ice connection is considered receiving if at least one transport is
- // receiving on any channels.
- bool receiving = false;
- for (const auto& kv : transport_proxies()) {
- cricket::Transport* transport = kv.second->impl();
- if (transport && transport->any_channel_receiving()) {
- receiving = true;
- break;
- }
- }
+void WebRtcSession::OnTransportControllerReceiving(bool receiving) {
SetIceConnectionReceiving(receiving);
}
@@ -1439,18 +1547,27 @@ void WebRtcSession::SetIceConnectionReceiving(bool receiving) {
}
}
-void WebRtcSession::OnTransportProxyCandidatesReady(
- cricket::TransportProxy* proxy, const cricket::Candidates& candidates) {
+void WebRtcSession::OnTransportControllerCandidatesGathered(
+ const std::string& transport_name,
+ const cricket::Candidates& candidates) {
ASSERT(signaling_thread()->IsCurrent());
- ProcessNewLocalCandidate(proxy->content_name(), candidates);
-}
+ int sdp_mline_index;
+ if (!GetLocalCandidateMediaIndex(transport_name, &sdp_mline_index)) {
+ LOG(LS_ERROR) << "OnTransportControllerCandidatesGathered: content name "
+ << transport_name << " not found";
+ return;
+ }
-void WebRtcSession::OnCandidatesAllocationDone() {
- ASSERT(signaling_thread()->IsCurrent());
- if (ice_observer_) {
- ice_observer_->OnIceGatheringChange(
- PeerConnectionInterface::kIceGatheringComplete);
- ice_observer_->OnIceComplete();
+ for (cricket::Candidates::const_iterator citer = candidates.begin();
+ citer != candidates.end(); ++citer) {
+ // Use transport_name as the candidate media id.
+ JsepIceCandidate candidate(transport_name, sdp_mline_index, *citer);
+ if (ice_observer_) {
+ ice_observer_->OnIceCandidate(&candidate);
+ }
+ if (local_desc_) {
+ local_desc_->AddCandidate(&candidate);
+ }
}
}
@@ -1466,29 +1583,6 @@ void WebRtcSession::EnableChannels() {
data_channel_->Enable(true);
}
-void WebRtcSession::ProcessNewLocalCandidate(
- const std::string& content_name,
- const cricket::Candidates& candidates) {
- int sdp_mline_index;
- if (!GetLocalCandidateMediaIndex(content_name, &sdp_mline_index)) {
- LOG(LS_ERROR) << "ProcessNewLocalCandidate: content name "
- << content_name << " not found";
- return;
- }
-
- for (cricket::Candidates::const_iterator citer = candidates.begin();
- citer != candidates.end(); ++citer) {
- // Use content_name as the candidate media id.
- JsepIceCandidate candidate(content_name, sdp_mline_index, *citer);
- if (ice_observer_) {
- ice_observer_->OnIceCandidate(&candidate);
- }
- if (local_desc_) {
- local_desc_->AddCandidate(&candidate);
- }
- }
-}
-
// Returns the media index for a local ice candidate given the content name.
bool WebRtcSession::GetLocalCandidateMediaIndex(const std::string& content_name,
int* sdp_mline_index) {
@@ -1549,11 +1643,13 @@ bool WebRtcSession::UseCandidate(
cricket::ContentInfo content =
base_remote_description()->contents()[mediacontent_index];
+
std::vector<cricket::Candidate> candidates;
candidates.push_back(candidate->candidate());
// Invoking BaseSession method to handle remote candidates.
std::string error;
- if (OnRemoteCandidates(content.name, candidates, &error)) {
+ if (transport_controller()->AddRemoteCandidates(content.name, candidates,
+ &error)) {
// Candidates successfully submitted for checking.
if (ice_connection_state_ == PeerConnectionInterface::kIceConnectionNew ||
ice_connection_state_ ==
@@ -1577,8 +1673,7 @@ bool WebRtcSession::UseCandidate(
return true;
}
-void WebRtcSession::RemoveUnusedChannelsAndTransports(
- const SessionDescription* desc) {
+void WebRtcSession::RemoveUnusedChannels(const SessionDescription* desc) {
// Destroy video_channel_ first since it may have a pointer to the
// voice_channel_.
const cricket::ContentInfo* video_info =
@@ -1588,7 +1683,6 @@ void WebRtcSession::RemoveUnusedChannelsAndTransports(
SignalVideoChannelDestroyed();
const std::string content_name = video_channel_->content_name();
channel_manager_->DestroyVideoChannel(video_channel_.release());
- DestroyTransportProxy(content_name);
}
const cricket::ContentInfo* voice_info =
@@ -1599,7 +1693,6 @@ void WebRtcSession::RemoveUnusedChannelsAndTransports(
const std::string content_name = voice_channel_->content_name();
channel_manager_->DestroyVoiceChannel(voice_channel_.release(),
video_channel_.get());
- DestroyTransportProxy(content_name);
}
const cricket::ContentInfo* data_info =
@@ -1609,7 +1702,6 @@ void WebRtcSession::RemoveUnusedChannelsAndTransports(
SignalDataChannelDestroyed();
const std::string content_name = data_channel_->content_name();
channel_manager_->DestroyDataChannel(data_channel_.release());
- DestroyTransportProxy(content_name);
}
}
@@ -1662,7 +1754,7 @@ bool WebRtcSession::CreateChannels(const SessionDescription* desc) {
LOG(LS_WARNING) << "max-bundle specified without BUNDLE specified";
return false;
}
- if (!BaseSession::BundleContentGroup(bundle_group)) {
+ if (!EnableBundle(*bundle_group)) {
LOG(LS_WARNING) << "max-bundle failed to enable bundling.";
return false;
}
@@ -1673,7 +1765,7 @@ bool WebRtcSession::CreateChannels(const SessionDescription* desc) {
bool WebRtcSession::CreateVoiceChannel(const cricket::ContentInfo* content) {
voice_channel_.reset(channel_manager_->CreateVoiceChannel(
- this, content->name, true, audio_options_));
+ transport_controller(), content->name, true, audio_options_));
if (!voice_channel_) {
return false;
}
@@ -1685,7 +1777,8 @@ bool WebRtcSession::CreateVoiceChannel(const cricket::ContentInfo* content) {
bool WebRtcSession::CreateVideoChannel(const cricket::ContentInfo* content) {
video_channel_.reset(channel_manager_->CreateVideoChannel(
- this, content->name, true, video_options_, voice_channel_.get()));
+ transport_controller(), content->name, true, video_options_,
+ voice_channel_.get()));
if (!video_channel_) {
return false;
}
@@ -1698,7 +1791,7 @@ bool WebRtcSession::CreateVideoChannel(const cricket::ContentInfo* content) {
bool WebRtcSession::CreateDataChannel(const cricket::ContentInfo* content) {
bool sctp = (data_channel_type_ == cricket::DCT_SCTP);
data_channel_.reset(channel_manager_->CreateDataChannel(
- this, content->name, !sctp, data_channel_type_));
+ transport_controller(), content->name, !sctp, data_channel_type_));
if (!data_channel_) {
return false;
}
@@ -1879,7 +1972,6 @@ bool WebRtcSession::ReadyToUseRemoteCandidate(
const SessionDescriptionInterface* remote_desc,
bool* valid) {
*valid = true;;
- cricket::TransportProxy* transport_proxy = NULL;
const SessionDescriptionInterface* current_remote_desc =
remote_desc ? remote_desc : remote_description();
@@ -1901,10 +1993,28 @@ bool WebRtcSession::ReadyToUseRemoteCandidate(
cricket::ContentInfo content =
current_remote_desc->description()->contents()[mediacontent_index];
- transport_proxy = GetTransportProxy(content.name);
+ cricket::BaseChannel* channel = GetChannel(content.name);
+ if (!channel) {
+ return false;
+ }
+
+ return transport_controller()->ReadyForRemoteCandidates(
+ channel->transport_name());
+}
- return transport_proxy && transport_proxy->local_description_set() &&
- transport_proxy->remote_description_set();
+void WebRtcSession::OnTransportControllerGatheringState(
+ cricket::GatheringState state) {
+ ASSERT(signaling_thread()->IsCurrent());
+ if (state == cricket::kGatheringGathering) {
+ if (ice_observer_) {
+ ice_observer_->OnIceGatheringChange(
+ PeerConnectionInterface::kIceGatheringGathering);
+ }
+ } else if (state == cricket::kGatheringComplete) {
+ ice_observer_->OnIceGatheringChange(
pthatcher1 2015/08/18 22:32:47 I think we need to check if(ice_observer_), in cas
Taylor Brandstetter 2015/08/25 01:04:05 Done.
+ PeerConnectionInterface::kIceGatheringComplete);
+ ice_observer_->OnIceComplete();
+ }
}
// Walk through the ConnectionInfos to gather best connection usage

Powered by Google App Engine
This is Rietveld 408576698