/cef1/libcef_dll/cpptoc/request_handler_cpptoc.cc

http://chromiumembedded.googlecode.com/ · C++ · 396 lines · 271 code · 48 blank · 77 comment · 59 complexity · 11a4b44d85919c5882443dd9dbcd8533 MD5 · raw file

  1. // Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights
  2. // reserved. Use of this source code is governed by a BSD-style license that
  3. // can be found in the LICENSE file.
  4. //
  5. // ---------------------------------------------------------------------------
  6. //
  7. // This file was generated by the CEF translator tool. If making changes by
  8. // hand only do so within the body of existing method and function
  9. // implementations. See the translator.README.txt file in the tools directory
  10. // for more information.
  11. //
  12. #include "libcef_dll/cpptoc/content_filter_cpptoc.h"
  13. #include "libcef_dll/cpptoc/download_handler_cpptoc.h"
  14. #include "libcef_dll/cpptoc/request_handler_cpptoc.h"
  15. #include "libcef_dll/ctocpp/browser_ctocpp.h"
  16. #include "libcef_dll/ctocpp/cookie_manager_ctocpp.h"
  17. #include "libcef_dll/ctocpp/frame_ctocpp.h"
  18. #include "libcef_dll/ctocpp/request_ctocpp.h"
  19. #include "libcef_dll/ctocpp/response_ctocpp.h"
  20. #include "libcef_dll/ctocpp/stream_reader_ctocpp.h"
  21. // MEMBER FUNCTIONS - Body may be edited by hand.
  22. int CEF_CALLBACK request_handler_on_before_browse(
  23. struct _cef_request_handler_t* self, cef_browser_t* browser,
  24. cef_frame_t* frame, cef_request_t* request,
  25. enum cef_handler_navtype_t navType, int isRedirect) {
  26. // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
  27. DCHECK(self);
  28. if (!self)
  29. return 0;
  30. // Verify param: browser; type: refptr_diff
  31. DCHECK(browser);
  32. if (!browser)
  33. return 0;
  34. // Verify param: frame; type: refptr_diff
  35. DCHECK(frame);
  36. if (!frame)
  37. return 0;
  38. // Verify param: request; type: refptr_diff
  39. DCHECK(request);
  40. if (!request)
  41. return 0;
  42. // Execute
  43. bool _retval = CefRequestHandlerCppToC::Get(self)->OnBeforeBrowse(
  44. CefBrowserCToCpp::Wrap(browser),
  45. CefFrameCToCpp::Wrap(frame),
  46. CefRequestCToCpp::Wrap(request),
  47. navType,
  48. isRedirect?true:false);
  49. // Return type: bool
  50. return _retval;
  51. }
  52. int CEF_CALLBACK request_handler_on_before_resource_load(
  53. struct _cef_request_handler_t* self, cef_browser_t* browser,
  54. cef_request_t* request, cef_string_t* redirectUrl,
  55. struct _cef_stream_reader_t** resourceStream,
  56. struct _cef_response_t* response, int loadFlags) {
  57. // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
  58. DCHECK(self);
  59. if (!self)
  60. return 0;
  61. // Verify param: browser; type: refptr_diff
  62. DCHECK(browser);
  63. if (!browser)
  64. return 0;
  65. // Verify param: request; type: refptr_diff
  66. DCHECK(request);
  67. if (!request)
  68. return 0;
  69. // Verify param: redirectUrl; type: string_byref
  70. DCHECK(redirectUrl);
  71. if (!redirectUrl)
  72. return 0;
  73. // Verify param: resourceStream; type: refptr_diff_byref
  74. DCHECK(resourceStream);
  75. if (!resourceStream)
  76. return 0;
  77. // Verify param: response; type: refptr_diff
  78. DCHECK(response);
  79. if (!response)
  80. return 0;
  81. // Translate param: redirectUrl; type: string_byref
  82. CefString redirectUrlStr(redirectUrl);
  83. // Translate param: resourceStream; type: refptr_diff_byref
  84. CefRefPtr<CefStreamReader> resourceStreamPtr;
  85. if (resourceStream && *resourceStream)
  86. resourceStreamPtr = CefStreamReaderCToCpp::Wrap(*resourceStream);
  87. CefStreamReader* resourceStreamOrig = resourceStreamPtr.get();
  88. // Execute
  89. bool _retval = CefRequestHandlerCppToC::Get(self)->OnBeforeResourceLoad(
  90. CefBrowserCToCpp::Wrap(browser),
  91. CefRequestCToCpp::Wrap(request),
  92. redirectUrlStr,
  93. resourceStreamPtr,
  94. CefResponseCToCpp::Wrap(response),
  95. loadFlags);
  96. // Restore param: resourceStream; type: refptr_diff_byref
  97. if (resourceStream) {
  98. if (resourceStreamPtr.get()) {
  99. if (resourceStreamPtr.get() != resourceStreamOrig) {
  100. *resourceStream = CefStreamReaderCToCpp::Unwrap(resourceStreamPtr);
  101. }
  102. } else {
  103. *resourceStream = NULL;
  104. }
  105. }
  106. // Return type: bool
  107. return _retval;
  108. }
  109. void CEF_CALLBACK request_handler_on_resource_redirect(
  110. struct _cef_request_handler_t* self, cef_browser_t* browser,
  111. const cef_string_t* old_url, cef_string_t* new_url) {
  112. // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
  113. DCHECK(self);
  114. if (!self)
  115. return;
  116. // Verify param: browser; type: refptr_diff
  117. DCHECK(browser);
  118. if (!browser)
  119. return;
  120. // Verify param: old_url; type: string_byref_const
  121. DCHECK(old_url);
  122. if (!old_url)
  123. return;
  124. // Verify param: new_url; type: string_byref
  125. DCHECK(new_url);
  126. if (!new_url)
  127. return;
  128. // Translate param: new_url; type: string_byref
  129. CefString new_urlStr(new_url);
  130. // Execute
  131. CefRequestHandlerCppToC::Get(self)->OnResourceRedirect(
  132. CefBrowserCToCpp::Wrap(browser),
  133. CefString(old_url),
  134. new_urlStr);
  135. }
  136. void CEF_CALLBACK request_handler_on_resource_response(
  137. struct _cef_request_handler_t* self, cef_browser_t* browser,
  138. const cef_string_t* url, struct _cef_response_t* response,
  139. cef_content_filter_t** filter) {
  140. // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
  141. DCHECK(self);
  142. if (!self)
  143. return;
  144. // Verify param: browser; type: refptr_diff
  145. DCHECK(browser);
  146. if (!browser)
  147. return;
  148. // Verify param: url; type: string_byref_const
  149. DCHECK(url);
  150. if (!url)
  151. return;
  152. // Verify param: response; type: refptr_diff
  153. DCHECK(response);
  154. if (!response)
  155. return;
  156. // Verify param: filter; type: refptr_same_byref
  157. DCHECK(filter);
  158. if (!filter)
  159. return;
  160. // Translate param: filter; type: refptr_same_byref
  161. CefRefPtr<CefContentFilter> filterPtr;
  162. if (filter && *filter)
  163. filterPtr = CefContentFilterCppToC::Unwrap(*filter);
  164. CefContentFilter* filterOrig = filterPtr.get();
  165. // Execute
  166. CefRequestHandlerCppToC::Get(self)->OnResourceResponse(
  167. CefBrowserCToCpp::Wrap(browser),
  168. CefString(url),
  169. CefResponseCToCpp::Wrap(response),
  170. filterPtr);
  171. // Restore param: filter; type: refptr_same_byref
  172. if (filter) {
  173. if (filterPtr.get()) {
  174. if (filterPtr.get() != filterOrig) {
  175. *filter = CefContentFilterCppToC::Wrap(filterPtr);
  176. }
  177. } else {
  178. *filter = NULL;
  179. }
  180. }
  181. }
  182. int CEF_CALLBACK request_handler_on_protocol_execution(
  183. struct _cef_request_handler_t* self, cef_browser_t* browser,
  184. const cef_string_t* url, int* allowOSExecution) {
  185. // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
  186. DCHECK(self);
  187. if (!self)
  188. return 0;
  189. // Verify param: browser; type: refptr_diff
  190. DCHECK(browser);
  191. if (!browser)
  192. return 0;
  193. // Verify param: url; type: string_byref_const
  194. DCHECK(url);
  195. if (!url)
  196. return 0;
  197. // Verify param: allowOSExecution; type: bool_byref
  198. DCHECK(allowOSExecution);
  199. if (!allowOSExecution)
  200. return 0;
  201. // Translate param: allowOSExecution; type: bool_byref
  202. bool allowOSExecutionBool = (
  203. allowOSExecution && *allowOSExecution)?true:false;
  204. // Execute
  205. bool _retval = CefRequestHandlerCppToC::Get(self)->OnProtocolExecution(
  206. CefBrowserCToCpp::Wrap(browser),
  207. CefString(url),
  208. allowOSExecutionBool);
  209. // Restore param: allowOSExecution; type: bool_byref
  210. if (allowOSExecution)
  211. *allowOSExecution = allowOSExecutionBool?true:false;
  212. // Return type: bool
  213. return _retval;
  214. }
  215. int CEF_CALLBACK request_handler_get_download_handler(
  216. struct _cef_request_handler_t* self, cef_browser_t* browser,
  217. const cef_string_t* mimeType, const cef_string_t* fileName,
  218. int64 contentLength, cef_download_handler_t** handler) {
  219. // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
  220. DCHECK(self);
  221. if (!self)
  222. return 0;
  223. // Verify param: browser; type: refptr_diff
  224. DCHECK(browser);
  225. if (!browser)
  226. return 0;
  227. // Verify param: fileName; type: string_byref_const
  228. DCHECK(fileName);
  229. if (!fileName)
  230. return 0;
  231. // Verify param: handler; type: refptr_same_byref
  232. DCHECK(handler);
  233. if (!handler)
  234. return 0;
  235. // Unverified params: mimeType
  236. // Translate param: handler; type: refptr_same_byref
  237. CefRefPtr<CefDownloadHandler> handlerPtr;
  238. if (handler && *handler)
  239. handlerPtr = CefDownloadHandlerCppToC::Unwrap(*handler);
  240. CefDownloadHandler* handlerOrig = handlerPtr.get();
  241. // Execute
  242. bool _retval = CefRequestHandlerCppToC::Get(self)->GetDownloadHandler(
  243. CefBrowserCToCpp::Wrap(browser),
  244. CefString(mimeType),
  245. CefString(fileName),
  246. contentLength,
  247. handlerPtr);
  248. // Restore param: handler; type: refptr_same_byref
  249. if (handler) {
  250. if (handlerPtr.get()) {
  251. if (handlerPtr.get() != handlerOrig) {
  252. *handler = CefDownloadHandlerCppToC::Wrap(handlerPtr);
  253. }
  254. } else {
  255. *handler = NULL;
  256. }
  257. }
  258. // Return type: bool
  259. return _retval;
  260. }
  261. int CEF_CALLBACK request_handler_get_auth_credentials(
  262. struct _cef_request_handler_t* self, cef_browser_t* browser, int isProxy,
  263. const cef_string_t* host, int port, const cef_string_t* realm,
  264. const cef_string_t* scheme, cef_string_t* username,
  265. cef_string_t* password) {
  266. // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
  267. DCHECK(self);
  268. if (!self)
  269. return 0;
  270. // Verify param: browser; type: refptr_diff
  271. DCHECK(browser);
  272. if (!browser)
  273. return 0;
  274. // Verify param: host; type: string_byref_const
  275. DCHECK(host);
  276. if (!host)
  277. return 0;
  278. // Verify param: scheme; type: string_byref_const
  279. DCHECK(scheme);
  280. if (!scheme)
  281. return 0;
  282. // Verify param: username; type: string_byref
  283. DCHECK(username);
  284. if (!username)
  285. return 0;
  286. // Verify param: password; type: string_byref
  287. DCHECK(password);
  288. if (!password)
  289. return 0;
  290. // Unverified params: realm
  291. // Translate param: username; type: string_byref
  292. CefString usernameStr(username);
  293. // Translate param: password; type: string_byref
  294. CefString passwordStr(password);
  295. // Execute
  296. bool _retval = CefRequestHandlerCppToC::Get(self)->GetAuthCredentials(
  297. CefBrowserCToCpp::Wrap(browser),
  298. isProxy?true:false,
  299. CefString(host),
  300. port,
  301. CefString(realm),
  302. CefString(scheme),
  303. usernameStr,
  304. passwordStr);
  305. // Return type: bool
  306. return _retval;
  307. }
  308. cef_cookie_manager_t* CEF_CALLBACK request_handler_get_cookie_manager(
  309. struct _cef_request_handler_t* self, cef_browser_t* browser,
  310. const cef_string_t* main_url) {
  311. // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
  312. DCHECK(self);
  313. if (!self)
  314. return NULL;
  315. // Verify param: browser; type: refptr_diff
  316. DCHECK(browser);
  317. if (!browser)
  318. return NULL;
  319. // Verify param: main_url; type: string_byref_const
  320. DCHECK(main_url);
  321. if (!main_url)
  322. return NULL;
  323. // Execute
  324. CefRefPtr<CefCookieManager> _retval = CefRequestHandlerCppToC::Get(
  325. self)->GetCookieManager(
  326. CefBrowserCToCpp::Wrap(browser),
  327. CefString(main_url));
  328. // Return type: refptr_diff
  329. return CefCookieManagerCToCpp::Unwrap(_retval);
  330. }
  331. // CONSTRUCTOR - Do not edit by hand.
  332. CefRequestHandlerCppToC::CefRequestHandlerCppToC(CefRequestHandler* cls)
  333. : CefCppToC<CefRequestHandlerCppToC, CefRequestHandler,
  334. cef_request_handler_t>(cls) {
  335. struct_.struct_.on_before_browse = request_handler_on_before_browse;
  336. struct_.struct_.on_before_resource_load =
  337. request_handler_on_before_resource_load;
  338. struct_.struct_.on_resource_redirect = request_handler_on_resource_redirect;
  339. struct_.struct_.on_resource_response = request_handler_on_resource_response;
  340. struct_.struct_.on_protocol_execution = request_handler_on_protocol_execution;
  341. struct_.struct_.get_download_handler = request_handler_get_download_handler;
  342. struct_.struct_.get_auth_credentials = request_handler_get_auth_credentials;
  343. struct_.struct_.get_cookie_manager = request_handler_get_cookie_manager;
  344. }
  345. #ifndef NDEBUG
  346. template<> long CefCppToC<CefRequestHandlerCppToC, CefRequestHandler,
  347. cef_request_handler_t>::DebugObjCt = 0;
  348. #endif