2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
9 // http://www.apache.org/licenses/LICENSE-2.0
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
19 * @file FWebCtrl_WebImpl.cpp
20 * @brief The file contains the definition of _WebImpl class.
22 * The file contains the definition of _WebImpl class.
24 #include <Ecore_IMF_Evas.h>
25 #include <Ecore_Evas.h>
26 #include <elm_config.h>
29 #include <ewk_popup_menu_item.h>
30 #include <libsoup/soup-status.h>
32 #include <FAppAppControl.h>
33 #include <FAppIAppControlListener.h>
34 #include <FBaseColAllElementsDeleter.h>
35 #include <FBaseColHashMapT.h>
36 #include <FBaseRtMutex.h>
37 #include <FBaseRtMutexGuard.h>
38 #include <FBaseSysLog.h>
39 #include <FBaseUtilUri.h>
40 #include <FCntDownloadRequest.h>
41 #include <FGrpColor.h>
42 #include <FGrpPoint.h>
43 #include <FGrpRectangle.h>
44 #include <FIoDbEnumerator.h>
45 #include <FIoDbStatement.h>
47 #include <FMediaImage.h>
48 #include <FMediaImageTypes.h>
49 #include <FNetHttpHttpHeader.h>
50 #include <FUiControl.h>
51 #include <FUiCtrlKeypad.h>
52 #include <FWebCtrlHitElementResult.h>
53 #include <FWebCtrlITextSearchListener.h>
54 #include <FWebCtrlIWebDownloadListener.h>
55 #include <FWebCtrlIWebUiEventListener.h>
56 #include <FWebCtrlIWebUiEventListenerF.h>
57 #include <FWebCtrlIWebKeypadEventListener.h>
58 #include <FWebCtrlIJavaScriptBridge.h>
59 #include <FWebCtrlPageNavigationList.h>
60 #include <FWebCtrlAuthenticationChallenge.h>
61 #include <FWebCtrlWeb.h>
62 #include <FWebCtrlWebSetting.h>
63 #include <FWebHistoryItem.h>
64 #include <FWebJsonJsonObject.h>
65 #include <FWebJsonJsonParser.h>
66 #include <FWebJsonJsonString.h>
67 #include <FApp_AppControlImpl.h>
68 #include <FApp_AppControlManager.h>
69 #include <FApp_AppInfo.h>
70 #include <FApp_AppManagerImpl.h>
71 #include <FBase_StringConverter.h>
72 #include <FCnt_DownloadManagerImpl.h>
73 #include <FGrp_CoordinateSystem.h>
74 #include <FIo_DatabaseImpl.h>
75 #include <FIo_NormalFile.h>
76 #include <FUi_Control.h>
77 #include <FUi_CoordinateSystemUtils.h>
78 #include <FUi_EcoreEvasMgr.h>
79 #include <FUi_EcoreEvas.h>
80 #include <FUi_ResourceSizeInfo.h>
81 #include <FUi_Window.h>
82 #include <FUiAnim_EflNode.h>
83 #include <FUiAnim_VisualElement.h>
84 #include <FUiCtrl_FooterImpl.h>
85 #include <FUiCtrl_Form.h>
86 #include "FWeb_HistoryItemImpl.h"
87 #include "FWebCtrl_AppControlListener.h"
88 #include "FWebCtrl_AuthConfirmPopup.h"
89 #include "FWebCtrl_AuthenticationChallengeImpl.h"
90 #include "FWebCtrl_EflWebkit.h"
91 #include "FWebCtrl_GeolocationPermissionManagerImpl.h"
92 #include "FWebCtrl_HitElementResultImpl.h"
93 #include "FWebCtrl_InputPickerPopup.h"
94 #include "FWebCtrl_PageNavigationListImpl.h"
95 #include "FWebCtrl_PromptPopup.h"
96 #include "FWebCtrl_SelectBox.h"
97 #include "FWebCtrl_Utility.h"
98 #include "FWebCtrl_Web.h"
99 #include "FWebCtrl_WebDataHandler.h"
100 #include "FWebCtrl_WebEvent.h"
101 #include "FWebCtrl_WebEventArg.h"
102 #include "FWebCtrl_WebImpl.h"
103 #include "FWebCtrl_WebPresenter.h"
104 #include "FWebCtrl_WebSettingImpl.h"
107 using namespace Tizen::App;
108 using namespace Tizen::Base;
109 using namespace Tizen::Base::Collection;
110 using namespace Tizen::Base::Runtime;
111 using namespace Tizen::Base::Utility;
112 using namespace Tizen::Content;
113 using namespace Tizen::Graphics;
114 using namespace Tizen::Io;
115 using namespace Tizen::Media;
116 using namespace Tizen::Net::Http;
117 using namespace Tizen::Ui;
118 using namespace Tizen::Ui::Animations;
119 using namespace Tizen::Ui::Controls;
120 using namespace Tizen::Web::Json;
123 namespace Tizen { namespace Web { namespace Controls
127 static const char WEB_CTRL[] = "webcontrol";
128 static const char PARENT_WEB_CTRL[] = "parentwebcontrol";
131 static const float MIN_ZOOM_LEVEL = 0.3;
132 static const float MAX_ZOOM_LEVEL = 2;
135 static const int REDIRECTION_HEADER_GROUP = 300;
138 static const int MAX_TEXT_MATCH = pow(2, 31) - 1;
141 static const int PORTRAIT_KEYPAD_HEIGHT = 444;
142 static const int LANDSCAPE_KEYPAD_HEIGHT = 316;
146 AddHttpHeaderData(const Eina_Hash* pHash, const void* pKey, void* pValue, void* pUserData)
148 result r = E_SUCCESS;
150 String key(reinterpret_cast< const char* >(pKey));
151 String value(reinterpret_cast< char* >(pValue));
153 SysLog(NID_WEB_CTRL, "The current value of key is %ls, value is %ls", key.GetPointer(), value.GetPointer());
155 r = reinterpret_cast< HttpHeader* >(pUserData)->AddField(key, value);
156 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
163 AddHttpAttributeData(const Eina_Hash* pHash, const void* pKey, void* pValue, void* pUserData)
165 result r = E_SUCCESS;
167 std::unique_ptr<String> pAttrKey(new (std::nothrow) String(reinterpret_cast< char* >(const_cast< void* >(pKey))));
168 std::unique_ptr<String> pAttrValue(new (std::nothrow) String(reinterpret_cast< char* >(pValue)));
169 SysTryReturn(NID_WEB_CTRL, pAttrKey.get() && pAttrValue.get(), EINA_FALSE, E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
171 SysLog(NID_WEB_CTRL, "The current value of key is %ls, value is %ls", pAttrKey->GetPointer(), pAttrValue->GetPointer());
173 r = reinterpret_cast< HashMap* >(pUserData)->Add(*pAttrKey, *pAttrValue);
174 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
176 pAttrValue.release();
183 FreeCharArray(void* pData)
185 delete[] reinterpret_cast<char*>(pData);
190 ConvertErrorCode(int error)
192 LoadingErrorType errorCode = WEB_ERROR_UNKNOWN;
196 case EWK_ERROR_NETWORK_STATUS_CANCELLED:
198 case EWK_ERROR_NETWORK_STATUS_CANT_RESOLVE:
200 case EWK_ERROR_NETWORK_STATUS_CANT_RESOLVE_PROXY:
202 case EWK_ERROR_NETWORK_STATUS_CANT_CONNECT:
204 case EWK_ERROR_NETWORK_STATUS_CANT_CONNECT_PROXY:
206 case EWK_ERROR_NETWORK_STATUS_IO_ERROR:
208 case EWK_ERROR_NETWORK_STATUS_MALFORMED:
210 case EWK_ERROR_NETWORK_STATUS_TRY_AGAIN:
212 case EWK_ERROR_NETWORK_STATUS_TOO_MANY_REDIRECTS:
214 case EWK_ERROR_NETWORK_STATUS_TLS_FAILED:
216 case EWK_ERROR_NETWORK_STATUS_INTERNAL_SERVER_ERROR:
218 case EWK_ERROR_NETWORK_STATUS_BAD_GATEWAY:
220 case EWK_ERROR_NETWORK_STATUS_SERVICE_UNAVAILABLE:
222 case EWK_ERROR_NETWORK_STATUS_GATEWAY_TIMEOUT:
223 errorCode = WEB_NO_CONNECTION;
226 case EWK_ERROR_NETWORK_STATUS_BAD_REQUEST:
228 case EWK_ERROR_NETWORK_STATUS_REQUEST_URI_TOO_LONG:
229 errorCode = WEB_BAD_URL;
232 case EWK_ERROR_NETWORK_STATUS_FORBIDDEN:
233 errorCode = WEB_FILE_ACCESS_FAILED;
236 case EWK_ERROR_NETWORK_STATUS_REQUEST_TIMEOUT:
237 errorCode = WEB_REQUEST_TIMEOUT;
240 case EWK_ERROR_NETWORK_STATUS_UNSUPPORTED_MEDIA_TYPE:
241 errorCode = WEB_MIME_NOT_SUPPORTED;
244 case EWK_ERROR_NETWORK_STATUS_INSUFFICIENT_STORAGE:
245 errorCode = WEB_OUT_OF_MEMORY;
248 case EWK_ERROR_NETWORK_STATUS_REQUEST_ENTITY_TOO_LARGE:
249 errorCode = WEB_REQUEST_MAX_EXCEEDED;
252 case EWK_ERROR_NETWORK_STATUS_CONTINUE:
254 case EWK_ERROR_NETWORK_STATUS_SWITCHING_PROTOCOLS:
256 case EWK_ERROR_NETWORK_STATUS_PROCESSING:
258 case EWK_ERROR_NETWORK_STATUS_OK:
260 case EWK_ERROR_NETWORK_STATUS_CREATED:
262 case EWK_ERROR_NETWORK_STATUS_ACCEPTED:
264 case EWK_ERROR_NETWORK_STATUS_NON_AUTHORITATIVE:
266 case EWK_ERROR_NETWORK_STATUS_NO_CONTENT:
268 case EWK_ERROR_NETWORK_STATUS_RESET_CONTENT:
270 case EWK_ERROR_NETWORK_STATUS_PARTIAL_CONTENT:
272 case EWK_ERROR_NETWORK_STATUS_MULTI_STATUS:
274 case EWK_ERROR_NETWORK_STATUS_MULTIPLE_CHOICES:
276 case EWK_ERROR_NETWORK_STATUS_MOVED_PERMANENTLY:
278 case EWK_ERROR_NETWORK_STATUS_FOUND:
280 case EWK_ERROR_NETWORK_STATUS_SEE_OTHER:
282 case EWK_ERROR_NETWORK_STATUS_NOT_MODIFIED:
284 case EWK_ERROR_NETWORK_STATUS_USE_PROXY:
286 case EWK_ERROR_NETWORK_STATUS_NOT_APPEARING_IN_THIS_PROTOCOL:
288 case EWK_ERROR_NETWORK_STATUS_TEMPORARY_REDIRECT:
289 errorCode = WEB_HTTP_RESPONSE;
292 case EWK_ERROR_NETWORK_STATUS_SSL_FAILED:
293 errorCode = WEB_INVALID_CERTIFICATE;
297 errorCode = WEB_ERROR_UNKNOWN;
306 FireLoadingErrorOccurredEvent(_WebImpl* pImpl, int code, const char* pDescription)
308 result r = E_SUCCESS;
310 std::unique_ptr<Integer> pErrorCode(new (std::nothrow) Integer(code));
311 std::unique_ptr<String> pErrorDescription(new (std::nothrow) String(pDescription));
312 std::unique_ptr<_LoadingEventArg> pEventArg(new (std::nothrow) _LoadingEventArg(WEB_EVENT_LOADINGLISTENER_ERROR_OCCURRED));
313 SysTryReturnResult(NID_WEB_CTRL, pErrorCode.get() && pErrorDescription.get() && pEventArg.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
315 r = pEventArg->SetEventInfo(_LoadingEventArg::ERROR_TYPE, *pErrorCode.get());
316 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
317 pErrorCode.release();
319 r = pEventArg->SetEventInfo(_LoadingEventArg::ERROR_MESSAGE, *pErrorDescription.get());
320 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
321 pErrorDescription.release();
323 r = pImpl->GetWebEvent()->FireAsync(*pEventArg);
324 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
332 OnScriptAlertRequested(Evas_Object* pView, const char* pMessage, void* pUserData)
334 SysLog(NID_WEB_CTRL, "The current value of message is %s", pMessage);
336 result r = E_SUCCESS;
338 String msg(pMessage);
340 MessageBox messageBox;
341 r = messageBox.Construct(L"", msg, MSGBOX_STYLE_OK);
342 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
345 r = messageBox.ShowAndWait(modalResult);
346 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
348 ewk_view_javascript_alert_reply(pView);
355 OnScriptConfirmRequested(Evas_Object* pView, const char* pMessage, void* pUserData)
357 SysLog(NID_WEB_CTRL, "The current value of message is %s", pMessage);
359 result r = E_SUCCESS;
361 String msg(pMessage);
363 MessageBox messageBox;
364 r = messageBox.Construct(L"", msg, MSGBOX_STYLE_OKCANCEL);
365 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
368 r = messageBox.ShowAndWait(modalResult);
369 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
371 if (modalResult == MSGBOX_RESULT_OK)
373 ewk_view_javascript_confirm_reply(pView, EINA_TRUE);
377 ewk_view_javascript_confirm_reply(pView, EINA_FALSE);
385 OnScriptPromptRequested(Evas_Object* pView, const char* pMessage, const char* pDefaultValue, void* pUserData)
387 SysLog(NID_WEB_CTRL, "The current value of message is %s, defaulValue is %s", pMessage, pDefaultValue);
389 result r = E_SUCCESS;
391 String msg(pMessage);
392 String defVal(pDefaultValue);
394 int modalResult = -1;
395 Eina_Bool returnValue = EINA_TRUE;
396 _PromptPopup pPromptPopup;
398 r = pPromptPopup.Construct(msg, defVal);
399 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, returnValue = EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
401 r = pPromptPopup.ShowAndWait(modalResult);
402 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, returnValue = EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
404 if (modalResult == ID_BUTTON_PROMPT_OK)
406 std::unique_ptr<char[]> pResult(_StringConverter::CopyToCharArrayN(pPromptPopup.GetPromptText()));
407 SysTryCatch(NID_WEB_CTRL, pResult.get(), returnValue = EINA_FALSE, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
409 ewk_view_javascript_prompt_reply(pView, pResult.get());
414 ewk_view_javascript_prompt_reply(pView, null);
420 OnCertificateRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
422 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
423 Ewk_Certificate_Policy_Decision* pPolicy = reinterpret_cast< Ewk_Certificate_Policy_Decision* >(pEventInfo);
424 SysAssertf(pImpl && pPolicy, "Failed to request");
426 switch (pImpl->GetSetting().GetCertificateErrorHandlingMode())
428 case WEB_CERTIFICATE_ERROR_HANDLING_MODE_USER_CONFIRM:
430 if (pImpl->IsCertificateRequested())
432 ewk_certificate_policy_decision_allowed_set(pPolicy, static_cast< Eina_Bool >(pImpl->IsCertificateConfirmed()));
436 result r = E_SUCCESS;
438 r = pImpl->ShowCertificateConfirmPopup(CERTIFICATE_POPUP_MODE_USER_CONFIRM, pPolicy);
439 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
441 pImpl->SetCertificateRequested(true);
444 case WEB_CERTIFICATE_ERROR_HANDLING_MODE_CANCEL:
446 ewk_certificate_policy_decision_allowed_set(pPolicy, EINA_FALSE);
448 case WEB_CERTIFICATE_ERROR_HANDLING_MODE_CONTINUE :
449 ewk_certificate_policy_decision_allowed_set(pPolicy, EINA_TRUE);
458 OnHttpAuthenticationRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
460 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
461 Ewk_Auth_Challenge* pChallenge = reinterpret_cast< Ewk_Auth_Challenge* >(pEventInfo);
462 SysAssertf(pImpl && pChallenge, "Failed to request");
464 result r = E_SUCCESS;
466 r = pImpl->HttpAuthenticationRequested(pChallenge);
467 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
471 ewk_auth_challenge_credential_cancel(pChallenge);
472 evas_object_smart_callback_call(pView, "authentication,canceled", NULL);
477 OnHttpAuthenticationCanceled(void* pUserData, Evas_Object* pView, void* pEventInfo)
479 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
480 SysAssertf(pImpl , "Failed to request");
482 if (pImpl->GetLoadingListener())
484 result r = E_SUCCESS;
486 std::unique_ptr<_LoadingEventArg> pEventArg(new (std::nothrow) _LoadingEventArg(WEB_EVENT_LOADINGLISTENER_AUTHENTICATION_CANCELED));
487 SysTryReturnVoidResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
489 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
490 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
497 OnGeolocationPermissionRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
499 _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
500 Ewk_Geolocation_Permission_Request* pPermissionRequest = reinterpret_cast< Ewk_Geolocation_Permission_Request* >(pEventInfo);
501 SysAssertf(pImpl && pPermissionRequest, "Failed to request");
503 if (pImpl->GetSetting().IsGeolocationEnabled())
505 result r = E_SUCCESS;
507 std::unique_ptr<DbEnumerator> pEnum;
509 String geolocationPath(Tizen::App::App::GetInstance()->GetAppRootPath() + CUSTOM_DB_DIRECTORY_PATH + USER_CONFIRM_DB_NAME);
510 String table(GEOLOCATION_TABLE_NAME);
513 const Ewk_Security_Origin* pSecurityOrigin = ewk_geolocation_permission_request_origin_get(pPermissionRequest);
514 String origin = _Utility::CreateOrigin(pSecurityOrigin);
516 r = db.Construct(geolocationPath, "r", null);
517 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
519 pEnum = std::unique_ptr<DbEnumerator>(db.QueryN(L"Select permission From " + table + L" Where origin = '" + origin + L"'"));
522 r = pEnum->MoveNext();
523 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
526 r = pEnum->GetIntAt(0, permission);
527 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
529 SysLog(NID_WEB_CTRL, "The current value of permission is %d", permission);
531 ewk_geolocation_permission_request_set(pPermissionRequest, static_cast < Eina_Bool >(permission));
535 ewk_geolocation_permission_request_suspend(pPermissionRequest);
537 r = pImpl->ShowUserConfirmPopupAsync(USER_CONFIRM_GEOLOCATION, pPermissionRequest);
538 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
545 ewk_geolocation_permission_request_set(pPermissionRequest, EINA_FALSE);
550 OnGetUserMediaPermissionRequsted(void* pUserData, Evas_Object* pView, void* pEventInfo)
552 _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
553 Ewk_User_Media_Permission_Request* pPermissionRequest = reinterpret_cast< Ewk_User_Media_Permission_Request* >(pEventInfo);
554 SysAssertf(pImpl && pPermissionRequest, "Failed to request");
556 result r = pImpl->ShowUserConfirmPopupAsync(USER_CONFIRM_USERMEDIA, pEventInfo);
557 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
561 ewk_user_media_permission_request_set(pPermissionRequest, EINA_FALSE);
566 OnNotificationPermissionRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
568 _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
569 Ewk_Notification_Permission_Request* pPermissionRequest = reinterpret_cast< Ewk_Notification_Permission_Request* >(pEventInfo);
570 SysAssertf(pImpl && pPermissionRequest, "Failed to request");
572 SysLog(NID_WEB_CTRL, "The permission popup has not Implemented yet. allow is the default value now.");
574 //ToDo : Show NotificationPermissionPopup
576 Ewk_Context* pContext = ewk_view_context_get(pView);
577 SysAssertf(pContext, "Failed to get webkit instance.");
579 //ewk_notification_permission_request_origin_get(pPermissionRequest);
581 ewk_notification_permission_request_set(pPermissionRequest, EINA_TRUE);
586 OnNotificationShow(void* pUserData, Evas_Object* pView, void* pEventInfo)
588 _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
589 Ewk_Notification* pNotification = reinterpret_cast< Ewk_Notification* >(pEventInfo);
590 SysAssertf(pImpl && pNotification, "Failed to request");
592 Ewk_Context* pContext = ewk_view_context_get(pView);
593 SysAssertf(pContext, "Failed to get webkit instance.");
595 //ToDo : Show Notification
596 //Perform ewk_notification_clicked
597 //ewk_notification_security_origin_get(pNotification)
598 SysLog(NID_WEB_CTRL, "The current value of title is %s", ewk_notification_title_get(pNotification));
599 SysLog(NID_WEB_CTRL, "The current value of body is %s", ewk_notification_body_get(pNotification));
600 SysLog(NID_WEB_CTRL, "The current value of icon path is %s",ewk_notification_icon_url_get(pNotification));
602 uint64_t notificationId = ewk_notification_id_get(pNotification);
603 ewk_notification_showed(pContext, notificationId);
608 OnNotificationCancel(void* pUserData, Evas_Object* pView, void* pEventInfo)
610 _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
611 uint64_t* pNotificationID = reinterpret_cast< uint64_t* >(pEventInfo);
612 SysAssertf(pImpl && pNotificationID, "Failed to request");
614 //ToDo : Where is ewk API for cancel operation?
619 OnProtocolHandlerRegistrationRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
621 result r = E_SUCCESS;
622 _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
623 SysAssertf(pImpl, "Failed to request");
625 r = pImpl->ShowUserConfirmPopup(USER_PROTOCOL_HANDLER, pEventInfo);
626 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
631 OnIsProtocolHandlerRegistered(void* pUserData, Evas_Object* pView, void* pEventInfo)
633 int checkHandler = 0;
634 _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
635 Ewk_Custom_Handlers_Data* pHandlerData = reinterpret_cast< Ewk_Custom_Handlers_Data* >(pEventInfo);
636 SysAssertf(pImpl && pHandlerData, "Failed to request");
638 checkHandler = pImpl->SearchHandler(pHandlerData, false);
639 SysTryReturnVoidResult(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
640 switch (checkHandler)
645 ewk_custom_handlers_data_result_set(pHandlerData, EWK_CUSTOM_HANDLERS_DECLINED);
648 ewk_custom_handlers_data_result_set(pHandlerData, EWK_CUSTOM_HANDLERS_REGISTERED);
651 ewk_custom_handlers_data_result_set(pHandlerData, EWK_CUSTOM_HANDLERS_NEW);
659 OnProtocolHandlerUnregistrationRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
661 result r = E_SUCCESS;
662 _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
663 Ewk_Custom_Handlers_Data* pHandlerData = reinterpret_cast< Ewk_Custom_Handlers_Data* >(pEventInfo);
664 SysAssertf(pImpl && pHandlerData, "Failed to request");
666 r = pImpl->UnregistrationHandler(pHandlerData, false);
667 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
672 OnContentHandlerRegistrationRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
674 result r = E_SUCCESS;
675 _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
676 SysAssertf(pImpl, "Failed to request");
678 r = pImpl->ShowUserConfirmPopup(USER_CONTENT_HANDLER, pEventInfo);
679 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
684 OnIsContentHandlerRegistered(void* pUserData, Evas_Object* pView, void* pEventInfo)
686 int checkHandler = 0;
687 _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
688 Ewk_Custom_Handlers_Data* pHandlerData = reinterpret_cast< Ewk_Custom_Handlers_Data* >(pEventInfo);
689 SysAssertf(pImpl && pHandlerData, "Failed to request");
691 checkHandler = pImpl->SearchHandler(pHandlerData, true);
692 SysTryReturnVoidResult(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
694 switch (checkHandler)
699 ewk_custom_handlers_data_result_set(pHandlerData, EWK_CUSTOM_HANDLERS_DECLINED);
702 ewk_custom_handlers_data_result_set(pHandlerData, EWK_CUSTOM_HANDLERS_REGISTERED);
705 ewk_custom_handlers_data_result_set(pHandlerData, EWK_CUSTOM_HANDLERS_NEW);
713 OnContentHandlerUnregistrationRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
715 result r = E_SUCCESS;
716 _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
717 Ewk_Custom_Handlers_Data* pHandlerData = reinterpret_cast< Ewk_Custom_Handlers_Data* >(pEventInfo);
718 SysAssertf(pImpl && pHandlerData, "Failed to request");
720 r = pImpl->UnregistrationHandler(pHandlerData, true);
721 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
726 OnLoadingRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
728 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
729 Ewk_Policy_Decision* pPolicy = reinterpret_cast< Ewk_Policy_Decision* >(pEventInfo);
730 SysAssertf(pImpl && pPolicy, "Failed to request");
732 String url(ewk_policy_decision_url_get(pPolicy));
733 SysLog(NID_WEB_CTRL, "The current value of url is %ls", url.GetPointer());
735 if (url == L"about:blank")
737 ewk_policy_decision_use(pPolicy);
741 if (pImpl->GetLoadingListener() && ewk_frame_is_main_frame(ewk_policy_decision_frame_get(pPolicy))
742 && !pImpl->IsRedirectRequested())
744 pImpl->SetCertificateRequested(false);
746 if (pImpl->GetTextSearchListener())
748 pImpl->DisableAsyncSearch();
751 WebNavigationType navigationType = WEB_NAVIGATION_OTHER;
752 Ewk_Policy_Navigation_Type ewkNavigationType = ewk_policy_decision_navigation_type_get(pPolicy);
754 switch (ewkNavigationType)
756 case EWK_POLICY_NAVIGATION_TYPE_LINK_CLICKED:
757 navigationType = WEB_NAVIGATION_LINK_CLICKED;
759 case EWK_POLICY_NAVIGATION_TYPE_FORM_SUBMITTED:
760 navigationType = WEB_NAVIGATION_FORM_SUBMITTED;
762 case EWK_POLICY_NAVIGATION_TYPE_BACK_FORWARD:
763 navigationType = WEB_NAVIGATION_BACKFORWARD;
765 case EWK_POLICY_NAVIGATION_TYPE_RELOAD:
766 navigationType = WEB_NAVIGATION_RELOAD;
768 case EWK_POLICY_NAVIGATION_TYPE_FORM_RESUBMITTED:
769 navigationType = WEB_NAVIGATION_FORM_RESUBMITTED;
771 case EWK_POLICY_NAVIGATION_TYPE_OTHER:
772 navigationType = WEB_NAVIGATION_OTHER;
778 if (pImpl->GetLoadingListener()->OnLoadingRequested(url, navigationType))
780 ewk_policy_decision_ignore(pPolicy);
786 String currentUrl(pImpl->GetUrl());
787 String redirectUrl(pImpl->GetProtocolFromUri(url, currentUrl));
788 if (redirectUrl != L"")
790 pImpl->LoadUrl(redirectUrl);
791 ewk_policy_decision_ignore(pPolicy);
799 String uriScheme(uri.GetScheme());
800 SysLog(NID_WEB_CTRL, "The current value of scheme is %ls", uriScheme.GetPointer());
802 if ((uriScheme != L"http") && (uriScheme != L"https") && (uriScheme != L"file"))
804 ewk_policy_decision_ignore(pPolicy);
806 if (uriScheme == L"")
811 result r = E_SUCCESS;
813 _WebEventType eventType = WEB_EVENT_REQUEST_UNKNOWN;
815 if (uriScheme == L"rtsp")
817 eventType = WEB_EVENT_REQUEST_RTSP;
819 else if (uriScheme == L"mailto")
821 eventType = WEB_EVENT_REQUEST_EMAIL;
823 else if (uriScheme == L"tel")
825 eventType = WEB_EVENT_REQUEST_TEL;
827 else if (uriScheme == L"sms" || uriScheme == L"smsto" )
829 eventType = WEB_EVENT_REQUEST_SMS;
831 else if (uriScheme == L"mms" || uriScheme == L"mmsto" )
833 eventType = WEB_EVENT_REQUEST_MMS;
836 std::unique_ptr<_WebEventArg> pEventArg(new _WebEventArg(eventType, url));
837 SysTryReturnVoidResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
839 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
840 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
846 ewk_policy_decision_use(pPolicy);
851 OnLoadingStarted(void* pUserData, Evas_Object* pView, void* pEventInfo)
853 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
854 SysAssertf(pImpl, "Failed to request");
856 if (pImpl->GetLoadingListener())
858 result r = E_SUCCESS;
860 std::unique_ptr<_LoadingEventArg> pEventArg(new (std::nothrow) _LoadingEventArg(WEB_EVENT_LOADINGLISTENER_STARTED));
861 SysTryReturnVoidResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
863 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
864 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
871 OnPageTitleReceived(void* pUserData, Evas_Object* pView, void* pEventInfo)
873 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
874 char* pTitle = reinterpret_cast< char* >(pEventInfo);
875 SysAssertf(pImpl, "Failed to request");
877 SysLog(NID_WEB_CTRL, "The current value of title is %s", pTitle);
879 if (pImpl->GetLoadingListener())
881 result r = E_SUCCESS;
883 std::unique_ptr<String> pPageTitle(new (std::nothrow) String(pTitle));
884 std::unique_ptr<_LoadingEventArg> pEventArg(new (std::nothrow) _LoadingEventArg(WEB_EVENT_LOADINGLISTENER_PAGETITLE_RECEIVED));
885 SysTryReturnVoidResult(NID_WEB_CTRL, pPageTitle.get() && pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
887 r = pEventArg->SetEventInfo(_LoadingEventArg::PAGE_TITLE, *pPageTitle.get());
888 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
889 pPageTitle.release();
891 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
892 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
899 OnEstimatedProgress(void* pUserData, Evas_Object* pView, void* pEventInfo)
901 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
902 double* pProgress = reinterpret_cast< double* >(pEventInfo);
903 SysAssertf(pImpl, "Failed to request");
905 SysLog(NID_WEB_CTRL, "The current value of progress is %lf", *pProgress);
907 if (pImpl->GetLoadingListener())
909 result r = E_SUCCESS;
911 std::unique_ptr<Integer> pProgressPercentage(new (std::nothrow) Integer(static_cast< int >(*pProgress * 100)));
912 std::unique_ptr<_LoadingEventArg> pEventArg(new (std::nothrow) _LoadingEventArg(WEB_EVENT_LOADINGLISTENER_PROGRESS));
913 SysTryReturnVoidResult(NID_WEB_CTRL, pProgressPercentage.get() && pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
915 r = pEventArg->SetEventInfo(_LoadingEventArg::ESTIMATED_PROGRESS, *pProgressPercentage.get());
916 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
917 pProgressPercentage.release();
919 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
920 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
927 OnWebDataReceived(void* pUserData, Evas_Object* pView, void* pEventInfo)
929 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
930 Ewk_Policy_Decision* pPolicy = reinterpret_cast< Ewk_Policy_Decision* >(pEventInfo);
931 SysAssertf(pImpl && pPolicy, "Failed to request");
933 result r = E_SUCCESS;
935 const char* pUrl = ewk_policy_decision_url_get(pPolicy);
936 int code = ewk_policy_decision_response_status_code_get(pPolicy);
937 String mime(ewk_policy_decision_response_mime_get(pPolicy));
938 SysLog(NID_WEB_CTRL, "url : %s, mime : %ls, code : %d", pUrl, mime.GetPointer(), code);
940 ILoadingListener* pLoadingListener = pImpl->GetLoadingListener();
942 String url(ewk_policy_decision_url_get(pPolicy));
945 if (pLoadingListener && ewk_frame_is_main_frame(ewk_policy_decision_frame_get(pPolicy)))
947 const Eina_Hash* pHeader = ewk_policy_decision_response_headers_get(pPolicy);
949 DecisionPolicy policy;
950 HttpHeader httpHeader;
952 if (code >= REDIRECTION_HEADER_GROUP && code < REDIRECTION_HEADER_GROUP + 100)
954 pImpl->SetRedirectRequested(true);
958 eina_hash_foreach(pHeader, AddHttpHeaderData, &httpHeader);
959 SysTryCatch(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
961 policy = pLoadingListener->OnWebDataReceived(mime, httpHeader);
962 pImpl->SetPolicyDecision(policy);
965 switch (pImpl->GetPolicyDecision())
967 case WEB_DECISION_CONTINUE:
969 String currentUrl(pImpl->GetUrl());
970 String redirectUrl(pImpl->GetRedirectUri(url, currentUrl, mime));
971 if (redirectUrl != L"")
973 pImpl->LoadUrl(redirectUrl);
974 ewk_policy_decision_ignore(pPolicy);
979 if (pImpl->IsMimeSupported(mime) || mime == L"")
986 SysLog(NID_WEB_CTRL, "Launch native app to handle the mime");
988 ewk_policy_decision_ignore(pPolicy);
990 AppControl* pAppControl = null;
991 _SelectBox selectBox;
993 int selectedIndex = 0;
995 std::unique_ptr<IList, AllElementsDeleter> pList(_AppManagerImpl::FindAppControlsN(NULL, NULL, &mime, NULL));
999 appCount = pList->GetCount();
1002 r = selectBox.Construct(false, L"", appCount+1); //+1 for Downloader
1003 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1005 selectBox.AddListItem(L"Download", _SelectBox::LIST_ITEM_TYPE_NORMAL, false);
1006 for (int i = 0; i < appCount; i++)
1008 pAppControl = dynamic_cast< AppControl* >(pList->GetAt(i));
1009 SysTryReturnVoidResult(NID_WEB_CTRL, pAppControl, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
1011 String text = pAppControl->GetAppName();
1012 SysLog(NID_WEB_CTRL, "AppName : %S", text.GetPointer());
1014 selectBox.AddListItem(text, _SelectBox::LIST_ITEM_TYPE_NORMAL, false);
1016 r = selectBox.ShowAndWait(selectedIndex);
1017 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1019 if (selectedIndex == 0) //download
1021 RequestId reqId = 0;
1022 DownloadRequest request(pUrl);
1024 _DownloadManagerImpl* pManagerImpl = _DownloadManagerImpl::GetInstance();
1025 SysTryReturnVoidResult(NID_WEB_CTRL, pManagerImpl, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
1027 r = pManagerImpl->Start(request, reqId);
1028 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1030 else if (selectedIndex != -1) // -1 for cancel
1032 String path("path");
1033 String pathVal(pUrl);
1036 r = dataList.Construct();
1037 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1039 r = dataList.Add(path, pathVal);
1040 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1042 pAppControl = dynamic_cast< AppControl* >(pList->GetAt(selectedIndex));
1043 SysTryReturnVoidResult(NID_WEB_CTRL, pAppControl, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
1045 _AppControlImpl* pAcImpl = _AppControlImpl::GetInstance(*pAppControl);
1046 SysTryReturnVoidResult(NID_WEB_CTRL, pAcImpl, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
1048 r = pAcImpl->Start(null, null, &dataList, null);
1049 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1056 case WEB_DECISION_DOWNLOAD:
1058 ewk_policy_decision_ignore(pPolicy);
1060 _WebDataHandler* pDownloadHandler = pImpl->GetDownloadHandler();
1061 SysTryReturnVoidResult(NID_WEB_CTRL, pDownloadHandler, E_SYSTEM, "[%s] A system error has been occurred. Failed to get DownloadHandler.", GetErrorMessage(E_SYSTEM));
1063 Ewk_Context* pContext = ewk_view_context_get(pView);
1064 SysAssertf(pContext, "Failed to get webkit instance.");
1066 pDownloadHandler->StartDownload(pUrl);
1070 case WEB_DECISION_IGNORE:
1072 ewk_policy_decision_ignore(pPolicy);
1082 ewk_policy_decision_use(pPolicy);
1087 ewk_policy_decision_ignore(pPolicy);
1092 OnProgressCompleted(void* pUserData, Evas_Object* pView, void* pEventInfo)
1094 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1095 SysAssertf(pImpl, "Failed to request");
1097 if (pImpl->IsRedirectRequested())
1099 pImpl->SetRedirectRequested(false);
1102 if (pImpl->IsLoadingErrorOccurred())
1104 pImpl->SetLoadingErrorOccurred(false);
1105 evas_object_smart_callback_call(pView, "load,finished", NULL);
1111 OnLoadingErrorOccurred(void* pUserData, Evas_Object* pView, void* pEventInfo)
1113 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1114 Ewk_Error* pErrorData = reinterpret_cast< Ewk_Error* >(pEventInfo);
1115 SysAssertf(pImpl && pErrorData, "Failed to request");
1117 int code = ewk_error_code_get(pErrorData);
1118 const char* pDescription = ewk_error_description_get(pErrorData);
1120 SysLog(NID_WEB_CTRL, "The current value of code is %d, description is %s", code, pDescription);
1122 pImpl->SetLoadingErrorOccurred(true);
1125 case EWK_ERROR_CODE_FRAMELOADINTERRUPTEDBYPOLICYCHANGE:
1127 case EWK_ERROR_CODE_PLUGINWILLHANDLELOAD:
1130 case EWK_ERROR_NETWORK_STATUS_CANCELLED:
1131 evas_object_smart_callback_call(pView, "load,stop", NULL);
1135 if (pImpl->GetLoadingListener())
1137 result r = E_SUCCESS;
1139 r = FireLoadingErrorOccurredEvent(pImpl, code, pDescription);
1140 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1148 OnLoadingCanceled(void* pUserData, Evas_Object* pView, void* pEventInfo)
1150 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1151 SysAssertf(pImpl, "Failed to request");
1153 if (pImpl->GetLoadingListener())
1155 result r = E_SUCCESS;
1157 std::unique_ptr<_LoadingEventArg> pEventArg(new (std::nothrow) _LoadingEventArg(WEB_EVENT_LOADINGLISTENER_CANCELED));
1158 SysTryReturnVoidResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
1160 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1161 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1162 pEventArg.release();
1169 OnLoadingCompleted(void* pUserData, Evas_Object* pView, void* pEventInfo)
1171 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1172 SysAssertf(pImpl, "Failed to request");
1174 if (pImpl->GetLoadingListener())
1176 result r = E_SUCCESS;
1178 std::unique_ptr<_LoadingEventArg> pEventArg(new (std::nothrow) _LoadingEventArg(WEB_EVENT_LOADINGLISTENER_COMPLETED));
1179 SysTryReturnVoidResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
1181 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1182 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1183 pEventArg.release();
1190 OnLoadingCommitted(void* pUserData, Evas_Object* pView, void* pEventInfo)
1192 evas_object_focus_set(pView, EINA_FALSE);
1197 OnFaviconReceived(void* pUserData, Evas_Object* pView, void* pEventInfo)
1199 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1200 SysAssertf(pImpl, "Failed to request");
1202 if (pImpl->GetLoadingListener())
1204 result r = E_SUCCESS;
1206 std::unique_ptr<_LoadingEventArg> pEventArg(new (std::nothrow) _LoadingEventArg(WEB_EVENT_LOADINGLISTENER_FAVICON_RECEIVED));
1207 SysTryReturnVoidResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
1209 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1210 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1211 pEventArg.release();
1218 OnDidStartDownloadCallback(const char* pUrl, void* pUserData)
1220 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1221 SysAssertf(pUrl && pImpl != null, "Failed to request");
1223 SysLog(NID_WEB_CTRL, "The current value of url is %s", pUrl);
1228 FireWebPageShowRequestedEvent(_WebImpl* pImpl, int event)
1230 result r = E_SUCCESS;
1232 std::unique_ptr<_WebUiEventArg> pEventArg(new (std::nothrow) _WebUiEventArg(event));
1233 SysTryReturnResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
1235 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1236 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1237 pEventArg.release();
1244 OnWebPageShowRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
1246 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1247 SysAssertf(pImpl, "Failed to request");
1249 if (pImpl->GetUiEventListener())
1251 result r = E_SUCCESS;
1253 r = FireWebPageShowRequestedEvent(pImpl, WEB_EVENT_WEBUIEVENTLISTENER_PAGE_SHOW_REQUESTED);
1254 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1256 if (pImpl->GetUiEventListenerF())
1258 result r = E_SUCCESS;
1260 r = FireWebPageShowRequestedEvent(pImpl, WEB_EVENT_WEBUIEVENTLISTENER_PAGE_SHOW_REQUESTED_FLOAT);
1261 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1267 OnWebWindowCreateRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
1269 _WebImpl* pParentImpl = reinterpret_cast< _WebImpl* >(pUserData);
1270 Evas_Object** pChildView = reinterpret_cast< Evas_Object** >(pEventInfo);
1271 SysAssertf(pParentImpl && pChildView, "Failed to request");
1273 IWebUiEventListener* pUserUiListener = pParentImpl->GetUiEventListener();
1274 IWebUiEventListenerF* pUserUiListenerF = pParentImpl->GetUiEventListenerF();
1275 if (pUserUiListener)
1277 Web* pWeb = pUserUiListener->OnWebWindowCreateRequested();
1280 _WebImpl* pChildImpl = _WebImpl::GetInstance(pWeb);
1281 SysTryReturnVoidResult(NID_WEB_CTRL, pChildImpl, E_SYSTEM, "[%s] A system error has been occurred. Failed to get ChildImpl object.", GetErrorMessage(E_SYSTEM));
1283 *pChildView = dynamic_cast< _Web* >(&pChildImpl->GetCore())->GetWebNativeNode();
1284 evas_object_data_set(*pChildView, PARENT_WEB_CTRL, pParentImpl);
1287 if (pUserUiListenerF)
1289 Web* pWeb = pUserUiListenerF->OnWebWindowCreateRequested();
1292 _WebImpl* pChildImpl = _WebImpl::GetInstance(pWeb);
1293 SysTryReturnVoidResult(NID_WEB_CTRL, pChildImpl, E_SYSTEM, "[%s] A system error has been occurred. Failed to get ChildImpl object.", GetErrorMessage(E_SYSTEM));
1295 *pChildView = dynamic_cast< _Web* >(&pChildImpl->GetCore())->GetWebNativeNode();
1296 evas_object_data_set(*pChildView, PARENT_WEB_CTRL, pParentImpl);
1303 FireWebWindowClosedRequestedEvent(_WebImpl* pImpl, int event)
1305 result r = E_SUCCESS;
1307 std::unique_ptr<_WebUiEventArg> pEventArg(new (std::nothrow) _WebUiEventArg(event));
1308 SysTryReturnResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
1310 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1311 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1312 pEventArg.release();
1319 OnWebWindowClosedRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
1321 _WebImpl* pChildImpl = reinterpret_cast< _WebImpl* >(pUserData);
1322 SysAssertf(pChildImpl, "Failed to request");
1324 _WebImpl* pParentImpl = reinterpret_cast< _WebImpl* >(evas_object_data_get(pView, PARENT_WEB_CTRL));
1325 if (pParentImpl == null)
1330 if (pParentImpl->GetUiEventListener())
1332 result r = E_SUCCESS;
1334 r = FireWebWindowClosedRequestedEvent(pChildImpl, WEB_EVENT_WEBUIEVENTLISTENER_WINDOW_CLOSE_REQUSTED);
1335 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1337 if (pParentImpl->GetUiEventListenerF())
1339 result r = E_SUCCESS;
1341 r = FireWebWindowClosedRequestedEvent(pChildImpl, WEB_EVENT_WEBUIEVENTLISTENER_WINDOW_CLOSE_REQUSTED_FLOAT);
1342 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1348 FireWebPreventDefaultTriggeredEvent(_WebImpl* pImpl, int event, bool trigger)
1350 result r = E_SUCCESS;
1352 std::unique_ptr<Boolean> pPreventTrigger(new (std::nothrow) Boolean(trigger));
1353 std::unique_ptr<_WebUiEventArg> pEventArg(new (std::nothrow) _WebUiEventArg(event));
1354 SysTryReturnResult(NID_WEB_CTRL, pPreventTrigger.get() && pEventArg.get(), E_OUT_OF_MEMORY, " Memory allocation failed." );
1356 r = pEventArg->SetEventInfo(_WebUiEventArg::PREVENT_DEFAULT, *pPreventTrigger.get());
1357 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1358 pPreventTrigger.release();
1360 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1361 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1362 pEventArg.release();
1369 OnWebPreventDefaultTriggered(void* pUserData, Evas_Object* pView, void* pEventInfo)
1371 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1372 Eina_Bool* pTrigger = reinterpret_cast< Eina_Bool* >(pEventInfo);
1373 SysAssertf(pImpl && pTrigger, "Failed to request");
1375 if (pImpl->GetUiEventListener())
1377 result r = E_SUCCESS;
1379 r = FireWebPreventDefaultTriggeredEvent(pImpl, WEB_EVENT_WEBUIEVENTLISTENER_PREVENT_DEFAULT_TRIGGERED, static_cast< bool >(*pTrigger));
1380 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1382 if (pImpl->GetUiEventListenerF())
1384 result r = E_SUCCESS;
1386 r = FireWebPreventDefaultTriggeredEvent(pImpl, WEB_EVENT_WEBUIEVENTLISTENER_PREVENT_DEFAULT_TRIGGERED_FLOAT, static_cast< bool >(*pTrigger));
1387 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1393 FireWebPageBlockSelectedEvent(_WebImpl* pImpl)
1395 result r = E_SUCCESS;
1397 std::unique_ptr<Point> startPoint(new (std::nothrow) Point());
1398 std::unique_ptr<Point> endPoint(new (std::nothrow) Point());
1399 SysTryReturnResult(NID_WEB_CTRL, startPoint.get() && endPoint.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
1401 pImpl->GetBlockRange(*startPoint.get(), *endPoint.get());
1403 if ((endPoint->x != 0) && (endPoint->y != 0))
1405 std::unique_ptr<_WebUiEventArg> pEventArg(new (std::nothrow) _WebUiEventArg(WEB_EVENT_WEBUIEVENTLISTENER_PAGE_BLOCK_SELECTED));
1406 SysTryReturnResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
1408 r = pEventArg->SetEventInfo(_WebUiEventArg::BLOCK_START, *startPoint.get());
1409 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1410 startPoint.release();
1412 r = pEventArg->SetEventInfo(_WebUiEventArg::BLOCK_END, *endPoint.get());
1413 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1416 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1417 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1418 pEventArg.release();
1426 FireWebPageBlockSelectedEventF(_WebImpl* pImpl)
1428 result r = E_SUCCESS;
1430 std::unique_ptr<FloatPoint> startPoint(new (std::nothrow) FloatPoint());
1431 std::unique_ptr<FloatPoint> endPoint(new (std::nothrow) FloatPoint());
1433 SysTryReturnResult(NID_WEB_CTRL, startPoint.get() && endPoint.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
1435 pImpl->GetBlockRange(*startPoint.get(), *endPoint.get());
1437 if ((endPoint->x != 0.0f) && (endPoint->y != 0.0f))
1439 std::unique_ptr<_WebUiEventArg> pEventArg(new (std::nothrow) _WebUiEventArg(WEB_EVENT_WEBUIEVENTLISTENER_PAGE_BLOCK_SELECTED_FLOAT));
1440 SysTryReturnResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
1442 r = pEventArg->SetEventInfo(_WebUiEventArg::BLOCK_START, *startPoint.get());
1443 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1444 startPoint.release();
1446 r = pEventArg->SetEventInfo(_WebUiEventArg::BLOCK_END, *endPoint.get());
1447 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1450 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1451 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1452 pEventArg.release();
1460 OnWebPageBlockSelected(void* pUserData, Evas_Object* pView, void* pEventInfo)
1462 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1463 Ewk_Text_Style* pStyle = reinterpret_cast< Ewk_Text_Style* >(pEventInfo);
1464 SysAssertf(pImpl && pStyle, "Failed to request");
1466 if (pImpl->GetUiEventListener())
1468 result r = E_SUCCESS;
1470 r = FireWebPageBlockSelectedEvent(pImpl);
1471 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1473 if (pImpl->GetUiEventListenerF())
1475 result r = E_SUCCESS;
1477 r = FireWebPageBlockSelectedEventF(pImpl);
1478 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1484 OnSelectUploadFile(Evas_Object* pView, Eina_Bool multipleFile, Eina_List* pAcceptTypes, const char* pCapture, void* pUserData)
1486 Eina_Bool ret = EINA_FALSE;
1487 Eina_List* pSelectedFileNames = null;
1488 String isMultipleSelection(L"single");
1492 isMultipleSelection.Append(L"multiple");
1495 std::unique_ptr<_MediaSelectionListener> pMediaListener(new (std::nothrow) _MediaSelectionListener());
1496 SysTryCatch(NID_WEB_CTRL, pMediaListener.get(), , E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
1499 int itemCount = eina_list_count(pAcceptTypes);
1500 String fileType = L"all";
1504 String item((char*)eina_list_nth(pAcceptTypes, 0));
1505 if (item.StartsWith("image/",0))
1507 fileType = L"image";
1509 else if (item.StartsWith("audio/",0))
1511 fileType = L"audio";
1513 else if (item.StartsWith("video/",0))
1515 fileType = L"video";
1520 result r = dataList.Construct();
1521 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
1523 String mode(L"selectionType");
1524 r = dataList.Add(mode, isMultipleSelection);
1525 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
1527 String type(L"type");
1528 r = dataList.Add(type, fileType);
1529 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
1531 std::unique_ptr<AppControl> pMediaAppControl(_AppManagerImpl::FindAppControlN(L"tizen.filemanager", L"http://tizen.org/appcontrol/operation/pick"));
1532 SysTryCatch(NID_WEB_CTRL, pMediaAppControl.get(), r = GetLastResult(), r, "[%s] Propagating.", GetErrorMessage(r));
1534 _AppControlImpl* pMediaAppControlImpl = _AppControlImpl::GetInstance(*pMediaAppControl);
1535 r = pMediaAppControlImpl->Start(null, null, &dataList, pMediaListener.get());
1536 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
1540 if (pMediaListener->IsSelectionCompleted())
1542 const ArrayList* pSelectedFiles = pMediaListener->GetSelectedFiles();
1543 SysTryCatch(NID_WEB_CTRL, pSelectedFiles, r = GetLastResult(), r, "[%s] Propagating.", GetErrorMessage(r));
1545 int fileCount = pSelectedFiles->GetCount();
1547 for (int i = 0; i < fileCount; i++)
1549 String* pFile = (String*)pSelectedFiles->GetAt(i);
1550 SysTryCatch(NID_WEB_CTRL, pFile, r = GetLastResult(), r, "[%s] Propagating.", GetErrorMessage(r));
1552 std::unique_ptr<ByteBuffer> pByteBuf(StringUtil::StringToUtf8N(*pFile));
1553 SysTryCatch(NID_WEB_CTRL, pByteBuf.get(), r = GetLastResult(), r, "[%s] Propagating.", GetErrorMessage(r));
1555 pSelectedFileNames = eina_list_append(pSelectedFileNames, strdup((const char*)pByteBuf->GetPointer()));
1562 ecore_main_loop_iterate();
1565 ewk_view_open_panel_reply(pView, pSelectedFileNames, ret);
1570 ewk_view_open_panel_reply(pView, null, ret);
1571 eina_list_free(pSelectedFileNames);
1577 OnHandleJavaScriptRequest(void* pUserData, Evas_Object* pView, void* pEventInfo)
1579 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1580 char* pJsonText = reinterpret_cast< char* >(pEventInfo);
1581 SysAssertf(pImpl && pJsonText, "Failed to request");
1583 result r = E_SUCCESS;
1585 SysLog(NID_WEB_CTRL, "The current value of jsontext is %s", pJsonText);
1587 std::unique_ptr<_JsBridgeArg> pEventArg(new (std::nothrow) _JsBridgeArg());
1588 SysTryReturnVoidResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
1590 r = pEventArg->Construct(pJsonText);
1591 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1593 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1594 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1595 pEventArg.release();
1600 OnWebKeypadStateChanged(void* pUserData, Evas_Object* pView, void* pEventInfo)
1602 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1603 Eina_Rectangle* pEinaRect = reinterpret_cast< Eina_Rectangle* >(pEventInfo);
1604 SysAssertf(pImpl && pEinaRect, "Failed to request");
1606 if (pImpl->GetSetting().GetInputStyle() == INPUT_STYLE_OVERLAY)
1608 _ICoordinateSystemTransformer* pXformer = _CoordinateSystem::GetInstance()->GetInverseTransformer();
1609 SysAssertf(pXformer, "Failed to get CoordinateTransformer");
1611 Rectangle rect(pEinaRect->x, pEinaRect->y, pEinaRect->w, pEinaRect->h);
1613 if (rect.height == 0)
1618 _Form* pFormCore = pImpl->GetParentFormCore(dynamic_cast< _Control* >(&pImpl->GetCore()));
1621 if (pFormCore->HasFooter() && pFormCore->IsFooterVisible())
1623 pImpl->SetFooterVisibleState(true);
1624 pFormCore->SetActionBarsVisible(FORM_ACTION_BAR_FOOTER, false);
1627 pFormCore->DeflateClientRectHeight(pXformer->TransformVertical(rect.height));
1630 if (pImpl->GetWebKeypadEventListener())
1632 if (pImpl->IsKeypadVisible() == true)
1634 if ((pImpl->GetPreviousKeypadBounds().width == rect.width) && (pImpl->GetPreviousKeypadBounds().height != rect.height))
1636 pImpl->GetWebKeypadEventListener()->OnWebKeypadBoundsChanged(*dynamic_cast< Web* >(&pImpl->GetPublic()));
1641 pImpl->GetWebKeypadEventListener()->OnWebKeypadWillOpen(*dynamic_cast< Web* >(&pImpl->GetPublic()));
1644 pImpl->SetKeypadVisibleState(true);
1645 pImpl->SetPreviousKeypadBounds(rect);
1649 result r = pImpl->SetFullScreenKeypad();
1650 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1656 OnWebKeypadOpened(void* pUserData, Evas_Object* pView, void* pEventInfo)
1658 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1659 SysAssertf(pImpl, "Failed to request");
1661 if (pImpl->GetWebKeypadEventListener())
1663 pImpl->GetWebKeypadEventListener()->OnWebKeypadOpened(*static_cast< Web* >(&pImpl->GetPublic()));
1669 OnWebKeypadClosed(void* pUserData, Evas_Object* pView, void* pEventInfo)
1671 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1672 SysAssertf(pImpl, "Failed to request");
1674 if (pImpl->IsKeypadVisible())
1676 _Form* pFormCore = pImpl->GetParentFormCore(dynamic_cast< _Control* >(&pImpl->GetCore()));
1679 if (pFormCore->HasFooter() && pImpl->IsFooterVisible())
1681 pImpl->SetFooterVisibleState(false);
1682 pFormCore->SetActionBarsVisible(FORM_ACTION_BAR_FOOTER, true);
1685 pFormCore->DeflateClientRectHeight(0);
1688 if (pImpl->GetWebKeypadEventListener())
1690 pImpl->GetWebKeypadEventListener()->OnWebKeypadClosed(*dynamic_cast< Web* >(&pImpl->GetPublic()));
1693 pImpl->SetKeypadVisibleState(false);
1699 OnWindowObjectFocusGained(void *pUserData, Evas_Object *pWin, void *pEvent_info)
1701 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1702 SysAssertf(pImpl, "Failed to request");
1704 if (pImpl->IsKeypadOpened() == true)
1706 _Web* pWebCore = dynamic_cast< _Web* >(&(pImpl->GetCore()));
1707 SysAssertf(pWebCore, "Failed to get Web core object");
1709 evas_object_focus_set(pWebCore->GetWebNativeNode(), EINA_TRUE);
1711 pImpl->SetKeypadOpened(false);
1717 OnWebNativeNodeFocusGained(void *pUserData, Evas *pCanvas, Evas_Object* pView, void* pEventInfo)
1719 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1720 SysAssertf(pImpl, "Failed to request");
1722 if (pImpl->IsKeypadOpened() == true)
1724 pImpl->SetKeypadOpened(false);
1730 OnColorPickerProviderRequested(Ewk_View_Smart_Data *pSmartData, int red, int green, int blue, int alpha)
1732 SysAssertf(pSmartData, "invalid smartdata");
1733 _WebImpl* pWebImpl = reinterpret_cast<_WebImpl*>(evas_object_data_get(pSmartData->self, WEB_CTRL));
1734 SysAssertf(pWebImpl, "Failed to get Impl");
1736 result r = E_SUCCESS;
1738 if (pWebImpl->GetColorpicker())
1745 r = pWebImpl->ShowColorPicker(red, green, blue, alpha, color);
1746 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Memory allocation failed.", GetErrorMessage(r));
1748 byte r1, g1, b1, a1;
1749 color.GetColorComponents(r1, g1, b1, a1);
1750 ewk_view_color_picker_color_set(pSmartData->self, r1, g1, b1, a1);
1757 OnColorPickerProviderDismissed(Ewk_View_Smart_Data *pSmartData)
1759 SysAssertf(pSmartData, "invalid smartdata");
1761 _WebImpl* pWebImpl = reinterpret_cast<_WebImpl*>(evas_object_data_get(pSmartData->self, WEB_CTRL));
1762 SysAssertf(pWebImpl, "Failed to get Impl");
1764 return pWebImpl->HideColorPicker();
1769 OnDatePickerProviderRequested(Ewk_View_Smart_Data *pSmartData, Ewk_Input_Type inputType, const char* inputValue)
1771 SysAssertf(pSmartData, "Failed to request");
1772 _WebImpl* pWebImpl = reinterpret_cast<_WebImpl*>(evas_object_data_get(pSmartData->self, WEB_CTRL));
1773 SysAssertf(pWebImpl, "Failed to get Impl");
1775 result r = E_SUCCESS;
1777 if (pWebImpl->GetDatepicker())
1779 ewk_view_focused_input_element_value_set(pSmartData->self, inputValue);
1786 r = pWebImpl->ShowDatePicker(inputType, inputValue, dateStr);
1787 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Memory allocation failed.", GetErrorMessage(r));
1789 std::unique_ptr<char[]> pDateStr(_StringConverter::CopyToCharArrayN(dateStr));
1790 SysTryReturn(NID_WEB_CTRL, pDateStr.get(), EINA_FALSE, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
1792 ewk_view_focused_input_element_value_set(pSmartData->self, pDateStr.get());
1799 OnSelectBoxRequested(Ewk_View_Smart_Data *pSmartData, Eina_Rectangle rect, Ewk_Text_Direction textDirection, double pageScaleFactor, Eina_List* pItems, int selectedIndex)
1801 SysAssertf(pSmartData, "Failed to request");
1803 _WebImpl* pWebImpl = reinterpret_cast<_WebImpl*>(evas_object_data_get(pSmartData->self, WEB_CTRL));
1804 SysAssertf(pWebImpl, "Failed to get Impl");
1806 result r = pWebImpl->ShowSelectBoxPopup(false, L"", pItems, pSmartData->self, selectedIndex);
1807 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
1814 OnSelectBoxClosed(Ewk_View_Smart_Data *pSmartData)
1816 SysAssertf(pSmartData, "invalid smartdata");
1818 _WebImpl* pWebImpl = reinterpret_cast<_WebImpl*>(evas_object_data_get(pSmartData->self, WEB_CTRL));
1819 SysAssertf(pWebImpl, "Failed to get Impl");
1821 result r = pWebImpl->ClearSelectBoxPopup();
1822 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
1829 OnSelectBoxUpdateRequested(Ewk_View_Smart_Data *pSmartData, Eina_Rectangle rect, Ewk_Text_Direction textDirection, Eina_List* pItems, int selectedIndex)
1831 SysAssertf(pSmartData, "invalid smartdata");
1833 _WebImpl* pWebImpl = reinterpret_cast<_WebImpl*>(evas_object_data_get(pSmartData->self, WEB_CTRL));
1834 SysAssertf(pWebImpl, "Failed to get Impl");
1836 result r = pWebImpl->UpdateSelectBoxPopup(pItems, selectedIndex, false);
1837 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
1844 OnCookiesPolicyGot(Ewk_Cookie_Accept_Policy policy, Ewk_Web_Error *pError, void *pUserData)
1846 _WebPresenter* pPresenter = reinterpret_cast< _WebPresenter* >(pUserData);
1847 SysAssertf(pPresenter && !pError, "Failed to request");
1849 bool ret = EINA_TRUE;
1853 case EWK_COOKIE_ACCEPT_POLICY_ALWAYS:
1855 case EWK_COOKIE_ACCEPT_POLICY_NO_THIRD_PARTY:
1859 case EWK_COOKIE_ACCEPT_POLICY_NEVER:
1868 SysLog(NID_WEB_CTRL, "The current value of policy is %d", ret);
1870 pPresenter->EndAsyncProcess(ret);
1875 OnScriptExecuted(Evas_Object* pView, const char* pResult, void* pUserData)
1877 _WebPresenter* pPresenter = reinterpret_cast< _WebPresenter* >(pUserData);
1878 SysAssertf(pPresenter, "Failed to request");
1880 String result(pResult);
1881 SysLog(NID_WEB_CTRL, "result : %ls", result.GetPointer());
1883 pPresenter->EndAsyncProcess(result);
1888 OnTextFound(void* pUserData, Evas_Object* pView, void* pEventInfo)
1890 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1891 SysAssertf(pImpl, "Failed to request");
1893 int* pTotalCount = reinterpret_cast< int* >(pEventInfo);
1894 SysLog(NID_WEB_CTRL, "The current value of totalCount is %d", *pTotalCount);
1896 _WebPresenter* pWebPresenter = pImpl->GetSearchPresenter();
1900 pWebPresenter->EndAsyncProcess(*pTotalCount);
1904 if (pImpl->GetTextSearchListener())
1906 result r = E_SUCCESS;
1910 if (*pTotalCount > 0)
1912 ordinal = pImpl->GetAsyncSearchOrdinal();
1913 pImpl->SetAsyncSearchResult(*pTotalCount);
1916 if (pImpl->GetPendingAsyncSearchCount() > 0)
1921 std::unique_ptr<Integer> pCount(new (std::nothrow) Integer(*pTotalCount));
1922 std::unique_ptr<Integer> pOrdinal(new (std::nothrow) Integer(ordinal));
1923 std::unique_ptr<_TextSearchEventArg> pEventArg(new (std::nothrow) _TextSearchEventArg(WEB_EVENT_TEXTSEARCHLISTENER_TEXT_FOUND));
1924 SysTryReturnVoidResult(NID_WEB_CTRL, pCount.get() && pOrdinal.get() && pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
1926 r = pEventArg->SetEventInfo(_TextSearchEventArg::TOTAL_COUNT, *pCount.get());
1927 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1930 r = pEventArg->SetEventInfo(_TextSearchEventArg::CURRENT_ORDINAL, *pOrdinal.get());
1931 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1934 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1935 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1936 pEventArg.release();
1942 class _JsBridgeHashCodeProvider
1943 : public Tizen::Base::Collection::IHashCodeProviderT< Tizen::Base::String >
1946 _JsBridgeHashCodeProvider(){}
1947 virtual ~_JsBridgeHashCodeProvider(void) {}
1950 int GetHashCode(const Tizen::Base::String& obj) const
1952 return obj.GetHashCode();
1958 //Comparer implementation
1959 class _JsBridgeComparer
1960 : public Tizen::Base::Collection::IComparerT< Tizen::Base::String >
1963 _JsBridgeComparer(){}
1964 virtual ~_JsBridgeComparer(void) {}
1967 result Compare(const Tizen::Base::String& obj1, const Tizen::Base::String& obj2, int& cmp) const
1984 _WebImpl::_WebImpl(Web* pWeb, Tizen::Ui::_Control* pCore)
1985 : _ContainerImpl(pWeb, pCore)
1986 , __isFooterVisible(false)
1987 , __isKeypadVisible(false)
1988 , __isKeypadOpened(false)
1989 , __isLoadingErrorOccurred(false)
1990 , __isRedirectRequested(false)
1991 , __isCertificateRequested(false)
1992 , __isCertificateConfirmed(false)
1993 , __keypadBounds(0, 0, 0, 0)
1995 , __pUserLoadingListener(null)
1996 , __pUserUiListener(null)
1997 , __pUserUiListenerF(null)
1998 , __pUserKeypadEventListener(null)
1999 , __pTextSearchListener(null)
2001 , __pJsBridgeList(null)
2002 , __pJsProvider(null)
2003 , __pJsComparer(null)
2004 , __pWebDownloadHandler(null)
2006 , __pAuthChallenge(null)
2007 , __pAuthPopup(null)
2008 , __pUserConfirmPopup(null)
2009 , __pCertConfirmPopup(null)
2010 , __pSelectBox(null)
2011 , __pDatePicker(null)
2012 , __pColorPicker(null)
2013 , __policy(WEB_DECISION_CONTINUE)
2015 __textSearch.__searchAll = false;
2016 __textSearch.__searchForward = true;
2017 __textSearch.__caseSensitive = false;
2018 __textSearch.__pending = 0;
2019 __textSearch.__currentIndex = 1;
2020 __textSearch.__totalCount = -1;
2021 __textSearch.__text = L"";
2025 _WebImpl::~_WebImpl()
2027 RemoveEventListenerCallback();
2031 _WebImpl::CreateWebImplN(Web* pControl, const Rectangle& bounds)
2033 result r = E_SUCCESS;
2035 r = GET_SIZE_INFO(Web).CheckInitialSizeValid(Dimension(bounds.width, bounds.height), _CONTROL_ORIENTATION_PORTRAIT);
2036 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
2038 _Web* pCore = _Web::CreateWebN();
2039 SysTryReturn(NID_WEB_CTRL, pCore, null, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2041 _WebImpl* pImpl = new (std::nothrow) _WebImpl(pControl, pCore);
2043 r = CheckConstruction(pCore, pImpl);
2044 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
2046 r = pImpl->InitializeBoundsProperties(GET_SIZE_INFO(Web), bounds, pCore->GetOrientation());
2047 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2049 r = pImpl->Construct();
2050 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2062 _WebImpl::CreateWebImplN(Web* pControl, const FloatRectangle& bounds)
2064 result r = E_SUCCESS;
2066 r = GET_SIZE_INFO(Web).CheckInitialSizeValidF(FloatDimension(bounds.width, bounds.height), _CONTROL_ORIENTATION_PORTRAIT);
2067 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
2069 _Web* pCore = _Web::CreateWebN();
2070 SysTryReturn(NID_WEB_CTRL, pCore, null, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2072 _WebImpl* pImpl = new (std::nothrow) _WebImpl(pControl, pCore);
2074 r = CheckConstruction(pCore, pImpl);
2075 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
2077 r = pImpl->InitializeBoundsPropertiesF(GET_SIZE_INFO(Web), bounds, pCore->GetOrientation());
2078 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2080 r = pImpl->Construct();
2081 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2093 _WebImpl::Construct(void)
2095 result r = E_SUCCESS;
2097 r = __mutex.Create();
2098 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2100 r = __textSearch.__searchQueue.Construct();
2101 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2103 r = InitJsBridgeList();
2104 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2107 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2109 __pWebCore = dynamic_cast< _Web* >(&(GetCore()));
2110 SysTryReturnResult(NID_WEB_CTRL, __pWebCore, E_SYSTEM, "A system error has been occurred. Failed to get web control");
2117 _WebImpl::InitializeSetting(void)
2119 result r = E_SUCCESS;
2121 r = SetSetting(*__pWebCore->GetSetting());
2122 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2124 _WebSettingImpl* pWebSettingImpl = _WebSettingImpl::GetInstance(__pWebCore->GetSetting());
2126 SetCookieEnabled(pWebSettingImpl->IsCookieEnabled());
2127 SetPrivateBrowsingEnabled(pWebSettingImpl->IsPrivateBrowsingEnabled());
2128 SetZoomLevel(pWebSettingImpl->GetZoomLevel());
2130 SetEventListenerCallback();
2137 _WebImpl::IsLayoutable(void) const
2144 _WebImpl::InitWebEvent(void)
2146 __pWebEvent = std::unique_ptr<_WebEvent>(new (std::nothrow) _WebEvent());
2147 SysTryReturnResult(NID_WEB_CTRL, __pWebEvent.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
2149 return __pWebEvent->Construct(*this);
2154 _WebImpl::GetWebEvent(void) const
2156 return __pWebEvent.get();
2161 _WebImpl::ConvertToSlpHeaderN(const HttpHeader& header) const
2163 Eina_Hash* pHttpHeader = null;
2165 std::unique_ptr<IList> pFieldNameList(header.GetFieldNamesN());
2166 if (pFieldNameList.get())
2168 pHttpHeader = eina_hash_string_small_new(FreeCharArray);
2169 SysTryReturn(NID_WEB_CTRL, pHttpHeader, null, E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2171 int count = pFieldNameList->GetCount();
2173 for (int i = 0; i < count; i++)
2175 String* pFieldName = dynamic_cast< String* >(pFieldNameList->GetAt(i));
2176 SysTryCatch(NID_WEB_CTRL, pFieldName, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2178 std::unique_ptr<char[]> pKey(_StringConverter::CopyToCharArrayN(*pFieldName));
2179 SysTryCatch(NID_WEB_CTRL, pKey.get(), , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2181 std::unique_ptr<IEnumerator> pFieldValueEnum(header.GetFieldValuesN(*pFieldName));
2182 SysTryCatch(NID_WEB_CTRL, pFieldValueEnum.get(), , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2184 while (pFieldValueEnum->MoveNext() == E_SUCCESS)
2186 Eina_Bool ret = false;
2188 String* pFieldValue = dynamic_cast< String* >(pFieldValueEnum->GetCurrent());
2189 SysTryCatch(NID_WEB_CTRL, pFieldValue, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2191 std::unique_ptr<char[]> pValue(_StringConverter::CopyToCharArrayN(*pFieldValue));
2192 SysTryCatch(NID_WEB_CTRL, pValue.get(), , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2194 ret = eina_hash_add(pHttpHeader, pKey.get(), pValue.release());
2195 SysTryCatch(NID_WEB_CTRL, ret == EINA_TRUE, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2202 eina_hash_free(pHttpHeader);
2209 _WebImpl::LoadUrl(const String& url) const
2211 std::unique_ptr<char[]> pUrl(_StringConverter::CopyToCharArrayN(url));
2212 SysTryReturn(NID_WEB_CTRL, pUrl.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2214 ewk_view_url_set(__pWebCore->GetWebNativeNode(), pUrl.get());
2221 _WebImpl::LoadUrl(const String& url, const HttpHeader& header)
2223 std::unique_ptr<char[]> pUrl(_StringConverter::CopyToCharArrayN(url));
2224 SysTryReturn(NID_WEB_CTRL, pUrl.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2226 Eina_Hash* pHttpHeader = ConvertToSlpHeaderN(header);
2228 ewk_view_url_request_set(__pWebCore->GetWebNativeNode(), pUrl.get(), EWK_HTTP_METHOD_GET, pHttpHeader, null);
2230 eina_hash_free(pHttpHeader);
2237 _WebImpl::LoadUrlWithPostRequest(const String& url, const HttpHeader& header, const ByteBuffer& body) const
2239 std::unique_ptr<char[]> pUrl(_StringConverter::CopyToCharArrayN(url));
2240 SysTryReturn(NID_WEB_CTRL, pUrl.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2242 Eina_Hash* pHttpHeader = ConvertToSlpHeaderN(header);
2244 ewk_view_url_request_set(__pWebCore->GetWebNativeNode(), pUrl.get(), EWK_HTTP_METHOD_POST, pHttpHeader, reinterpret_cast< const char* >(body.GetPointer()));
2246 eina_hash_free(pHttpHeader);
2253 _WebImpl::LoadData(const String& baseUrl, const ByteBuffer& content, const String& mime, const String& encoding) const
2255 SysTryReturnResult(NID_WEB_CTRL, content.GetLimit() > 0, E_INVALID_ARG, "The content buffer is empty.");
2257 std::unique_ptr<char[]> pUrl(_StringConverter::CopyToCharArrayN(baseUrl));
2258 std::unique_ptr<char[]> pMime(_StringConverter::CopyToCharArrayN(mime));
2259 std::unique_ptr<char[]> pEncoding(_StringConverter::CopyToCharArrayN(encoding));
2260 SysTryReturn(NID_WEB_CTRL, pUrl.get() && pMime.get() && pEncoding.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2262 ewk_view_contents_set(__pWebCore->GetWebNativeNode(), reinterpret_cast< const char* >(content.GetPointer()), content.GetLimit(), pMime.get(), pEncoding.get(), pUrl.get());
2269 _WebImpl::Pause(void)
2271 ewk_view_suspend(__pWebCore->GetWebNativeNode());
2276 _WebImpl::Resume(void)
2278 ewk_view_resume(__pWebCore->GetWebNativeNode());
2283 _WebImpl::ShowSelectBoxPopup(bool isMultiSelect, const String& title, Eina_List* pItems, Evas_Object* pWebView, int selectedIndex)
2285 __pSelectBox.reset();
2287 int itemCount = eina_list_count(pItems);
2288 SysTryReturnResult(NID_WEB_CTRL, itemCount > 0, E_SYSTEM, "ItemCount is invalid.");
2290 result r = E_SUCCESS;
2292 std::unique_ptr<_SelectBox> pSelectBox(new (std::nothrow) _SelectBox());
2293 SysTryReturnResult(NID_WEB_CTRL, pSelectBox.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
2295 r = pSelectBox->Construct(isMultiSelect, title, itemCount, pWebView);
2296 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2298 r = pSelectBox->UpdateList(pItems, selectedIndex, false, false);
2299 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2301 __pSelectBox = std::move(pSelectBox);
2303 return __pSelectBox->ShowPopup();
2308 _WebImpl::UpdateSelectBoxPopup(Eina_List* pItems, int selectedIndex, bool isGroupedList)
2310 SysTryReturnResult(NID_WEB_CTRL, __pSelectBox.get(), E_SYSTEM, "SlectBox instance does not exist.");
2312 return __pSelectBox->UpdateList(pItems, selectedIndex, true, isGroupedList);
2317 _WebImpl::ClearSelectBoxPopup(void)
2319 SysTryReturnResult(NID_WEB_CTRL, __pSelectBox.get(), E_SYSTEM, "SlectBox instance does not exist.");
2321 __pSelectBox.reset();
2328 _WebImpl::GetDatepicker(void)
2330 _InputPickerPopup* pInputPicker =null;
2333 pInputPicker = __pDatePicker.get();
2335 return pInputPicker;
2340 _WebImpl::GetColorpicker(void)
2342 _InputPickerPopup* pInputPicker =null;
2345 pInputPicker = __pColorPicker.get();
2347 return pInputPicker;
2352 _WebImpl::CanGoBack(void) const
2354 return static_cast< bool >(ewk_view_back_possible(__pWebCore->GetWebNativeNode()));
2359 _WebImpl::CanGoForward(void) const
2361 return static_cast< bool >(ewk_view_forward_possible(__pWebCore->GetWebNativeNode()));
2366 _WebImpl::GoBack(void) const
2368 ewk_view_back(__pWebCore->GetWebNativeNode());
2373 _WebImpl::GoForward(void) const
2375 ewk_view_forward(__pWebCore->GetWebNativeNode());
2380 _WebImpl::GetUrl(void) const
2382 return ewk_view_url_get(__pWebCore->GetWebNativeNode());
2387 _WebImpl::GetTitle(void) const
2389 return ewk_view_title_get(__pWebCore->GetWebNativeNode());
2394 _WebImpl::StopLoading(void) const
2396 ewk_view_stop(__pWebCore->GetWebNativeNode());
2401 _WebImpl::Reload(void) const
2403 ewk_view_reload_bypass_cache(__pWebCore->GetWebNativeNode());
2408 _WebImpl::EvaluateJavascriptN(const String& scriptCode) const
2410 if (scriptCode.GetLength())
2412 std::unique_ptr<char[]> pScript(_StringConverter::CopyToCharArrayN(scriptCode));
2413 SysTryReturn(NID_WEB_CTRL, pScript.get(), null, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2415 _WebPresenter presenter;
2416 presenter.InitAsyncProcess();
2418 ewk_view_script_execute(__pWebCore->GetWebNativeNode(), pScript.get(), OnScriptExecuted, &presenter);
2420 Tizen::Base::String* pResult = new (std::nothrow) Tizen::Base::String(L"");
2421 SysTryReturn(NID_WEB_CTRL, pResult, null, E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2422 presenter.WaitAsyncProcess(*pResult);
2432 _WebImpl::SetZoomLevel(float level)
2434 SysTryReturnResult(NID_WEB_CTRL, level >= MIN_ZOOM_LEVEL && level <= MAX_ZOOM_LEVEL, E_OUT_OF_RANGE, "The level(%f) must be between 0.3 and 2.0(%f).", level, level);
2436 ewk_view_scale_set(__pWebCore->GetWebNativeNode(), static_cast< double >(level), 0, 0);
2443 _WebImpl::GetZoomLevel(void) const
2445 return static_cast< float >(ewk_view_scale_get(__pWebCore->GetWebNativeNode()));
2449 const PageNavigationList*
2450 _WebImpl::GetBackForwardListN(void) const
2452 result r = E_SUCCESS;
2454 _PageNavigationListImpl* pNavigationListImpl = null;
2455 _HistoryItemImpl* pHistoryItemImpl = null;
2457 std::unique_ptr<PageNavigationList> pNavigationList;
2458 std::unique_ptr<ArrayList, AllElementsDeleter> pHistoryList;
2461 int forwardCount = 0;
2466 Ewk_History* pEwkHistoryList = ewk_view_history_get(__pWebCore->GetWebNativeNode());
2467 SysTryReturn(NID_WEB_CTRL, pEwkHistoryList, null, E_SYSTEM, "[%s] A system error has been occurred. Failed to get full history.", GetErrorMessage(E_SYSTEM));
2469 Ewk_History_Item* pEwkItem = ewk_history_nth_item_get(pEwkHistoryList, 0);
2470 SysTryCatch(NID_WEB_CTRL, pEwkItem, , E_DATA_NOT_FOUND, "[%s] There is no history.", GetErrorMessage(E_DATA_NOT_FOUND));
2472 pNavigationList = std::unique_ptr<PageNavigationList>(new (std::nothrow) PageNavigationList());
2473 SysTryCatch(NID_WEB_CTRL, pNavigationList.get(), , E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2475 pNavigationListImpl = _PageNavigationListImpl::GetInstance(pNavigationList.get());
2476 SysTryCatch(NID_WEB_CTRL, pNavigationListImpl, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2478 pHistoryList = std::unique_ptr<ArrayList, AllElementsDeleter>(new (std::nothrow) ArrayList());
2479 SysTryCatch(NID_WEB_CTRL, pHistoryList.get(), , E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2481 r = pHistoryList->Construct();
2482 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2484 backCount = ewk_history_back_list_length_get(pEwkHistoryList);
2485 forwardCount = ewk_history_forward_list_length_get(pEwkHistoryList);
2486 SysLog(NID_WEB_CTRL, "The current value of backCount is %d, forwardCount is %d", backCount, forwardCount);
2488 for (int i = -backCount; i < forwardCount + 1; i++)
2490 std::unique_ptr<HistoryItem> pHistoryItem(new (std::nothrow) HistoryItem());
2491 SysTryCatch(NID_WEB_CTRL, pHistoryItem.get(), , E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2493 pHistoryItemImpl = _HistoryItemImpl::GetInstance(pHistoryItem.get());
2494 SysTryCatch(NID_WEB_CTRL, pHistoryItemImpl, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2496 pEwkItem = ewk_history_nth_item_get(pEwkHistoryList, i);
2497 SysTryCatch(NID_WEB_CTRL, pEwkItem, , E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2499 url = ewk_history_item_uri_get(pEwkItem);
2500 title = ewk_history_item_title_get(pEwkItem);
2501 SysLog(NID_WEB_CTRL, "The current value of url is %s, title is %s", url.GetPointer(), title.GetPointer());
2503 pHistoryItemImpl->SetHistoryItem(url, title);
2505 r = pHistoryList->Add(*pHistoryItem.get());
2506 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2507 pHistoryItem.release();
2510 pNavigationListImpl->SetPageNavigationList(pHistoryList.release(), backCount);
2512 ewk_history_free(pEwkHistoryList);
2514 return pNavigationList.release();
2517 ewk_history_free(pEwkHistoryList);
2524 _WebImpl::SearchText(const String& text, bool searchForward)
2526 result r = E_SUCCESS;
2528 Ewk_Find_Options condition = static_cast< Ewk_Find_Options >(EWK_FIND_OPTIONS_SHOW_HIGHLIGHT | EWK_FIND_OPTIONS_CASE_INSENSITIVE);
2532 condition = static_cast < Ewk_Find_Options >(condition | EWK_FIND_OPTIONS_BACKWARDS);
2535 _WebPresenter presenter;
2536 presenter.InitAsyncProcess();
2538 r = SynchronizeSearch(SEARCH_SYNC, __pWebCore->GetWebNativeNode(), condition, text, searchForward, false, &presenter);
2539 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2542 presenter.WaitAsyncProcess(result);
2544 return static_cast < bool >(result);
2549 _WebImpl::SearchTextAllAsync(const Tizen::Base::String& text, bool caseSensitive)
2551 result r = E_SUCCESS;
2553 Ewk_Find_Options condition = EWK_FIND_OPTIONS_SHOW_HIGHLIGHT;
2557 condition = static_cast <Ewk_Find_Options>(condition | EWK_FIND_OPTIONS_CASE_INSENSITIVE);
2560 r = SynchronizeSearch(SEARCH_ALL_ASYNC, __pWebCore->GetWebNativeNode(), condition, text, true, caseSensitive);
2561 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2568 _WebImpl::SearchNextAsync(bool searchForward)
2570 SysTryReturnResult(NID_WEB_CTRL, __textSearch.__searchAll && __textSearch.__totalCount > -1, E_INVALID_OPERATION, "The SearchTextAllAsync() method is not called or completed.");
2571 SysTryReturnResult(NID_WEB_CTRL, (searchForward && __textSearch.__currentIndex < __textSearch.__totalCount) || (!searchForward && __textSearch.__currentIndex > 1)
2572 , E_OBJ_NOT_FOUND, "The Next instance is not available.");
2574 result r = E_SUCCESS;
2576 Ewk_Find_Options condition = EWK_FIND_OPTIONS_SHOW_HIGHLIGHT;
2578 if (__textSearch.__caseSensitive)
2580 condition = static_cast <Ewk_Find_Options>(condition | EWK_FIND_OPTIONS_CASE_INSENSITIVE);
2585 condition = static_cast <Ewk_Find_Options>(condition | EWK_FIND_OPTIONS_BACKWARDS);
2588 r = SynchronizeSearch(SEARCH_NEXT_ASYNC, __pWebCore->GetWebNativeNode(), condition, __textSearch.__text, searchForward);
2589 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2596 _WebImpl::SynchronizeSearch(_SearchType type, Evas_Object* pView, Ewk_Find_Options condition, const Tizen::Base::String& text, bool searchForward, bool caseSensitive, _WebPresenter* pWebPresenter)
2598 MutexGuard lock(__mutex);
2600 std::unique_ptr<char[]> pText(_StringConverter::CopyToCharArrayN(text));
2601 SysTryReturn(NID_WEB_CTRL, pText.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2606 if (__textSearch.__searchAll)
2608 DisableAsyncSearch();
2610 __textSearch.__searchQueue.Enqueue(this);
2611 __textSearch.__searchQueue.Enqueue(pWebPresenter);
2613 ewk_view_text_find(pView, "", condition, MAX_TEXT_MATCH);
2614 ewk_view_text_find(pView, pText.get(), condition, MAX_TEXT_MATCH);
2618 __textSearch.__searchQueue.Enqueue(pWebPresenter);
2620 ewk_view_text_find(pView, pText.get(), condition, MAX_TEXT_MATCH);
2624 case SEARCH_ALL_ASYNC:
2625 __textSearch.__searchAll = true;
2626 __textSearch.__text = text;
2627 __textSearch.__searchForward = true;
2628 __textSearch.__caseSensitive = caseSensitive;
2629 __textSearch.__totalCount = -1;
2630 __textSearch.__currentIndex = 1;
2632 __textSearch.__searchQueue.Enqueue(this);
2633 __textSearch.__searchQueue.Enqueue(this);
2635 ewk_view_text_find(pView, "", condition, MAX_TEXT_MATCH);
2636 ewk_view_text_find(pView, pText.get(), condition, MAX_TEXT_MATCH);
2639 case SEARCH_NEXT_ASYNC:
2640 __textSearch.__searchForward = searchForward;
2642 CalculateAsyncSearchOrdinal();
2644 __textSearch.__searchQueue.Enqueue(this);
2646 ewk_view_text_find(pView, pText.get(), condition, MAX_TEXT_MATCH);
2658 _WebImpl::SetAsyncSearchResult(int totalCount)
2660 __textSearch.__totalCount = totalCount;
2665 _WebImpl::GetSearchPresenter(void)
2667 MutexGuard lock(__mutex);
2669 return dynamic_cast< _WebPresenter* >(__textSearch.__searchQueue.Dequeue());
2674 _WebImpl::GetPendingAsyncSearchCount(void) const
2676 return __textSearch.__searchQueue.GetCount();
2681 _WebImpl::CalculateAsyncSearchOrdinal(void)
2683 if (__textSearch.__searchForward)
2685 __textSearch.__currentIndex++;
2689 __textSearch.__currentIndex--;
2695 _WebImpl::GetAsyncSearchOrdinal(void) const
2697 return __textSearch.__currentIndex;
2702 _WebImpl::DisableAsyncSearch(void)
2704 __textSearch.__searchAll = false;
2709 _WebImpl::SetSetting(const WebSetting& setting)
2711 if (__pWebCore->GetWebNativeNode())
2713 Ewk_Context* pContext = ewk_view_context_get(__pWebCore->GetWebNativeNode());
2714 Ewk_Settings* pSettings = ewk_view_settings_get(__pWebCore->GetWebNativeNode());
2715 SysAssertf(pContext && pSettings, "Failed to get webkit instance.");
2717 std::unique_ptr<char[]> pEncoding(_StringConverter::CopyToCharArrayN(setting.GetDefaultTextEncoding()));
2718 SysTryReturn(NID_WEB_CTRL, pEncoding.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2720 ewk_settings_default_encoding_set(pSettings, pEncoding.get());
2722 switch (setting.GetCacheControl())
2724 case WEB_CACHE_VALIDATED:
2725 ewk_context_cache_disabled_set(pContext, EINA_FALSE);
2728 case WEB_CACHE_IGNORE:
2729 ewk_context_cache_disabled_set(pContext, EINA_TRUE);
2736 if (setting.GetInputStyle() == INPUT_STYLE_OVERLAY)
2738 ewk_settings_default_keypad_enabled_set(pSettings, EINA_TRUE);
2742 ewk_settings_default_keypad_enabled_set(pSettings, EINA_FALSE);
2745 ewk_settings_font_default_size_set(pSettings, static_cast< Eina_Bool >(setting.GetFontSize()));
2747 ewk_settings_javascript_enabled_set(pSettings, static_cast< Eina_Bool >(setting.IsJavascriptEnabled()));
2749 ewk_settings_loads_images_automatically_set(pSettings, static_cast< Eina_Bool >(setting.IsAutoImageLoadEnabled()));
2751 std::unique_ptr<char[]> pAgent(_StringConverter::CopyToCharArrayN(setting.GetUserAgent()));
2752 SysTryReturn(NID_WEB_CTRL, pAgent.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2754 ewk_view_user_agent_set(__pWebCore->GetWebNativeNode(), pAgent.get());
2756 ewk_settings_auto_fitting_set(pSettings, static_cast< Eina_Bool >(setting.IsAutoFittingEnabled()));
2758 ewk_settings_scripts_window_open_set(pSettings, static_cast< Eina_Bool >(setting.IsJavaScriptPopupEnabled()));
2760 ewk_settings_form_candidate_data_enabled_set(pSettings, static_cast< Eina_Bool >(setting.IsAutoFormDataShowEnabled()));
2762 ewk_settings_autofill_password_form_enabled_set(pSettings, static_cast< Eina_Bool >(setting.IsAutoLoginFormFillEnabled()));
2765 _WebSettingImpl* pWebSettingImpl = _WebSettingImpl::GetInstance(__pWebCore->GetSetting());
2767 pWebSettingImpl->SetCertificateErrorHandlingMode(setting.GetCertificateErrorHandlingMode());
2768 pWebSettingImpl->SetDefaultTextEncoding(setting.GetDefaultTextEncoding());
2769 pWebSettingImpl->SetCacheControl(setting.GetCacheControl());
2770 pWebSettingImpl->SetFontSize(setting.GetFontSize());
2771 pWebSettingImpl->SetJavascriptEnabled(setting.IsJavascriptEnabled());
2772 pWebSettingImpl->SetAutoImageLoadEnabled(setting.IsAutoImageLoadEnabled());
2773 pWebSettingImpl->SetInputStyle(setting.GetInputStyle());
2774 pWebSettingImpl->SetUserAgent(setting.GetUserAgent());
2775 pWebSettingImpl->SetAutoFittingEnabled(setting.IsAutoFittingEnabled());
2776 pWebSettingImpl->SetJavaScriptPopupEnabled(setting.IsJavaScriptPopupEnabled());
2777 pWebSettingImpl->SetGeolocationEnabled(setting.IsGeolocationEnabled());
2778 pWebSettingImpl->SetAutoFormDataShowEnabled(setting.IsAutoFormDataShowEnabled());
2779 pWebSettingImpl->SetAutoLoginFormFillEnabled(setting.IsAutoLoginFormFillEnabled());
2786 _WebImpl::GetSetting(void) const
2788 return *__pWebCore->GetSetting();
2792 const HitElementResult*
2793 _WebImpl::GetElementByPointN(const Point& point) const
2795 result r = E_SUCCESS;
2797 _HitElementResultImpl* pHitElementResultImpl = null;
2799 std::unique_ptr<HitElementResult> pHitElementResult;
2800 std::unique_ptr<Bitmap> pImage;
2801 std::unique_ptr<HashMap, AllElementsDeleter> pAttributeMap;
2803 Point absPoint(__pWebCore->GetAbsoluteCoordinate(point));
2805 Ewk_Hit_Test* pEwkHitTest = ewk_view_hit_test_new(__pWebCore->GetWebNativeNode(), absPoint.x, absPoint.y, EWK_HIT_TEST_MODE_ALL);
2806 SysTryReturn(NID_WEB_CTRL, pEwkHitTest, null, E_SYSTEM, "[%s] Failed to get hit test.", GetErrorMessage(E_SYSTEM));
2808 Eina_Hash* pAttrHash = ewk_hit_test_attribute_hash_get(pEwkHitTest);
2809 Ewk_Hit_Test_Result_Context context = ewk_hit_test_result_context_get(pEwkHitTest);
2810 String url(ewk_hit_test_link_uri_get(pEwkHitTest));
2811 String tagName(ewk_hit_test_tag_name_get(pEwkHitTest));
2812 String nodeValue(ewk_hit_test_node_value_get(pEwkHitTest));
2814 SysLog(NID_WEB_CTRL, "The current value of url is %ls, tag is %ls, value is %ls", url.GetPointer(), tagName.GetPointer(), nodeValue.GetPointer());
2816 pHitElementResult = std::unique_ptr<HitElementResult>(new (std::nothrow) HitElementResult());
2817 SysTryCatch(NID_WEB_CTRL, pHitElementResult.get(), , E_OUT_OF_MEMORY, "[%s] Memory Allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2819 pHitElementResultImpl = _HitElementResultImpl::GetInstance(pHitElementResult.get());
2820 SysTryCatch(NID_WEB_CTRL, pHitElementResultImpl, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2822 if (context & EWK_HIT_TEST_RESULT_CONTEXT_IMAGE)
2828 int imageLength = ewk_hit_test_image_buffer_length_get(pEwkHitTest);
2829 void* pImageBuffer = ewk_hit_test_image_buffer_get(pEwkHitTest);
2830 const char* pExtension = ewk_hit_test_image_file_name_extension_get(pEwkHitTest);
2831 SysLog(NID_WEB_CTRL, "The current value of imageBuffer is %u, bufferLength is %d, extension is %s", pImageBuffer, imageLength, pExtension);
2833 r = buf.Construct(imageLength);
2834 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2836 r = buf.SetArray(reinterpret_cast< byte* >(pImageBuffer), 0, imageLength);
2837 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2841 // ToDo : webkit doesn't support types such as IMG_FORMAT_WBMP and IMG_FORMAT_TIFF
2842 // webkit support types such as ico and vp8 additionally
2843 if (strcmp(pExtension, "gif") == 0)
2845 format = IMG_FORMAT_GIF;
2847 else if (strcmp(pExtension, "jpg") == 0)
2849 format = IMG_FORMAT_JPG;
2851 else if (strcmp(pExtension, "png") == 0)
2853 format = IMG_FORMAT_PNG;
2855 else if (strcmp(pExtension, "bmp") == 0)
2857 format = IMG_FORMAT_BMP;
2861 SysLogException(NID_WEB_CTRL, E_UNSUPPORTED_FORMAT, "[%s] The %s format is not supported", GetErrorMessage(E_UNSUPPORTED_FORMAT), pExtension);
2865 r = image.Construct();
2866 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2868 pImage = std::unique_ptr<Bitmap>(image.DecodeN(buf, format, BITMAP_PIXEL_FORMAT_RGB565));
2869 SysTryCatch(NID_WEB_CTRL, pImage.get(), , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2874 pAttributeMap = std::unique_ptr<HashMap, AllElementsDeleter>(new (std::nothrow) HashMap());
2875 SysTryCatch(NID_WEB_CTRL, pAttributeMap.get(), , E_OUT_OF_MEMORY, "[%s] Memory Allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2877 r = pAttributeMap->Construct(eina_hash_population(pAttrHash));
2878 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2880 eina_hash_foreach(pAttrHash, AddHttpAttributeData, pAttributeMap.get());
2881 SysTryCatch(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2884 pHitElementResultImpl->SetHitElementResult(pAttributeMap.release(), pImage.release(), tagName, nodeValue, url);
2886 ewk_hit_test_free(pEwkHitTest);
2888 return pHitElementResult.release();
2891 ewk_hit_test_free(pEwkHitTest);
2897 const HitElementResult*
2898 _WebImpl::GetElementByPointN(const FloatPoint& point) const
2900 const Point integerPoint(_CoordinateSystemUtils::ConvertToInteger(point));
2902 std::unique_ptr<const HitElementResult> pHitElementResult(GetElementByPointN(integerPoint));
2903 SysTryReturn(NID_WEB_CTRL, pHitElementResult.get(), null, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2905 return pHitElementResult.release();
2910 _WebImpl::IsLoading(void) const
2912 double percent = ewk_view_load_progress_get(__pWebCore->GetWebNativeNode());
2914 if (Double::Compare(percent, 0.0) > 0 && Double::Compare(percent, 1.0) < 0)
2926 _WebImpl::GetTextFromBlock(void) const
2928 return ewk_view_text_selection_text_get(__pWebCore->GetWebNativeNode());
2933 _WebImpl::IsPrivateBrowsingEnabled(void) const
2935 if (__pWebCore->GetWebNativeNode() == null)
2937 return _WebSettingImpl::GetInstance(__pWebCore->GetSetting())->IsPrivateBrowsingEnabled();
2940 Ewk_Settings* pSettings = ewk_view_settings_get(__pWebCore->GetWebNativeNode());
2941 SysAssertf(pSettings, "Failed to get webkit instance.");
2943 return static_cast< bool >(ewk_settings_private_browsing_enabled_get(pSettings));
2948 _WebImpl::SetPrivateBrowsingEnabled(bool enable)
2950 if (__pWebCore->GetWebNativeNode() == null)
2952 _WebSettingImpl::GetInstance(__pWebCore->GetSetting())->SetPrivateBrowsingEnabled(enable);
2956 Ewk_Settings* pSettings = ewk_view_settings_get(__pWebCore->GetWebNativeNode());
2957 SysAssertf(pSettings, "Failed to get webkit instance.");
2959 ewk_settings_private_browsing_enabled_set(pSettings, static_cast< Eina_Bool >(enable));
2964 _WebImpl::ClearHistory(void)
2966 ewk_view_back_forward_list_clear(__pWebCore->GetWebNativeNode());
2971 _WebImpl::ClearCache(void)
2973 Ewk_Context* pContext = ewk_view_context_get(__pWebCore->GetWebNativeNode());
2974 SysAssertf(pContext, "Failed to get webkit instance.");
2976 ewk_context_cache_clear(pContext);
2981 _WebImpl::ClearCookie(void)
2983 Ewk_Context* pContext = ewk_view_context_get(__pWebCore->GetWebNativeNode());
2984 Ewk_Cookie_Manager* pCookieManager = ewk_context_cookie_manager_get(pContext);
2985 SysAssertf(pCookieManager, "Failed to get webkit instance.");
2987 ewk_cookie_manager_cookies_clear(pCookieManager);
2992 _WebImpl::ClearFormData(void)
2994 Ewk_Context* pContext = ewk_view_context_get(__pWebCore->GetWebNativeNode());
2995 SysAssertf(pContext, "Failed to get webkit instance.");
2997 ewk_context_form_candidate_data_clear(pContext);
3002 _WebImpl::ClearLoginFormData(void)
3004 Ewk_Context* pContext = ewk_view_context_get(__pWebCore->GetWebNativeNode());
3005 SysAssertf(pContext, "Failed to get webkit instance.");
3007 ewk_context_form_password_data_clear(pContext);
3012 _WebImpl::IsCookieEnabled(void) const
3014 if (__pWebCore->GetWebNativeNode() == null)
3016 return _WebSettingImpl::GetInstance(__pWebCore->GetSetting())->IsCookieEnabled();
3019 Ewk_Context* pContext = ewk_view_context_get(__pWebCore->GetWebNativeNode());
3020 Ewk_Cookie_Manager* pCookieManager = ewk_context_cookie_manager_get(pContext);
3021 SysAssertf(pCookieManager, "Failed to get webkit instance.");
3023 _WebPresenter presenter;
3024 presenter.InitAsyncProcess();
3026 ewk_cookie_manager_async_accept_policy_get(pCookieManager, OnCookiesPolicyGot, &presenter);
3028 bool result = false;
3029 presenter.WaitAsyncProcess(result);
3036 _WebImpl::SetCookieEnabled(bool enable)
3038 if (__pWebCore->GetWebNativeNode() == null)
3040 _WebSettingImpl::GetInstance(__pWebCore->GetSetting())->SetCookiEnabled(enable);
3045 Ewk_Context* pContext = ewk_view_context_get(__pWebCore->GetWebNativeNode());
3046 Ewk_Cookie_Manager* pCookieManager = ewk_context_cookie_manager_get(pContext);
3047 SysAssertf(pCookieManager, "Failed to get webkit instance.");
3051 ewk_cookie_manager_accept_policy_set(pCookieManager, EWK_COOKIE_ACCEPT_POLICY_NO_THIRD_PARTY);
3055 ewk_cookie_manager_accept_policy_set(pCookieManager, EWK_COOKIE_ACCEPT_POLICY_NEVER);
3056 ewk_cookie_manager_cookies_clear(pCookieManager);
3062 _WebImpl::SavePageAsPdf(const String& filePath, const Dimension* pSize) const
3064 result r = E_SUCCESS;
3066 std::unique_ptr<char[]> pFilePath(_StringConverter::CopyToCharArrayN(filePath));
3067 SysTryReturn(NID_WEB_CTRL, pFilePath.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3070 String fileExtension = File::GetFileExtension(filePath);
3071 int pathLength = filePath.GetLength();
3074 SysTryReturnResult(NID_WEB_CTRL, fileExtension.Equals("pdf", false), E_INVALID_ARG, "Invalid argument(s) is used. File extension is not pdf.");
3076 r = filePath.LastIndexOf(L"/", pathLength - 1, index);
3077 SysTryReturnResult(NID_WEB_CTRL, r == E_SUCCESS, E_INVALID_ARG, "Invalid argument(s) is used. Directory path is invalid.");
3078 r = filePath.SubString(0, index + 1, dirPath);
3079 SysTryReturnResult(NID_WEB_CTRL, r == E_SUCCESS, E_INVALID_ARG, "Invalid argument(s) is used. Directory path is invalid.");
3081 std::unique_ptr<char[]> pDirPath(_StringConverter::CopyToCharArrayN(dirPath));
3082 SysTryReturnResult(NID_WEB_CTRL, access(pDirPath.get(), W_OK) == 0, E_INACCESSIBLE_PATH, "Directory permission is read-only.");
3086 SysTryReturnResult(NID_WEB_CTRL, pSize->width > 0 && pSize->height > 0, E_INVALID_ARG, "Invalid argument(s) is used. Size of pdf file is invalid.");
3088 ewk_view_contents_pdf_get(__pWebCore->GetWebNativeNode(), pSize->width, pSize->height, pFilePath.get());
3092 Evas_Coord contentsWidth;
3093 Evas_Coord contentsHeight;
3095 ewk_view_contents_size_get(__pWebCore->GetWebNativeNode(), &contentsWidth, &contentsHeight);
3096 ewk_view_contents_pdf_get(__pWebCore->GetWebNativeNode(), contentsWidth, contentsHeight, pFilePath.get());
3104 _WebImpl::IsMimeSupported(const String& mime) const
3106 std::unique_ptr<char[]> pMime(_StringConverter::CopyToCharArrayN(mime));
3107 SysTryReturn(NID_WEB_CTRL, pMime.get(), false, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3109 return static_cast< bool >(ewk_frame_can_show_mime_type(ewk_view_main_frame_get(__pWebCore->GetWebNativeNode()), pMime.get()));
3114 _WebImpl::SetLoadingListener(ILoadingListener* pLoadingListener)
3116 __pUserLoadingListener = const_cast< ILoadingListener* >(pLoadingListener);
3121 _WebImpl::SetWebUiEventListener(IWebUiEventListener* pUiEventListener)
3123 __pUserUiListener = pUiEventListener;
3128 _WebImpl::SetWebUiEventListenerF(IWebUiEventListenerF* pUiEventListener)
3130 __pUserUiListenerF = pUiEventListener;
3135 _WebImpl::SetWebKeypadEventListener(IWebKeypadEventListener* pKeypadEventListener)
3137 __pUserKeypadEventListener = pKeypadEventListener;
3142 _WebImpl::SetDownloadListener(IWebDownloadListener* pDownLoadListener)
3144 if (__pWebDownloadHandler.get() == null)
3146 __pWebDownloadHandler = std::unique_ptr<_WebDataHandler>(new (std::nothrow) _WebDataHandler());
3147 SysTryReturnVoidResult(NID_WEB_CTRL, __pWebDownloadHandler.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
3150 __pWebDownloadHandler->SetDownloadListener(pDownLoadListener);
3151 __pWebDownloadHandler->SetWebEvent(__pWebEvent.get());
3156 _WebImpl::SetTextSearchListener(ITextSearchListener* pTextSearchListener)
3158 __pTextSearchListener = pTextSearchListener;
3163 _WebImpl::SetScrollEnabled(bool enable)
3165 _WebSettingImpl::GetInstance(__pWebCore->GetSetting())->SetScrollEnabled(enable);
3170 _WebImpl::IsScrollEnabled(void) const
3172 return _WebSettingImpl::GetInstance(__pWebCore->GetSetting())->IsScrollEnabled();
3177 _WebImpl::InitJsBridgeList(void)
3179 result r = E_SUCCESS;
3181 __pJsProvider = std::unique_ptr<_JsBridgeHashCodeProvider>(new (std::nothrow) _JsBridgeHashCodeProvider());
3182 SysTryReturnResult(NID_WEB_CTRL, __pJsProvider.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
3184 __pJsComparer = std::unique_ptr<_JsBridgeComparer>(new (std::nothrow) _JsBridgeComparer());
3185 SysTryReturnResult(NID_WEB_CTRL, __pJsComparer.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
3187 std::unique_ptr<HashMapT< String, IJavaScriptBridge* > > pJsBridgeList(new (std::nothrow) HashMapT< String, IJavaScriptBridge* >);
3188 SysTryReturnResult(NID_WEB_CTRL, pJsBridgeList.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
3190 r = pJsBridgeList->Construct(0, 0, *__pJsProvider.get(), *__pJsComparer.get());
3191 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3193 __pJsBridgeList = std::move(pJsBridgeList);
3200 _WebImpl::AddJavaScriptBridge(const IJavaScriptBridge& jsBridge)
3202 result r = E_SUCCESS;
3204 IJavaScriptBridge* pJsBridge = const_cast< IJavaScriptBridge* >(&jsBridge);
3205 String key(pJsBridge->GetName());
3207 r = __pJsBridgeList->Add(key, pJsBridge);
3208 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3215 _WebImpl::RemoveJavaScriptBridge(const IJavaScriptBridge& jsBridge)
3217 result r = E_SUCCESS;
3219 IJavaScriptBridge* pJsBridge = const_cast< IJavaScriptBridge* >(&jsBridge);
3220 String key(pJsBridge->GetName());
3222 r = __pJsBridgeList->Remove(key);
3223 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3230 _WebImpl::FindJsInterface(const IJsonValue* pValue) const
3232 result r = E_SUCCESS;
3234 IJsonValue* pJsonValue = null;
3235 IJavaScriptBridge* pJsBridge = null;
3237 String key(L"name");
3239 const JsonObject* pJsonObject = dynamic_cast< const JsonObject* >(pValue);
3240 SysTryReturn(NID_WEB_CTRL, pJsonObject, null, E_INVALID_ARG, "[%s] Invalid argument(s) is used. Json text must be Json Object type." , GetErrorMessage(E_INVALID_ARG));
3242 r = pJsonObject->GetValue(&key, pJsonValue);
3243 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS && pJsonValue, null, r, "[%s] Propagating.", GetErrorMessage(r));
3245 JsonString* pBridgeName = dynamic_cast< JsonString* >(pJsonValue);
3246 SysTryReturn(NID_WEB_CTRL, pBridgeName, null, E_INVALID_ARG, "[%s] Invalid argument(s) is used. name key is missing." , GetErrorMessage(E_INVALID_ARG));
3248 r = __pJsBridgeList->GetValue(static_cast< String >(*pBridgeName), pJsBridge);
3249 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
3256 _WebImpl::GetLoadingListener(void) const
3258 return __pUserLoadingListener;
3262 IWebUiEventListener*
3263 _WebImpl::GetUiEventListener(void) const
3265 return __pUserUiListener;
3269 IWebUiEventListenerF*
3270 _WebImpl::GetUiEventListenerF(void) const
3272 return __pUserUiListenerF;
3276 IWebKeypadEventListener*
3277 _WebImpl::GetWebKeypadEventListener(void) const
3279 return __pUserKeypadEventListener;
3283 ITextSearchListener*
3284 _WebImpl::GetTextSearchListener(void) const
3286 return __pTextSearchListener;
3291 _WebImpl::SetEventListenerCallback(void) const
3293 Evas_Object* pWebNativeNode = __pWebCore->GetWebNativeNode();
3296 _EcoreEvas* pEcoreEvas = GetEcoreEvasMgr()->GetEcoreEvas();
3297 SysAssertf(pEcoreEvas, "Failed to get Ui ecore evas");
3299 Evas_Object* pWinObject = pEcoreEvas->GetWindowObject();
3300 SysAssertf(pWinObject, "Failed to get Ui window evas object");
3302 Ewk_View_Smart_Data* pSmartData = (Ewk_View_Smart_Data*) evas_object_smart_data_get(pWebNativeNode);
3303 SysAssertf(pSmartData, "Failed to request");
3305 Ewk_View_Smart_Class *pSmart = const_cast<Ewk_View_Smart_Class*>(pSmartData->api);
3306 SysAssertf(pSmart, "Failed to request");
3308 pSmart->popup_menu_show = OnSelectBoxRequested;
3309 pSmart->popup_menu_hide = OnSelectBoxClosed;
3310 pSmart->popup_menu_update = OnSelectBoxUpdateRequested;
3312 pSmart->input_picker_show = OnDatePickerProviderRequested;
3313 pSmart->input_picker_color_request = OnColorPickerProviderRequested;
3314 pSmart->input_picker_color_dismiss = OnColorPickerProviderDismissed;
3316 evas_object_data_set(pWebNativeNode, WEB_CTRL, this);
3318 // add loading event callbacks for ILoadingListener
3319 evas_object_smart_callback_add(pWebNativeNode, "create,window", OnWebWindowCreateRequested, this);
3320 evas_object_smart_callback_add(pWebNativeNode, "close,window", OnWebWindowClosedRequested, this);
3322 evas_object_smart_callback_add(pWebNativeNode, "policy,navigation,decide", OnLoadingRequested, this);
3323 evas_object_smart_callback_add(pWebNativeNode, "load,started", OnLoadingStarted, this);
3324 evas_object_smart_callback_add(pWebNativeNode, "load,finished", OnLoadingCompleted, this);
3325 evas_object_smart_callback_add(pWebNativeNode, "load,progress", OnEstimatedProgress, this);
3326 evas_object_smart_callback_add(pWebNativeNode, "load,progress,finished", OnProgressCompleted, this);
3327 evas_object_smart_callback_add(pWebNativeNode, "load,stop", OnLoadingCanceled, this);
3328 evas_object_smart_callback_add(pWebNativeNode, "load,error", OnLoadingErrorOccurred, this);
3329 evas_object_smart_callback_add(pWebNativeNode, "title,changed", OnPageTitleReceived, this);
3330 evas_object_smart_callback_add(pWebNativeNode, "load,committed", OnLoadingCommitted, this);
3332 evas_object_smart_callback_add(pWebNativeNode, "requestToNative,json", OnHandleJavaScriptRequest, this);
3334 evas_object_smart_callback_add(pWinObject, "focus,in", OnWindowObjectFocusGained, this);
3336 evas_object_smart_callback_add(pWebNativeNode, "inputmethod,changed", OnWebKeypadStateChanged, this);
3337 evas_object_smart_callback_add(pWebNativeNode, "editorclient,ime,opened", OnWebKeypadOpened, this);
3338 evas_object_smart_callback_add(pWebNativeNode, "editorclient,ime,closed", OnWebKeypadClosed, this);
3340 evas_object_smart_callback_add(pWebNativeNode, "authentication,challenge", OnHttpAuthenticationRequested, this);
3341 evas_object_smart_callback_add(pWebNativeNode, "authentication,canceled", OnHttpAuthenticationCanceled, this);
3343 evas_object_smart_callback_add(pWebNativeNode, "geolocation,permission,request", OnGeolocationPermissionRequested, this);
3345 ewk_view_javascript_alert_callback_set(pWebNativeNode, OnScriptAlertRequested, const_cast< _WebImpl* >(this));
3346 ewk_view_javascript_prompt_callback_set(pWebNativeNode, OnScriptPromptRequested, const_cast< _WebImpl* >(this));
3347 ewk_view_javascript_confirm_callback_set(pWebNativeNode, OnScriptConfirmRequested, const_cast< _WebImpl* >(this));
3349 evas_object_smart_callback_add(pWebNativeNode, "policy,response,decide", OnWebDataReceived, this);
3351 evas_object_smart_callback_add(pWebNativeNode, "load,nonemptylayout,finished", OnWebPageShowRequested, this);
3352 evas_object_smart_callback_add(pWebNativeNode, "request,certificate,confirm", OnCertificateRequested, this);
3353 evas_object_smart_callback_add(pWebNativeNode, "usermedia,permission,request", OnGetUserMediaPermissionRequsted, this);
3355 evas_object_smart_callback_add(pWebNativeNode, "notification,permission,request", OnNotificationPermissionRequested, this);
3356 evas_object_smart_callback_add(pWebNativeNode, "notification,show", OnNotificationShow, this);
3357 evas_object_smart_callback_add(pWebNativeNode, "notification,cancel", OnNotificationCancel, this);
3359 evas_object_smart_callback_add(pWebNativeNode, "protocolhandler,registration,requested", OnProtocolHandlerRegistrationRequested, this);
3360 evas_object_smart_callback_add(pWebNativeNode, "protocolhandler,isregistered", OnIsProtocolHandlerRegistered, this);
3361 evas_object_smart_callback_add(pWebNativeNode, "protocolhandler,unregistration,requested", OnProtocolHandlerUnregistrationRequested, this);
3363 evas_object_smart_callback_add(pWebNativeNode, "contenthandler,registration,requested", OnContentHandlerRegistrationRequested, this);
3364 evas_object_smart_callback_add(pWebNativeNode, "contenthandler,isregistered", OnIsContentHandlerRegistered, this);
3365 evas_object_smart_callback_add(pWebNativeNode, "contenthandler,unregistration,requested", OnContentHandlerUnregistrationRequested, this);
3366 evas_object_smart_callback_add(pWebNativeNode, "text,found", OnTextFound, this);
3368 evas_object_smart_callback_add(pWebNativeNode, "touchmove,handled", OnWebPreventDefaultTriggered, this);
3369 evas_object_smart_callback_add(pWebNativeNode, "icon,received", OnFaviconReceived, this);
3371 evas_object_smart_callback_add(pWebNativeNode, "text,style,state", OnWebPageBlockSelected, this);
3373 Ewk_Context* pContext = ewk_view_context_get(pWebNativeNode);
3374 SysAssertf(pContext, "Failed to get webkit instance.");
3375 ewk_context_did_start_download_callback_set(pContext, OnDidStartDownloadCallback, const_cast< _WebImpl* >(this));
3376 ewk_view_open_panel_callback_set(pWebNativeNode, OnSelectUploadFile, const_cast< _WebImpl* >(this));
3378 evas_object_event_callback_add(pWebNativeNode, EVAS_CALLBACK_FOCUS_IN, OnWebNativeNodeFocusGained, this);
3384 _WebImpl::RemoveEventListenerCallback(void) const
3386 Evas_Object* pWebNativeNode = __pWebCore->GetWebNativeNode();
3389 _EcoreEvas* pEcoreEvas = GetEcoreEvasMgr()->GetEcoreEvas();
3390 SysAssertf(pEcoreEvas, "Failed to get Ui ecore evas");
3392 Evas_Object* pWinObject = pEcoreEvas->GetWindowObject();
3393 SysAssertf(pWinObject, "Failed to get Ui window evas object");
3395 evas_object_smart_callback_del(pWebNativeNode, "create,window", OnWebWindowCreateRequested);
3396 evas_object_smart_callback_del(pWebNativeNode, "close,window", OnWebWindowClosedRequested);
3398 evas_object_smart_callback_del(pWebNativeNode, "policy,navigation,decide", OnLoadingRequested);
3399 evas_object_smart_callback_del(pWebNativeNode, "load,started", OnLoadingStarted);
3400 evas_object_smart_callback_del(pWebNativeNode, "load,finished", OnLoadingCompleted);
3401 evas_object_smart_callback_del(pWebNativeNode, "load,progress", OnEstimatedProgress);
3402 evas_object_smart_callback_del(pWebNativeNode, "load,progress,finished", OnProgressCompleted);
3403 evas_object_smart_callback_del(pWebNativeNode, "load,stop", OnLoadingCanceled);
3404 evas_object_smart_callback_del(pWebNativeNode, "load,error", OnLoadingErrorOccurred);
3405 evas_object_smart_callback_del(pWebNativeNode, "title,changed", OnPageTitleReceived);
3407 evas_object_smart_callback_del(pWebNativeNode, "requestToNative,json", OnHandleJavaScriptRequest);
3409 evas_object_smart_callback_del_full(pWinObject, "focus,in", OnWindowObjectFocusGained, this);
3411 evas_object_smart_callback_del(pWebNativeNode, "inputmethod,changed", OnWebKeypadStateChanged);
3412 evas_object_smart_callback_del(pWebNativeNode, "editorclient,ime,opened", OnWebKeypadOpened);
3413 evas_object_smart_callback_del(pWebNativeNode, "editorclient,ime,closed", OnWebKeypadClosed);
3415 evas_object_smart_callback_del(pWebNativeNode, "authentication,challenge", OnHttpAuthenticationRequested);
3416 evas_object_smart_callback_del(pWebNativeNode, "authentication,canceled", OnHttpAuthenticationCanceled);
3418 evas_object_smart_callback_del(pWebNativeNode, "geolocation,permission,request", OnGeolocationPermissionRequested);
3420 ewk_view_javascript_alert_callback_set(null, null, null);
3421 ewk_view_javascript_prompt_callback_set(null, null, null);
3422 ewk_view_javascript_confirm_callback_set(null, null, null);
3424 evas_object_smart_callback_del(pWebNativeNode, "policy,response,decide", OnWebDataReceived);
3426 evas_object_smart_callback_del(pWebNativeNode, "load,nonemptylayout,finished", OnWebPageShowRequested);
3427 evas_object_smart_callback_del(pWebNativeNode, "request,certificate,confirm", OnCertificateRequested);
3428 evas_object_smart_callback_del(pWebNativeNode, "usermedia,permission,request", OnGetUserMediaPermissionRequsted);
3430 evas_object_smart_callback_del(pWebNativeNode, "notification,permission,request", OnNotificationPermissionRequested);
3431 evas_object_smart_callback_del(pWebNativeNode, "notification,show", OnNotificationShow);
3432 evas_object_smart_callback_del(pWebNativeNode, "notification,cancel", OnNotificationCancel);
3433 evas_object_smart_callback_del(pWebNativeNode, "protocolhandler,registration,requested", OnProtocolHandlerRegistrationRequested);
3434 evas_object_smart_callback_del(pWebNativeNode, "protocolhandler,isregistered", OnIsProtocolHandlerRegistered);
3435 evas_object_smart_callback_del(pWebNativeNode, "protocolhandler,unregistration,requested", OnProtocolHandlerUnregistrationRequested);
3437 evas_object_smart_callback_del(pWebNativeNode, "contenthandler,registration,requested", OnContentHandlerRegistrationRequested);
3438 evas_object_smart_callback_del(pWebNativeNode, "contenthandler,isregistered", OnIsContentHandlerRegistered);
3439 evas_object_smart_callback_del(pWebNativeNode, "contenthandler,unregistration,requested", OnContentHandlerUnregistrationRequested);
3441 evas_object_smart_callback_del(pWebNativeNode, "text,found", OnTextFound);
3443 evas_object_smart_callback_del(pWebNativeNode, "touchmove,handled", OnWebPreventDefaultTriggered);
3444 evas_object_smart_callback_del(pWebNativeNode, "icon,received", OnFaviconReceived);
3446 evas_object_smart_callback_del(pWebNativeNode, "text,style,state", OnWebPageBlockSelected);
3448 ewk_view_open_panel_callback_set(null, null, null);
3450 evas_object_event_callback_del(pWebNativeNode, EVAS_CALLBACK_FOCUS_IN, OnWebNativeNodeFocusGained);
3456 _WebImpl::SetBlockSelectionPosition(const Point& startPoint)
3458 Evas_Object* pWebNativeNode = __pWebCore->GetWebNativeNode();
3460 Ewk_View_Smart_Data* pSmartData = (Ewk_View_Smart_Data*) evas_object_smart_data_get(pWebNativeNode);
3461 SysAssertf(pSmartData, "Failed to request");
3463 Point absPoint(__pWebCore->GetAbsoluteCoordinate(startPoint));
3465 Eina_Bool ret = pSmartData->api->text_selection_down(pSmartData, absPoint.x, absPoint.y);
3468 pSmartData->api->text_selection_up(pSmartData, absPoint.x, absPoint.y);
3470 Ewk_Hit_Test* pEwkHitTest = ewk_view_hit_test_new(__pWebCore->GetWebNativeNode(), absPoint.x, absPoint.y, EWK_HIT_TEST_MODE_ALL);
3471 SysTryReturnResult(NID_WEB_CTRL, pEwkHitTest, E_SYSTEM, "Failed to get hit test.");
3473 String tagName(ewk_hit_test_tag_name_get(pEwkHitTest));
3475 if (tagName.Equals(L"INPUT", false) || tagName.Equals(L"TEXTAREA", false))
3477 ewk_view_command_execute(pWebNativeNode, "SelectWord", 0);
3481 SysTryReturnResult(NID_WEB_CTRL, GetTextFromBlock().GetLength() > 0, E_INVALID_ARG, "Failed to set text selection up.");
3488 _WebImpl::SetBlockSelectionPosition(const FloatPoint& startPoint)
3490 return SetBlockSelectionPosition(_CoordinateSystemUtils::ConvertToInteger(startPoint));
3495 _WebImpl::ReleaseBlock(void)
3497 ewk_view_command_execute(__pWebCore->GetWebNativeNode(), "Unselect", 0);
3502 _WebImpl::GetBlockRange(Point& startPoint, Point& endPoint) const
3504 FloatPoint tempStartPoint;
3505 FloatPoint tempEndPoint;
3507 GetBlockRange(tempStartPoint, tempEndPoint);
3509 startPoint = _CoordinateSystemUtils::ConvertToInteger(tempStartPoint);
3510 endPoint = _CoordinateSystemUtils::ConvertToInteger(tempEndPoint);
3515 _WebImpl::GetBlockRange(FloatPoint& startPoint, FloatPoint& endPoint) const
3517 Eina_Rectangle leftHandle;
3518 Eina_Rectangle rightHandle;
3520 ewk_view_text_selection_range_get(__pWebCore->GetWebNativeNode(), &leftHandle, &rightHandle);
3522 startPoint.x = _CoordinateSystemUtils::ConvertToFloat(leftHandle.x);
3523 startPoint.y = _CoordinateSystemUtils::ConvertToFloat(leftHandle.y);
3524 endPoint.x = _CoordinateSystemUtils::ConvertToFloat(rightHandle.x + rightHandle.w);
3525 endPoint.y = _CoordinateSystemUtils::ConvertToFloat(rightHandle.y + rightHandle.h);
3527 if ((endPoint.x != 0.0f) && (endPoint.y != 0.0f))
3529 startPoint = __pWebCore->GetRelativeCoordinate(startPoint);
3530 endPoint = __pWebCore->GetRelativeCoordinate(endPoint);
3536 _WebImpl::GetFaviconN(void) const
3538 result r = E_SUCCESS;
3540 Evas_Object* pView = __pWebCore->GetWebNativeNode();
3542 Evas* pEvas = evas_object_evas_get(pView);
3543 Ewk_Context* pContext = ewk_view_context_get(pView);
3544 SysAssertf(pEvas && pContext, "Failed to request");
3546 const char* pUrl = ewk_view_url_get(pView);
3548 Tizen::Graphics::BufferInfo bufferInfo;
3549 Tizen::Base::ByteBuffer byteBuffer;
3551 std::unique_ptr<Bitmap> pBitmapImage(new (std::nothrow) Bitmap());
3552 SysTryReturn(NID_WEB_CTRL, pBitmapImage.get(), null, E_OUT_OF_MEMORY, "[%s] Memory Allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
3554 Evas_Object* pFavicon = ewk_context_icon_database_icon_object_add(pContext, pUrl, pEvas);
3560 r = _Utility::GetPixelBufferFromEvasObject(pFavicon, bufferInfo);
3561 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
3563 const Dimension dimension(bufferInfo.width, bufferInfo.height);
3565 r = byteBuffer.Construct((byte*)bufferInfo.pPixels, 0, dimension.height * dimension.width * 32, dimension.height * dimension.width * 32 );
3566 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
3568 r = pBitmapImage->Construct(byteBuffer, dimension, BITMAP_PIXEL_FORMAT_ARGB8888);
3569 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
3571 return pBitmapImage.release();
3577 _WebImpl::ScrollBy(const Tizen::Graphics::Point& diff)
3579 ewk_view_scroll_by(__pWebCore->GetWebNativeNode(), diff.x, diff.y);
3584 _WebImpl::ScrollTo(const Tizen::Graphics::Point& dest)
3586 ewk_view_scroll_set(__pWebCore->GetWebNativeNode(), dest.x, dest.y);
3591 _WebImpl::GetScrollPosition(void) const
3595 ewk_view_scroll_pos_get(__pWebCore->GetWebNativeNode(), &position.x, &position.y);
3602 _WebImpl::GetPageSize(void) const
3604 Evas_Coord width = 0;
3605 Evas_Coord height = 0;
3607 ewk_view_contents_size_get(__pWebCore->GetWebNativeNode(), &width, &height);
3609 Dimension size(static_cast< int >(width), static_cast< int >(height));
3616 _WebImpl::SetLoadingErrorOccurred(bool arg)
3618 __isLoadingErrorOccurred = arg;
3623 _WebImpl::IsLoadingErrorOccurred(void) const
3625 return __isLoadingErrorOccurred;
3630 _WebImpl::SetRedirectRequested(bool arg)
3632 __isRedirectRequested = arg;
3637 _WebImpl::IsRedirectRequested(void) const
3639 return __isRedirectRequested;
3644 _WebImpl::SetPolicyDecision(DecisionPolicy policy)
3651 _WebImpl::GetPolicyDecision(void) const
3658 _WebImpl::SetCertificateRequested(bool arg)
3660 __isCertificateRequested = arg;
3665 _WebImpl::IsCertificateRequested(void) const
3667 return __isCertificateRequested;
3672 _WebImpl::IsCertificateConfirmed(void) const
3674 return __isCertificateConfirmed;
3679 _WebImpl::LaunchAppControl(const IEventArg& arg)
3681 result r = E_SUCCESS;
3683 IEventArg* pArg = const_cast< IEventArg* >(&arg);
3684 _WebEventArg* pWebEventArg = dynamic_cast< _WebEventArg* >(pArg);
3685 SysTryReturnResult(NID_WEB_CTRL, pWebEventArg, E_INVALID_ARG, "Type casting failed. argument must be IEventArg type.");
3687 String operationId(L"");
3688 String uriPattern(pWebEventArg->GetEventMessage());
3689 SysLog(NID_WEB_CTRL, "The current value of web event type is %d", pWebEventArg->GetEventType());
3691 switch (pWebEventArg->GetEventType())
3693 case WEB_EVENT_REQUEST_RTSP:
3697 int uriLength = uriPattern.GetLength();
3700 operationId = L"http://tizen.org/appcontrol/operation/view";
3702 r = uriPattern.LastIndexOf(L".", uriLength - 1, index);
3703 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3705 r = uriPattern.SubString(index + 1, ext);
3706 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3708 r = _AppControlManager::GetMimeFromExt(ext, mimeType);
3709 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3711 r = _AppControlImpl::FindAndStart(operationId, &uriPattern, &mimeType, null, null, null);
3712 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3716 case WEB_EVENT_REQUEST_TEL:
3718 operationId = L"http://tizen.org/appcontrol/operation/dial";
3721 case WEB_EVENT_REQUEST_EMAIL:
3723 case WEB_EVENT_REQUEST_SMS:
3725 case WEB_EVENT_REQUEST_MMS:
3727 operationId = L"http://tizen.org/appcontrol/operation/compose";
3730 case WEB_EVENT_REQUEST_UNKNOWN:
3732 operationId = L"http://tizen.org/appcontrol/operation/view";
3740 r = _AppControlImpl::FindAndStart(operationId, &uriPattern, null, null, null, null);
3741 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3748 _WebImpl::SetFullScreenKeypad(void)
3750 result r = E_SUCCESS;
3752 std::unique_ptr<Keypad> pKeypad(new (std::nothrow) Keypad());
3753 SysTryReturnResult(NID_WEB_CTRL, pKeypad.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
3755 r = pKeypad->Construct(KEYPAD_STYLE_NORMAL, 100);
3756 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3758 String text(ewk_view_focused_input_element_value_get(__pWebCore->GetWebNativeNode()));
3759 pKeypad->SetText(text);
3761 r = pKeypad->SetShowState(true);
3762 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3764 r = pKeypad->Show();
3765 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3767 pKeypad->AddTextEventListener(*this);
3769 __pKeypad = std::move(pKeypad);
3776 _WebImpl::RemoveFullScreenKeypad(void)
3778 __pKeypad->RemoveTextEventListener(*this);
3785 _WebImpl::IsFooterVisible(void) const
3787 return __isFooterVisible;
3792 _WebImpl::SetFooterVisibleState(bool isFooterVisible)
3794 __isFooterVisible = isFooterVisible;
3799 _WebImpl::IsKeypadVisible(void) const
3801 return __isKeypadVisible;
3806 _WebImpl::SetKeypadVisibleState(bool isKeypadVisible)
3808 __isKeypadVisible = isKeypadVisible;
3813 _WebImpl::IsKeypadOpened(void) const
3815 return __isKeypadOpened;
3819 _WebImpl::SetKeypadOpened(bool isKeypadOpened)
3821 __isKeypadOpened = isKeypadOpened;
3826 _WebImpl::GetPreviousKeypadBounds(void) const
3828 return __keypadBounds;
3833 _WebImpl::SetPreviousKeypadBounds(Rectangle& bounds)
3835 __keypadBounds = bounds;
3840 _WebImpl::OnTextValueChangeCanceled(const Control& source)
3842 RemoveFullScreenKeypad();
3847 _WebImpl::OnTextValueChanged(const Control& source)
3849 std::unique_ptr<char[]> pText(_StringConverter::CopyToCharArrayN(__pKeypad->GetText()));
3851 ewk_view_focused_input_element_value_set(__pWebCore->GetWebNativeNode(), pText.get());
3853 RemoveFullScreenKeypad();
3858 _WebImpl::OnHandleJavaScriptRequestByEventArg(const IEventArg& arg)
3860 const _JsBridgeArg* pEventArg = dynamic_cast< const _JsBridgeArg* >(&arg);
3861 SysTryReturnResult(NID_WEB_CTRL, pEventArg, E_INVALID_ARG, "Invalid argument(s) is used. arg is not _JsBridgeArg object.");
3863 std::unique_ptr<IJsonValue> pJsonValue(JsonParser::ParseN(*(pEventArg->GetJsonData())));
3864 SysTryReturn(NID_WEB_JSON, GetLastResult() == E_SUCCESS, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3866 IJavaScriptBridge* pJsInterface = FindJsInterface(pJsonValue.get());
3867 SysTryReturnResult(NID_WEB_CTRL, pJsInterface, E_OBJ_NOT_FOUND, "JsInterface instance is not available.");
3869 pJsInterface->HandleJavaScriptRequestN(pJsonValue.release());
3876 _WebImpl::OnHandleLoadingEvent(const IEventArg& arg)
3878 result r = E_SUCCESS;
3880 const _LoadingEventArg* pEventArg = dynamic_cast< const _LoadingEventArg* >(&arg);
3881 SysTryReturnResult(NID_WEB_CTRL, pEventArg, E_INVALID_ARG, "Invalid argument(s) is used. Type casting failed. argument must be IEventArg type.");
3883 SysLog(NID_WEB_CTRL, "The current value of event type is %d", pEventArg->GetEventType());
3885 ILoadingListener* pLoadingListner = GetLoadingListener();
3886 SysTryReturnResult(NID_WEB_CTRL, pLoadingListner, E_SYSTEM, "A system error has been occurred. Loading listener was not set or null.");
3888 switch (pEventArg->GetEventType())
3890 case WEB_EVENT_LOADINGLISTENER_STARTED:
3892 pLoadingListner->OnLoadingStarted();
3896 case WEB_EVENT_LOADINGLISTENER_PROGRESS:
3898 const Integer* pProgressPercentage = dynamic_cast< const Integer* >(pEventArg->GetEventInfo(_LoadingEventArg::ESTIMATED_PROGRESS));
3899 SysTryReturn(NID_WEB_CTRL, pProgressPercentage, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3901 pLoadingListner->OnEstimatedProgress(pProgressPercentage->ToInt());
3905 case WEB_EVENT_LOADINGLISTENER_PAGETITLE_RECEIVED:
3907 const String* pPageTitle = dynamic_cast< const String* >(pEventArg->GetEventInfo(_LoadingEventArg::PAGE_TITLE));
3908 SysTryReturn(NID_WEB_CTRL, pPageTitle, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3910 pLoadingListner->OnPageTitleReceived(*pPageTitle);
3914 case WEB_EVENT_LOADINGLISTENER_CANCELED:
3916 pLoadingListner->OnLoadingCanceled();
3920 case WEB_EVENT_LOADINGLISTENER_ERROR_OCCURRED:
3922 const Integer* pErrorType = dynamic_cast< const Integer* >(pEventArg->GetEventInfo(_LoadingEventArg::ERROR_TYPE));
3923 SysTryReturn(NID_WEB_CTRL, pErrorType, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3925 const String* pErrorMessage = dynamic_cast< const String* >(pEventArg->GetEventInfo(_LoadingEventArg::ERROR_MESSAGE));
3926 SysTryReturn(NID_WEB_CTRL, pErrorMessage, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3928 LoadingErrorType errorType = ConvertErrorCode(pErrorType->ToInt());
3930 pLoadingListner->OnLoadingErrorOccurred(errorType, *pErrorMessage);
3934 case WEB_EVENT_LOADINGLISTENER_COMPLETED:
3936 pLoadingListner->OnLoadingCompleted();
3940 case WEB_EVENT_LOADINGLISTENER_AUTHENTICATION_CANCELED:
3942 pLoadingListner->OnHttpAuthenticationCanceled();
3946 case WEB_EVENT_LOADINGLISTENER_FAVICON_RECEIVED:
3948 std::unique_ptr<Bitmap> pFavicon(GetFaviconN());
3949 SysTryReturn(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3953 pLoadingListner->OnFaviconReceived(*pFavicon.get());
3969 _WebImpl::OnHandleWebDownloadEvent(const IEventArg& arg)
3971 result r = E_SUCCESS;
3973 const _WebDownloadEventArg* pEventArg = dynamic_cast< const _WebDownloadEventArg* >(&arg);
3974 SysTryReturnResult(NID_WEB_CTRL, pEventArg, E_INVALID_ARG, "Invalid argument(s) is used. Type casting failed. argument must be IEventArg type.");
3976 SysLog(NID_WEB_CTRL, "The current value of event type is %d", pEventArg->GetEventType());
3978 IWebDownloadListener* pWebDownloadListener = __pWebDownloadHandler->GetDownloadListener();
3979 SysTryReturnResult(NID_WEB_CTRL, pWebDownloadListener, E_SYSTEM, "A system error has been occurred. Web Downloading listener was not set or null.");
3981 switch (pEventArg->GetEventType())
3983 case WEB_EVENT_WEBDOWNLOADLISTENER_DATA_RECEIVED:
3985 const ByteBuffer* pChunk = dynamic_cast< const ByteBuffer* >(pEventArg->GetEventInfo(_WebDownloadEventArg::CHUNKED_DATA));
3986 SysTryReturn(NID_WEB_CTRL, pChunk, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3988 pWebDownloadListener->OnWebChunkedDataReceived(*pChunk);
3992 case WEB_EVENT_WEBDOWNLOADLISTENER_COMPLETED:
3994 pWebDownloadListener->OnWebDataDownloadCompleted();
3998 case WEB_EVENT_WEBDOWNLOADLISTENER_FAILED:
4000 const Integer* pErrorType = dynamic_cast< const Integer* >(pEventArg->GetEventInfo(_WebDownloadEventArg::ERROR_TYPE));
4001 SysTryReturn(NID_WEB_CTRL, pErrorType, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4003 LoadingErrorType errorType = static_cast < LoadingErrorType >(pErrorType->ToInt());
4005 pWebDownloadListener->OnWebDownloadFailed(errorType);
4020 _WebImpl::OnHandleWebUiEvent(const IEventArg& arg)
4022 const _WebUiEventArg* pEventArg = dynamic_cast< const _WebUiEventArg* >(&arg);
4023 SysTryReturnResult(NID_WEB_CTRL, pEventArg, E_INVALID_ARG, "Invalid argument(s) is used. Type casting failed. argument must be IEventArg type.");
4025 SysLog(NID_WEB_CTRL, "The current value of event type is %d", pEventArg->GetEventType());
4027 SysTryReturnResult(NID_WEB_CTRL, __pUserUiListener, E_SYSTEM, "A system error has been occurred. Web UI listener was not set or null.");
4029 switch (pEventArg->GetEventType())
4031 case WEB_EVENT_WEBUIEVENTLISTENER_PAGE_BLOCK_SELECTED:
4033 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4035 Point* pStartPoint = const_cast< Point* >(dynamic_cast< const Point* >(pEventArg->GetEventInfo(_WebUiEventArg::BLOCK_START)));
4036 SysTryReturn(NID_WEB_CTRL, pStartPoint, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4038 Point* pEndPoint = const_cast< Point* >(dynamic_cast< const Point* >(pEventArg->GetEventInfo(_WebUiEventArg::BLOCK_END)));
4039 SysTryReturn(NID_WEB_CTRL, pEndPoint, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4041 __pUserUiListener->OnWebPageBlockSelected(*pWeb, *pStartPoint, *pEndPoint);
4045 case WEB_EVENT_WEBUIEVENTLISTENER_PAGE_SHOW_REQUESTED:
4047 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4049 __pUserUiListener->OnWebPageShowRequested(*pWeb);
4053 case WEB_EVENT_WEBUIEVENTLISTENER_WINDOW_CLOSE_REQUSTED:
4055 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4057 __pUserUiListener->OnWebWindowCloseRequested(*pWeb);
4061 case WEB_EVENT_WEBUIEVENTLISTENER_PREVENT_DEFAULT_TRIGGERED:
4063 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4065 Boolean* pTrigger = const_cast< Boolean* >(dynamic_cast< const Boolean* >(pEventArg->GetEventInfo(_WebUiEventArg::PREVENT_DEFAULT)));
4066 SysTryReturn(NID_WEB_CTRL, pTrigger, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4068 __pUserUiListener->OnWebPreventDefaultTriggered(*pWeb, pTrigger->ToBool());
4083 _WebImpl::OnHandleWebUiEventF(const IEventArg& arg)
4085 const _WebUiEventArg* pEventArg = dynamic_cast< const _WebUiEventArg* >(&arg);
4086 SysTryReturnResult(NID_WEB_CTRL, pEventArg, E_INVALID_ARG, "Invalid argument(s) is used. Type casting failed. argument must be IEventArg type.");
4088 SysLog(NID_WEB_CTRL, "The current value of event type is %d", pEventArg->GetEventType());
4090 SysTryReturnResult(NID_WEB_CTRL, __pUserUiListenerF, E_SYSTEM, "A system error has been occurred. Web UI listener was not set or null.");
4092 switch (pEventArg->GetEventType())
4094 case WEB_EVENT_WEBUIEVENTLISTENER_PAGE_BLOCK_SELECTED_FLOAT:
4096 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4098 FloatPoint* pStartPoint = const_cast< FloatPoint* >(dynamic_cast< const FloatPoint* >(pEventArg->GetEventInfo(_WebUiEventArg::BLOCK_START)));
4099 SysTryReturn(NID_WEB_CTRL, pStartPoint, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4101 FloatPoint* pEndPoint = const_cast< FloatPoint* >(dynamic_cast< const FloatPoint* >(pEventArg->GetEventInfo(_WebUiEventArg::BLOCK_END)));
4102 SysTryReturn(NID_WEB_CTRL, pEndPoint, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4104 __pUserUiListenerF->OnWebPageBlockSelected(*pWeb, *pStartPoint, *pEndPoint);
4108 case WEB_EVENT_WEBUIEVENTLISTENER_PAGE_SHOW_REQUESTED_FLOAT:
4110 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4112 __pUserUiListenerF->OnWebPageShowRequested(*pWeb);
4116 case WEB_EVENT_WEBUIEVENTLISTENER_WINDOW_CLOSE_REQUSTED_FLOAT:
4118 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4120 __pUserUiListenerF->OnWebWindowCloseRequested(*pWeb);
4124 case WEB_EVENT_WEBUIEVENTLISTENER_PREVENT_DEFAULT_TRIGGERED_FLOAT:
4126 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4128 Boolean* pTrigger = const_cast< Boolean* >(dynamic_cast< const Boolean* >(pEventArg->GetEventInfo(_WebUiEventArg::PREVENT_DEFAULT)));
4129 SysTryReturn(NID_WEB_CTRL, pTrigger, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4131 __pUserUiListenerF->OnWebPreventDefaultTriggered(*pWeb, pTrigger->ToBool());
4146 _WebImpl::OnHandleTextSearchEvent(const IEventArg& arg)
4148 result r = E_SUCCESS;
4150 const _TextSearchEventArg* pEventArg = dynamic_cast< const _TextSearchEventArg* >(&arg);
4151 SysTryReturnResult(NID_WEB_CTRL, pEventArg, E_INVALID_ARG, "Invalid argument(s) is used. Type casting failed. argument must be IEventArg type.");
4153 SysLog(NID_WEB_CTRL, "The current value of event type is %d", pEventArg->GetEventType());
4155 ITextSearchListener* pTextSearchListner = GetTextSearchListener();
4156 SysTryReturnResult(NID_WEB_CTRL, pTextSearchListner, E_SYSTEM, "A system error has been occurred. Web text search listener was not set or null.");
4158 switch (pEventArg->GetEventType())
4160 case WEB_EVENT_TEXTSEARCHLISTENER_TEXT_FOUND:
4162 Integer* pTotalCount= dynamic_cast< Integer* >(const_cast< Object* >(pEventArg->GetEventInfo(_TextSearchEventArg::TOTAL_COUNT)));
4163 SysTryReturn(NID_WEB_CTRL, pTotalCount, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4165 Integer* pCurrentOrdinal = dynamic_cast< Integer* >(const_cast< Object* >(pEventArg->GetEventInfo(_TextSearchEventArg::CURRENT_ORDINAL)));
4166 SysTryReturn(NID_WEB_CTRL, pCurrentOrdinal, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4168 pTextSearchListner->OnTextFound(pTotalCount->ToInt(), pCurrentOrdinal->ToInt());
4183 _WebImpl::HttpAuthenticationRequested(Ewk_Auth_Challenge* pChallenge)
4185 result r = E_SUCCESS;
4187 String host(ewk_auth_challenge_url_get(pChallenge));
4188 String realm(ewk_auth_challenge_realm_get(pChallenge));
4190 __pAuthChallenge.reset();
4192 std::unique_ptr<AuthenticationChallenge> pAuthChallenge(new (std::nothrow) AuthenticationChallenge());
4193 SysTryReturnResult(NID_WEB_CTRL, pAuthChallenge, E_OUT_OF_MEMORY, "Memory Allocation failed.");
4195 _AuthenticationChallengeImpl* pAuthImpl = _AuthenticationChallengeImpl::GetInstance(pAuthChallenge.get());
4196 SysTryReturn(NID_WEB_CTRL, pAuthImpl, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4198 pAuthImpl->SetAuthenticationChallengeHandler(pChallenge);
4199 pAuthImpl->SetWebEvasObject(__pWebCore->GetWebNativeNode());
4201 __pAuthChallenge = std::move(pAuthChallenge);
4203 ewk_auth_challenge_suspend(pChallenge);
4204 if (__pUserLoadingListener && __pUserLoadingListener->OnHttpAuthenticationRequestedN(host, realm, *__pAuthChallenge.get()))
4206 __pAuthChallenge.release();
4210 r = ShowAuthenticationPopup(host, realm, __pAuthChallenge.get());
4211 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4219 _WebImpl::ShowAuthenticationPopup(const String& host, const String& realm, AuthenticationChallenge* pAuthChallenge)
4221 result r = E_SUCCESS;
4223 std::unique_ptr<_AuthConfirmPopup> pAuthPopup(new (std::nothrow) _AuthConfirmPopup());
4224 SysTryReturnResult(NID_WEB_CTRL, pAuthPopup, E_OUT_OF_MEMORY, "Memory Allocation failed.");
4226 r = pAuthPopup->Construct(host, realm, pAuthChallenge);
4227 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4229 __pAuthPopup = std::move(pAuthPopup);
4231 int modalResult = 0;
4232 r = __pAuthPopup->ShowAndWait(modalResult);
4233 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
4236 __pAuthPopup.reset();
4243 _WebImpl::ShowCertificateConfirmPopup(_CertificatePopupMode userConfirmMode, Ewk_Certificate_Policy_Decision* pPolicy)
4245 result r = E_SUCCESS;
4247 std::unique_ptr<_CertificateConfirmPopup> pCertConfirmPopup(new (std::nothrow) _CertificateConfirmPopup());
4248 SysTryReturnResult(NID_WEB_CTRL, pCertConfirmPopup.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
4250 r = pCertConfirmPopup->Construct(userConfirmMode, pPolicy);
4251 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4253 __pCertConfirmPopup = std::move(pCertConfirmPopup);
4255 int modalResult = 0;
4256 r = __pCertConfirmPopup->ShowAndWait(modalResult);
4257 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
4259 if (userConfirmMode == CERTIFICATE_POPUP_MODE_USER_CONFIRM)
4261 __isCertificateConfirmed = __pCertConfirmPopup->GetConfirmResult();
4265 __pCertConfirmPopup.reset();
4271 _WebImpl::ShowUserConfirmPopup(_UserConfirmMode userConfirmMode, void* pPolicy)
4273 result r = E_SUCCESS;
4275 std::unique_ptr<_UserConfirmPopup> pUserConfirmPopup(new (std::nothrow) _UserConfirmPopup());
4276 SysTryReturnResult(NID_WEB_CTRL, pUserConfirmPopup.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
4278 r = pUserConfirmPopup->Construct(userConfirmMode, pPolicy, true);
4279 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4281 __pUserConfirmPopup = std::move(pUserConfirmPopup);
4283 int modalResult = 0;
4284 r = __pUserConfirmPopup->ShowAndWait(modalResult);
4285 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
4288 __pUserConfirmPopup.reset();
4294 _WebImpl::ShowUserConfirmPopupAsync(_UserConfirmMode userConfirmMode, void* pPolicy)
4296 result r = E_SUCCESS;
4298 std::unique_ptr<_UserConfirmPopup> pUserConfirmPopup(new (std::nothrow) _UserConfirmPopup());
4299 SysTryReturnResult(NID_WEB_CTRL, pUserConfirmPopup.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
4301 r = pUserConfirmPopup->Construct(userConfirmMode, pPolicy, false);
4302 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4304 __pUserConfirmPopup = std::move(pUserConfirmPopup);
4306 r = __pUserConfirmPopup->ShowPopup();
4307 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
4309 __pUserConfirmPopup.release();
4314 __pUserConfirmPopup.reset();
4321 _WebImpl::GetParentFormCore(_Control* pControlCore)
4324 _Form* pFormCore = null;
4326 _Control* pParentControlCore = dynamic_cast< _Control* >(pControlCore->GetParent());
4327 if (!pParentControlCore)
4332 pFormCore = dynamic_cast< _Form* >(pParentControlCore);
4338 return GetParentFormCore(pParentControlCore);
4343 _WebImpl::OnFocusGained(const _ControlImpl& source)
4350 _WebImpl::OnFocusLost(const _ControlImpl& source)
4352 if(IsKeypadVisible() == true)
4354 OnWebKeypadClosed(this, null, null);
4356 SetKeypadOpened(true);
4359 evas_object_focus_set(__pWebCore->GetWebNativeNode(), EINA_FALSE);
4366 _WebImpl::HasValidNativeNode(void) const
4368 if (__pWebCore && __pWebCore->GetWebNativeNode())
4378 _WebImpl::OnAttachedToMainTree(void)
4380 result r = E_SUCCESS;
4382 r = __pWebCore->InitializeWebNativeNode();
4383 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4385 r = InitializeSetting();
4386 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4388 r = _ContainerImpl::OnAttachedToMainTree();
4389 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4396 _WebImpl::OnChangeLayout(_ControlOrientation orientation)
4398 _ContainerImpl::OnChangeLayout(orientation);
4400 if (IsKeypadVisible() == true)
4406 ecore_imf_context_input_panel_geometry_get(ecore_imf_context_add(ecore_imf_context_default_id_get()), &x, &y, &w, &h);
4408 _Form* pFormCore = GetParentFormCore(dynamic_cast< _Control* >(&this->GetCore()));
4411 pFormCore->DeflateClientRectHeight(h);
4415 if (__pColorPicker.get())
4417 __pColorPicker->ChangeLayout(orientation);
4423 _WebImpl::OnAncestorVisibleStateChanged(const _Control& control)
4425 if (IsVisible() == true)
4427 ewk_view_page_visibility_state_set(__pWebCore->GetWebNativeNode(), EWK_PAGE_VISIBILITY_STATE_VISIBLE, false);
4431 ewk_view_page_visibility_state_set(__pWebCore->GetWebNativeNode(), EWK_PAGE_VISIBILITY_STATE_HIDDEN, false);
4437 _WebImpl::GetDownloadHandler(void) const
4439 return __pWebDownloadHandler.get();
4444 _WebImpl::HideColorPicker(void)
4446 __pColorPicker.reset();
4453 _WebImpl::ShowColorPicker(int red, int green, int blue, int alpha, Color& color)
4455 result r = E_SUCCESS;
4457 std::unique_ptr<_InputPickerPopup> pColorHadler(new (std::nothrow) _InputPickerPopup());
4458 SysTryReturnResult(NID_WEB_CTRL, pColorHadler.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
4460 Tizen::Graphics::Color colorVal(static_cast< byte >(red), static_cast< byte >(green), static_cast< byte >(blue), static_cast< byte >(alpha));
4462 r = pColorHadler->Construct(colorVal);
4463 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4465 __pColorPicker = std::move(pColorHadler);
4467 r = __pColorPicker->ShowPopup();
4468 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
4470 color = __pColorPicker->GetColor();
4475 __pColorPicker.reset();
4482 _WebImpl::ShowDatePicker(Ewk_Input_Type inputType, const char* inputValue, String& dateStr)
4484 result r = E_SUCCESS;
4486 std::unique_ptr<_InputPickerPopup> pInputPicker(new (std::nothrow) _InputPickerPopup());
4487 SysTryReturnResult(NID_WEB_CTRL, pInputPicker.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
4489 r = pInputPicker->Construct(String(inputValue), inputType);
4490 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4492 __pDatePicker = std::move(pInputPicker);
4494 r = __pDatePicker->ShowPopup();
4495 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
4497 dateStr = __pDatePicker->GetDate();
4500 __pDatePicker.reset();
4507 _WebImpl::GetInstance(Web* pWeb)
4509 return dynamic_cast< _WebImpl* >(_ControlImpl::GetInstance(*pWeb));
4514 _WebImpl::GetInstance(const Web* pWeb)
4516 return dynamic_cast< const _WebImpl* >(_ControlImpl::GetInstance(*pWeb));
4521 _WebImpl::SearchHandler(Ewk_Custom_Handlers_Data* pHandlerData, bool checkmime)
4523 int checkReturn = 0;
4525 String handlerPath(Tizen::App::App::GetInstance()->GetAppRootPath() + CUSTOM_DB_DIRECTORY_PATH + USER_CONFIRM_DB_NAME);
4528 if( checkmime == true)
4530 table = CUSTOM_CONTENT_TABLE_NAME;
4534 table = CUSTOM_PROTOCOL_TABLE_NAME;
4537 String baseUri(ewk_custom_handlers_data_base_url_get(pHandlerData));
4538 String uri(ewk_custom_handlers_data_url_get(pHandlerData));
4539 String target(ewk_custom_handlers_data_target_get(pHandlerData));
4541 SysLog(NID_WEB_CTRL, "BaseUrl : %s, Url : %s, mime : %s", baseUri.GetPointer(), uri.GetPointer(), target.GetPointer());
4543 result r = db.Construct(handlerPath, "r+", null);
4544 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, -1, r, "[%s] Propagating.", GetErrorMessage(r));
4546 std::unique_ptr<DbEnumerator> pEnum(db.QueryN(L"Select allow From " + table + L" Where baseUrl = '" + baseUri + L"' AND url = '" + uri + L"' AND mime = '" + target + L"'"));
4547 SysTryReturn(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, -1, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4551 r = pEnum->MoveNext();
4552 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, -1, r, "[%s] Propagating.", GetErrorMessage(r));
4553 r = pEnum->GetIntAt(0, checkReturn);
4554 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, -1, r, "[%s] Propagating.", GetErrorMessage(r));
4566 _WebImpl::UnregistrationHandler(Ewk_Custom_Handlers_Data* pHandlerData, bool checkmime)
4570 String handlerPath(Tizen::App::App::GetInstance()->GetAppRootPath() + CUSTOM_DB_DIRECTORY_PATH + USER_CONFIRM_DB_NAME);
4573 if( checkmime == true)
4575 table = CUSTOM_CONTENT_TABLE_NAME;
4579 table = CUSTOM_PROTOCOL_TABLE_NAME;
4582 String baseUri(ewk_custom_handlers_data_base_url_get(pHandlerData));
4583 String uri(ewk_custom_handlers_data_url_get(pHandlerData));
4584 String target(ewk_custom_handlers_data_target_get(pHandlerData));
4586 SysLog(NID_WEB_CTRL, "BaseUrl : %s, Url : %s, mime : %s", baseUri.GetPointer(), uri.GetPointer(), target.GetPointer());
4588 result r = db.Construct(handlerPath, "r+", null);
4589 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4591 std::unique_ptr<DbEnumerator> pEnum(db.QueryN(L"Select id From " + table + L" Where baseUrl = '" + baseUri + L"' AND url = '" + uri + L"' AND mime = '" + target + L"'"));
4592 SysTryReturn(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4596 r = pEnum->MoveNext();
4597 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4598 r = pEnum->GetIntAt(0, checkId);
4599 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4601 std::unique_ptr<DbStatement> pDeleteStmt(db.CreateStatementN(L"Delete From " + table + L" Where id = (?)"));
4602 SysTryReturn(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4604 r = pDeleteStmt->BindInt(0, checkId);
4605 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4607 db.BeginTransaction();
4609 std::unique_ptr<DbEnumerator> pEnum(db.ExecuteStatementN(*pDeleteStmt));
4611 db.CommitTransaction();
4618 const Tizen::Base::String
4619 _WebImpl::GetProtocolFromUri(const Tizen::Base::String& originUri, const Tizen::Base::String& currentUri)
4621 if (originUri == L"" || currentUri == L"")
4626 result r = E_SUCCESS;
4629 String handlerPath(Tizen::App::App::GetInstance()->GetAppRootPath() + CUSTOM_DB_DIRECTORY_PATH + USER_CONFIRM_DB_NAME);
4630 String originReplace(originUri);
4631 String table(CUSTOM_PROTOCOL_TABLE_NAME);
4635 r = currentUri.LastIndexOf(L"/", currentUri.GetLength()-1, found);
4636 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4638 r = currentUri.SubString(0, found + 1, baseUri);
4639 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4641 r = db.Construct(handlerPath, "r+", null);
4642 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4644 std::unique_ptr<DbEnumerator> pEnum(db.QueryN(L"Select mime, url, allow From " + table + L" Where baseUrl = '" + baseUri + "'"));
4645 SysTryReturn(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, L"", GetLastResult(), "[%s] Propagating.", GetErrorMessage(r));
4649 while (pEnum->MoveNext() == E_SUCCESS)
4654 String originScheme;
4656 r = pEnum->GetStringAt(0, protocol);
4657 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4659 r = pEnum->GetStringAt(1, queryUrl);
4660 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4662 r = pEnum->GetIntAt(2, allow);
4663 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4670 String protocolScheme(protocol + L":");
4672 r = originReplace.SubString(0, protocolScheme.GetLength(), originScheme);
4673 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4675 if ((originReplace.GetLength() >= protocolScheme.GetLength()) && originScheme.Equals(protocolScheme, false))
4677 if (queryUrl.IndexOf(L"%s", 0, foundQuery) == E_SUCCESS)
4679 r = originReplace.Replace(originScheme, "");
4680 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4682 queryUrl.Replace("%s", originReplace, 0);
4683 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4695 const Tizen::Base::String
4696 _WebImpl::GetRedirectUri(const Tizen::Base::String& originUri, const Tizen::Base::String& currentUri, const Tizen::Base::String& mime)
4698 if (originUri == L"" || currentUri == L"" || mime == L"")
4703 result r = E_SUCCESS;
4706 String originUrlStr = originUri;
4707 const String replaceStr = L"%s";
4709 String handlerPath(Tizen::App::App::GetInstance()->GetAppRootPath() + CUSTOM_DB_DIRECTORY_PATH + USER_CONFIRM_DB_NAME);
4710 String table(CUSTOM_CONTENT_TABLE_NAME);
4714 r = currentUri.LastIndexOf(L"/", currentUri.GetLength()-1, found);
4715 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4717 r = currentUri.SubString(0, found + 1, baseUri);
4718 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4720 r = db.Construct(handlerPath, "r+", null);
4721 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4723 std::unique_ptr<DbEnumerator> pEnum(db.QueryN(L"Select allow, url From " + table + L" Where baseUrl = '" + baseUri + "' AND mime = '" + mime + L"'"));
4727 r = pEnum->MoveNext();
4728 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4729 r = pEnum->GetIntAt(0, allow);
4730 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4731 r = pEnum->GetStringAt(1, contentUrl);
4732 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4740 if (contentUrl != L"")
4742 r = contentUrl.Replace(replaceStr, originUrlStr, 0);
4743 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4754 }}} // Tizen::Web::Controls