| 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 #ifndef MOJO_PUBLIC_CPP_APPLICATION_LIB_SERVICE_REGISTRY_H_ | 5 #ifndef MOJO_PUBLIC_CPP_APPLICATION_LIB_SERVICE_REGISTRY_H_ |
| 6 #define MOJO_PUBLIC_CPP_APPLICATION_LIB_SERVICE_REGISTRY_H_ | 6 #define MOJO_PUBLIC_CPP_APPLICATION_LIB_SERVICE_REGISTRY_H_ |
| 7 | 7 |
| 8 #include "mojo/public/cpp/application/application_connection.h" | 8 #include "mojo/public/cpp/application/application_connection.h" |
| 9 #include "mojo/public/interfaces/application/service_provider.mojom.h" | 9 #include "mojo/public/interfaces/application/service_provider.mojom.h" |
| 10 | 10 |
| 11 namespace mojo { | 11 namespace mojo { |
| 12 | 12 |
| 13 class Application; | 13 class Application; |
| 14 class ApplicationImpl; | 14 class ApplicationImpl; |
| 15 | 15 |
| 16 namespace internal { | 16 namespace internal { |
| 17 | 17 |
| 18 class ServiceConnectorBase; | 18 class ServiceConnectorBase; |
| 19 | 19 |
| 20 // A ServiceRegistry represents each half of a connection between two | 20 // A ServiceRegistry represents each half of a connection between two |
| 21 // applications, allowing customization of which services are published to the | 21 // applications, allowing customization of which services are published to the |
| 22 // other. | 22 // other. |
| 23 class ServiceRegistry : public ServiceProvider, public ApplicationConnection { | 23 class ServiceRegistry : public ServiceProvider, public ApplicationConnection { |
| 24 public: | 24 public: |
| 25 ServiceRegistry(); | 25 ServiceRegistry(); |
| 26 ServiceRegistry(ApplicationImpl* application_impl, | 26 ServiceRegistry(ApplicationImpl* application_impl, |
| 27 const std::string& url, | 27 const std::string& url, |
| 28 ServiceProviderPtr service_provider); | 28 ServiceProviderPtr remote_services, |
| 29 InterfaceRequest<ServiceProvider> local_services); |
| 29 ~ServiceRegistry() override; | 30 ~ServiceRegistry() override; |
| 30 | 31 |
| 31 // ApplicationConnection overrides. | 32 // ApplicationConnection overrides. |
| 32 void AddServiceConnector(ServiceConnectorBase* service_connector) override; | 33 void AddServiceConnector(ServiceConnectorBase* service_connector) override; |
| 33 const std::string& GetRemoteApplicationURL() override; | 34 const std::string& GetRemoteApplicationURL() override; |
| 34 ApplicationConnection* ConnectToApplication(const std::string& url) override; | 35 ApplicationConnection* ConnectToApplication(const std::string& url) override; |
| 35 ServiceProvider* GetServiceProvider() override; | 36 ServiceProvider* GetServiceProvider() override; |
| 36 | 37 |
| 37 virtual void RemoveServiceConnector(ServiceConnectorBase* service_connector); | 38 virtual void RemoveServiceConnector(ServiceConnectorBase* service_connector); |
| 38 | 39 |
| 39 private: | 40 private: |
| 40 // ServiceProvider method. | 41 // ServiceProvider method. |
| 41 void ConnectToService(const mojo::String& service_name, | 42 void ConnectToService(const mojo::String& service_name, |
| 42 ScopedMessagePipeHandle client_handle) override; | 43 ScopedMessagePipeHandle client_handle) override; |
| 43 | 44 |
| 44 ApplicationImpl* application_impl_; | 45 ApplicationImpl* application_impl_; |
| 45 const std::string url_; | 46 const std::string url_; |
| 46 | 47 |
| 47 private: | 48 private: |
| 48 bool RemoveServiceConnectorInternal(ServiceConnectorBase* service_connector); | 49 bool RemoveServiceConnectorInternal(ServiceConnectorBase* service_connector); |
| 49 | 50 |
| 50 Application* application_; | 51 Application* application_; |
| 51 typedef std::map<std::string, ServiceConnectorBase*> | 52 typedef std::map<std::string, ServiceConnectorBase*> |
| 52 NameToServiceConnectorMap; | 53 NameToServiceConnectorMap; |
| 53 NameToServiceConnectorMap name_to_service_connector_; | 54 NameToServiceConnectorMap name_to_service_connector_; |
| 55 Binding<ServiceProvider> local_binding_; |
| 54 ServiceProviderPtr remote_service_provider_; | 56 ServiceProviderPtr remote_service_provider_; |
| 55 | 57 |
| 56 MOJO_DISALLOW_COPY_AND_ASSIGN(ServiceRegistry); | 58 MOJO_DISALLOW_COPY_AND_ASSIGN(ServiceRegistry); |
| 57 }; | 59 }; |
| 58 | 60 |
| 59 } // namespace internal | 61 } // namespace internal |
| 60 } // namespace mojo | 62 } // namespace mojo |
| 61 | 63 |
| 62 #endif // MOJO_PUBLIC_CPP_APPLICATION_LIB_SERVICE_REGISTRY_H_ | 64 #endif // MOJO_PUBLIC_CPP_APPLICATION_LIB_SERVICE_REGISTRY_H_ |
| OLD | NEW |