OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #include "chrome/renderer/user_script_slave.h" | 5 #include "chrome/renderer/user_script_slave.h" |
6 | 6 |
7 #include "base/histogram.h" | 7 #include "base/histogram.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/perftimer.h" | 9 #include "base/perftimer.h" |
10 #include "base/pickle.h" | 10 #include "base/pickle.h" |
11 #include "base/shared_memory.h" | 11 #include "base/shared_memory.h" |
12 #include "base/string_util.h" | 12 #include "base/string_util.h" |
13 #include "chrome/common/resource_bundle.h" | 13 #include "chrome/common/resource_bundle.h" |
14 #include "googleurl/src/gurl.h" | 14 #include "googleurl/src/gurl.h" |
15 #include "third_party/WebKit/WebKit/chromium/public/WebScriptSource.h" | 15 #include "third_party/WebKit/WebKit/chromium/public/WebScriptSource.h" |
16 #include "webkit/glue/webframe.h" | 16 #include "webkit/glue/webframe.h" |
17 | 17 |
18 #include "grit/renderer_resources.h" | 18 #include "grit/renderer_resources.h" |
19 | 19 |
20 using WebKit::WebScriptSource; | 20 using WebKit::WebScriptSource; |
21 using WebKit::WebString; | 21 using WebKit::WebString; |
22 | 22 |
23 // These two strings are injected before and after the Greasemonkey API and | 23 // These two strings are injected before and after the Greasemonkey API and |
24 // user script to wrap it in an anonymous scope. | 24 // user script to wrap it in an anonymous scope. |
25 static const char kUserScriptHead[] = "(function (unsafeWindow) {\n"; | 25 static const char kUserScriptHead[] = "(function (unsafeWindow) {\n"; |
26 static const char kUserScriptTail[] = "\n})(window);"; | 26 static const char kUserScriptTail[] = "\n})(window);"; |
27 | 27 |
28 static const char kInitSelf[] = "chromium.self = new chromium.Extension('%s')"; | |
29 | |
30 UserScriptSlave::UserScriptSlave() | 28 UserScriptSlave::UserScriptSlave() |
31 : shared_memory_(NULL), | 29 : shared_memory_(NULL), |
32 script_deleter_(&scripts_), | 30 script_deleter_(&scripts_), |
33 user_script_start_line_(0) { | 31 user_script_start_line_(0) { |
34 // TODO: Only windows supports resources and only windows supports user | 32 // TODO: Only windows supports resources and only windows supports user |
35 // scrips, so only load the Greasemonkey API on windows. Fix this when | 33 // scrips, so only load the Greasemonkey API on windows. Fix this when |
36 // better cross platofrm support is available. | 34 // better cross platofrm support is available. |
37 #if defined(OS_WIN) | 35 #if defined(OS_WIN) |
38 api_js_ = ResourceBundle::GetSharedInstance().GetRawDataResource( | 36 api_js_ = ResourceBundle::GetSharedInstance().GetRawDataResource( |
39 IDR_GREASEMONKEY_API_JS); | 37 IDR_GREASEMONKEY_API_JS); |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 } | 103 } |
106 | 104 |
107 return true; | 105 return true; |
108 } | 106 } |
109 | 107 |
110 bool UserScriptSlave::InjectScripts(WebFrame* frame, | 108 bool UserScriptSlave::InjectScripts(WebFrame* frame, |
111 UserScript::RunLocation location) { | 109 UserScript::RunLocation location) { |
112 PerfTimer timer; | 110 PerfTimer timer; |
113 int num_matched = 0; | 111 int num_matched = 0; |
114 | 112 |
| 113 std::vector<WebScriptSource> sources; |
115 for (size_t i = 0; i < scripts_.size(); ++i) { | 114 for (size_t i = 0; i < scripts_.size(); ++i) { |
116 std::vector<WebScriptSource> sources; | |
117 UserScript* script = scripts_[i]; | 115 UserScript* script = scripts_[i]; |
118 if (!script->MatchesUrl(frame->GetURL())) | 116 if (!script->MatchesUrl(frame->GetURL())) |
119 continue; // This frame doesn't match the script url pattern, skip it. | 117 continue; // This frame doesn't match the script url pattern, skip it. |
120 | 118 |
121 ++num_matched; | 119 ++num_matched; |
122 // CSS files are always injected on document start before js scripts. | 120 // CSS files are always injected on document start before js scripts. |
123 if (location == UserScript::DOCUMENT_START) { | 121 if (location == UserScript::DOCUMENT_START) { |
124 for (size_t j = 0; j < script->css_scripts().size(); ++j) { | 122 for (size_t j = 0; j < script->css_scripts().size(); ++j) { |
125 UserScript::File& file = script->css_scripts()[j]; | 123 UserScript::File& file = script->css_scripts()[j]; |
126 frame->InsertCSSStyles(file.GetContent().as_string()); | 124 frame->InsertCSSStyles(file.GetContent().as_string()); |
127 } | 125 } |
128 } | 126 } |
129 if (script->run_location() == location) { | 127 if (script->run_location() == location) { |
130 for (size_t j = 0; j < script->js_scripts().size(); ++j) { | 128 for (size_t j = 0; j < script->js_scripts().size(); ++j) { |
131 UserScript::File &file = script->js_scripts()[j]; | 129 UserScript::File &file = script->js_scripts()[j]; |
132 std::string content = file.GetContent().as_string(); | |
133 | |
134 // We add this dumb function wrapper for standalone user script to | |
135 // emulate what Greasemonkey does. | |
136 if (script->is_standalone()) { | |
137 content.insert(0, kUserScriptHead); | |
138 content += kUserScriptTail; | |
139 } | |
140 sources.push_back(WebScriptSource( | 130 sources.push_back(WebScriptSource( |
141 WebString::fromUTF8(content.c_str(), content.length()), | 131 WebString::fromUTF8(file.GetContent()), file.url())); |
142 file.url())); | |
143 } | 132 } |
144 } | 133 } |
145 | |
146 if (!sources.empty()) { | |
147 if (script->is_standalone()) { | |
148 // For standalone scripts, we try to emulate the Greasemonkey API. | |
149 sources.insert(sources.begin(), | |
150 WebScriptSource(WebString::fromUTF8(api_js_.as_string()))); | |
151 } else { | |
152 // Setup chromium.self to contain an Extension object with the correct | |
153 // ID. | |
154 sources.insert(sources.begin(), | |
155 WebScriptSource(WebString::fromUTF8( | |
156 StringPrintf(kInitSelf, script->extension_id().c_str())))); | |
157 } | |
158 | |
159 frame->ExecuteScriptInNewContext(&sources.front(), sources.size()); | |
160 } | |
161 } | 134 } |
162 | 135 |
| 136 if (!sources.empty()) { |
| 137 sources.insert( |
| 138 sources.begin(), WebScriptSource(WebString::fromUTF8(api_js_))); |
| 139 frame->ExecuteScriptInNewContext(&sources.front(), sources.size()); |
| 140 } |
| 141 |
163 // Log debug info. | 142 // Log debug info. |
164 if (location == UserScript::DOCUMENT_START) { | 143 if (location == UserScript::DOCUMENT_START) { |
165 HISTOGRAM_COUNTS_100("UserScripts:DocStart:Count", num_matched); | 144 HISTOGRAM_COUNTS_100("UserScripts:DocStart:Count", num_matched); |
166 HISTOGRAM_TIMES("UserScripts:DocStart:Time", timer.Elapsed()); | 145 HISTOGRAM_TIMES("UserScripts:DocStart:Time", timer.Elapsed()); |
167 } else { | 146 } else { |
168 HISTOGRAM_COUNTS_100("UserScripts:DocEnd:Count", num_matched); | 147 HISTOGRAM_COUNTS_100("UserScripts:DocEnd:Count", num_matched); |
169 HISTOGRAM_TIMES("UserScripts:DocEnd:Time", timer.Elapsed()); | 148 HISTOGRAM_TIMES("UserScripts:DocEnd:Time", timer.Elapsed()); |
170 } | 149 } |
171 | 150 |
172 LOG(INFO) << "Injected " << num_matched << " user scripts into " << | 151 LOG(INFO) << "Injected " << num_matched << " user scripts into " << |
173 frame->GetURL().spec(); | 152 frame->GetURL().spec(); |
174 return true; | 153 return true; |
175 } | 154 } |
OLD | NEW |