| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/common/mojo/service_registry_impl.h" | 5 #include "content/common/mojo/service_registry_impl.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "mojo/common/common_type_converters.h" | 9 #include "mojo/common/common_type_converters.h" |
| 10 | 10 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 CHECK(!remote_provider_); | 32 CHECK(!remote_provider_); |
| 33 remote_provider_ = std::move(service_provider); | 33 remote_provider_ = std::move(service_provider); |
| 34 while (!pending_connects_.empty()) { | 34 while (!pending_connects_.empty()) { |
| 35 remote_provider_->ConnectToService( | 35 remote_provider_->ConnectToService( |
| 36 mojo::String::From(pending_connects_.front().first), | 36 mojo::String::From(pending_connects_.front().first), |
| 37 mojo::ScopedMessagePipeHandle(pending_connects_.front().second)); | 37 mojo::ScopedMessagePipeHandle(pending_connects_.front().second)); |
| 38 pending_connects_.pop(); | 38 pending_connects_.pop(); |
| 39 } | 39 } |
| 40 } | 40 } |
| 41 | 41 |
| 42 void ServiceRegistryImpl::AddService( | 42 void ServiceRegistryImpl::AddServiceOverrideForTesting( |
| 43 const std::string& service_name, | 43 const std::string& service_name, |
| 44 const base::Callback<void(mojo::ScopedMessagePipeHandle)> service_factory) { | 44 const ServiceFactory& factory) { |
| 45 service_overrides_[service_name] = factory; |
| 46 } |
| 47 |
| 48 void ServiceRegistryImpl::AddService(const std::string& service_name, |
| 49 const ServiceFactory service_factory) { |
| 45 service_factories_[service_name] = service_factory; | 50 service_factories_[service_name] = service_factory; |
| 46 } | 51 } |
| 47 | 52 |
| 48 void ServiceRegistryImpl::RemoveService(const std::string& service_name) { | 53 void ServiceRegistryImpl::RemoveService(const std::string& service_name) { |
| 49 service_factories_.erase(service_name); | 54 service_factories_.erase(service_name); |
| 50 } | 55 } |
| 51 | 56 |
| 52 void ServiceRegistryImpl::ConnectToRemoteService( | 57 void ServiceRegistryImpl::ConnectToRemoteService( |
| 53 const base::StringPiece& service_name, | 58 const base::StringPiece& service_name, |
| 54 mojo::ScopedMessagePipeHandle handle) { | 59 mojo::ScopedMessagePipeHandle handle) { |
| 60 auto override_it = service_overrides_.find(service_name.as_string()); |
| 61 if (override_it != service_overrides_.end()) { |
| 62 override_it->second.Run(std::move(handle)); |
| 63 return; |
| 64 } |
| 65 |
| 55 if (!remote_provider_) { | 66 if (!remote_provider_) { |
| 56 pending_connects_.push( | 67 pending_connects_.push( |
| 57 std::make_pair(service_name.as_string(), handle.release())); | 68 std::make_pair(service_name.as_string(), handle.release())); |
| 58 return; | 69 return; |
| 59 } | 70 } |
| 60 remote_provider_->ConnectToService( | 71 remote_provider_->ConnectToService( |
| 61 mojo::String::From(service_name.as_string()), std::move(handle)); | 72 mojo::String::From(service_name.as_string()), std::move(handle)); |
| 62 } | 73 } |
| 63 | 74 |
| 64 bool ServiceRegistryImpl::IsBound() const { | 75 bool ServiceRegistryImpl::IsBound() const { |
| 65 return binding_.is_bound(); | 76 return binding_.is_bound(); |
| 66 } | 77 } |
| 67 | 78 |
| 68 base::WeakPtr<ServiceRegistry> ServiceRegistryImpl::GetWeakPtr() { | 79 base::WeakPtr<ServiceRegistry> ServiceRegistryImpl::GetWeakPtr() { |
| 69 return weak_factory_.GetWeakPtr(); | 80 return weak_factory_.GetWeakPtr(); |
| 70 } | 81 } |
| 71 | 82 |
| 72 void ServiceRegistryImpl::ConnectToService( | 83 void ServiceRegistryImpl::ConnectToService( |
| 73 const mojo::String& name, | 84 const mojo::String& name, |
| 74 mojo::ScopedMessagePipeHandle client_handle) { | 85 mojo::ScopedMessagePipeHandle client_handle) { |
| 75 std::map<std::string, | 86 auto it = service_factories_.find(name); |
| 76 base::Callback<void(mojo::ScopedMessagePipeHandle)> >::iterator it = | |
| 77 service_factories_.find(name); | |
| 78 if (it == service_factories_.end()) | 87 if (it == service_factories_.end()) |
| 79 return; | 88 return; |
| 80 | 89 |
| 81 // It's possible and effectively unavoidable that under certain conditions | 90 // It's possible and effectively unavoidable that under certain conditions |
| 82 // an invalid handle may be received. Don't invoke the factory in that case. | 91 // an invalid handle may be received. Don't invoke the factory in that case. |
| 83 if (!client_handle.is_valid()) { | 92 if (!client_handle.is_valid()) { |
| 84 DVLOG(2) << "Invalid pipe handle for " << name << " interface request."; | 93 DVLOG(2) << "Invalid pipe handle for " << name << " interface request."; |
| 85 return; | 94 return; |
| 86 } | 95 } |
| 87 | 96 |
| 88 it->second.Run(std::move(client_handle)); | 97 it->second.Run(std::move(client_handle)); |
| 89 } | 98 } |
| 90 | 99 |
| 91 void ServiceRegistryImpl::OnConnectionError() { | 100 void ServiceRegistryImpl::OnConnectionError() { |
| 92 binding_.Close(); | 101 binding_.Close(); |
| 93 } | 102 } |
| 94 | 103 |
| 95 } // namespace content | 104 } // namespace content |
| OLD | NEW |