diff options
author | mikhail.pozdnyakov <mikhail.pozdnyakov@intel.com> | 2016-02-11 11:42:24 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-02-11 19:43:47 +0000 |
commit | ef0d3aa8a2e82e6db356e112c236ef0f8a2a8918 (patch) | |
tree | c1d439680acee131a2290b1ca36b00dac9d3ebaa /extensions/browser/api | |
parent | 0f0f3981f6ca07546cd9208c202ee512d4c807ba (diff) | |
download | chromium_src-ef0d3aa8a2e82e6db356e112c236ef0f8a2a8918.zip chromium_src-ef0d3aa8a2e82e6db356e112c236ef0f8a2a8918.tar.gz chromium_src-ef0d3aa8a2e82e6db356e112c236ef0f8a2a8918.tar.bz2 |
[chrome.displaySource] Session notification improvements
This patch provides several fixes and improvements (simplifications)
to the session life cycle notification mechanism:
1) The 'startSession'/'terminateSession' call completion callbacks are
invoked when the session is actually started/terminated and in accordance
with 'onSessionStarted'/'onSessionTerminated' events propagating (and as
per documentation).
2) The notification from the required sink is filtered out in browser process
avoiding unneeded IPC calls
3) Methods in mojo interface are renamed in order to improve readability
BUG=242107
Review URL: https://codereview.chromium.org/1674583002
Cr-Commit-Position: refs/heads/master@{#374929}
Diffstat (limited to 'extensions/browser/api')
-rw-r--r-- | extensions/browser/api/display_source/wifi_display/wifi_display_session_service_impl.cc | 104 | ||||
-rw-r--r-- | extensions/browser/api/display_source/wifi_display/wifi_display_session_service_impl.h | 6 |
2 files changed, 65 insertions, 45 deletions
diff --git a/extensions/browser/api/display_source/wifi_display/wifi_display_session_service_impl.cc b/extensions/browser/api/display_source/wifi_display/wifi_display_session_service_impl.cc index 59dfda1..015eca3 100644 --- a/extensions/browser/api/display_source/wifi_display/wifi_display_session_service_impl.cc +++ b/extensions/browser/api/display_source/wifi_display/wifi_display_session_service_impl.cc @@ -23,20 +23,15 @@ WiFiDisplaySessionServiceImpl::WiFiDisplaySessionServiceImpl( mojo::InterfaceRequest<WiFiDisplaySessionService> request) : binding_(this, std::move(request)), delegate_(delegate), - last_connected_sink_(DisplaySourceConnectionDelegate::kInvalidSinkId), - own_sink_(DisplaySourceConnectionDelegate::kInvalidSinkId), + sink_state_(SINK_STATE_NONE), + sink_id_(DisplaySourceConnectionDelegate::kInvalidSinkId), weak_factory_(this) { delegate_->AddObserver(this); - - auto connection = delegate_->connection(); - if (connection) - last_connected_sink_ = connection->GetConnectedSink()->id; } WiFiDisplaySessionServiceImpl::~WiFiDisplaySessionServiceImpl() { delegate_->RemoveObserver(this); - if (own_sink_ != DisplaySourceConnectionDelegate::kInvalidSinkId) - Disconnect(); + Disconnect(); } // static @@ -67,7 +62,7 @@ void WiFiDisplaySessionServiceImpl::Connect(int32_t sink_id, DCHECK(client_); // We support only one Wi-Fi Display session at a time. if (delegate_->connection()) { - client_->OnError(sink_id, ERROR_TYPE_EXCEEDED_SESSION_LIMIT_ERROR, + client_->OnError(ERROR_TYPE_EXCEEDED_SESSION_LIMIT_ERROR, kErrorCannotHaveMultipleSessions); return; } @@ -77,7 +72,7 @@ void WiFiDisplaySessionServiceImpl::Connect(int32_t sink_id, sinks.begin(), sinks.end(), [sink_id](DisplaySourceSinkInfoPtr ptr) { return ptr->id == sink_id; }); if (found == sinks.end() || (*found)->state != SINK_STATE_DISCONNECTED) { - client_->OnError(sink_id, ERROR_TYPE_ESTABLISH_CONNECTION_ERROR, + client_->OnError(ERROR_TYPE_ESTABLISH_CONNECTION_ERROR, kErrorSinkNotAvailable); return; } @@ -90,86 +85,113 @@ void WiFiDisplaySessionServiceImpl::Connect(int32_t sink_id, auto on_error = base::Bind(&WiFiDisplaySessionServiceImpl::OnConnectFailed, weak_factory_.GetWeakPtr(), sink_id); delegate_->Connect(sink_id, auth_info, on_error); - own_sink_ = sink_id; + sink_id_ = sink_id; + sink_state_ = (*found)->state; + DCHECK(sink_state_ == SINK_STATE_CONNECTING); } void WiFiDisplaySessionServiceImpl::Disconnect() { - if (own_sink_ == DisplaySourceConnectionDelegate::kInvalidSinkId) { + if (sink_id_ == DisplaySourceConnectionDelegate::kInvalidSinkId) { // The connection might drop before this call has arrived. // Renderer should have been notified already. return; } - DCHECK(delegate_->connection()); - DCHECK_EQ(own_sink_, delegate_->connection()->GetConnectedSink()->id); + + const DisplaySourceSinkInfoList& sinks = delegate_->last_found_sinks(); + auto found = std::find_if( + sinks.begin(), sinks.end(), + [this](DisplaySourceSinkInfoPtr ptr) { return ptr->id == sink_id_; }); + DCHECK(found != sinks.end()); + DCHECK((*found)->state == SINK_STATE_CONNECTED || + (*found)->state == SINK_STATE_CONNECTING); + auto on_error = base::Bind(&WiFiDisplaySessionServiceImpl::OnDisconnectFailed, - weak_factory_.GetWeakPtr(), own_sink_); + weak_factory_.GetWeakPtr(), sink_id_); delegate_->Disconnect(on_error); } void WiFiDisplaySessionServiceImpl::SendMessage(const mojo::String& message) { - if (own_sink_ == DisplaySourceConnectionDelegate::kInvalidSinkId) { + if (sink_id_ == DisplaySourceConnectionDelegate::kInvalidSinkId) { // The connection might drop before this call has arrived. return; } auto connection = delegate_->connection(); DCHECK(connection); - DCHECK_EQ(own_sink_, connection->GetConnectedSink()->id); + DCHECK_EQ(sink_id_, connection->GetConnectedSink()->id); connection->SendMessage(message); } void WiFiDisplaySessionServiceImpl::OnSinkMessage(const std::string& message) { DCHECK(delegate_->connection()); - DCHECK_NE(own_sink_, DisplaySourceConnectionDelegate::kInvalidSinkId); + DCHECK_NE(sink_id_, DisplaySourceConnectionDelegate::kInvalidSinkId); DCHECK(client_); client_->OnMessage(message); } void WiFiDisplaySessionServiceImpl::OnSinksUpdated( const DisplaySourceSinkInfoList& sinks) { - auto connection = delegate_->connection(); - if (!connection && - last_connected_sink_ != DisplaySourceConnectionDelegate::kInvalidSinkId) { - if (last_connected_sink_ == own_sink_) - own_sink_ = DisplaySourceConnectionDelegate::kInvalidSinkId; - if (client_) - client_->OnDisconnected(last_connected_sink_); - last_connected_sink_ = DisplaySourceConnectionDelegate::kInvalidSinkId; + if (sink_id_ == DisplaySourceConnectionDelegate::kInvalidSinkId) + return; + // The initialized sink id means that the client should have + // been initialized as well. + DCHECK(client_); + auto found = std::find_if( + sinks.begin(), sinks.end(), + [this](DisplaySourceSinkInfoPtr ptr) { return ptr->id == sink_id_; }); + if (found == sinks.end()) { + client_->OnError(ERROR_TYPE_CONNECTION_ERROR, "The sink has disappeared"); + client_->OnTerminated(); + sink_id_ = DisplaySourceConnectionDelegate::kInvalidSinkId; } - if (connection && - last_connected_sink_ != connection->GetConnectedSink()->id) { - last_connected_sink_ = connection->GetConnectedSink()->id; - if (client_) - client_->OnConnected(last_connected_sink_, connection->GetLocalAddress()); - if (last_connected_sink_ == own_sink_) { - auto on_message = - base::Bind(&WiFiDisplaySessionServiceImpl::OnSinkMessage, - weak_factory_.GetWeakPtr()); - connection->SetMessageReceivedCallback(on_message); - } + + SinkState actual_state = (*found)->state; + + if (actual_state == sink_state_) + return; + + if (actual_state == SINK_STATE_CONNECTED) { + auto connection = delegate_->connection(); + DCHECK(connection); + auto on_message = base::Bind(&WiFiDisplaySessionServiceImpl::OnSinkMessage, + weak_factory_.GetWeakPtr()); + connection->SetMessageReceivedCallback(on_message); + client_->OnEstablished(connection->GetLocalAddress()); } + + if (actual_state == SINK_STATE_DISCONNECTED) { + client_->OnTerminated(); + sink_id_ = DisplaySourceConnectionDelegate::kInvalidSinkId; + } + + sink_state_ = actual_state; } void WiFiDisplaySessionServiceImpl::OnConnectionError( int sink_id, DisplaySourceErrorType type, const std::string& description) { + if (sink_id != sink_id_) + return; DCHECK(client_); - client_->OnError(sink_id, type, description); + client_->OnError(type, description); } void WiFiDisplaySessionServiceImpl::OnConnectFailed( int sink_id, const std::string& message) { + if (sink_id != sink_id_) + return; DCHECK(client_); - client_->OnError(sink_id, ERROR_TYPE_ESTABLISH_CONNECTION_ERROR, message); - own_sink_ = DisplaySourceConnectionDelegate::kInvalidSinkId; + client_->OnError(ERROR_TYPE_ESTABLISH_CONNECTION_ERROR, message); } void WiFiDisplaySessionServiceImpl::OnDisconnectFailed( int sink_id, const std::string& message) { + if (sink_id != sink_id_) + return; DCHECK(client_); - client_->OnError(sink_id, ERROR_TYPE_CONNECTION_ERROR, message); + client_->OnError(ERROR_TYPE_CONNECTION_ERROR, message); } void WiFiDisplaySessionServiceImpl::OnClientConnectionError() { diff --git a/extensions/browser/api/display_source/wifi_display/wifi_display_session_service_impl.h b/extensions/browser/api/display_source/wifi_display/wifi_display_session_service_impl.h index e50237c..6639871 100644 --- a/extensions/browser/api/display_source/wifi_display/wifi_display_session_service_impl.h +++ b/extensions/browser/api/display_source/wifi_display/wifi_display_session_service_impl.h @@ -61,11 +61,9 @@ class WiFiDisplaySessionServiceImpl WiFiDisplaySessionServiceClientPtr client_; DisplaySourceConnectionDelegate* delegate_; - // Id of the currenty connected sink (if any), obtained from connection - // delegate. Keep it so that we know if a session has been ended. - int last_connected_sink_; + api::display_source::SinkState sink_state_; // Id of the sink of the session this object is associated with. - int own_sink_; + int sink_id_; base::WeakPtrFactory<WiFiDisplaySessionServiceImpl> weak_factory_; |