Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(99)

Side by Side Diff: chrome/browser/extensions/user_script_loader.h

Issue 822453002: Introduce HostID and de-couple Extensions from "script injection System" [browser side] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Another round of comments of Devlin@. Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_id.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>;
Devlin 2015/01/21 23:25:20 nit: can we move these usings to the protected sec
Xi Han 2015/01/22 17:19:36 I would love to move them, but they are used by so
46 using ConsumersInfo = std::map<ConsumerID, PathAndDefaultLocale>;
47
48 using SubstitutionMap = std::map<std::string, std::string>;
49 using LoadUserScriptsContentFunction =
50 base::Callback<bool(const ConsumerID&,
51 UserScript::File*,
52 const SubstitutionMap*,
53 const 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,
60 const ConsumerID& consumer_id,
61 const scoped_refptr<ContentVerifier>& content_verifier);
62 ~UserScriptLoader() override;
63
55 // A wrapper around the method to load user scripts, which is normally run on 64 // A wrapper around the method to load user scripts, which is normally run on
56 // the file thread. Exposed only for tests. 65 // the file thread. Exposed only for tests.
57 static void LoadScriptsForTest(UserScriptList* user_scripts); 66 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 67
64 // Add |scripts| to the set of scripts managed by this loader. 68 // Add |scripts| to the set of scripts managed by this loader.
65 void AddScripts(const std::set<UserScript>& scripts); 69 void AddScripts(const std::set<UserScript>& scripts);
66 70
67 // Remove |scripts| from the set of scripts managed by this loader. 71 // Remove |scripts| from the set of scripts managed by this loader.
68 void RemoveScripts(const std::set<UserScript>& scripts); 72 void RemoveScripts(const std::set<UserScript>& scripts);
69 73
70 // Clears the set of scripts managed by this loader. 74 // Clears the set of scripts managed by this loader.
71 void ClearScripts(); 75 void ClearScripts();
72 76
73 // Initiates procedure to start loading scripts on the file thread. 77 // Initiates procedure to start loading scripts on the file thread.
74 void StartLoad(); 78 void StartLoad();
75 79
76 // Return true if we have any scripts ready. 80 // Returns true if we have any scripts ready.
77 bool scripts_ready() const { return shared_memory_.get() != NULL; } 81 bool scripts_ready() const { return shared_memory_.get() != NULL; }
78 82
83 protected:
84 using ConsumerIDSet = std::set<ConsumerID>;
Devlin 2015/01/21 23:25:20 nit: I don't think this adds anything for readabil
Xi Han 2015/01/22 17:19:36 Done.
85
86 // Updates |consumers_info_| to contain info for each element of
87 // |changed_consumers_|.
88 virtual void UpdateConsumersInfo(const ConsumerIDSet& changed_consumers) = 0;
89
90 // Returns a function pointer of a static funcion to load user scripts.
91 // Base and derived classes can specify their ways to load.
Devlin 2015/01/21 23:25:20 nit: The base class doesn't specify its way to loa
Xi Han 2015/01/22 17:19:36 Done.
92 virtual LoadUserScriptsContentFunction GetLoadUserScriptsFunction() = 0;
93
94 // Adds the |consumer_id, location| to the |consumers_info_| map.
95 // Only inserts the entry to the map when the given consumer_id doesn't
96 // exists.
97 void AddConsumerInfo(const ConsumerID& consumer_id,
98 const PathAndDefaultLocale& location);
99
100 // Removes the entries with the given host_id from the |consumers_info_| map.
101 void RemoveConsumerInfo(const std::string& host_id);
102
103 // Sets the flag if the initial set of consumers has finished loading; if it's
104 // set to be true, calls AttempLoad() to bootstrap.
105 void SetReady(bool ready);
106
107 Profile* profile() const { return profile_; }
108 const ConsumerID& consumer_id() const { return consumer_id_; }
109
79 private: 110 private:
80 // content::NotificationObserver implementation. 111 // content::NotificationObserver implementation.
81 void Observe(int type, 112 void Observe(int type,
82 const content::NotificationSource& source, 113 const content::NotificationSource& source,
83 const content::NotificationDetails& details) override; 114 const content::NotificationDetails& details) override;
84 115
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(), 116 // Returns whether or not it is possible that calls to AddScripts(),
95 // RemoveScripts(), and/or ClearScripts() have caused any real change in the 117 // RemoveScripts(), and/or ClearScripts() have caused any real change in the
96 // set of scripts to be loaded. 118 // set of scripts to be loaded.
97 bool ScriptsMayHaveChanged() const; 119 bool ScriptsMayHaveChanged() const;
98 120
99 // Attempt to initiate a load. 121 // Attempts to initiate a load.
100 void AttemptLoad(); 122 void AttemptLoad();
101 123
102 // Called once we have finished loading the scripts on the file thread. 124 // Called once we have finished loading the scripts on the file thread.
103 void OnScriptsLoaded(scoped_ptr<UserScriptList> user_scripts, 125 void OnScriptsLoaded(scoped_ptr<UserScriptList> user_scripts,
104 scoped_ptr<base::SharedMemory> shared_memory); 126 scoped_ptr<base::SharedMemory> shared_memory);
105 127
106 // Sends the renderer process a new set of user scripts. If 128 // Sends the renderer process a new set of user scripts. If
107 // |changed_extensions| is not empty, this signals that only the scripts from 129 // |changed_consumers| is not empty, this signals that only the scripts from
108 // those extensions should be updated. Otherwise, all extensions will be 130 // those consumers should be updated. Otherwise, all consumers will be
109 // updated. 131 // updated.
110 void SendUpdate(content::RenderProcessHost* process, 132 void SendUpdate(content::RenderProcessHost* process,
111 base::SharedMemory* shared_memory, 133 base::SharedMemory* shared_memory,
112 const std::set<ExtensionId>& changed_extensions); 134 const ConsumerIDSet& changed_consumers);
113 135
114 // Add to |changed_extensions_| those extensions referred to by |scripts|. 136 // Adds to |changed_consumers_| those consumers referred to by |scripts|.
115 void ExpandChangedExtensions(const std::set<UserScript>& scripts); 137 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 138
121 bool is_loading() const { 139 bool is_loading() const {
122 // Ownership of |user_scripts_| is passed to the file thread when loading. 140 // Ownership of |user_scripts_| is passed to the file thread when loading.
123 return user_scripts_.get() == NULL; 141 return user_scripts_.get() == NULL;
124 } 142 }
125 143
126 // Manages our notification registrations. 144 // Manages our notification registrations.
127 content::NotificationRegistrar registrar_; 145 content::NotificationRegistrar registrar_;
128 146
129 // Contains the scripts that were found the last time scripts were updated. 147 // Contains the scripts that were found the last time scripts were updated.
130 scoped_ptr<base::SharedMemory> shared_memory_; 148 scoped_ptr<base::SharedMemory> shared_memory_;
131 149
132 // List of scripts from currently-installed extensions we should load. 150 // List of scripts from currently-installed extensions we should load.
133 scoped_ptr<UserScriptList> user_scripts_; 151 scoped_ptr<UserScriptList> user_scripts_;
134 152
135 // Maps extension info needed for localization to an extension ID. 153 // Maps consumer info needed for localization to a host ID.
136 ExtensionsInfo extensions_info_; 154 ConsumersInfo consumers_info_;
137 155
138 // The mutually-exclusive sets of scripts that were added or removed since the 156 // The mutually-exclusive sets of scripts that were added or removed since the
139 // last script load. 157 // last script load.
140 std::set<UserScript> added_scripts_; 158 std::set<UserScript> added_scripts_;
141 std::set<UserScript> removed_scripts_; 159 std::set<UserScript> removed_scripts_;
142 160
143 // Indicates whether the the collection of scripts should be cleared before 161 // Indicates whether the the collection of scripts should be cleared before
144 // additions and removals on the next script load. 162 // additions and removals on the next script load.
145 bool clear_scripts_; 163 bool clear_scripts_;
146 164
147 // The IDs of the extensions which changed in the last update sent to the 165 // The IDs of the extensions which changed in the last update sent to the
148 // renderer. 166 // renderer.
149 ExtensionIdSet changed_extensions_; 167 ConsumerIDSet changed_consumers_;
150 168
151 // If the extensions service has finished loading its initial set of 169 // If the initial set of consumers has finished loading.
152 // extensions. 170 bool ready_;
153 bool extension_system_ready_;
154 171
155 // If list of user scripts is modified while we're loading it, we note 172 // 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 173 // that we're currently mid-load and then start over again once the load
157 // finishes. This boolean tracks whether another load is pending. 174 // finishes. This boolean tracks whether another load is pending.
158 bool pending_load_; 175 bool pending_load_;
159 176
160 // Whether or not we are currently loading. 177 // Whether or not we are currently loading.
161 bool is_loading_; 178 bool is_loading_;
162 179
163 // The profile for which the scripts managed here are installed. 180 // The profile for which the scripts managed here are installed.
164 Profile* profile_; 181 Profile* profile_;
165 182
166 // ID of the extension that owns these scripts, if any. This is only set to a 183 // ID of the consumer that owns these scripts, if any. This is only set to a
167 // non-empty value for declarative user script shared memory regions. 184 // non-empty value for declarative user script shared memory regions.
168 ExtensionId owner_extension_id_; 185 ConsumerID consumer_id_;
169 186
170 ScopedObserver<ExtensionRegistry, ExtensionRegistryObserver> 187 // Manages content verification of the loaded user scripts.
171 extension_registry_observer_; 188 scoped_refptr<ContentVerifier> content_verifier_;
172 189
173 base::WeakPtrFactory<UserScriptLoader> weak_factory_; 190 base::WeakPtrFactory<UserScriptLoader> weak_factory_;
174 191
175 DISALLOW_COPY_AND_ASSIGN(UserScriptLoader); 192 DISALLOW_COPY_AND_ASSIGN(UserScriptLoader);
176 }; 193 };
177 194
178 } // namespace extensions 195 } // namespace extensions
179 196
180 #endif // CHROME_BROWSER_EXTENSIONS_USER_SCRIPT_LOADER_H_ 197 #endif // CHROME_BROWSER_EXTENSIONS_USER_SCRIPT_LOADER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698