1 // Copyright (c) 2012 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.
5 #include "chrome/browser/ui/webui/flash_ui.h"
11 #include "base/bind.h"
12 #include "base/bind_helpers.h"
13 #include "base/i18n/time_formatting.h"
14 #include "base/memory/weak_ptr.h"
15 #include "base/strings/string16.h"
16 #include "base/strings/string_number_conversions.h"
17 #include "base/strings/stringprintf.h"
18 #include "base/strings/utf_string_conversions.h"
19 #include "base/threading/thread_restrictions.h"
20 #include "base/timer/timer.h"
21 #include "base/values.h"
22 #include "chrome/browser/crash_upload_list.h"
23 #include "chrome/browser/plugins/plugin_prefs.h"
24 #include "chrome/browser/profiles/profile.h"
25 #include "chrome/browser/ui/webui/crashes_ui.h"
26 #include "chrome/common/chrome_version_info.h"
27 #include "chrome/common/url_constants.h"
28 #include "content/public/browser/gpu_data_manager.h"
29 #include "content/public/browser/gpu_data_manager_observer.h"
30 #include "content/public/browser/plugin_service.h"
31 #include "content/public/browser/user_metrics.h"
32 #include "content/public/browser/web_contents.h"
33 #include "content/public/browser/web_ui.h"
34 #include "content/public/browser/web_ui_data_source.h"
35 #include "content/public/browser/web_ui_message_handler.h"
36 #include "content/public/common/content_constants.h"
37 #include "content/public/common/webplugininfo.h"
38 #include "gpu/config/gpu_info.h"
39 #include "grit/browser_resources.h"
40 #include "grit/chromium_strings.h"
41 #include "grit/generated_resources.h"
42 #include "grit/theme_resources.h"
43 #include "ui/base/l10n/l10n_util.h"
44 #include "ui/base/resource/resource_bundle.h"
47 #include "base/win/windows_version.h"
50 using base::ASCIIToUTF16
;
51 using base::UserMetricsAction
;
52 using content::GpuDataManager
;
53 using content::PluginService
;
54 using content::WebContents
;
55 using content::WebUIMessageHandler
;
59 const char kFlashPlugin
[] = "Flash plugin";
61 content::WebUIDataSource
* CreateFlashUIHTMLSource() {
62 content::WebUIDataSource
* source
=
63 content::WebUIDataSource::Create(chrome::kChromeUIFlashHost
);
65 source
->SetUseJsonJSFormatV2();
66 source
->AddLocalizedString("loadingMessage", IDS_FLASH_LOADING_MESSAGE
);
67 source
->AddLocalizedString("flashLongTitle", IDS_FLASH_TITLE_MESSAGE
);
68 source
->SetJsonPath("strings.js");
69 source
->AddResourcePath("about_flash.js", IDR_ABOUT_FLASH_JS
);
70 source
->SetDefaultResource(IDR_ABOUT_FLASH_HTML
);
74 const int kTimeout
= 8 * 1000; // 8 seconds.
76 ////////////////////////////////////////////////////////////////////////////////
80 ////////////////////////////////////////////////////////////////////////////////
82 // The handler for JavaScript messages for the about:flags page.
83 class FlashDOMHandler
: public WebUIMessageHandler
,
84 public CrashUploadList::Delegate
,
85 public content::GpuDataManagerObserver
{
88 virtual ~FlashDOMHandler();
90 // WebUIMessageHandler implementation.
91 virtual void RegisterMessages() OVERRIDE
;
93 // CrashUploadList::Delegate implementation.
94 virtual void OnUploadListAvailable() OVERRIDE
;
96 // GpuDataManager::Observer implementation.
97 virtual void OnGpuInfoUpdate() OVERRIDE
;
99 // Callback for the "requestFlashInfo" message.
100 void HandleRequestFlashInfo(const base::ListValue
* args
);
102 // Callback for the Flash plugin information.
103 void OnGotPlugins(const std::vector
<content::WebPluginInfo
>& plugins
);
106 // Called when we think we might have enough information to return data back
108 void MaybeRespondToPage();
110 // In certain cases we might not get called back from the GPU process so we
111 // set an upper limit on the time we wait. This function gets called when the
112 // time has passed. This actually doesn't prevent the rest of the information
113 // to appear later, the page will just reflow when more information becomes
117 // A timer to keep track of when the data fetching times out.
118 base::OneShotTimer
<FlashDOMHandler
> timeout_
;
121 scoped_refptr
<CrashUploadList
> upload_list_
;
123 // Whether the list of all crashes is available.
124 bool crash_list_available_
;
125 // Whether the page has requested data.
126 bool page_has_requested_data_
;
127 // Whether the GPU data has been collected.
129 // Whether the plugin information is ready.
130 bool has_plugin_info_
;
132 base::WeakPtrFactory
<FlashDOMHandler
> weak_ptr_factory_
;
134 DISALLOW_COPY_AND_ASSIGN(FlashDOMHandler
);
137 FlashDOMHandler::FlashDOMHandler()
138 : crash_list_available_(false),
139 page_has_requested_data_(false),
140 has_gpu_info_(false),
141 has_plugin_info_(false),
142 weak_ptr_factory_(this) {
143 // Request Crash data asynchronously.
144 upload_list_
= CrashUploadList::Create(this);
145 upload_list_
->LoadUploadListAsynchronously();
147 // Watch for changes in GPUInfo.
148 GpuDataManager::GetInstance()->AddObserver(this);
150 // Tell GpuDataManager it should have full GpuInfo. If the
151 // GPU process has not run yet, this will trigger its launch.
152 GpuDataManager::GetInstance()->RequestCompleteGpuInfoIfNeeded();
154 // GPU access might not be allowed at all, which will cause us not to get a
156 if (!GpuDataManager::GetInstance()->GpuAccessAllowed(NULL
))
159 PluginService::GetInstance()->GetPlugins(base::Bind(
160 &FlashDOMHandler::OnGotPlugins
, weak_ptr_factory_
.GetWeakPtr()));
162 // And lastly, we fire off a timer to make sure we never get stuck at the
163 // "Loading..." message.
164 timeout_
.Start(FROM_HERE
, base::TimeDelta::FromMilliseconds(kTimeout
),
165 this, &FlashDOMHandler::OnTimeout
);
168 FlashDOMHandler::~FlashDOMHandler() {
169 GpuDataManager::GetInstance()->RemoveObserver(this);
170 upload_list_
->ClearDelegate();
173 void FlashDOMHandler::RegisterMessages() {
174 web_ui()->RegisterMessageCallback("requestFlashInfo",
175 base::Bind(&FlashDOMHandler::HandleRequestFlashInfo
,
176 base::Unretained(this)));
179 void FlashDOMHandler::OnUploadListAvailable() {
180 crash_list_available_
= true;
181 MaybeRespondToPage();
184 void AddPair(base::ListValue
* list
,
185 const base::string16
& key
,
186 const base::string16
& value
) {
187 base::DictionaryValue
* results
= new base::DictionaryValue();
188 results
->SetString("key", key
);
189 results
->SetString("value", value
);
190 list
->Append(results
);
193 void AddPair(base::ListValue
* list
,
194 const base::string16
& key
,
195 const std::string
& value
) {
196 AddPair(list
, key
, ASCIIToUTF16(value
));
199 void FlashDOMHandler::HandleRequestFlashInfo(const base::ListValue
* args
) {
200 page_has_requested_data_
= true;
201 MaybeRespondToPage();
204 void FlashDOMHandler::OnGpuInfoUpdate() {
205 has_gpu_info_
= true;
206 MaybeRespondToPage();
209 void FlashDOMHandler::OnGotPlugins(
210 const std::vector
<content::WebPluginInfo
>& plugins
) {
211 has_plugin_info_
= true;
212 MaybeRespondToPage();
215 void FlashDOMHandler::OnTimeout() {
216 // We don't set page_has_requested_data_ because that is guaranteed to appear
217 // and we shouldn't be responding to the page before then.
218 has_gpu_info_
= true;
219 crash_list_available_
= true;
220 has_plugin_info_
= true;
221 MaybeRespondToPage();
224 void FlashDOMHandler::MaybeRespondToPage() {
225 // We don't reply until everything is ready. The page is showing a 'loading'
226 // message until then. If you add criteria to this list, please update the
227 // function OnTimeout() as well.
228 if (!page_has_requested_data_
|| !crash_list_available_
|| !has_gpu_info_
||
235 // This is code that runs only when the user types in about:flash. We don't
236 // need to jump through hoops to offload this to the IO thread.
237 base::ThreadRestrictions::ScopedAllowIO allow_io
;
239 // Obtain the Chrome version info.
240 chrome::VersionInfo version_info
;
242 base::ListValue
* list
= new base::ListValue();
244 // Chrome version information.
246 l10n_util::GetStringUTF16(IDS_PRODUCT_NAME
),
247 version_info
.Version() + " (" +
248 chrome::VersionInfo::GetVersionStringModifier() + ")");
250 // OS version information.
251 std::string os_label
= version_info
.OSType();
253 base::win::OSInfo
* os
= base::win::OSInfo::GetInstance();
254 switch (os
->version()) {
255 case base::win::VERSION_XP
: os_label
+= " XP"; break;
256 case base::win::VERSION_SERVER_2003
:
257 os_label
+= " Server 2003 or XP Pro 64 bit";
259 case base::win::VERSION_VISTA
: os_label
+= " Vista or Server 2008"; break;
260 case base::win::VERSION_WIN7
: os_label
+= " 7 or Server 2008 R2"; break;
261 case base::win::VERSION_WIN8
: os_label
+= " 8 or Server 2012"; break;
262 default: os_label
+= " UNKNOWN"; break;
264 os_label
+= " SP" + base::IntToString(os
->service_pack().major
);
265 if (os
->service_pack().minor
> 0)
266 os_label
+= "." + base::IntToString(os
->service_pack().minor
);
267 if (os
->architecture() == base::win::OSInfo::X64_ARCHITECTURE
)
268 os_label
+= " 64 bit";
270 AddPair(list
, l10n_util::GetStringUTF16(IDS_ABOUT_VERSION_OS
), os_label
);
272 // Obtain the version of the Flash plugins.
273 std::vector
<content::WebPluginInfo
> info_array
;
274 PluginService::GetInstance()->GetPluginInfoArray(
275 GURL(), content::kFlashPluginSwfMimeType
, false, &info_array
, NULL
);
276 if (info_array
.empty()) {
277 AddPair(list
, ASCIIToUTF16(kFlashPlugin
), "Not installed");
279 PluginPrefs
* plugin_prefs
=
280 PluginPrefs::GetForProfile(Profile::FromWebUI(web_ui())).get();
281 bool found_enabled
= false;
282 for (size_t i
= 0; i
< info_array
.size(); ++i
) {
283 base::string16 flash_version
= info_array
[i
].version
+ ASCIIToUTF16(" ") +
284 info_array
[i
].path
.LossyDisplayName();
285 if (plugin_prefs
->IsPluginEnabled(info_array
[i
])) {
286 // If we have already found an enabled Flash version, this one
289 flash_version
+= ASCIIToUTF16(" (not used)");
291 found_enabled
= true;
293 flash_version
+= ASCIIToUTF16(" (disabled)");
295 AddPair(list
, ASCIIToUTF16(kFlashPlugin
), flash_version
);
299 // Crash information.
300 AddPair(list
, base::string16(), "--- Crash data ---");
301 bool crash_reporting_enabled
= CrashesUI::CrashReportingUIEnabled();
302 if (crash_reporting_enabled
) {
303 std::vector
<CrashUploadList::UploadInfo
> crashes
;
304 upload_list_
->GetUploads(10, &crashes
);
306 for (std::vector
<CrashUploadList::UploadInfo
>::iterator i
= crashes
.begin();
307 i
!= crashes
.end(); ++i
) {
308 base::string16
crash_string(ASCIIToUTF16(i
->id
));
309 crash_string
+= ASCIIToUTF16(" ");
310 crash_string
+= base::TimeFormatFriendlyDateAndTime(i
->time
);
311 AddPair(list
, ASCIIToUTF16("crash id"), crash_string
);
314 AddPair(list
, ASCIIToUTF16("Crash Reporting"),
315 "Enable crash reporting to see crash IDs");
316 AddPair(list
, ASCIIToUTF16("For more details"),
317 chrome::kLearnMoreReportingURL
);
321 AddPair(list
, base::string16(), "--- GPU information ---");
322 gpu::GPUInfo gpu_info
= GpuDataManager::GetInstance()->GetGPUInfo();
325 if (!GpuDataManager::GetInstance()->GpuAccessAllowed(&reason
)) {
326 AddPair(list
, ASCIIToUTF16("WARNING:"),
327 "GPU access is not allowed: " + reason
);
330 const gpu::DxDiagNode
& node
= gpu_info
.dx_diagnostics
;
331 for (std::map
<std::string
, gpu::DxDiagNode
>::const_iterator it
=
332 node
.children
.begin();
333 it
!= node
.children
.end();
335 for (std::map
<std::string
, std::string
>::const_iterator it2
=
336 it
->second
.values
.begin();
337 it2
!= it
->second
.values
.end();
339 if (!it2
->second
.empty()) {
340 if (it2
->first
== "szDescription") {
341 AddPair(list
, ASCIIToUTF16("Graphics card"), it2
->second
);
342 } else if (it2
->first
== "szDriverNodeStrongName") {
343 AddPair(list
, ASCIIToUTF16("Driver name (strong)"), it2
->second
);
344 } else if (it2
->first
== "szDriverName") {
345 AddPair(list
, ASCIIToUTF16("Driver display name"), it2
->second
);
352 AddPair(list
, base::string16(), "--- GPU driver, more information ---");
354 ASCIIToUTF16("Vendor Id"),
355 base::StringPrintf("0x%04x", gpu_info
.gpu
.vendor_id
));
357 ASCIIToUTF16("Device Id"),
358 base::StringPrintf("0x%04x", gpu_info
.gpu
.device_id
));
359 AddPair(list
, ASCIIToUTF16("Driver vendor"), gpu_info
.driver_vendor
);
360 AddPair(list
, ASCIIToUTF16("Driver version"), gpu_info
.driver_version
);
361 AddPair(list
, ASCIIToUTF16("Driver date"), gpu_info
.driver_date
);
363 ASCIIToUTF16("Pixel shader version"),
364 gpu_info
.pixel_shader_version
);
366 ASCIIToUTF16("Vertex shader version"),
367 gpu_info
.vertex_shader_version
);
368 AddPair(list
, ASCIIToUTF16("GL version"), gpu_info
.gl_version
);
369 AddPair(list
, ASCIIToUTF16("GL_VENDOR"), gpu_info
.gl_vendor
);
370 AddPair(list
, ASCIIToUTF16("GL_RENDERER"), gpu_info
.gl_renderer
);
371 AddPair(list
, ASCIIToUTF16("GL_VERSION"), gpu_info
.gl_version_string
);
372 AddPair(list
, ASCIIToUTF16("GL_EXTENSIONS"), gpu_info
.gl_extensions
);
374 base::DictionaryValue flashInfo
;
375 flashInfo
.Set("flashInfo", list
);
376 web_ui()->CallJavascriptFunction("returnFlashInfo", flashInfo
);
381 ///////////////////////////////////////////////////////////////////////////////
385 ///////////////////////////////////////////////////////////////////////////////
387 FlashUI::FlashUI(content::WebUI
* web_ui
) : WebUIController(web_ui
) {
388 content::RecordAction(
389 UserMetricsAction("ViewAboutFlash"));
391 web_ui
->AddMessageHandler(new FlashDOMHandler());
393 // Set up the about:flash source.
394 Profile
* profile
= Profile::FromWebUI(web_ui
);
395 content::WebUIDataSource::Add(profile
, CreateFlashUIHTMLSource());
399 base::RefCountedMemory
* FlashUI::GetFaviconResourceBytes(
400 ui::ScaleFactor scale_factor
) {
401 // Use the default icon for now.