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

Side by Side Diff: chrome/browser/dom_ui/gpu_internals_ui.cc

Issue 5228004: Switch the about:gpu implementation from an about handler to dom_ui.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years 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 | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/dom_ui/gpu_internals_ui.h"
6
7 #include <algorithm>
8 #include <string>
9 #include <utility>
10 #include <vector>
11
12 #include "app/l10n_util.h"
13 #include "app/resource_bundle.h"
14 #include "base/command_line.h"
15 #include "base/file_util.h"
16 #include "base/message_loop.h"
17 #include "base/path_service.h"
18 #include "base/singleton.h"
19 #include "base/string_number_conversions.h"
20 #include "base/string_piece.h"
21 #include "base/utf_string_conversions.h"
22 #include "base/values.h"
23 #include "chrome/browser/browser_process.h"
24 #include "chrome/browser/browser_thread.h"
25 #include "chrome/browser/dom_ui/chrome_url_data_manager.h"
26 #include "chrome/browser/gpu_process_host.h"
27 #include "chrome/browser/gpu_process_host_ui_shim.h"
28 #include "chrome/browser/io_thread.h"
29 #include "chrome/browser/net/chrome_net_log.h"
30 #include "chrome/browser/net/connection_tester.h"
31 #include "chrome/browser/net/passive_log_collector.h"
32 #include "chrome/browser/net/url_fixer_upper.h"
33 #include "chrome/browser/platform_util.h"
34 #include "chrome/browser/profile.h"
35 #include "chrome/common/chrome_paths.h"
36 #include "chrome/common/chrome_version_info.h"
37 #include "chrome/common/jstemplate_builder.h"
38 #include "chrome/common/net/url_request_context_getter.h"
39 #include "chrome/common/url_constants.h"
40 #include "grit/browser_resources.h"
41 #include "grit/generated_resources.h"
42 #include "net/base/escape.h"
43
44
45 namespace {
46
47 class GpuHTMLSource : public ChromeURLDataManager::DataSource {
48 public:
49 GpuHTMLSource();
50
51 // Called when the network layer has requested a resource underneath
52 // the path we registered.
53 virtual void StartDataRequest(const std::string& path,
54 bool is_off_the_record,
55 int request_id);
56 virtual std::string GetMimeType(const std::string&) const;
57
58 private:
59 ~GpuHTMLSource() {}
60 DISALLOW_COPY_AND_ASSIGN(GpuHTMLSource);
61 };
62
63 // This class receives javascript messages from the renderer.
64 // Note that the DOMUI infrastructure runs on the UI thread, therefore all of
65 // this class's methods are expected to run on the UI thread.
66 //
67 // Since the network code we want to run lives on the IO thread, we proxy
68 // everything over to GpuMessageHandler::IOThreadImpl, which runs
69 // on the IO thread.
70 //
71 // TODO(eroman): Can we start on the IO thread to begin with?
72 class GpuMessageHandler
73 : public DOMMessageHandler,
74 public base::SupportsWeakPtr<GpuMessageHandler> {
75 public:
76 GpuMessageHandler();
77 virtual ~GpuMessageHandler();
78
79 // DOMMessageHandler implementation.
80 virtual DOMMessageHandler* Attach(DOMUI* dom_ui);
81 virtual void RegisterMessages();
82
83 // Mesages
84 void OnCallAsync(const ListValue* list);
85
86 // Submessages dispatched from OnCallAsync
87 Value* OnRequestGpuInfo(const ListValue* list);
88 Value* OnRequestClientInfo(const ListValue* list);
89
90 // Executes the javascript function |function_name| in the renderer, passing
91 // it the argument |value|.
92 void CallJavascriptFunction(const std::wstring& function_name,
93 const Value* value);
94
95 private:
96 bool collecting_graphics_info_;
97 DISALLOW_COPY_AND_ASSIGN(GpuMessageHandler);
98 };
99
100 ////////////////////////////////////////////////////////////////////////////////
101 //
102 // GpuHTMLSource
103 //
104 ////////////////////////////////////////////////////////////////////////////////
105
106 GpuHTMLSource::GpuHTMLSource()
107 : DataSource(chrome::kChromeUIGpuInternalsHost, MessageLoop::current()) {
108 }
109
110 void GpuHTMLSource::StartDataRequest(const std::string& path,
111 bool is_off_the_record,
112 int request_id) {
113 DictionaryValue localized_strings;
114 SetFontAndTextDirection(&localized_strings);
115
116 static const base::StringPiece gpu_html(
117 ResourceBundle::GetSharedInstance().GetRawDataResource(
118 IDR_GPU_INTERNALS_HTML));
119 std::string full_html(gpu_html.data(), gpu_html.size());
120 jstemplate_builder::AppendJsonHtml(&localized_strings, &full_html);
121 jstemplate_builder::AppendI18nTemplateSourceHtml(&full_html);
122 jstemplate_builder::AppendI18nTemplateProcessHtml(&full_html);
123 jstemplate_builder::AppendJsTemplateSourceHtml(&full_html);
124
125
126 scoped_refptr<RefCountedBytes> html_bytes(new RefCountedBytes);
127 html_bytes->data.resize(full_html.size());
128 std::copy(full_html.begin(), full_html.end(), html_bytes->data.begin());
129
130 SendResponse(request_id, html_bytes);
131 }
132
133 std::string GpuHTMLSource::GetMimeType(const std::string&) const {
134 return "text/html";
135 }
136
137 ////////////////////////////////////////////////////////////////////////////////
138 //
139 // GpuMessageHandler
140 //
141 ////////////////////////////////////////////////////////////////////////////////
142
143 GpuMessageHandler::GpuMessageHandler()
144 : collecting_graphics_info_(false) {
145 }
146
147 GpuMessageHandler::~GpuMessageHandler() {}
148
149 DOMMessageHandler* GpuMessageHandler::Attach(DOMUI* dom_ui) {
150 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
151 DOMMessageHandler* result = DOMMessageHandler::Attach(dom_ui);
152 return result;
153 }
154
155 /* BrowserBridge.callAsync prepends a requestID to these messages. */
156 void GpuMessageHandler::RegisterMessages() {
157 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
158
159 dom_ui_->RegisterMessageCallback(
160 "callAsync",
161 NewCallback(this, &GpuMessageHandler::OnCallAsync));
162 }
163
164 void GpuMessageHandler::OnCallAsync(const ListValue* args) {
165 DCHECK(args->GetSize() >= 2);
166 // unpack args into requestId, submessage and submessageArgs
167 bool ok;
168 Value* requestId;
169 ok = args->Get(0, &requestId);
170 DCHECK(ok);
171
172 std::string submessage;
173 ok = args->GetString(1, &submessage);
174 DCHECK(ok);
175
176 ListValue* submessageArgs = new ListValue();
177 for (size_t i = 2; i < args->GetSize(); ++i) {
178 Value* arg;
179 ok = args->Get(i, &arg);
180 DCHECK(ok);
181
182 Value* argCopy = arg->DeepCopy();
183 submessageArgs->Append(argCopy);
184 }
185
186 // call the submessage handler
187 Value* ret = NULL;
188 if (submessage == "requestGpuInfo") {
189 ret = OnRequestGpuInfo(submessageArgs);
190 } else if (submessage == "requestClientInfo") {
191 ret = OnRequestClientInfo(submessageArgs);
192 } else { // unrecognized submessage
193 NOTREACHED();
194 delete submessageArgs;
195 return;
196 }
197 delete submessageArgs;
198
199 // call BrowserBridge.onCallAsyncReply with result
200 if (ret) {
201 dom_ui_->CallJavascriptFunction(L"browserBridge.onCallAsyncReply",
202 *requestId,
203 *ret);
204 delete ret;
205 } else {
206 dom_ui_->CallJavascriptFunction(L"browserBridge.onCallAsyncReply",
207 *requestId);
208 }
209 }
210
211 Value* GpuMessageHandler::OnRequestClientInfo(const ListValue* list) {
212 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
213
214 DictionaryValue* dict = new DictionaryValue();
215
216 chrome::VersionInfo version_info;
217
218 if (!version_info.is_valid()) {
219 DLOG(ERROR) << "Unable to create chrome::VersionInfo";
220 } else {
221 // We have everything we need to send the right values.
222 dict->SetString("version", version_info.Version());
223 dict->SetString("cl", version_info.LastChange());
224 dict->SetString("version_mod",
225 platform_util::GetVersionStringModifier());
226 dict->SetString("official",
227 l10n_util::GetStringUTF16(
228 version_info.IsOfficialBuild() ?
229 IDS_ABOUT_VERSION_OFFICIAL
230 : IDS_ABOUT_VERSION_UNOFFICIAL));
231
232 dict->SetString("command_line",
233 CommandLine::ForCurrentProcess()->command_line_string());
234 }
235
236 return dict;
237 }
238
239 DictionaryValue* NewDescriptionValuePair(const std::string& desc,
240 const std::string& value) {
241 DictionaryValue* dict = new DictionaryValue();
242 dict->SetString("description", EscapeForHTML(desc));
243 dict->SetString("value", EscapeForHTML(value));
244 return dict;
245 }
246
247 DictionaryValue* NewDescriptionValuePair(const std::string& desc,
248 Value* value) {
249 DictionaryValue* dict = new DictionaryValue();
250 dict->SetString("description", EscapeForHTML(desc));
251 dict->Set("value", value);
252 return dict;
253 }
254
255 #if defined(OS_WIN)
256 // Output DxDiagNode tree as nested array of {description,value} pairs
257 ListValue* DxDiagNodeToList(const DxDiagNode& node) {
258 ListValue* list = new ListValue();
259 for (std::map<std::string, std::string>::const_iterator it =
260 node.values.begin();
261 it != node.values.end();
262 ++it) {
263 list->Append(NewDescriptionValuePair(it->first, it->second));
264 }
265
266 for (std::map<std::string, DxDiagNode>::const_iterator it =
267 node.children.begin();
268 it != node.children.end();
269 ++it) {
270 ListValue* sublist = DxDiagNodeToList(it->second);
271 list->Append(NewDescriptionValuePair(it->first, sublist));
272 }
273 return list;
274 }
275
276 #endif // OS_WIN
277
278 std::string VersionNumberToString(uint32 value) {
279 int hi = (value >> 8) & 0xff;
280 int low = value & 0xff;
281 return base::IntToString(hi) + "." + base::IntToString(low);
282 }
283
284 DictionaryValue* GpuInfoToDict(const GPUInfo& gpu_info) {
285 ListValue* basic_info = new ListValue();
286 basic_info->Append(NewDescriptionValuePair("Initialization time",
287 base::Int64ToString(gpu_info.initialization_time().InMilliseconds())));
288 basic_info->Append(NewDescriptionValuePair("Vendor Id",
289 base::StringPrintf("0x%04x", gpu_info.vendor_id())));
290 basic_info->Append(NewDescriptionValuePair("Device Id",
291 base::StringPrintf("0x%04x", gpu_info.device_id())));
292 basic_info->Append(NewDescriptionValuePair("Driver version",
293 WideToASCII(gpu_info.driver_version()).c_str()));
294 basic_info->Append(NewDescriptionValuePair("Pixel shader version",
295 VersionNumberToString(gpu_info.pixel_shader_version())));
296 basic_info->Append(NewDescriptionValuePair("Vertex shader version",
297 VersionNumberToString(gpu_info.vertex_shader_version())));
298 basic_info->Append(NewDescriptionValuePair("GL version",
299 VersionNumberToString(gpu_info.gl_version())));
300
301 DictionaryValue* info = new DictionaryValue();
302 info->Set("basic_info", basic_info);
303
304 #if defined(OS_WIN)
305 ListValue* dx_info = DxDiagNodeToList(gpu_info.dx_diagnostics());
306 info->Set("diagnostics", dx_info);
307 #endif
308
309 return info;
310 }
311
312 Value* GpuMessageHandler::OnRequestGpuInfo(const ListValue* list) {
313 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
314
315 // Get GPU Info.
316 GPUInfo gpu_info = GpuProcessHostUIShim::Get()->gpu_info();
317
318 std::string html;
319 if (gpu_info.progress() != GPUInfo::kComplete) {
320 if (!collecting_graphics_info_) {
321 GpuProcessHostUIShim::Get()->CollectGraphicsInfoAsynchronously();
322 collecting_graphics_info_ = true;
323 }
324 return NULL;
325 } else {
326 collecting_graphics_info_ = false;
327
328 return GpuInfoToDict(gpu_info);
329 }
330 }
331
332 } // namespace
333
334
335 ////////////////////////////////////////////////////////////////////////////////
336 //
337 // GpuUI
338 //
339 ////////////////////////////////////////////////////////////////////////////////
340
341 GpuUI::GpuUI(TabContents* contents) : DOMUI(contents) {
342 AddMessageHandler((new GpuMessageHandler())->Attach(this));
343
344 GpuHTMLSource* html_source = new GpuHTMLSource();
345
346 // Set up the chrome://gpu/ source.
347 BrowserThread::PostTask(
348 BrowserThread::IO, FROM_HERE,
349 NewRunnableMethod(
350 Singleton<ChromeURLDataManager>::get(),
351 &ChromeURLDataManager::AddDataSource,
352 make_scoped_refptr(html_source)));
353 }
354
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698