mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-03-04 11:57:46 +01:00
Implementation notes: - Chromium change: CookieMonster::SetCookieableSchemes needs to be called immediately after the CookieMonster is created in NetworkContext:: ApplyContextParamsToBuilder. Add a Profile::GetCookieableSchemes method and NetworkContextParams.cookieable_schemes member (set from ProfileNetworkContextService::CreateNetworkContextParams) to support that. - Chromium change: Add a ContentBrowserClient::HandleExternalProtocol variant that exposes additional NetworkService request information. - GetResourceResponseFilter is not yet implemented. API changes: - Resource-related callbacks have been moved from CefRequestHandler to a new CefResourceRequestHandler interface which is returned via the GetResourceRequestHandler method. If the CefRequestHandler declines to handle a resource it can optionally be handled by the CefRequestContextHandler, if any, associated with the loading context. - The OnProtocolExecution callback has been moved from CefRequestHandler to CefResourceRequestHandler and will be called if a custom scheme request is unhandled. - Cookie send/save permission callbacks have been moved from CefRequestHandler and CefResourceHandler to CefResourceRequestHandler. - New methods added to CefResourceHandler that better match NetworkService execution sequence expectations. The old methods are now deprecated. - New methods added to CefRequest and CefResponse. Known behavior changes with the NetworkService implementation: - Modifying the |new_url| parameter in OnResourceRedirect will no longer result in the method being called an additional time (likely a bug in the old implementation). - Modifying the request URL in OnResourceResponse would previously cause a redirect. This behavior is now deprecated because the NetworkService does not support this functionality when using default network loaders. Temporary support has been added in combination with CefResourceHandler usage only. - Other changes to the request object in OnResourceResponse will now cause the request to be restarted. This means that OnBeforeResourceLoad, etc, will be called an additional time with the new request information. - CefResponse::GetMimeType will now be empty for non-200 responses. - Requests using custom schemes can now be handled via CefResourceRequestHandler with the same callback behavior as builtin schemes. - Redirects of custom scheme requests will now be followed as expected. - Default handling of builtin schemes can now be disabled by setting |disable_default_handling| to true in GetResourceRequestHandler. - Unhandled requests (custom scheme or builtin scheme with default handling disabled) will fail with an CefResponse::GetError value of ERR_UNKNOWN_URL_SCHEME. - The CefSchemeHandlerFactory::Create callback will now include cookie headers. To test: - Run `cefclient --enable-network-service`. All resources should load successfully (this tests the transparent proxy capability). - All tests pass with NetworkService disabled. - The following tests pass with NetworkService enabled: - CookieTest.* - FrameTest.* (excluding .*Nav) - NavigationTest.* (excluding .Redirect*) - RequestHandlerTest.* - RequestContextTest.Basic* - RequestContextTest.Popup* - RequestTest.* - ResourceManagerTest.* - ResourceRequestHandlerTest.* (excluding .Filter*) - SchemeHandlerTest.* - StreamResourceHandlerTest.*
391 lines
12 KiB
C++
391 lines
12 KiB
C++
// Copyright (c) 2019 The Chromium Embedded Framework Authors. All rights
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
// can be found in the LICENSE file.
|
|
//
|
|
// ---------------------------------------------------------------------------
|
|
//
|
|
// This file was generated by the CEF translator tool. If making changes by
|
|
// hand only do so within the body of existing method and function
|
|
// implementations. See the translator.README.txt file in the tools directory
|
|
// for more information.
|
|
//
|
|
// $hash=d923eabb6aa1e7a54966da940db39e308a71763f$
|
|
//
|
|
|
|
#include "libcef_dll/cpptoc/resource_request_handler_cpptoc.h"
|
|
#include "libcef_dll/cpptoc/resource_handler_cpptoc.h"
|
|
#include "libcef_dll/cpptoc/response_filter_cpptoc.h"
|
|
#include "libcef_dll/ctocpp/browser_ctocpp.h"
|
|
#include "libcef_dll/ctocpp/frame_ctocpp.h"
|
|
#include "libcef_dll/ctocpp/request_callback_ctocpp.h"
|
|
#include "libcef_dll/ctocpp/request_ctocpp.h"
|
|
#include "libcef_dll/ctocpp/response_ctocpp.h"
|
|
#include "libcef_dll/shutdown_checker.h"
|
|
|
|
namespace {
|
|
|
|
// MEMBER FUNCTIONS - Body may be edited by hand.
|
|
|
|
cef_return_value_t CEF_CALLBACK
|
|
resource_request_handler_on_before_resource_load(
|
|
struct _cef_resource_request_handler_t* self,
|
|
cef_browser_t* browser,
|
|
cef_frame_t* frame,
|
|
cef_request_t* request,
|
|
cef_request_callback_t* callback) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return RV_CONTINUE;
|
|
// Verify param: request; type: refptr_diff
|
|
DCHECK(request);
|
|
if (!request)
|
|
return RV_CONTINUE;
|
|
// Verify param: callback; type: refptr_diff
|
|
DCHECK(callback);
|
|
if (!callback)
|
|
return RV_CONTINUE;
|
|
// Unverified params: browser, frame
|
|
|
|
// Execute
|
|
cef_return_value_t _retval =
|
|
CefResourceRequestHandlerCppToC::Get(self)->OnBeforeResourceLoad(
|
|
CefBrowserCToCpp::Wrap(browser), CefFrameCToCpp::Wrap(frame),
|
|
CefRequestCToCpp::Wrap(request),
|
|
CefRequestCallbackCToCpp::Wrap(callback));
|
|
|
|
// Return type: simple
|
|
return _retval;
|
|
}
|
|
|
|
cef_resource_handler_t* CEF_CALLBACK
|
|
resource_request_handler_get_resource_handler(
|
|
struct _cef_resource_request_handler_t* self,
|
|
cef_browser_t* browser,
|
|
cef_frame_t* frame,
|
|
cef_request_t* request) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return NULL;
|
|
// Verify param: request; type: refptr_diff
|
|
DCHECK(request);
|
|
if (!request)
|
|
return NULL;
|
|
// Unverified params: browser, frame
|
|
|
|
// Execute
|
|
CefRefPtr<CefResourceHandler> _retval =
|
|
CefResourceRequestHandlerCppToC::Get(self)->GetResourceHandler(
|
|
CefBrowserCToCpp::Wrap(browser), CefFrameCToCpp::Wrap(frame),
|
|
CefRequestCToCpp::Wrap(request));
|
|
|
|
// Return type: refptr_same
|
|
return CefResourceHandlerCppToC::Wrap(_retval);
|
|
}
|
|
|
|
void CEF_CALLBACK resource_request_handler_on_resource_redirect(
|
|
struct _cef_resource_request_handler_t* self,
|
|
cef_browser_t* browser,
|
|
cef_frame_t* frame,
|
|
cef_request_t* request,
|
|
struct _cef_response_t* response,
|
|
cef_string_t* new_url) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
// Verify param: request; type: refptr_diff
|
|
DCHECK(request);
|
|
if (!request)
|
|
return;
|
|
// Verify param: response; type: refptr_diff
|
|
DCHECK(response);
|
|
if (!response)
|
|
return;
|
|
// Verify param: new_url; type: string_byref
|
|
DCHECK(new_url);
|
|
if (!new_url)
|
|
return;
|
|
// Unverified params: browser, frame
|
|
|
|
// Translate param: new_url; type: string_byref
|
|
CefString new_urlStr(new_url);
|
|
|
|
// Execute
|
|
CefResourceRequestHandlerCppToC::Get(self)->OnResourceRedirect(
|
|
CefBrowserCToCpp::Wrap(browser), CefFrameCToCpp::Wrap(frame),
|
|
CefRequestCToCpp::Wrap(request), CefResponseCToCpp::Wrap(response),
|
|
new_urlStr);
|
|
}
|
|
|
|
int CEF_CALLBACK resource_request_handler_on_resource_response(
|
|
struct _cef_resource_request_handler_t* self,
|
|
cef_browser_t* browser,
|
|
cef_frame_t* frame,
|
|
cef_request_t* request,
|
|
struct _cef_response_t* response) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
// Verify param: request; type: refptr_diff
|
|
DCHECK(request);
|
|
if (!request)
|
|
return 0;
|
|
// Verify param: response; type: refptr_diff
|
|
DCHECK(response);
|
|
if (!response)
|
|
return 0;
|
|
// Unverified params: browser, frame
|
|
|
|
// Execute
|
|
bool _retval = CefResourceRequestHandlerCppToC::Get(self)->OnResourceResponse(
|
|
CefBrowserCToCpp::Wrap(browser), CefFrameCToCpp::Wrap(frame),
|
|
CefRequestCToCpp::Wrap(request), CefResponseCToCpp::Wrap(response));
|
|
|
|
// Return type: bool
|
|
return _retval;
|
|
}
|
|
|
|
struct _cef_response_filter_t* CEF_CALLBACK
|
|
resource_request_handler_get_resource_response_filter(
|
|
struct _cef_resource_request_handler_t* self,
|
|
cef_browser_t* browser,
|
|
cef_frame_t* frame,
|
|
cef_request_t* request,
|
|
struct _cef_response_t* response) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return NULL;
|
|
// Verify param: request; type: refptr_diff
|
|
DCHECK(request);
|
|
if (!request)
|
|
return NULL;
|
|
// Verify param: response; type: refptr_diff
|
|
DCHECK(response);
|
|
if (!response)
|
|
return NULL;
|
|
// Unverified params: browser, frame
|
|
|
|
// Execute
|
|
CefRefPtr<CefResponseFilter> _retval =
|
|
CefResourceRequestHandlerCppToC::Get(self)->GetResourceResponseFilter(
|
|
CefBrowserCToCpp::Wrap(browser), CefFrameCToCpp::Wrap(frame),
|
|
CefRequestCToCpp::Wrap(request), CefResponseCToCpp::Wrap(response));
|
|
|
|
// Return type: refptr_same
|
|
return CefResponseFilterCppToC::Wrap(_retval);
|
|
}
|
|
|
|
void CEF_CALLBACK resource_request_handler_on_resource_load_complete(
|
|
struct _cef_resource_request_handler_t* self,
|
|
cef_browser_t* browser,
|
|
cef_frame_t* frame,
|
|
cef_request_t* request,
|
|
struct _cef_response_t* response,
|
|
cef_urlrequest_status_t status,
|
|
int64 received_content_length) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
// Verify param: request; type: refptr_diff
|
|
DCHECK(request);
|
|
if (!request)
|
|
return;
|
|
// Verify param: response; type: refptr_diff
|
|
DCHECK(response);
|
|
if (!response)
|
|
return;
|
|
// Unverified params: browser, frame
|
|
|
|
// Execute
|
|
CefResourceRequestHandlerCppToC::Get(self)->OnResourceLoadComplete(
|
|
CefBrowserCToCpp::Wrap(browser), CefFrameCToCpp::Wrap(frame),
|
|
CefRequestCToCpp::Wrap(request), CefResponseCToCpp::Wrap(response),
|
|
status, received_content_length);
|
|
}
|
|
|
|
void CEF_CALLBACK resource_request_handler_on_protocol_execution(
|
|
struct _cef_resource_request_handler_t* self,
|
|
cef_browser_t* browser,
|
|
cef_frame_t* frame,
|
|
cef_request_t* request,
|
|
int* allow_os_execution) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return;
|
|
// Verify param: request; type: refptr_diff
|
|
DCHECK(request);
|
|
if (!request)
|
|
return;
|
|
// Verify param: allow_os_execution; type: bool_byref
|
|
DCHECK(allow_os_execution);
|
|
if (!allow_os_execution)
|
|
return;
|
|
// Unverified params: browser, frame
|
|
|
|
// Translate param: allow_os_execution; type: bool_byref
|
|
bool allow_os_executionBool =
|
|
(allow_os_execution && *allow_os_execution) ? true : false;
|
|
|
|
// Execute
|
|
CefResourceRequestHandlerCppToC::Get(self)->OnProtocolExecution(
|
|
CefBrowserCToCpp::Wrap(browser), CefFrameCToCpp::Wrap(frame),
|
|
CefRequestCToCpp::Wrap(request), allow_os_executionBool);
|
|
|
|
// Restore param: allow_os_execution; type: bool_byref
|
|
if (allow_os_execution)
|
|
*allow_os_execution = allow_os_executionBool ? true : false;
|
|
}
|
|
|
|
int CEF_CALLBACK resource_request_handler_can_send_cookie(
|
|
struct _cef_resource_request_handler_t* self,
|
|
cef_browser_t* browser,
|
|
cef_frame_t* frame,
|
|
cef_request_t* request,
|
|
const struct _cef_cookie_t* cookie) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
// Verify param: request; type: refptr_diff
|
|
DCHECK(request);
|
|
if (!request)
|
|
return 0;
|
|
// Verify param: cookie; type: struct_byref_const
|
|
DCHECK(cookie);
|
|
if (!cookie)
|
|
return 0;
|
|
// Unverified params: browser, frame
|
|
|
|
// Translate param: cookie; type: struct_byref_const
|
|
CefCookie cookieObj;
|
|
if (cookie)
|
|
cookieObj.Set(*cookie, false);
|
|
|
|
// Execute
|
|
bool _retval = CefResourceRequestHandlerCppToC::Get(self)->CanSendCookie(
|
|
CefBrowserCToCpp::Wrap(browser), CefFrameCToCpp::Wrap(frame),
|
|
CefRequestCToCpp::Wrap(request), cookieObj);
|
|
|
|
// Return type: bool
|
|
return _retval;
|
|
}
|
|
|
|
int CEF_CALLBACK resource_request_handler_can_save_cookie(
|
|
struct _cef_resource_request_handler_t* self,
|
|
cef_browser_t* browser,
|
|
cef_frame_t* frame,
|
|
cef_request_t* request,
|
|
struct _cef_response_t* response,
|
|
const struct _cef_cookie_t* cookie) {
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
// Verify param: request; type: refptr_diff
|
|
DCHECK(request);
|
|
if (!request)
|
|
return 0;
|
|
// Verify param: response; type: refptr_diff
|
|
DCHECK(response);
|
|
if (!response)
|
|
return 0;
|
|
// Verify param: cookie; type: struct_byref_const
|
|
DCHECK(cookie);
|
|
if (!cookie)
|
|
return 0;
|
|
// Unverified params: browser, frame
|
|
|
|
// Translate param: cookie; type: struct_byref_const
|
|
CefCookie cookieObj;
|
|
if (cookie)
|
|
cookieObj.Set(*cookie, false);
|
|
|
|
// Execute
|
|
bool _retval = CefResourceRequestHandlerCppToC::Get(self)->CanSaveCookie(
|
|
CefBrowserCToCpp::Wrap(browser), CefFrameCToCpp::Wrap(frame),
|
|
CefRequestCToCpp::Wrap(request), CefResponseCToCpp::Wrap(response),
|
|
cookieObj);
|
|
|
|
// Return type: bool
|
|
return _retval;
|
|
}
|
|
|
|
} // namespace
|
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
CefResourceRequestHandlerCppToC::CefResourceRequestHandlerCppToC() {
|
|
GetStruct()->on_before_resource_load =
|
|
resource_request_handler_on_before_resource_load;
|
|
GetStruct()->get_resource_handler =
|
|
resource_request_handler_get_resource_handler;
|
|
GetStruct()->on_resource_redirect =
|
|
resource_request_handler_on_resource_redirect;
|
|
GetStruct()->on_resource_response =
|
|
resource_request_handler_on_resource_response;
|
|
GetStruct()->get_resource_response_filter =
|
|
resource_request_handler_get_resource_response_filter;
|
|
GetStruct()->on_resource_load_complete =
|
|
resource_request_handler_on_resource_load_complete;
|
|
GetStruct()->on_protocol_execution =
|
|
resource_request_handler_on_protocol_execution;
|
|
GetStruct()->can_send_cookie = resource_request_handler_can_send_cookie;
|
|
GetStruct()->can_save_cookie = resource_request_handler_can_save_cookie;
|
|
}
|
|
|
|
// DESTRUCTOR - Do not edit by hand.
|
|
|
|
CefResourceRequestHandlerCppToC::~CefResourceRequestHandlerCppToC() {
|
|
shutdown_checker::AssertNotShutdown();
|
|
}
|
|
|
|
template <>
|
|
CefRefPtr<CefResourceRequestHandler>
|
|
CefCppToCRefCounted<CefResourceRequestHandlerCppToC,
|
|
CefResourceRequestHandler,
|
|
cef_resource_request_handler_t>::
|
|
UnwrapDerived(CefWrapperType type, cef_resource_request_handler_t* s) {
|
|
NOTREACHED() << "Unexpected class type: " << type;
|
|
return NULL;
|
|
}
|
|
|
|
template <>
|
|
CefWrapperType
|
|
CefCppToCRefCounted<CefResourceRequestHandlerCppToC,
|
|
CefResourceRequestHandler,
|
|
cef_resource_request_handler_t>::kWrapperType =
|
|
WT_RESOURCE_REQUEST_HANDLER;
|