Chromium Code Reviews| Index: chrome/browser/ui/webui/net_export_ui.cc |
| =================================================================== |
| --- chrome/browser/ui/webui/net_export_ui.cc (revision 0) |
| +++ chrome/browser/ui/webui/net_export_ui.cc (revision 0) |
| @@ -0,0 +1,242 @@ |
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "chrome/browser/ui/webui/net_export_ui.h" |
| + |
| +#include <string> |
| + |
| +#include "base/bind.h" |
| +#include "base/memory/scoped_ptr.h" |
| +#include "base/string_util.h" |
| +#include "base/utf_string_conversions.h" |
| +#include "base/values.h" |
| +#include "chrome/browser/browser_process.h" |
| +#include "chrome/browser/net/chrome_net_log.h" |
| +#include "chrome/browser/net/net_log_temp_file.h" |
| +#include "chrome/browser/profiles/profile.h" |
| +#include "chrome/common/url_constants.h" |
| +#include "content/public/browser/browser_thread.h" |
| +#include "content/public/browser/url_data_source.h" |
| +#include "content/public/browser/web_contents.h" |
| +#include "content/public/browser/web_ui.h" |
| +#include "content/public/browser/web_ui_data_source.h" |
| +#include "content/public/browser/web_ui_message_handler.h" |
| +#include "grit/browser_resources.h" |
| + |
| +#if defined(OS_ANDROID) |
| +#include "chrome/browser/android/intent_helper.h" |
| +#endif |
| + |
| +using content::BrowserThread; |
| +using content::WebContents; |
| +using content::WebUIMessageHandler; |
| + |
| +namespace { |
| + |
| +content::WebUIDataSource* CreateNetExportHTMLSource() { |
| + content::WebUIDataSource* source = |
| + content::WebUIDataSource::Create(chrome::kChromeUINetExportHost); |
| + |
| + source->SetJsonPath("strings.js"); |
| + source->AddResourcePath("net_export.js", IDR_NET_EXPORT_JS); |
| + source->SetDefaultResource(IDR_NET_EXPORT_HTML); |
| + return source; |
| +} |
| + |
| +// This class receives javascript messages from the renderer. |
| +// Note that the WebUI infrastructure runs on the UI thread, therefore all of |
| +// this class's public methods are expected to run on the UI thread. All static |
| +// functions except SendEmail run on FILE_USER_BLOCKING thread. |
| +class NetExportMessageHandler |
| + : public WebUIMessageHandler, |
| + public base::SupportsWeakPtr<NetExportMessageHandler> { |
| + public: |
| + NetExportMessageHandler(); |
| + virtual ~NetExportMessageHandler(); |
| + |
| + // WebUIMessageHandler implementation. |
| + virtual void RegisterMessages() OVERRIDE; |
| + |
| + // Messages. |
| + void OnGetExportNetLogInfo(const ListValue* list); |
| + void OnStartNetLog(const ListValue* list); |
| + void OnStopNetLog(const ListValue* list); |
| + void OnSendNetLog(const ListValue* list); |
| + |
| + private: |
| + // Calls NetLogTempFile's ProcessCommand with DO_START and DO_STOP commands. |
| + static void ProcessNetLogCommand( |
| + base::WeakPtr<NetExportMessageHandler> net_export_message_handler, |
| + NetLogTempFile* net_log_temp_file, |
| + NetLogTempFile::Command command); |
| + |
| + static FilePath GetNetLogFileName(NetLogTempFile* net_log_temp_file); |
|
James Hawkins
2013/01/29 22:48:34
nit: Document method.
ramant (doing other things)
2013/01/30 02:35:42
Done.
|
| + |
| + // Helper function to send state/file information from NetLogTempFile. |
|
James Hawkins
2013/01/29 22:48:34
Optional nit: No need to actually say 'Helper func
ramant (doing other things)
2013/01/30 02:35:42
Done.
|
| + static void SendExportNetLogInfo( |
| + base::WeakPtr<NetExportMessageHandler> net_export_message_handler, |
| + NetLogTempFile* net_log_temp_file); |
| + |
| + // Helper function that runs on UI thread to send NetLog data via email. |
| + static void SendEmail(const FilePath& file_to_send); |
| + |
| + // Helper that calls g_exportBrowserBridge.receivedData in the renderer, |
| + // passing in |arg|. Takes ownership of |arg|. |
| + void SendJavascriptCommand(Value* arg); |
| + |
| + // Cache of g_browser_process->net_log()->net_log_temp_file(). |
| + NetLogTempFile* net_log_temp_file_; |
| + |
| + base::WeakPtrFactory<NetExportMessageHandler> weak_ptr_factory_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(NetExportMessageHandler); |
| +}; |
| + |
| +NetExportMessageHandler::NetExportMessageHandler() |
| + : net_log_temp_file_(g_browser_process->net_log()->net_log_temp_file()), |
| + ALLOW_THIS_IN_INITIALIZER_LIST(weak_ptr_factory_(this)) { |
| +} |
| + |
| +NetExportMessageHandler::~NetExportMessageHandler() { |
| + // Cancel any in-progress requests to collect net_log into temporary file. |
| + BrowserThread::PostTask( |
| + BrowserThread::FILE_USER_BLOCKING, |
| + FROM_HERE, |
| + base::Bind(&NetLogTempFile::ProcessCommand, |
| + base::Unretained(net_log_temp_file_), |
| + NetLogTempFile::DO_STOP)); |
| +} |
| + |
| +void NetExportMessageHandler::RegisterMessages() { |
| + DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
| + |
| + web_ui()->RegisterMessageCallback( |
| + "getExportNetLogInfo", |
| + base::Bind(&NetExportMessageHandler::OnGetExportNetLogInfo, |
| + base::Unretained(this))); |
| + web_ui()->RegisterMessageCallback( |
| + "startNetLog", |
| + base::Bind(&NetExportMessageHandler::OnStartNetLog, |
| + base::Unretained(this))); |
| + web_ui()->RegisterMessageCallback( |
| + "stopNetLog", |
| + base::Bind(&NetExportMessageHandler::OnStopNetLog, |
| + base::Unretained(this))); |
| + web_ui()->RegisterMessageCallback( |
| + "sendNetLog", |
| + base::Bind(&NetExportMessageHandler::OnSendNetLog, |
| + base::Unretained(this))); |
| +} |
| + |
| +void NetExportMessageHandler::OnGetExportNetLogInfo(const ListValue* list) { |
| + BrowserThread::PostTask( |
| + BrowserThread::FILE_USER_BLOCKING, |
| + FROM_HERE, |
| + base::Bind(&NetExportMessageHandler::SendExportNetLogInfo, |
| + weak_ptr_factory_.GetWeakPtr(), |
| + net_log_temp_file_)); |
| +} |
| + |
| +void NetExportMessageHandler::OnStartNetLog(const ListValue* list) { |
| + ProcessNetLogCommand(weak_ptr_factory_.GetWeakPtr(), |
| + net_log_temp_file_, |
| + NetLogTempFile::DO_START); |
| +} |
| + |
| +void NetExportMessageHandler::OnStopNetLog(const ListValue* list) { |
| + ProcessNetLogCommand(weak_ptr_factory_.GetWeakPtr(), |
| + net_log_temp_file_, |
| + NetLogTempFile::DO_STOP); |
| +} |
| + |
| +void NetExportMessageHandler::OnSendNetLog(const ListValue* list) { |
| + content::BrowserThread::PostTaskAndReplyWithResult( |
| + content::BrowserThread::FILE_USER_BLOCKING, |
| + FROM_HERE, |
| + base::Bind(&NetExportMessageHandler::GetNetLogFileName, |
| + base::Unretained(net_log_temp_file_)), |
| + base::Bind(&NetExportMessageHandler::SendEmail)); |
| +} |
| + |
| +// static |
| +void NetExportMessageHandler::ProcessNetLogCommand( |
| + base::WeakPtr<NetExportMessageHandler> net_export_message_handler, |
| + NetLogTempFile* net_log_temp_file, |
| + NetLogTempFile::Command command) { |
| + if (!BrowserThread::CurrentlyOn(BrowserThread::FILE_USER_BLOCKING)) { |
| + BrowserThread::PostTask( |
| + BrowserThread::FILE_USER_BLOCKING, |
| + FROM_HERE, |
| + base::Bind(&NetExportMessageHandler::ProcessNetLogCommand, |
| + net_export_message_handler, |
| + net_log_temp_file, |
| + command)); |
| + return; |
| + } |
| + |
| + DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE_USER_BLOCKING)); |
| + net_log_temp_file->ProcessCommand(command); |
| + SendExportNetLogInfo(net_export_message_handler, net_log_temp_file); |
| +} |
| + |
| +// static |
| +FilePath NetExportMessageHandler::GetNetLogFileName( |
| + NetLogTempFile* net_log_temp_file) { |
| + DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE_USER_BLOCKING)); |
| + FilePath net_export_file_path; |
| + net_log_temp_file->GetFilePath(&net_export_file_path); |
| + return net_export_file_path; |
| +} |
| + |
| +// static |
| +void NetExportMessageHandler::SendExportNetLogInfo( |
| + base::WeakPtr<NetExportMessageHandler> net_export_message_handler, |
| + NetLogTempFile* net_log_temp_file) { |
| + DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE_USER_BLOCKING)); |
| + Value* value = net_log_temp_file->GetState(); |
| + if (!BrowserThread::PostTask( |
| + BrowserThread::UI, FROM_HERE, |
| + base::Bind(&NetExportMessageHandler::SendJavascriptCommand, |
| + net_export_message_handler, |
| + value))) { |
| + // Failed posting the task, avoid leaking. |
| + delete value; |
| + } |
| +} |
| + |
| +// static |
| +void NetExportMessageHandler::SendEmail(const FilePath& file_to_send) { |
| + if (file_to_send.empty()) |
| + return; |
| + DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
| + |
| +#if defined(OS_ANDROID) |
| + std::string email; |
| + std::string subject = "net_internals_log"; |
| + std::string title = "Issue number: "; |
| + std::string body = |
| + "Please add some informative text about the network issues."; |
| + FilePath::StringType file_to_attach(file_to_send.value()); |
| + chrome::android::SendEmail( |
| + UTF8ToUTF16(email), UTF8ToUTF16(subject), |
| + UTF8ToUTF16(body), UTF8ToUTF16(title), UTF8ToUTF16(file_to_attach)); |
| +#endif |
| +} |
| + |
| +void NetExportMessageHandler::SendJavascriptCommand(Value* arg) { |
| + scoped_ptr<Value> value(arg); |
| + DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
| + web_ui()->CallJavascriptFunction("g_exportBrowserBridge.receivedData", |
| + *arg); |
| +} |
| + |
| +} // namespace |
| + |
| +NetExportUI::NetExportUI(content::WebUI* web_ui) : WebUIController(web_ui) { |
| + web_ui->AddMessageHandler(new NetExportMessageHandler()); |
| + |
| + // Set up the chrome://net-export/ source. |
| + Profile* profile = Profile::FromWebUI(web_ui); |
| + content::WebUIDataSource::Add(profile, CreateNetExportHTMLSource()); |
| +} |