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 CHROME_BROWSER_EXTENSIONS_USER_SCRIPT_LOADER_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_USER_SCRIPT_LOADER_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_USER_SCRIPT_LOADER_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_USER_SCRIPT_LOADER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 | 10 |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/memory/shared_memory.h" | |
13 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
14 #include "base/scoped_observer.h" | 15 #include "base/scoped_observer.h" |
15 #include "content/public/browser/notification_observer.h" | 16 #include "content/public/browser/notification_observer.h" |
16 #include "content/public/browser/notification_registrar.h" | 17 #include "content/public/browser/notification_registrar.h" |
17 #include "extensions/browser/extension_registry_observer.h" | 18 #include "extensions/common/consumer.h" |
18 #include "extensions/common/extension.h" | |
19 #include "extensions/common/extension_set.h" | |
20 #include "extensions/common/user_script.h" | 19 #include "extensions/common/user_script.h" |
21 | 20 |
22 namespace base { | 21 namespace base { |
23 class SharedMemory; | 22 class SharedMemory; |
24 } | 23 } |
25 | 24 |
26 namespace content { | 25 namespace content { |
27 class BrowserContext; | 26 class BrowserContext; |
28 class RenderProcessHost; | 27 class RenderProcessHost; |
29 } | 28 } |
30 | 29 |
31 class Profile; | 30 class Profile; |
32 | 31 |
33 namespace extensions { | 32 namespace extensions { |
34 | 33 |
35 class ContentVerifier; | 34 class ContentVerifier; |
36 class ExtensionRegistry; | |
37 | |
38 typedef std::map<ExtensionId, ExtensionSet::ExtensionPathAndDefaultLocale> | |
39 ExtensionsInfo; | |
40 | 35 |
41 // Manages one "logical unit" of user scripts in shared memory by constructing a | 36 // Manages one "logical unit" of user scripts in shared memory by constructing a |
42 // new shared memory region when the set of scripts changes. Also notifies | 37 // new shared memory region when the set of scripts changes. Also notifies |
43 // renderers of new shared memory region when new renderers appear, or when | 38 // renderers of new shared memory region when new renderers appear, or when |
44 // script reloading completes. Script loading lives on the UI thread. Instances | 39 // script reloading completes. Script loading lives on the UI thread. Instances |
45 // of this class are embedded within classes with names ending in | 40 // of this class are embedded within classes with names ending in |
46 // UserScriptMaster. These "master" classes implement the strategy for which | 41 // UserScriptMaster. These "master" classes implement the strategy for which |
47 // scripts to load/unload on this logical unit of scripts. | 42 // scripts to load/unload on this logical unit of scripts. |
48 class UserScriptLoader : public content::NotificationObserver, | 43 class UserScriptLoader : public content::NotificationObserver { |
49 public ExtensionRegistryObserver { | |
50 public: | 44 public: |
45 using PathAndDefaultLocale = std::pair<base::FilePath, std::string>; | |
46 using ConsumersInfo = std::map<ConsumerID, PathAndDefaultLocale>; | |
47 | |
48 using SubstitutionMap = std::map<std::string, std::string>; | |
49 using LoadUserScriptsFunctionCallback = | |
50 base::Callback<bool(const ConsumerID&, | |
51 UserScript::File*, | |
52 const SubstitutionMap*, | |
53 scoped_refptr<ContentVerifier>)>; | |
54 | |
51 // Parses the includes out of |script| and returns them in |includes|. | 55 // Parses the includes out of |script| and returns them in |includes|. |
52 static bool ParseMetadataHeader(const base::StringPiece& script_text, | 56 static bool ParseMetadataHeader(const base::StringPiece& script_text, |
53 UserScript* script); | 57 UserScript* script); |
54 | 58 |
59 UserScriptLoader(Profile* profile, const ConsumerID& consumer_id); | |
60 ~UserScriptLoader() override; | |
61 | |
55 // A wrapper around the method to load user scripts, which is normally run on | 62 // A wrapper around the method to load user scripts, which is normally run on |
56 // the file thread. Exposed only for tests. | 63 // the file thread. Exposed only for tests. |
57 static void LoadScriptsForTest(UserScriptList* user_scripts); | 64 void LoadScriptsForTest(UserScriptList* user_scripts); |
58 | |
59 UserScriptLoader(Profile* profile, | |
60 const ExtensionId& owner_extension_id, | |
61 bool listen_for_extension_system_loaded); | |
62 ~UserScriptLoader() override; | |
63 | 65 |
64 // Add |scripts| to the set of scripts managed by this loader. | 66 // Add |scripts| to the set of scripts managed by this loader. |
65 void AddScripts(const std::set<UserScript>& scripts); | 67 void AddScripts(const std::set<UserScript>& scripts); |
66 | 68 |
67 // Remove |scripts| from the set of scripts managed by this loader. | 69 // Remove |scripts| from the set of scripts managed by this loader. |
68 void RemoveScripts(const std::set<UserScript>& scripts); | 70 void RemoveScripts(const std::set<UserScript>& scripts); |
69 | 71 |
70 // Clears the set of scripts managed by this loader. | 72 // Clears the set of scripts managed by this loader. |
71 void ClearScripts(); | 73 void ClearScripts(); |
72 | 74 |
73 // Initiates procedure to start loading scripts on the file thread. | 75 // Initiates procedure to start loading scripts on the file thread. |
74 void StartLoad(); | 76 void StartLoad(); |
75 | 77 |
76 // Return true if we have any scripts ready. | 78 // Returns true if we have any scripts ready. |
77 bool scripts_ready() const { return shared_memory_.get() != NULL; } | 79 bool scripts_ready() const { return shared_memory_.get() != NULL; } |
78 | 80 |
81 protected: | |
82 using ConsumerIDSet = std::set<ConsumerID>; | |
83 | |
84 // Updates |consumers_info_| to contain info for each element of | |
85 // |changed_consumers_|. | |
86 virtual void UpdateConsumersInfo() = 0; | |
87 | |
88 // If the loading of initial set of consumers has finished. | |
89 virtual bool Ready() = 0; | |
Devlin
2015/01/14 16:45:09
Let's get rid of this one, and instead expose a no
Xi Han
2015/01/14 23:46:03
I still feel this flag is extension-specific, mayb
Devlin
2015/01/16 17:05:04
Right now, you have to check Ready() in the super
Xi Han
2015/01/19 22:40:05
Done.
| |
90 | |
91 // Returns a function pointer of a static funcion. | |
92 // Base and derived classes can specify their ways to load user scripts. | |
93 virtual LoadUserScriptsFunctionCallback GetLoadUserScriptsFunction(); | |
94 | |
95 // Returns a ContentVerifier for managing content verification of the loaded | |
96 // user scripts. | |
97 virtual ContentVerifier* GetContentVerifier(); | |
Devlin
2015/01/14 16:45:09
Can we remove this and initialize the UserScriptLo
Xi Han
2015/01/14 23:46:03
Good idea:)
| |
98 | |
99 // Notifies render process and convert |changed_consumers| to specified types | |
100 // of consumers. | |
101 virtual void SendUpdate(content::RenderProcessHost* process, | |
102 base::SharedMemoryHandle handle_for_process, | |
103 const std::set<ConsumerID>& changed_consumers) = 0; | |
104 | |
105 // Loads user scripts. | |
106 static bool LoadScriptContent(const ConsumerID& consumer_id, | |
107 UserScript::File* script_file, | |
108 const SubstitutionMap* localization_messages, | |
109 scoped_refptr<ContentVerifier> verifier); | |
110 | |
111 // Attempts to initiate a load. | |
112 void AttemptLoad(); | |
Devlin
2015/01/14 16:45:09
Make this private and call it from the to-be-creat
Xi Han
2015/01/14 23:46:03
I am a little confused here, it seems there are tw
Devlin
2015/01/16 17:05:04
We call AttemptLoad() in the OnExtensionSystemRead
Xi Han
2015/01/19 22:40:05
Done.
| |
113 | |
114 // Called once we have finished loading the scripts on the file thread. | |
115 void OnScriptsLoaded(scoped_ptr<UserScriptList> user_scripts, | |
Devlin
2015/01/14 16:45:09
Private.
Xi Han
2015/01/14 23:46:03
Done.
| |
116 scoped_ptr<base::SharedMemory> shared_memory); | |
117 | |
118 // List of scripts from currently-installed extensions we should load. | |
119 scoped_ptr<UserScriptList> user_scripts_; | |
Devlin
2015/01/14 16:45:09
Private
Xi Han
2015/01/14 23:46:03
Done.
| |
120 | |
121 // Maps consumer info needed for localization to a host ID. | |
122 ConsumersInfo consumers_info_; | |
Devlin
2015/01/14 16:45:09
I think this might be better to have an exposed Ad
Xi Han
2015/01/14 23:46:03
Sure, I will follow this style.
| |
123 | |
124 // The IDs of the extensions which changed in the last update sent to the | |
125 // renderer. | |
126 ConsumerIDSet changed_consumers_; | |
Devlin
2015/01/14 16:45:09
Make this private and pass it into UpdateConsumers
Xi Han
2015/01/14 23:46:03
Good idea, thanks.
| |
127 | |
128 // The profile for which the scripts managed here are installed. | |
129 Profile* profile_; | |
Devlin
2015/01/14 16:45:09
Expose a getter, and make this private.
Xi Han
2015/01/14 23:46:03
Done.
| |
130 | |
131 // ID of the consumer that owns these scripts, if any. This is only set to a | |
132 // non-empty value for declarative user script shared memory regions. | |
133 ConsumerID consumer_id_; | |
Devlin
2015/01/14 16:45:09
Expose a getter, and make this private.
Xi Han
2015/01/14 23:46:03
Done.
| |
134 | |
79 private: | 135 private: |
80 // content::NotificationObserver implementation. | 136 // content::NotificationObserver implementation. |
81 void Observe(int type, | 137 void Observe(int type, |
82 const content::NotificationSource& source, | 138 const content::NotificationSource& source, |
83 const content::NotificationDetails& details) override; | 139 const content::NotificationDetails& details) override; |
84 | 140 |
85 // ExtensionRegistryObserver implementation. | |
86 void OnExtensionUnloaded(content::BrowserContext* browser_context, | |
87 const Extension* extension, | |
88 UnloadedExtensionInfo::Reason reason) override; | |
89 | |
90 // Initiates script load when we have been waiting for the extension system | |
91 // to be ready. | |
92 void OnExtensionSystemReady(); | |
93 | |
94 // Returns whether or not it is possible that calls to AddScripts(), | 141 // Returns whether or not it is possible that calls to AddScripts(), |
95 // RemoveScripts(), and/or ClearScripts() have caused any real change in the | 142 // RemoveScripts(), and/or ClearScripts() have caused any real change in the |
96 // set of scripts to be loaded. | 143 // set of scripts to be loaded. |
97 bool ScriptsMayHaveChanged() const; | 144 bool ScriptsMayHaveChanged() const; |
98 | 145 |
99 // Attempt to initiate a load. | |
100 void AttemptLoad(); | |
101 | |
102 // Called once we have finished loading the scripts on the file thread. | |
103 void OnScriptsLoaded(scoped_ptr<UserScriptList> user_scripts, | |
104 scoped_ptr<base::SharedMemory> shared_memory); | |
105 | |
106 // Sends the renderer process a new set of user scripts. If | 146 // Sends the renderer process a new set of user scripts. If |
107 // |changed_extensions| is not empty, this signals that only the scripts from | 147 // |changed_consumers| is not empty, this signals that only the scripts from |
108 // those extensions should be updated. Otherwise, all extensions will be | 148 // those consumers should be updated. Otherwise, all consumers will be |
109 // updated. | 149 // updated. |
110 void SendUpdate(content::RenderProcessHost* process, | 150 void SendUpdate(content::RenderProcessHost* process, |
111 base::SharedMemory* shared_memory, | 151 base::SharedMemory* shared_memory, |
112 const std::set<ExtensionId>& changed_extensions); | 152 const ConsumerIDSet& changed_consumers); |
113 | 153 |
114 // Add to |changed_extensions_| those extensions referred to by |scripts|. | 154 // Adds to |changed_consumers_| those consumers referred to by |scripts|. |
115 void ExpandChangedExtensions(const std::set<UserScript>& scripts); | 155 void ExpandChangedConsumers(const std::set<UserScript>& scripts); |
116 | |
117 // Update |extensions_info_| to contain info for each element of | |
118 // |changed_extensions_|. | |
119 void UpdateExtensionsInfo(); | |
120 | 156 |
121 bool is_loading() const { | 157 bool is_loading() const { |
122 // Ownership of |user_scripts_| is passed to the file thread when loading. | 158 // Ownership of |user_scripts_| is passed to the file thread when loading. |
123 return user_scripts_.get() == NULL; | 159 return user_scripts_.get() == NULL; |
124 } | 160 } |
125 | 161 |
126 // Manages our notification registrations. | 162 // Manages our notification registrations. |
127 content::NotificationRegistrar registrar_; | 163 content::NotificationRegistrar registrar_; |
128 | 164 |
129 // Contains the scripts that were found the last time scripts were updated. | 165 // Contains the scripts that were found the last time scripts were updated. |
130 scoped_ptr<base::SharedMemory> shared_memory_; | 166 scoped_ptr<base::SharedMemory> shared_memory_; |
131 | 167 |
132 // List of scripts from currently-installed extensions we should load. | |
133 scoped_ptr<UserScriptList> user_scripts_; | |
134 | |
135 // Maps extension info needed for localization to an extension ID. | |
136 ExtensionsInfo extensions_info_; | |
137 | |
138 // The mutually-exclusive sets of scripts that were added or removed since the | 168 // The mutually-exclusive sets of scripts that were added or removed since the |
139 // last script load. | 169 // last script load. |
140 std::set<UserScript> added_scripts_; | 170 std::set<UserScript> added_scripts_; |
141 std::set<UserScript> removed_scripts_; | 171 std::set<UserScript> removed_scripts_; |
142 | 172 |
143 // Indicates whether the the collection of scripts should be cleared before | 173 // Indicates whether the the collection of scripts should be cleared before |
144 // additions and removals on the next script load. | 174 // additions and removals on the next script load. |
145 bool clear_scripts_; | 175 bool clear_scripts_; |
146 | 176 |
147 // The IDs of the extensions which changed in the last update sent to the | |
148 // renderer. | |
149 ExtensionIdSet changed_extensions_; | |
150 | |
151 // If the extensions service has finished loading its initial set of | |
152 // extensions. | |
153 bool extension_system_ready_; | |
154 | |
155 // If list of user scripts is modified while we're loading it, we note | 177 // If list of user scripts is modified while we're loading it, we note |
156 // that we're currently mid-load and then start over again once the load | 178 // that we're currently mid-load and then start over again once the load |
157 // finishes. This boolean tracks whether another load is pending. | 179 // finishes. This boolean tracks whether another load is pending. |
158 bool pending_load_; | 180 bool pending_load_; |
159 | 181 |
160 // Whether or not we are currently loading. | 182 // Whether or not we are currently loading. |
161 bool is_loading_; | 183 bool is_loading_; |
162 | 184 |
163 // The profile for which the scripts managed here are installed. | |
164 Profile* profile_; | |
165 | |
166 // ID of the extension that owns these scripts, if any. This is only set to a | |
167 // non-empty value for declarative user script shared memory regions. | |
168 ExtensionId owner_extension_id_; | |
169 | |
170 ScopedObserver<ExtensionRegistry, ExtensionRegistryObserver> | |
171 extension_registry_observer_; | |
172 | |
173 base::WeakPtrFactory<UserScriptLoader> weak_factory_; | 185 base::WeakPtrFactory<UserScriptLoader> weak_factory_; |
174 | 186 |
175 DISALLOW_COPY_AND_ASSIGN(UserScriptLoader); | 187 DISALLOW_COPY_AND_ASSIGN(UserScriptLoader); |
176 }; | 188 }; |
177 | 189 |
178 } // namespace extensions | 190 } // namespace extensions |
179 | 191 |
180 #endif // CHROME_BROWSER_EXTENSIONS_USER_SCRIPT_LOADER_H_ | 192 #endif // CHROME_BROWSER_EXTENSIONS_USER_SCRIPT_LOADER_H_ |
OLD | NEW |