Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 EXTENSIONS_BROWSER_API_DECLARATIVE_RULES_REGISTRY_SERVICE_H__ | 5 #ifndef EXTENSIONS_BROWSER_API_DECLARATIVE_RULES_REGISTRY_SERVICE_H__ |
| 6 #define EXTENSIONS_BROWSER_API_DECLARATIVE_RULES_REGISTRY_SERVICE_H__ | 6 #define EXTENSIONS_BROWSER_API_DECLARATIVE_RULES_REGISTRY_SERVICE_H__ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/callback_forward.h" | 12 #include "base/callback_forward.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/scoped_vector.h" | 14 #include "base/memory/scoped_vector.h" |
| 15 #include "base/scoped_observer.h" | 15 #include "base/scoped_observer.h" |
| 16 #include "content/public/browser/notification_observer.h" | |
| 17 #include "content/public/browser/notification_registrar.h" | |
| 18 #include "extensions/browser/api/declarative/rules_registry.h" | 16 #include "extensions/browser/api/declarative/rules_registry.h" |
| 19 #include "extensions/browser/browser_context_keyed_api_factory.h" | 17 #include "extensions/browser/browser_context_keyed_api_factory.h" |
| 20 #include "extensions/browser/extension_registry_observer.h" | 18 #include "extensions/browser/extension_registry_observer.h" |
| 21 | 19 |
| 22 namespace content { | 20 namespace content { |
| 23 class BrowserContext; | 21 class BrowserContext; |
| 24 class NotificationSource; | |
| 25 } | 22 } |
| 26 | 23 |
| 27 namespace extensions { | 24 namespace extensions { |
| 28 class ContentRulesRegistry; | 25 class ContentRulesRegistry; |
| 29 class ExtensionRegistry; | 26 class ExtensionRegistry; |
| 30 class RulesRegistryStorageDelegate; | 27 class RulesRegistryStorageDelegate; |
| 31 } | 28 } |
| 32 | 29 |
| 33 namespace extensions { | 30 namespace extensions { |
| 34 | 31 |
| 35 // This class owns all RulesRegistries implementations of an ExtensionService. | 32 // This class owns all RulesRegistries implementations of an ExtensionService. |
| 36 // This class lives on the UI thread. | 33 // This class lives on the UI thread. |
| 37 class RulesRegistryService : public BrowserContextKeyedAPI, | 34 class RulesRegistryService : public BrowserContextKeyedAPI, |
| 38 public content::NotificationObserver, | |
| 39 public ExtensionRegistryObserver { | 35 public ExtensionRegistryObserver { |
| 40 public: | 36 public: |
| 41 typedef RulesRegistry::WebViewKey WebViewKey; | 37 static const int kDefaultRulesRegistryID; |
| 38 | |
| 42 struct RulesRegistryKey { | 39 struct RulesRegistryKey { |
| 43 std::string event_name; | 40 std::string event_name; |
| 44 WebViewKey webview_key; | 41 int rules_registry_id; |
| 45 RulesRegistryKey(const std::string event_name, | 42 RulesRegistryKey(const std::string event_name, int rules_registry_id) |
| 46 const WebViewKey& webview_key) | |
| 47 : event_name(event_name), | 43 : event_name(event_name), |
| 48 webview_key(webview_key) {} | 44 rules_registry_id(rules_registry_id) {} |
| 49 bool operator<(const RulesRegistryKey& other) const { | 45 bool operator<(const RulesRegistryKey& other) const { |
| 50 return (event_name < other.event_name) || | 46 return (event_name < other.event_name) || |
| 51 ((event_name == other.event_name) && | 47 ((event_name == other.event_name) && |
| 52 (webview_key < other.webview_key)); | 48 (rules_registry_id < other.rules_registry_id)); |
| 53 } | 49 } |
| 54 }; | 50 }; |
| 55 | 51 |
| 56 explicit RulesRegistryService(content::BrowserContext* context); | 52 explicit RulesRegistryService(content::BrowserContext* context); |
| 57 ~RulesRegistryService() override; | 53 ~RulesRegistryService() override; |
| 58 | 54 |
| 59 // Unregisters refptrs to concrete RulesRegistries at other objects that were | 55 // Unregisters refptrs to concrete RulesRegistries at other objects that were |
| 60 // created by us so that the RulesRegistries can be released. | 56 // created by us so that the RulesRegistries can be released. |
| 61 void Shutdown() override; | 57 void Shutdown() override; |
| 62 | 58 |
| 63 // BrowserContextKeyedAPI implementation. | 59 // BrowserContextKeyedAPI implementation. |
| 64 static BrowserContextKeyedAPIFactory<RulesRegistryService>* | 60 static BrowserContextKeyedAPIFactory<RulesRegistryService>* |
| 65 GetFactoryInstance(); | 61 GetFactoryInstance(); |
| 66 | 62 |
| 67 // Convenience method to get the RulesRegistryService for a context. | 63 // Convenience method to get the RulesRegistryService for a context. |
| 68 static RulesRegistryService* Get(content::BrowserContext* context); | 64 static RulesRegistryService* Get(content::BrowserContext* context); |
| 69 | 65 |
| 66 int GetNextRulesRegistryID(); | |
| 67 | |
| 70 // Registers the default RulesRegistries used in Chromium. | 68 // Registers the default RulesRegistries used in Chromium. |
| 71 void EnsureDefaultRulesRegistriesRegistered(const WebViewKey& webview_key); | 69 void EnsureDefaultRulesRegistriesRegistered(int rules_registry_id, |
| 70 bool cache_rules); | |
| 72 | 71 |
| 73 // Registers a RulesRegistry and wraps it in an InitializingRulesRegistry. | 72 // Registers a RulesRegistry and wraps it in an InitializingRulesRegistry. |
| 74 void RegisterRulesRegistry(scoped_refptr<RulesRegistry> rule_registry); | 73 void RegisterRulesRegistry(scoped_refptr<RulesRegistry> rule_registry); |
| 75 | 74 |
| 76 // Returns the RulesRegistry for |event_name| and |webview_key| or NULL if no | 75 // Returns the RulesRegistry for |event_name| and |rules_registry_id| or |
| 77 // such registry has been registered. Default rules registries (such as the | 76 // NULL if no such registry has been registered. Default rules registries |
| 78 // WebRequest rules registry) will be created on first access. | 77 // (such as the WebRequest rules registry) will be created on first access. |
| 79 scoped_refptr<RulesRegistry> GetRulesRegistry(const WebViewKey& webview_key, | 78 scoped_refptr<RulesRegistry> GetRulesRegistry(int rules_registry_id, |
| 79 bool cache_rules, | |
| 80 const std::string& event_name); | 80 const std::string& event_name); |
| 81 | 81 |
| 82 // Remove the given rules_registry_id. | |
| 83 void RemoveRulesRegistryID(int rules_registry_id); | |
|
Fady Samuel
2014/11/28 11:34:24
RemoveRulesRegistry
Xi Han
2014/11/28 16:12:56
Done.
| |
| 84 | |
| 82 // Accessors for each type of rules registry. | 85 // Accessors for each type of rules registry. |
| 83 ContentRulesRegistry* content_rules_registry() const { | 86 ContentRulesRegistry* content_rules_registry() const { |
| 84 CHECK(content_rules_registry_); | 87 CHECK(content_rules_registry_); |
| 85 return content_rules_registry_; | 88 return content_rules_registry_; |
| 86 } | 89 } |
| 87 | 90 |
| 88 // Removes all rules registries of a given webview embedder process ID. | |
| 89 void RemoveWebViewRulesRegistries(int process_id); | |
| 90 | |
| 91 // For testing. | 91 // For testing. |
| 92 void SimulateExtensionUninstalled(const std::string& extension_id); | 92 void SimulateExtensionUninstalled(const std::string& extension_id); |
| 93 | 93 |
| 94 private: | 94 private: |
| 95 friend class BrowserContextKeyedAPIFactory<RulesRegistryService>; | 95 friend class BrowserContextKeyedAPIFactory<RulesRegistryService>; |
| 96 | 96 |
| 97 // Maps <event name, webview key> to RuleRegistries that handle these | 97 // Maps <event name, rules registry ID> to RuleRegistries that handle these |
| 98 // events. | 98 // events. |
| 99 typedef std::map<RulesRegistryKey, scoped_refptr<RulesRegistry> > | 99 typedef std::map<RulesRegistryKey, scoped_refptr<RulesRegistry> > |
| 100 RulesRegistryMap; | 100 RulesRegistryMap; |
| 101 | 101 |
| 102 // Implementation of content::NotificationObserver. | |
| 103 void Observe(int type, | |
| 104 const content::NotificationSource& source, | |
| 105 const content::NotificationDetails& details) override; | |
| 106 | |
| 107 // ExtensionRegistryObserver implementation. | 102 // ExtensionRegistryObserver implementation. |
| 108 void OnExtensionLoaded(content::BrowserContext* browser_context, | 103 void OnExtensionLoaded(content::BrowserContext* browser_context, |
| 109 const Extension* extension) override; | 104 const Extension* extension) override; |
| 110 void OnExtensionUnloaded(content::BrowserContext* browser_context, | 105 void OnExtensionUnloaded(content::BrowserContext* browser_context, |
| 111 const Extension* extension, | 106 const Extension* extension, |
| 112 UnloadedExtensionInfo::Reason reason) override; | 107 UnloadedExtensionInfo::Reason reason) override; |
| 113 void OnExtensionUninstalled(content::BrowserContext* browser_context, | 108 void OnExtensionUninstalled(content::BrowserContext* browser_context, |
| 114 const Extension* extension, | 109 const Extension* extension, |
| 115 extensions::UninstallReason reason) override; | 110 extensions::UninstallReason reason) override; |
| 116 | 111 |
| 117 // Iterates over all registries, and calls |notification_callback| on them | 112 // Iterates over all registries, and calls |notification_callback| on them |
| 118 // with |extension_id| as the argument. If a registry lives on a different | 113 // with |extension_id| as the argument. If a registry lives on a different |
| 119 // thread, the call is posted to that thread, so no guarantee of synchronous | 114 // thread, the call is posted to that thread, so no guarantee of synchronous |
| 120 // processing. | 115 // processing. |
| 121 void NotifyRegistriesHelper( | 116 void NotifyRegistriesHelper( |
| 122 void (RulesRegistry::*notification_callback)(const std::string&), | 117 void (RulesRegistry::*notification_callback)(const std::string&), |
| 123 const std::string& extension_id); | 118 const std::string& extension_id); |
| 124 | 119 |
| 125 // BrowserContextKeyedAPI implementation. | 120 // BrowserContextKeyedAPI implementation. |
| 126 static const char* service_name() { | 121 static const char* service_name() { |
| 127 return "RulesRegistryService"; | 122 return "RulesRegistryService"; |
| 128 } | 123 } |
| 129 static const bool kServiceHasOwnInstanceInIncognito = true; | 124 static const bool kServiceHasOwnInstanceInIncognito = true; |
| 130 static const bool kServiceIsNULLWhileTesting = true; | 125 static const bool kServiceIsNULLWhileTesting = true; |
| 131 | 126 |
| 127 int current_rules_registry_id_; | |
| 128 | |
| 132 RulesRegistryMap rule_registries_; | 129 RulesRegistryMap rule_registries_; |
| 133 | 130 |
| 134 // We own the parts of the registries which need to run on the UI thread. | 131 // We own the parts of the registries which need to run on the UI thread. |
| 135 ScopedVector<RulesCacheDelegate> cache_delegates_; | 132 ScopedVector<RulesCacheDelegate> cache_delegates_; |
| 136 | 133 |
| 137 // Weak pointer into rule_registries_ to make it easier to handle content rule | 134 // Weak pointer into rule_registries_ to make it easier to handle content rule |
| 138 // conditions. | 135 // conditions. |
| 139 ContentRulesRegistry* content_rules_registry_; | 136 ContentRulesRegistry* content_rules_registry_; |
| 140 | 137 |
| 141 content::NotificationRegistrar registrar_; | |
| 142 | |
| 143 // Listen to extension load, unloaded notification. | 138 // Listen to extension load, unloaded notification. |
| 144 ScopedObserver<ExtensionRegistry, ExtensionRegistryObserver> | 139 ScopedObserver<ExtensionRegistry, ExtensionRegistryObserver> |
| 145 extension_registry_observer_; | 140 extension_registry_observer_; |
| 146 | 141 |
| 147 content::BrowserContext* browser_context_; | 142 content::BrowserContext* browser_context_; |
| 148 | 143 |
| 149 DISALLOW_COPY_AND_ASSIGN(RulesRegistryService); | 144 DISALLOW_COPY_AND_ASSIGN(RulesRegistryService); |
| 150 }; | 145 }; |
| 151 | 146 |
| 152 } // namespace extensions | 147 } // namespace extensions |
| 153 | 148 |
| 154 #endif // EXTENSIONS_BROWSER_API_DECLARATIVE_RULES_REGISTRY_SERVICE_H__ | 149 #endif // EXTENSIONS_BROWSER_API_DECLARATIVE_RULES_REGISTRY_SERVICE_H__ |
| OLD | NEW |