| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_SERVICE_MANAGER_SERVICE_MANAGER_H_ | 5 #ifndef MOJO_SERVICE_MANAGER_SERVICE_MANAGER_H_ |
| 6 #define MOJO_SERVICE_MANAGER_SERVICE_MANAGER_H_ | 6 #define MOJO_SERVICE_MANAGER_SERVICE_MANAGER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 ServiceManager* manager_; | 39 ServiceManager* manager_; |
| 40 }; | 40 }; |
| 41 | 41 |
| 42 ServiceManager(); | 42 ServiceManager(); |
| 43 ~ServiceManager(); | 43 ~ServiceManager(); |
| 44 | 44 |
| 45 // Returns a shared instance, creating it if necessary. | 45 // Returns a shared instance, creating it if necessary. |
| 46 static ServiceManager* GetInstance(); | 46 static ServiceManager* GetInstance(); |
| 47 | 47 |
| 48 // Sets the default Loader to be used if not overridden by SetLoaderForURL(). | 48 // Loads a service if necessary and establishes a new client connection. |
| 49 void Connect(const GURL& url, ScopedMessagePipeHandle client_handle); |
| 50 |
| 51 // Sets the default Loader to be used if not overridden by |
| 52 // SetLoaderForURL() or SetLoaderForScheme(). |
| 49 // Does not take ownership of |loader|. | 53 // Does not take ownership of |loader|. |
| 50 void set_default_loader(ServiceLoader* loader) { default_loader_ = loader; } | 54 void set_default_loader(ServiceLoader* loader) { default_loader_ = loader; } |
| 51 // Sets a Loader to be used for a specific url. | 55 // Sets a Loader to be used for a specific url. |
| 52 // Does not take ownership of |loader|. | 56 // Does not take ownership of |loader|. |
| 53 void SetLoaderForURL(ServiceLoader* loader, const GURL& gurl); | 57 void SetLoaderForURL(ServiceLoader* loader, const GURL& url); |
| 54 // Returns the Loader to use for a url (using default if not overridden.) | 58 // Sets a Loader to be used for a specific url scheme. |
| 55 ServiceLoader* GetLoaderForURL(const GURL& gurl); | 59 // Does not take ownership of |loader|. |
| 56 // Loads a service if necessary and establishes a new client connection. | 60 void SetLoaderForScheme(ServiceLoader* loader, const std::string& scheme); |
| 57 void Connect(const GURL& url, ScopedMessagePipeHandle client_handle); | |
| 58 | 61 |
| 59 private: | 62 private: |
| 60 class ServiceFactory; | 63 class ServiceFactory; |
| 64 typedef std::map<std::string, ServiceLoader*> SchemeToLoaderMap; |
| 65 typedef std::map<GURL, ServiceLoader*> URLToLoaderMap; |
| 66 typedef std::map<GURL, ServiceFactory*> URLToServiceFactoryMap; |
| 67 |
| 68 // Returns the Loader to use for a url (using default if not overridden.) |
| 69 // The preference is to use a loader that's been specified for an url first, |
| 70 // then one that's been specified for a scheme, then the default. |
| 71 ServiceLoader* GetLoaderForURL(const GURL& url); |
| 61 | 72 |
| 62 // Removes a ServiceFactory when it no longer has any connections. | 73 // Removes a ServiceFactory when it no longer has any connections. |
| 63 void OnServiceFactoryError(ServiceFactory* service_factory); | 74 void OnServiceFactoryError(ServiceFactory* service_factory); |
| 64 | 75 |
| 76 // Loader management. |
| 77 URLToLoaderMap url_to_loader_; |
| 78 SchemeToLoaderMap scheme_to_loader_; |
| 65 ServiceLoader* default_loader_; | 79 ServiceLoader* default_loader_; |
| 66 typedef std::map<GURL, ServiceFactory*> ServiceFactoryMap; | 80 |
| 67 ServiceFactoryMap url_to_service_factory_; | 81 URLToServiceFactoryMap url_to_service_factory_; |
| 68 typedef std::map<GURL, ServiceLoader*> LoaderMap; | |
| 69 LoaderMap url_to_loader_; | |
| 70 DISALLOW_COPY_AND_ASSIGN(ServiceManager); | 82 DISALLOW_COPY_AND_ASSIGN(ServiceManager); |
| 71 }; | 83 }; |
| 72 | 84 |
| 73 } // namespace mojo | 85 } // namespace mojo |
| 74 | 86 |
| 75 #endif // MOJO_SERVICE_MANAGER_SERVICE_MANAGER_H_ | 87 #endif // MOJO_SERVICE_MANAGER_SERVICE_MANAGER_H_ |
| OLD | NEW |