2013-04-03 20:20:59 +02:00
|
|
|
// Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights
|
2012-04-03 03:34:16 +02:00
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "cefclient/client_handler.h"
|
|
|
|
#include <stdio.h>
|
2013-04-16 21:23:00 +02:00
|
|
|
#include <algorithm>
|
|
|
|
#include <set>
|
2012-04-03 03:34:16 +02:00
|
|
|
#include <sstream>
|
|
|
|
#include <string>
|
2013-04-16 21:23:00 +02:00
|
|
|
#include <vector>
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "include/cef_browser.h"
|
|
|
|
#include "include/cef_frame.h"
|
2012-06-26 18:47:05 +02:00
|
|
|
#include "include/cef_path_util.h"
|
|
|
|
#include "include/cef_process_util.h"
|
|
|
|
#include "include/cef_runnable.h"
|
2012-10-18 00:45:49 +02:00
|
|
|
#include "include/cef_trace.h"
|
2013-04-03 20:20:59 +02:00
|
|
|
#include "include/cef_url.h"
|
2012-04-12 22:21:50 +02:00
|
|
|
#include "include/wrapper/cef_stream_resource_handler.h"
|
|
|
|
#include "cefclient/binding_test.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "cefclient/cefclient.h"
|
2012-06-11 17:52:49 +02:00
|
|
|
#include "cefclient/client_renderer.h"
|
2012-06-26 18:47:05 +02:00
|
|
|
#include "cefclient/client_switches.h"
|
2012-10-16 21:28:07 +02:00
|
|
|
#include "cefclient/dialog_test.h"
|
2012-04-27 23:19:06 +02:00
|
|
|
#include "cefclient/dom_test.h"
|
2012-04-12 22:21:50 +02:00
|
|
|
#include "cefclient/resource_util.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "cefclient/string_util.h"
|
2013-04-01 19:57:28 +02:00
|
|
|
#include "cefclient/window_test.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2013-04-03 20:20:59 +02:00
|
|
|
namespace {
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2012-04-19 22:31:46 +02:00
|
|
|
// Custom menu command Ids.
|
|
|
|
enum client_menu_ids {
|
|
|
|
CLIENT_ID_SHOW_DEVTOOLS = MENU_ID_USER_FIRST,
|
2013-11-08 17:06:06 +01:00
|
|
|
CLIENT_ID_CLOSE_DEVTOOLS,
|
2012-04-19 22:31:46 +02:00
|
|
|
CLIENT_ID_TESTMENU_SUBMENU,
|
|
|
|
CLIENT_ID_TESTMENU_CHECKITEM,
|
|
|
|
CLIENT_ID_TESTMENU_RADIOITEM1,
|
|
|
|
CLIENT_ID_TESTMENU_RADIOITEM2,
|
|
|
|
CLIENT_ID_TESTMENU_RADIOITEM3,
|
|
|
|
};
|
|
|
|
|
2013-04-03 20:20:59 +02:00
|
|
|
const char kTestOrigin[] = "http://tests/";
|
|
|
|
|
|
|
|
// Retrieve the file name and mime type based on the specified url.
|
|
|
|
bool ParseTestUrl(const std::string& url,
|
|
|
|
std::string* file_name,
|
|
|
|
std::string* mime_type) {
|
|
|
|
// Retrieve the path component.
|
|
|
|
CefURLParts parts;
|
|
|
|
CefParseURL(url, parts);
|
|
|
|
std::string file = CefString(&parts.path);
|
|
|
|
if (file.size() < 2)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Remove the leading slash.
|
|
|
|
file = file.substr(1);
|
|
|
|
|
|
|
|
// Verify that the file name is valid.
|
|
|
|
for(size_t i = 0; i < file.size(); ++i) {
|
|
|
|
const char c = file[i];
|
|
|
|
if (!isalpha(c) && !isdigit(c) && c != '_' && c != '.')
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Determine the mime type based on the file extension, if any.
|
|
|
|
size_t pos = file.rfind(".");
|
|
|
|
if (pos != std::string::npos) {
|
|
|
|
std::string ext = file.substr(pos + 1);
|
|
|
|
if (ext == "html")
|
|
|
|
*mime_type = "text/html";
|
|
|
|
else if (ext == "png")
|
|
|
|
*mime_type = "image/png";
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
// Default to an html extension if none is specified.
|
|
|
|
*mime_type = "text/html";
|
|
|
|
file += ".html";
|
|
|
|
}
|
|
|
|
|
|
|
|
*file_name = file;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2013-03-19 23:59:33 +01:00
|
|
|
int ClientHandler::m_BrowserCount = 0;
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
ClientHandler::ClientHandler()
|
|
|
|
: m_MainHwnd(NULL),
|
|
|
|
m_BrowserId(0),
|
2013-03-19 23:59:33 +01:00
|
|
|
m_bIsClosing(false),
|
2012-04-03 03:34:16 +02:00
|
|
|
m_EditHwnd(NULL),
|
|
|
|
m_BackHwnd(NULL),
|
|
|
|
m_ForwardHwnd(NULL),
|
|
|
|
m_StopHwnd(NULL),
|
|
|
|
m_ReloadHwnd(NULL),
|
2012-06-11 17:52:49 +02:00
|
|
|
m_bFocusOnEditableField(false) {
|
2012-06-26 18:47:05 +02:00
|
|
|
// Read command line settings.
|
|
|
|
CefRefPtr<CefCommandLine> command_line =
|
|
|
|
CefCommandLine::GetGlobalCommandLine();
|
|
|
|
|
|
|
|
if (command_line->HasSwitch(cefclient::kUrl))
|
|
|
|
m_StartupURL = command_line->GetSwitchValue(cefclient::kUrl);
|
|
|
|
if (m_StartupURL.empty())
|
|
|
|
m_StartupURL = "http://www.google.com/";
|
|
|
|
|
2013-04-05 19:05:37 +02:00
|
|
|
m_bMouseCursorChangeDisabled =
|
|
|
|
command_line->HasSwitch(cefclient::kMouseCursorChangeDisabled);
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ClientHandler::~ClientHandler() {
|
|
|
|
}
|
|
|
|
|
2012-06-11 22:03:49 +02:00
|
|
|
bool ClientHandler::OnProcessMessageReceived(
|
2012-04-12 22:21:50 +02:00
|
|
|
CefRefPtr<CefBrowser> browser,
|
|
|
|
CefProcessId source_process,
|
|
|
|
CefRefPtr<CefProcessMessage> message) {
|
2014-01-28 00:31:03 +01:00
|
|
|
if (message_router_->OnProcessMessageReceived(browser, source_process,
|
|
|
|
message)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-06-11 17:52:49 +02:00
|
|
|
// Check for messages from the client renderer.
|
|
|
|
std::string message_name = message->GetName();
|
|
|
|
if (message_name == client_renderer::kFocusedNodeChangedMessage) {
|
|
|
|
// A message is sent from ClientRenderDelegate to tell us whether the
|
|
|
|
// currently focused DOM node is editable. Use of |m_bFocusOnEditableField|
|
|
|
|
// is redundant with CefKeyEvent.focus_on_editable_field in OnPreKeyEvent
|
|
|
|
// but is useful for demonstration purposes.
|
|
|
|
m_bFocusOnEditableField = message->GetArgumentList()->GetBool(0);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-01-28 00:31:03 +01:00
|
|
|
return false;
|
2012-04-12 22:21:50 +02:00
|
|
|
}
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2012-06-11 17:52:49 +02:00
|
|
|
void ClientHandler::OnBeforeContextMenu(
|
|
|
|
CefRefPtr<CefBrowser> browser,
|
|
|
|
CefRefPtr<CefFrame> frame,
|
|
|
|
CefRefPtr<CefContextMenuParams> params,
|
|
|
|
CefRefPtr<CefMenuModel> model) {
|
|
|
|
if ((params->GetTypeFlags() & (CM_TYPEFLAG_PAGE | CM_TYPEFLAG_FRAME)) != 0) {
|
|
|
|
// Add a separator if the menu already has items.
|
|
|
|
if (model->GetCount() > 0)
|
2012-08-29 18:58:40 +02:00
|
|
|
model->AddSeparator();
|
2012-06-11 17:52:49 +02:00
|
|
|
|
2013-11-08 17:06:06 +01:00
|
|
|
// Add DevTools items to all context menus.
|
2012-06-11 17:52:49 +02:00
|
|
|
model->AddItem(CLIENT_ID_SHOW_DEVTOOLS, "&Show DevTools");
|
2013-11-08 17:06:06 +01:00
|
|
|
model->AddItem(CLIENT_ID_CLOSE_DEVTOOLS, "Close DevTools");
|
2012-06-11 17:52:49 +02:00
|
|
|
|
|
|
|
// Test context menu features.
|
|
|
|
BuildTestMenu(model);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ClientHandler::OnContextMenuCommand(
|
|
|
|
CefRefPtr<CefBrowser> browser,
|
|
|
|
CefRefPtr<CefFrame> frame,
|
|
|
|
CefRefPtr<CefContextMenuParams> params,
|
|
|
|
int command_id,
|
|
|
|
EventFlags event_flags) {
|
|
|
|
switch (command_id) {
|
|
|
|
case CLIENT_ID_SHOW_DEVTOOLS:
|
|
|
|
ShowDevTools(browser);
|
|
|
|
return true;
|
2013-11-08 17:06:06 +01:00
|
|
|
case CLIENT_ID_CLOSE_DEVTOOLS:
|
|
|
|
CloseDevTools(browser);
|
|
|
|
return true;
|
2012-06-11 17:52:49 +02:00
|
|
|
default: // Allow default handling, if any.
|
|
|
|
return ExecuteTestMenu(command_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ClientHandler::OnConsoleMessage(CefRefPtr<CefBrowser> browser,
|
|
|
|
const CefString& message,
|
|
|
|
const CefString& source,
|
|
|
|
int line) {
|
|
|
|
REQUIRE_UI_THREAD();
|
|
|
|
|
|
|
|
bool first_message;
|
|
|
|
std::string logFile;
|
|
|
|
|
|
|
|
{
|
|
|
|
AutoLock lock_scope(this);
|
|
|
|
|
|
|
|
first_message = m_LogFile.empty();
|
|
|
|
if (first_message) {
|
|
|
|
std::stringstream ss;
|
|
|
|
ss << AppGetWorkingDirectory();
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
ss << "\\";
|
|
|
|
#else
|
|
|
|
ss << "/";
|
|
|
|
#endif
|
|
|
|
ss << "console.log";
|
|
|
|
m_LogFile = ss.str();
|
|
|
|
}
|
|
|
|
logFile = m_LogFile;
|
|
|
|
}
|
|
|
|
|
|
|
|
FILE* file = fopen(logFile.c_str(), "a");
|
|
|
|
if (file) {
|
|
|
|
std::stringstream ss;
|
|
|
|
ss << "Message: " << std::string(message) << "\r\nSource: " <<
|
|
|
|
std::string(source) << "\r\nLine: " << line <<
|
|
|
|
"\r\n-----------------------\r\n";
|
|
|
|
fputs(ss.str().c_str(), file);
|
|
|
|
fclose(file);
|
|
|
|
|
|
|
|
if (first_message)
|
|
|
|
SendNotification(NOTIFY_CONSOLE_MESSAGE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-06-28 19:21:18 +02:00
|
|
|
void ClientHandler::OnBeforeDownload(
|
|
|
|
CefRefPtr<CefBrowser> browser,
|
|
|
|
CefRefPtr<CefDownloadItem> download_item,
|
|
|
|
const CefString& suggested_name,
|
|
|
|
CefRefPtr<CefBeforeDownloadCallback> callback) {
|
|
|
|
REQUIRE_UI_THREAD();
|
|
|
|
// Continue the download and show the "Save As" dialog.
|
|
|
|
callback->Continue(GetDownloadPath(suggested_name), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientHandler::OnDownloadUpdated(
|
|
|
|
CefRefPtr<CefBrowser> browser,
|
|
|
|
CefRefPtr<CefDownloadItem> download_item,
|
|
|
|
CefRefPtr<CefDownloadItemCallback> callback) {
|
|
|
|
REQUIRE_UI_THREAD();
|
|
|
|
if (download_item->IsComplete()) {
|
|
|
|
SetLastDownloadFile(download_item->GetFullPath());
|
|
|
|
SendNotification(NOTIFY_DOWNLOAD_COMPLETE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-24 17:45:58 +02:00
|
|
|
bool ClientHandler::OnDragEnter(CefRefPtr<CefBrowser> browser,
|
|
|
|
CefRefPtr<CefDragData> dragData,
|
|
|
|
DragOperationsMask mask) {
|
|
|
|
REQUIRE_UI_THREAD();
|
|
|
|
|
|
|
|
// Forbid dragging of link URLs.
|
2013-07-24 22:15:18 +02:00
|
|
|
if (mask & DRAG_OPERATION_LINK)
|
2013-06-24 17:45:58 +02:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-06-11 17:52:49 +02:00
|
|
|
void ClientHandler::OnRequestGeolocationPermission(
|
|
|
|
CefRefPtr<CefBrowser> browser,
|
|
|
|
const CefString& requesting_url,
|
|
|
|
int request_id,
|
|
|
|
CefRefPtr<CefGeolocationCallback> callback) {
|
|
|
|
// Allow geolocation access from all websites.
|
|
|
|
callback->Continue(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ClientHandler::OnPreKeyEvent(CefRefPtr<CefBrowser> browser,
|
|
|
|
const CefKeyEvent& event,
|
|
|
|
CefEventHandle os_event,
|
|
|
|
bool* is_keyboard_shortcut) {
|
|
|
|
if (!event.focus_on_editable_field && event.windows_key_code == 0x20) {
|
|
|
|
// Special handling for the space character when an input element does not
|
|
|
|
// have focus. Handling the event in OnPreKeyEvent() keeps the event from
|
|
|
|
// being processed in the renderer. If we instead handled the event in the
|
|
|
|
// OnKeyEvent() method the space key would cause the window to scroll in
|
|
|
|
// addition to showing the alert box.
|
|
|
|
if (event.type == KEYEVENT_RAWKEYDOWN) {
|
|
|
|
browser->GetMainFrame()->ExecuteJavaScript(
|
|
|
|
"alert('You pressed the space bar!');", "", 0);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-02-09 23:38:24 +01:00
|
|
|
bool ClientHandler::OnBeforePopup(CefRefPtr<CefBrowser> browser,
|
|
|
|
CefRefPtr<CefFrame> frame,
|
|
|
|
const CefString& target_url,
|
|
|
|
const CefString& target_frame_name,
|
|
|
|
const CefPopupFeatures& popupFeatures,
|
|
|
|
CefWindowInfo& windowInfo,
|
|
|
|
CefRefPtr<CefClient>& client,
|
|
|
|
CefBrowserSettings& settings,
|
|
|
|
bool* no_javascript_access) {
|
2013-02-08 01:07:41 +01:00
|
|
|
if (browser->GetHost()->IsWindowRenderingDisabled()) {
|
|
|
|
// Cancel popups in off-screen rendering mode.
|
2013-02-09 23:38:24 +01:00
|
|
|
return true;
|
2013-02-08 01:07:41 +01:00
|
|
|
}
|
2013-02-09 23:38:24 +01:00
|
|
|
return false;
|
2013-02-08 01:07:41 +01:00
|
|
|
}
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
void ClientHandler::OnAfterCreated(CefRefPtr<CefBrowser> browser) {
|
|
|
|
REQUIRE_UI_THREAD();
|
|
|
|
|
2014-02-10 19:53:56 +01:00
|
|
|
if (!message_router_) {
|
|
|
|
// Create the browser-side router for query handling.
|
|
|
|
CefMessageRouterConfig config;
|
|
|
|
message_router_ = CefMessageRouterBrowserSide::Create(config);
|
|
|
|
|
|
|
|
// Register handlers with the router.
|
|
|
|
CreateMessageHandlers(message_handler_set_);
|
|
|
|
MessageHandlerSet::const_iterator it = message_handler_set_.begin();
|
|
|
|
for (; it != message_handler_set_.end(); ++it)
|
|
|
|
message_router_->AddHandler(*(it), false);
|
|
|
|
}
|
|
|
|
|
2013-04-05 19:05:37 +02:00
|
|
|
// Disable mouse cursor change if requested via the command-line flag.
|
|
|
|
if (m_bMouseCursorChangeDisabled)
|
|
|
|
browser->GetHost()->SetMouseCursorChangeDisabled(true);
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
AutoLock lock_scope(this);
|
|
|
|
if (!m_Browser.get()) {
|
|
|
|
// We need to keep the main child window, but not popup windows
|
|
|
|
m_Browser = browser;
|
|
|
|
m_BrowserId = browser->GetIdentifier();
|
2013-04-03 21:29:47 +02:00
|
|
|
} else if (browser->IsPopup()) {
|
|
|
|
// Add to the list of popup browsers.
|
|
|
|
m_PopupBrowsers.push_back(browser);
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
2013-03-19 23:59:33 +01:00
|
|
|
|
|
|
|
m_BrowserCount++;
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ClientHandler::DoClose(CefRefPtr<CefBrowser> browser) {
|
|
|
|
REQUIRE_UI_THREAD();
|
|
|
|
|
2013-03-19 23:59:33 +01:00
|
|
|
// Closing the main window requires special handling. See the DoClose()
|
|
|
|
// documentation in the CEF header for a detailed destription of this
|
|
|
|
// process.
|
2012-04-03 03:34:16 +02:00
|
|
|
if (m_BrowserId == browser->GetIdentifier()) {
|
2013-03-19 23:59:33 +01:00
|
|
|
// Set a flag to indicate that the window close should be allowed.
|
|
|
|
m_bIsClosing = true;
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2013-03-19 23:59:33 +01:00
|
|
|
// Allow the close. For windowed browsers this will result in the OS close
|
|
|
|
// event being sent.
|
2012-04-03 03:34:16 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientHandler::OnBeforeClose(CefRefPtr<CefBrowser> browser) {
|
|
|
|
REQUIRE_UI_THREAD();
|
|
|
|
|
2014-01-28 00:31:03 +01:00
|
|
|
message_router_->OnBeforeClose(browser);
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
if (m_BrowserId == browser->GetIdentifier()) {
|
|
|
|
// Free the browser pointer so that the browser can be destroyed
|
|
|
|
m_Browser = NULL;
|
2012-12-04 02:16:13 +01:00
|
|
|
|
|
|
|
if (m_OSRHandler.get()) {
|
|
|
|
m_OSRHandler->OnBeforeClose(browser);
|
|
|
|
m_OSRHandler = NULL;
|
|
|
|
}
|
2012-05-18 17:04:56 +02:00
|
|
|
} else if (browser->IsPopup()) {
|
2013-04-03 21:29:47 +02:00
|
|
|
// Remove from the browser popup list.
|
|
|
|
BrowserList::iterator bit = m_PopupBrowsers.begin();
|
|
|
|
for (; bit != m_PopupBrowsers.end(); ++bit) {
|
|
|
|
if ((*bit)->IsSame(browser)) {
|
|
|
|
m_PopupBrowsers.erase(bit);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
2013-03-19 23:59:33 +01:00
|
|
|
|
|
|
|
if (--m_BrowserCount == 0) {
|
2014-01-28 00:31:03 +01:00
|
|
|
// All browser windows have closed.
|
|
|
|
// Remove and delete message router handlers.
|
|
|
|
MessageHandlerSet::const_iterator it = message_handler_set_.begin();
|
|
|
|
for (; it != message_handler_set_.end(); ++it) {
|
|
|
|
message_router_->RemoveHandler(*(it));
|
|
|
|
delete *(it);
|
|
|
|
}
|
|
|
|
message_handler_set_.clear();
|
|
|
|
message_router_ = NULL;
|
|
|
|
|
|
|
|
// Quit the application message loop.
|
2013-03-19 23:59:33 +01:00
|
|
|
AppQuitMessageLoop();
|
|
|
|
}
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2013-09-12 22:34:18 +02:00
|
|
|
void ClientHandler::OnLoadingStateChange(CefRefPtr<CefBrowser> browser,
|
|
|
|
bool isLoading,
|
|
|
|
bool canGoBack,
|
|
|
|
bool canGoForward) {
|
2012-04-03 03:34:16 +02:00
|
|
|
REQUIRE_UI_THREAD();
|
|
|
|
|
2013-09-12 22:34:18 +02:00
|
|
|
SetLoading(isLoading);
|
|
|
|
SetNavState(canGoBack, canGoForward);
|
2012-04-27 23:19:06 +02:00
|
|
|
|
2013-09-12 22:34:18 +02:00
|
|
|
if (!isLoading) {
|
2012-04-27 23:19:06 +02:00
|
|
|
// Continue the DOM test.
|
2013-09-12 22:34:18 +02:00
|
|
|
if (browser->GetMainFrame()->GetURL() == dom_test::kTestUrl)
|
2012-04-27 23:19:06 +02:00
|
|
|
dom_test::OnLoadEnd(browser);
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientHandler::OnLoadError(CefRefPtr<CefBrowser> browser,
|
|
|
|
CefRefPtr<CefFrame> frame,
|
|
|
|
ErrorCode errorCode,
|
|
|
|
const CefString& errorText,
|
|
|
|
const CefString& failedUrl) {
|
|
|
|
REQUIRE_UI_THREAD();
|
2012-04-11 20:00:55 +02:00
|
|
|
|
2012-06-11 19:35:23 +02:00
|
|
|
// Don't display an error for downloaded files.
|
|
|
|
if (errorCode == ERR_ABORTED)
|
|
|
|
return;
|
|
|
|
|
2012-06-25 23:21:27 +02:00
|
|
|
// Don't display an error for external protocols that we allow the OS to
|
|
|
|
// handle. See OnProtocolExecution().
|
|
|
|
if (errorCode == ERR_UNKNOWN_URL_SCHEME) {
|
|
|
|
std::string urlStr = frame->GetURL();
|
|
|
|
if (urlStr.find("spotify:") == 0)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-04-11 20:00:55 +02:00
|
|
|
// Display a load error message.
|
|
|
|
std::stringstream ss;
|
2013-09-03 23:58:02 +02:00
|
|
|
ss << "<html><body bgcolor=\"white\">"
|
|
|
|
"<h2>Failed to load URL " << std::string(failedUrl) <<
|
2012-04-11 20:00:55 +02:00
|
|
|
" with error " << std::string(errorText) << " (" << errorCode <<
|
|
|
|
").</h2></body></html>";
|
|
|
|
frame->LoadString(ss.str(), failedUrl);
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2014-01-28 00:31:03 +01:00
|
|
|
bool ClientHandler::OnBeforeBrowse(CefRefPtr<CefBrowser> browser,
|
|
|
|
CefRefPtr<CefFrame> frame,
|
|
|
|
CefRefPtr<CefRequest> request,
|
|
|
|
bool is_redirect) {
|
|
|
|
message_router_->OnBeforeBrowse(browser, frame);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-04-12 22:21:50 +02:00
|
|
|
CefRefPtr<CefResourceHandler> ClientHandler::GetResourceHandler(
|
2014-01-28 00:31:03 +01:00
|
|
|
CefRefPtr<CefBrowser> browser,
|
|
|
|
CefRefPtr<CefFrame> frame,
|
|
|
|
CefRefPtr<CefRequest> request) {
|
2012-04-12 22:21:50 +02:00
|
|
|
std::string url = request->GetURL();
|
2013-04-03 20:20:59 +02:00
|
|
|
if (url.find(kTestOrigin) == 0) {
|
|
|
|
// Handle URLs in the test origin.
|
|
|
|
std::string file_name, mime_type;
|
|
|
|
if (ParseTestUrl(url, &file_name, &mime_type)) {
|
|
|
|
if (file_name == "request.html") {
|
|
|
|
// Show the request contents.
|
|
|
|
std::string dump;
|
|
|
|
DumpRequestContents(request, dump);
|
2013-09-03 23:58:02 +02:00
|
|
|
std::string str = "<html><body bgcolor=\"white\"><pre>" + dump +
|
|
|
|
"</pre></body></html>";
|
2013-04-03 20:20:59 +02:00
|
|
|
CefRefPtr<CefStreamReader> stream =
|
|
|
|
CefStreamReader::CreateForData(
|
2013-09-03 23:58:02 +02:00
|
|
|
static_cast<void*>(const_cast<char*>(str.c_str())),
|
|
|
|
str.size());
|
2013-04-03 20:20:59 +02:00
|
|
|
ASSERT(stream.get());
|
2013-09-03 23:58:02 +02:00
|
|
|
return new CefStreamResourceHandler("text/html", stream);
|
2013-04-03 20:20:59 +02:00
|
|
|
} else {
|
|
|
|
// Load the resource from file.
|
|
|
|
CefRefPtr<CefStreamReader> stream =
|
|
|
|
GetBinaryResourceReader(file_name.c_str());
|
|
|
|
if (stream.get())
|
|
|
|
return new CefStreamResourceHandler(mime_type, stream);
|
|
|
|
}
|
|
|
|
}
|
2012-04-12 22:21:50 +02:00
|
|
|
}
|
|
|
|
|
2013-04-04 02:10:53 +02:00
|
|
|
return NULL;
|
2012-04-12 22:21:50 +02:00
|
|
|
}
|
|
|
|
|
2012-09-28 00:52:15 +02:00
|
|
|
bool ClientHandler::OnQuotaRequest(CefRefPtr<CefBrowser> browser,
|
|
|
|
const CefString& origin_url,
|
|
|
|
int64 new_size,
|
|
|
|
CefRefPtr<CefQuotaCallback> callback) {
|
|
|
|
static const int64 max_size = 1024 * 1024 * 20; // 20mb.
|
|
|
|
|
|
|
|
// Grant the quota request if the size is reasonable.
|
|
|
|
callback->Continue(new_size <= max_size);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-06-25 23:21:27 +02:00
|
|
|
void ClientHandler::OnProtocolExecution(CefRefPtr<CefBrowser> browser,
|
|
|
|
const CefString& url,
|
|
|
|
bool& allow_os_execution) {
|
|
|
|
std::string urlStr = url;
|
|
|
|
|
|
|
|
// Allow OS execution of Spotify URIs.
|
|
|
|
if (urlStr.find("spotify:") == 0)
|
|
|
|
allow_os_execution = true;
|
|
|
|
}
|
|
|
|
|
2013-09-12 22:34:18 +02:00
|
|
|
void ClientHandler::OnRenderProcessTerminated(CefRefPtr<CefBrowser> browser,
|
|
|
|
TerminationStatus status) {
|
2014-01-28 00:31:03 +01:00
|
|
|
message_router_->OnRenderProcessTerminated(browser);
|
|
|
|
|
2013-09-12 22:34:18 +02:00
|
|
|
// Load the startup URL if that's not the website that we terminated on.
|
|
|
|
CefRefPtr<CefFrame> frame = browser->GetMainFrame();
|
|
|
|
std::string url = frame->GetURL();
|
|
|
|
std::transform(url.begin(), url.end(), url.begin(), tolower);
|
|
|
|
|
|
|
|
std::string startupURL = GetStartupURL();
|
2013-12-17 23:04:35 +01:00
|
|
|
if (startupURL != "chrome://crash" && !url.empty() &&
|
|
|
|
url.find(startupURL) != 0) {
|
2013-09-12 22:34:18 +02:00
|
|
|
frame->LoadURL(startupURL);
|
2013-12-17 23:04:35 +01:00
|
|
|
}
|
2013-09-12 22:34:18 +02:00
|
|
|
}
|
|
|
|
|
2012-11-21 01:40:15 +01:00
|
|
|
bool ClientHandler::GetRootScreenRect(CefRefPtr<CefBrowser> browser,
|
|
|
|
CefRect& rect) {
|
|
|
|
if (!m_OSRHandler.get())
|
|
|
|
return false;
|
|
|
|
return m_OSRHandler->GetRootScreenRect(browser, rect);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ClientHandler::GetViewRect(CefRefPtr<CefBrowser> browser, CefRect& rect) {
|
|
|
|
if (!m_OSRHandler.get())
|
|
|
|
return false;
|
|
|
|
return m_OSRHandler->GetViewRect(browser, rect);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ClientHandler::GetScreenPoint(CefRefPtr<CefBrowser> browser,
|
|
|
|
int viewX,
|
|
|
|
int viewY,
|
|
|
|
int& screenX,
|
|
|
|
int& screenY) {
|
|
|
|
if (!m_OSRHandler.get())
|
|
|
|
return false;
|
|
|
|
return m_OSRHandler->GetScreenPoint(browser, viewX, viewY, screenX, screenY);
|
|
|
|
}
|
|
|
|
|
2013-04-16 21:23:00 +02:00
|
|
|
bool ClientHandler::GetScreenInfo(CefRefPtr<CefBrowser> browser,
|
|
|
|
CefScreenInfo& screen_info) {
|
|
|
|
if (!m_OSRHandler.get())
|
|
|
|
return false;
|
|
|
|
return m_OSRHandler->GetScreenInfo(browser, screen_info);
|
|
|
|
}
|
|
|
|
|
2012-11-21 01:40:15 +01:00
|
|
|
void ClientHandler::OnPopupShow(CefRefPtr<CefBrowser> browser,
|
|
|
|
bool show) {
|
|
|
|
if (!m_OSRHandler.get())
|
|
|
|
return;
|
|
|
|
return m_OSRHandler->OnPopupShow(browser, show);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientHandler::OnPopupSize(CefRefPtr<CefBrowser> browser,
|
|
|
|
const CefRect& rect) {
|
|
|
|
if (!m_OSRHandler.get())
|
|
|
|
return;
|
|
|
|
return m_OSRHandler->OnPopupSize(browser, rect);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientHandler::OnPaint(CefRefPtr<CefBrowser> browser,
|
|
|
|
PaintElementType type,
|
|
|
|
const RectList& dirtyRects,
|
|
|
|
const void* buffer,
|
|
|
|
int width,
|
|
|
|
int height) {
|
|
|
|
if (!m_OSRHandler.get())
|
|
|
|
return;
|
|
|
|
m_OSRHandler->OnPaint(browser, type, dirtyRects, buffer, width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientHandler::OnCursorChange(CefRefPtr<CefBrowser> browser,
|
|
|
|
CefCursorHandle cursor) {
|
|
|
|
if (!m_OSRHandler.get())
|
|
|
|
return;
|
|
|
|
m_OSRHandler->OnCursorChange(browser, cursor);
|
|
|
|
}
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
void ClientHandler::SetMainHwnd(CefWindowHandle hwnd) {
|
|
|
|
AutoLock lock_scope(this);
|
|
|
|
m_MainHwnd = hwnd;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientHandler::SetEditHwnd(CefWindowHandle hwnd) {
|
|
|
|
AutoLock lock_scope(this);
|
|
|
|
m_EditHwnd = hwnd;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientHandler::SetButtonHwnds(CefWindowHandle backHwnd,
|
|
|
|
CefWindowHandle forwardHwnd,
|
|
|
|
CefWindowHandle reloadHwnd,
|
|
|
|
CefWindowHandle stopHwnd) {
|
|
|
|
AutoLock lock_scope(this);
|
|
|
|
m_BackHwnd = backHwnd;
|
|
|
|
m_ForwardHwnd = forwardHwnd;
|
|
|
|
m_ReloadHwnd = reloadHwnd;
|
|
|
|
m_StopHwnd = stopHwnd;
|
|
|
|
}
|
|
|
|
|
2013-04-03 21:29:47 +02:00
|
|
|
void ClientHandler::CloseAllBrowsers(bool force_close) {
|
|
|
|
if (!CefCurrentlyOn(TID_UI)) {
|
|
|
|
// Execute on the UI thread.
|
|
|
|
CefPostTask(TID_UI,
|
|
|
|
NewCefRunnableMethod(this, &ClientHandler::CloseAllBrowsers,
|
|
|
|
force_close));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!m_PopupBrowsers.empty()) {
|
|
|
|
// Request that any popup browsers close.
|
|
|
|
BrowserList::const_iterator it = m_PopupBrowsers.begin();
|
|
|
|
for (; it != m_PopupBrowsers.end(); ++it)
|
|
|
|
(*it)->GetHost()->CloseBrowser(force_close);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_Browser.get()) {
|
|
|
|
// Request that the main browser close.
|
|
|
|
m_Browser->GetHost()->CloseBrowser(force_close);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
std::string ClientHandler::GetLogFile() {
|
|
|
|
AutoLock lock_scope(this);
|
|
|
|
return m_LogFile;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientHandler::SetLastDownloadFile(const std::string& fileName) {
|
|
|
|
AutoLock lock_scope(this);
|
|
|
|
m_LastDownloadFile = fileName;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string ClientHandler::GetLastDownloadFile() {
|
|
|
|
AutoLock lock_scope(this);
|
|
|
|
return m_LastDownloadFile;
|
|
|
|
}
|
|
|
|
|
2012-04-27 00:20:18 +02:00
|
|
|
void ClientHandler::ShowDevTools(CefRefPtr<CefBrowser> browser) {
|
2013-11-08 17:06:06 +01:00
|
|
|
CefWindowInfo windowInfo;
|
|
|
|
CefBrowserSettings settings;
|
2012-06-26 18:47:05 +02:00
|
|
|
|
2013-11-08 17:06:06 +01:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
windowInfo.SetAsPopup(browser->GetHost()->GetWindowHandle(), "DevTools");
|
|
|
|
#endif
|
2012-06-26 18:47:05 +02:00
|
|
|
|
2013-11-08 17:06:06 +01:00
|
|
|
browser->GetHost()->ShowDevTools(windowInfo, this, settings);
|
|
|
|
}
|
2012-06-26 18:47:05 +02:00
|
|
|
|
2013-11-08 17:06:06 +01:00
|
|
|
void ClientHandler::CloseDevTools(CefRefPtr<CefBrowser> browser) {
|
|
|
|
browser->GetHost()->CloseDevTools();
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
2012-04-12 22:21:50 +02:00
|
|
|
|
2012-10-18 00:45:49 +02:00
|
|
|
void ClientHandler::BeginTracing() {
|
|
|
|
if (CefCurrentlyOn(TID_UI)) {
|
2014-02-05 21:35:45 +01:00
|
|
|
CefBeginTracing(CefString(), NULL);
|
2013-12-17 23:04:35 +01:00
|
|
|
} else {
|
|
|
|
CefPostTask(TID_UI,
|
|
|
|
NewCefRunnableMethod(this, &ClientHandler::BeginTracing));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientHandler::EndTracing() {
|
|
|
|
if (CefCurrentlyOn(TID_UI)) {
|
|
|
|
class Client : public CefEndTracingCallback,
|
2012-10-18 00:45:49 +02:00
|
|
|
public CefRunFileDialogCallback {
|
|
|
|
public:
|
|
|
|
explicit Client(CefRefPtr<ClientHandler> handler)
|
2013-12-17 23:04:35 +01:00
|
|
|
: handler_(handler) {
|
|
|
|
RunDialog();
|
2012-10-18 00:45:49 +02:00
|
|
|
}
|
|
|
|
|
2013-12-17 23:04:35 +01:00
|
|
|
void RunDialog() {
|
2012-10-18 00:45:49 +02:00
|
|
|
static const char kDefaultFileName[] = "trace.txt";
|
|
|
|
std::string path = handler_->GetDownloadPath(kDefaultFileName);
|
|
|
|
if (path.empty())
|
|
|
|
path = kDefaultFileName;
|
|
|
|
|
2013-12-17 23:04:35 +01:00
|
|
|
// Results in a call to OnFileDialogDismissed.
|
2012-10-18 00:45:49 +02:00
|
|
|
handler_->GetBrowser()->GetHost()->RunFileDialog(
|
|
|
|
FILE_DIALOG_SAVE, CefString(), path, std::vector<CefString>(),
|
|
|
|
this);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void OnFileDialogDismissed(
|
|
|
|
CefRefPtr<CefBrowserHost> browser_host,
|
|
|
|
const std::vector<CefString>& file_paths) OVERRIDE {
|
2013-12-17 23:04:35 +01:00
|
|
|
if (!file_paths.empty()) {
|
|
|
|
// File selected. Results in a call to OnEndTracingComplete.
|
2014-02-05 21:35:45 +01:00
|
|
|
CefEndTracing(file_paths.front(), this);
|
2013-12-17 23:04:35 +01:00
|
|
|
} else {
|
|
|
|
// No file selected. Discard the trace data.
|
2014-02-05 21:35:45 +01:00
|
|
|
CefEndTracing(CefString(), NULL);
|
2013-12-17 23:04:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void OnEndTracingComplete(const CefString& tracing_file) OVERRIDE {
|
|
|
|
handler_->SetLastDownloadFile(tracing_file.ToString());
|
|
|
|
handler_->SendNotification(NOTIFY_DOWNLOAD_COMPLETE);
|
2012-10-18 00:45:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
CefRefPtr<ClientHandler> handler_;
|
|
|
|
|
|
|
|
IMPLEMENT_REFCOUNTING(Callback);
|
|
|
|
};
|
|
|
|
|
2013-12-17 23:04:35 +01:00
|
|
|
new Client(this);
|
2012-10-18 00:45:49 +02:00
|
|
|
} else {
|
|
|
|
CefPostTask(TID_UI,
|
|
|
|
NewCefRunnableMethod(this, &ClientHandler::BeginTracing));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ClientHandler::Save(const std::string& path, const std::string& data) {
|
|
|
|
FILE* f = fopen(path.c_str(), "w");
|
|
|
|
if (!f)
|
|
|
|
return false;
|
2013-01-17 23:25:57 +01:00
|
|
|
size_t total = 0;
|
|
|
|
do {
|
|
|
|
size_t write = fwrite(data.c_str() + total, 1, data.size() - total, f);
|
|
|
|
if (write == 0)
|
|
|
|
break;
|
|
|
|
total += write;
|
|
|
|
} while (total < data.size());
|
2012-10-18 00:45:49 +02:00
|
|
|
fclose(f);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-04-12 22:21:50 +02:00
|
|
|
// static
|
2014-01-28 00:31:03 +01:00
|
|
|
void ClientHandler::CreateMessageHandlers(MessageHandlerSet& handlers) {
|
|
|
|
// Create the dialog test handlers.
|
|
|
|
dialog_test::CreateMessageHandlers(handlers);
|
2013-04-01 19:57:28 +02:00
|
|
|
|
2014-01-28 00:31:03 +01:00
|
|
|
// Create the binding test handlers.
|
|
|
|
binding_test::CreateMessageHandlers(handlers);
|
2013-04-01 19:57:28 +02:00
|
|
|
|
2014-01-28 00:31:03 +01:00
|
|
|
// Create the window test handlers.
|
|
|
|
window_test::CreateMessageHandlers(handlers);
|
2012-04-12 22:21:50 +02:00
|
|
|
}
|
|
|
|
|
2012-04-19 22:31:46 +02:00
|
|
|
void ClientHandler::BuildTestMenu(CefRefPtr<CefMenuModel> model) {
|
|
|
|
if (model->GetCount() > 0)
|
2012-08-29 18:58:40 +02:00
|
|
|
model->AddSeparator();
|
2012-04-19 22:31:46 +02:00
|
|
|
|
|
|
|
// Build the sub menu.
|
|
|
|
CefRefPtr<CefMenuModel> submenu =
|
|
|
|
model->AddSubMenu(CLIENT_ID_TESTMENU_SUBMENU, "Context Menu Test");
|
|
|
|
submenu->AddCheckItem(CLIENT_ID_TESTMENU_CHECKITEM, "Check Item");
|
|
|
|
submenu->AddRadioItem(CLIENT_ID_TESTMENU_RADIOITEM1, "Radio Item 1", 0);
|
|
|
|
submenu->AddRadioItem(CLIENT_ID_TESTMENU_RADIOITEM2, "Radio Item 2", 0);
|
|
|
|
submenu->AddRadioItem(CLIENT_ID_TESTMENU_RADIOITEM3, "Radio Item 3", 0);
|
|
|
|
|
|
|
|
// Check the check item.
|
|
|
|
if (m_TestMenuState.check_item)
|
|
|
|
submenu->SetChecked(CLIENT_ID_TESTMENU_CHECKITEM, true);
|
|
|
|
|
|
|
|
// Check the selected radio item.
|
|
|
|
submenu->SetChecked(
|
|
|
|
CLIENT_ID_TESTMENU_RADIOITEM1 + m_TestMenuState.radio_item, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ClientHandler::ExecuteTestMenu(int command_id) {
|
|
|
|
if (command_id == CLIENT_ID_TESTMENU_CHECKITEM) {
|
|
|
|
// Toggle the check item.
|
|
|
|
m_TestMenuState.check_item ^= 1;
|
|
|
|
return true;
|
|
|
|
} else if (command_id >= CLIENT_ID_TESTMENU_RADIOITEM1 &&
|
|
|
|
command_id <= CLIENT_ID_TESTMENU_RADIOITEM3) {
|
|
|
|
// Store the selected radio item.
|
|
|
|
m_TestMenuState.radio_item = (command_id - CLIENT_ID_TESTMENU_RADIOITEM1);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allow default handling to proceed.
|
|
|
|
return false;
|
|
|
|
}
|
2012-11-21 01:40:15 +01:00
|
|
|
|