OLD | NEW |
(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 |
| 43 |
| 44 namespace { |
| 45 |
| 46 class GpuHTMLSource : public ChromeURLDataManager::DataSource { |
| 47 public: |
| 48 GpuHTMLSource(); |
| 49 |
| 50 // Called when the network layer has requested a resource underneath |
| 51 // the path we registered. |
| 52 virtual void StartDataRequest(const std::string& path, |
| 53 bool is_off_the_record, |
| 54 int request_id); |
| 55 virtual std::string GetMimeType(const std::string&) const; |
| 56 |
| 57 private: |
| 58 ~GpuHTMLSource() {} |
| 59 DISALLOW_COPY_AND_ASSIGN(GpuHTMLSource); |
| 60 }; |
| 61 |
| 62 // This class receives javascript messages from the renderer. |
| 63 // Note that the DOMUI infrastructure runs on the UI thread, therefore all of |
| 64 // this class's methods are expected to run on the UI thread. |
| 65 // |
| 66 // Since the network code we want to run lives on the IO thread, we proxy |
| 67 // everything over to GpuMessageHandler::IOThreadImpl, which runs |
| 68 // on the IO thread. |
| 69 // |
| 70 // TODO(eroman): Can we start on the IO thread to begin with? |
| 71 class GpuMessageHandler |
| 72 : public DOMMessageHandler, |
| 73 public base::SupportsWeakPtr<GpuMessageHandler> { |
| 74 public: |
| 75 GpuMessageHandler(); |
| 76 virtual ~GpuMessageHandler(); |
| 77 |
| 78 // DOMMessageHandler implementation. |
| 79 virtual DOMMessageHandler* Attach(DOMUI* dom_ui); |
| 80 virtual void RegisterMessages(); |
| 81 |
| 82 // Mesages |
| 83 void OnCallAsync(const ListValue* list); |
| 84 |
| 85 // Submessages dispatched from OnCallAsync |
| 86 Value* OnRequestGpuInfo(const ListValue* list); |
| 87 Value* OnRequestClientInfo(const ListValue* list); |
| 88 |
| 89 // Executes the javascript function |function_name| in the renderer, passing |
| 90 // it the argument |value|. |
| 91 void CallJavascriptFunction(const std::wstring& function_name, |
| 92 const Value* value); |
| 93 |
| 94 private: |
| 95 bool collecting_graphics_info_; |
| 96 DISALLOW_COPY_AND_ASSIGN(GpuMessageHandler); |
| 97 }; |
| 98 |
| 99 //////////////////////////////////////////////////////////////////////////////// |
| 100 // |
| 101 // GpuHTMLSource |
| 102 // |
| 103 //////////////////////////////////////////////////////////////////////////////// |
| 104 |
| 105 GpuHTMLSource::GpuHTMLSource() |
| 106 : DataSource(chrome::kChromeUIGpuInternalsHost, MessageLoop::current()) { |
| 107 } |
| 108 |
| 109 void GpuHTMLSource::StartDataRequest(const std::string& path, |
| 110 bool is_off_the_record, |
| 111 int request_id) { |
| 112 DictionaryValue* localized_strings = new DictionaryValue(); |
| 113 SetFontAndTextDirection(localized_strings); |
| 114 |
| 115 static const base::StringPiece options_html( |
| 116 ResourceBundle::GetSharedInstance().GetRawDataResource( |
| 117 IDR_GPU_INTERNALS_HTML)); |
| 118 const std::string full_html = jstemplate_builder::GetI18nTemplateHtml( |
| 119 options_html, localized_strings); |
| 120 |
| 121 scoped_refptr<RefCountedBytes> html_bytes(new RefCountedBytes); |
| 122 html_bytes->data.resize(full_html.size()); |
| 123 std::copy(full_html.begin(), full_html.end(), html_bytes->data.begin()); |
| 124 |
| 125 SendResponse(request_id, html_bytes); |
| 126 } |
| 127 |
| 128 std::string GpuHTMLSource::GetMimeType(const std::string&) const { |
| 129 return "text/html"; |
| 130 } |
| 131 |
| 132 //////////////////////////////////////////////////////////////////////////////// |
| 133 // |
| 134 // GpuMessageHandler |
| 135 // |
| 136 //////////////////////////////////////////////////////////////////////////////// |
| 137 |
| 138 GpuMessageHandler::GpuMessageHandler() |
| 139 : collecting_graphics_info_(false) { |
| 140 } |
| 141 |
| 142 GpuMessageHandler::~GpuMessageHandler() {} |
| 143 |
| 144 DOMMessageHandler* GpuMessageHandler::Attach(DOMUI* dom_ui) { |
| 145 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
| 146 DOMMessageHandler* result = DOMMessageHandler::Attach(dom_ui); |
| 147 return result; |
| 148 } |
| 149 |
| 150 /* BrowserBridge.callAsync prepends a requestID to these messages. */ |
| 151 void GpuMessageHandler::RegisterMessages() { |
| 152 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
| 153 |
| 154 dom_ui_->RegisterMessageCallback( |
| 155 "callAsync", |
| 156 NewCallback(this, &GpuMessageHandler::OnCallAsync)); |
| 157 } |
| 158 |
| 159 void GpuMessageHandler::OnCallAsync(const ListValue* args) { |
| 160 DCHECK(args->GetSize() >= 2); |
| 161 // unpack args into requestId, submessage and submessageArgs |
| 162 bool ok; |
| 163 Value* requestId; |
| 164 ok = args->Get(0, &requestId); |
| 165 DCHECK(ok); |
| 166 |
| 167 std::string submessage; |
| 168 ok = args->GetString(1, &submessage); |
| 169 DCHECK(ok); |
| 170 |
| 171 ListValue* submessageArgs = new ListValue(); |
| 172 for (size_t i = 2; i < args->GetSize(); ++i) { |
| 173 Value* arg; |
| 174 ok = args->Get(i, &arg); |
| 175 DCHECK(ok); |
| 176 |
| 177 Value* argCopy = arg->DeepCopy(); |
| 178 submessageArgs->Append(argCopy); |
| 179 } |
| 180 |
| 181 // call the submessage handler |
| 182 Value* ret = NULL; |
| 183 if (submessage == "requestGpuInfo") { |
| 184 ret = OnRequestGpuInfo(submessageArgs); |
| 185 } else if (submessage == "requestClientInfo") { |
| 186 ret = OnRequestClientInfo(submessageArgs); |
| 187 } else { // unrecognized submessage |
| 188 NOTREACHED(); |
| 189 delete submessageArgs; |
| 190 return; |
| 191 } |
| 192 delete submessageArgs; |
| 193 |
| 194 // call BrowserBridge.onCallAsyncReply with result |
| 195 if (ret) { |
| 196 dom_ui_->CallJavascriptFunction(L"g_browser.onCallAsyncReply", |
| 197 *requestId, |
| 198 *ret); |
| 199 delete ret; |
| 200 } else { |
| 201 dom_ui_->CallJavascriptFunction(L"g_browser.onCallAsyncReply", |
| 202 *requestId); |
| 203 } |
| 204 } |
| 205 |
| 206 Value* GpuMessageHandler::OnRequestClientInfo(const ListValue* list) { |
| 207 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
| 208 |
| 209 DictionaryValue* dict = new DictionaryValue(); |
| 210 |
| 211 chrome::VersionInfo version_info; |
| 212 |
| 213 if (!version_info.is_valid()) { |
| 214 DLOG(ERROR) << "Unable to create chrome::VersionInfo"; |
| 215 } else { |
| 216 // We have everything we need to send the right values. |
| 217 dict->SetString("version", version_info.Version()); |
| 218 dict->SetString("cl", version_info.LastChange()); |
| 219 dict->SetString("version_mod", |
| 220 platform_util::GetVersionStringModifier()); |
| 221 dict->SetString("official", |
| 222 l10n_util::GetStringUTF16( |
| 223 version_info.IsOfficialBuild() ? |
| 224 IDS_ABOUT_VERSION_OFFICIAL |
| 225 : IDS_ABOUT_VERSION_UNOFFICIAL)); |
| 226 |
| 227 dict->SetString("command_line", |
| 228 CommandLine::ForCurrentProcess()->command_line_string()); |
| 229 } |
| 230 |
| 231 return dict; |
| 232 } |
| 233 |
| 234 |
| 235 #if defined(OS_WIN) |
| 236 // Output DxDiagNode tree as HTML tables and nested HTML unordered list |
| 237 // elements. |
| 238 DictionaryValue* DxDiagNodeToDict(const DxDiagNode& node) { |
| 239 DictionaryValue* dict = new DictionaryValue(); |
| 240 for (std::map<std::string, std::string>::const_iterator it = |
| 241 node.values.begin(); |
| 242 it != node.values.end(); |
| 243 ++it) { |
| 244 dict->SetString(EscapeForHTML(it->first), EscapeForHTML(it->second)); |
| 245 } |
| 246 |
| 247 for (std::map<std::string, DxDiagNode>::const_iterator it = |
| 248 node.children.begin(); |
| 249 it != node.children.end(); |
| 250 ++it) { |
| 251 DictionaryValue* subdict = DxDiagNodeToDict(it->second); |
| 252 dict->Set(EscapeForHTML(it->first), subdict); |
| 253 } |
| 254 return dict; |
| 255 } |
| 256 |
| 257 #endif // OS_WIN |
| 258 |
| 259 std::string VersionNumberToString(uint32 value) { |
| 260 int hi = (value >> 8) & 0xff; |
| 261 int low = value & 0xff; |
| 262 return base::IntToString(hi) + "." + base::IntToString(low); |
| 263 } |
| 264 |
| 265 DictionaryValue* GpuInfoToDict(const GPUInfo& gpu_info) { |
| 266 DictionaryValue* info = new DictionaryValue(); |
| 267 info->SetString("Initialization time", |
| 268 base::Int64ToString(gpu_info.initialization_time().InMilliseconds())); |
| 269 info->SetString("Vendor Id", |
| 270 base::StringPrintf("0x%04x", gpu_info.vendor_id())); |
| 271 info->SetString("Device Id", |
| 272 base::StringPrintf("0x%04x", gpu_info.device_id())); |
| 273 info->SetString("Driver version", |
| 274 WideToASCII(gpu_info.driver_version()).c_str()); |
| 275 info->SetString("Pixel shader version", |
| 276 VersionNumberToString(gpu_info.pixel_shader_version())); |
| 277 info->SetString("Vertex shader version", |
| 278 VersionNumberToString(gpu_info.vertex_shader_version())); |
| 279 info->SetString("GL version", VersionNumberToString(gpu_info.gl_version())); |
| 280 |
| 281 DictionaryValue* dict = new DictionaryValue(); |
| 282 dict->Set("Basic GPU Information", info); |
| 283 |
| 284 #if defined(OS_WIN) |
| 285 DictionaryValue* dx_info = DxDiagNodeToDict(gpu_info.dx_diagnostics()); |
| 286 dict->Set("DirectX diagnostics", dx_info); |
| 287 #endif |
| 288 |
| 289 return dict; |
| 290 } |
| 291 |
| 292 Value* GpuMessageHandler::OnRequestGpuInfo(const ListValue* list) { |
| 293 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
| 294 |
| 295 // Get GPU Info. |
| 296 GPUInfo gpu_info = GpuProcessHostUIShim::Get()->gpu_info(); |
| 297 |
| 298 std::string html; |
| 299 if (gpu_info.progress() != GPUInfo::kComplete) { |
| 300 if (!collecting_graphics_info_) { |
| 301 GpuProcessHostUIShim::Get()->CollectGraphicsInfoAsynchronously(); |
| 302 collecting_graphics_info_ = true; |
| 303 } |
| 304 return NULL; |
| 305 } else { |
| 306 collecting_graphics_info_ = false; |
| 307 |
| 308 return GpuInfoToDict(gpu_info); |
| 309 } |
| 310 } |
| 311 |
| 312 } // namespace |
| 313 |
| 314 |
| 315 //////////////////////////////////////////////////////////////////////////////// |
| 316 // |
| 317 // GpuUI |
| 318 // |
| 319 //////////////////////////////////////////////////////////////////////////////// |
| 320 |
| 321 GpuUI::GpuUI(TabContents* contents) : DOMUI(contents) { |
| 322 AddMessageHandler((new GpuMessageHandler())->Attach(this)); |
| 323 |
| 324 GpuHTMLSource* html_source = new GpuHTMLSource(); |
| 325 |
| 326 // Set up the chrome://gpu/ source. |
| 327 BrowserThread::PostTask( |
| 328 BrowserThread::IO, FROM_HERE, |
| 329 NewRunnableMethod( |
| 330 Singleton<ChromeURLDataManager>::get(), |
| 331 &ChromeURLDataManager::AddDataSource, |
| 332 make_scoped_refptr(html_source))); |
| 333 } |
| 334 |
OLD | NEW |