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();
788 String redirectUrl = pImpl->GetProtocolFromUri(url, currentUrl);
789 if (redirectUrl != null)
791 pImpl->LoadUrl(redirectUrl);
792 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:
970 String currentUrl = pImpl->GetUrl();
971 String redirectUrl = pImpl->GetRedirectUri(url, currentUrl, mime);
972 if (redirectUrl != L"")
974 pImpl->LoadUrl(redirectUrl);
975 ewk_policy_decision_ignore(pPolicy);
978 if (pImpl->IsMimeSupported(mime) || mime == L"")
985 SysLog(NID_WEB_CTRL, "Launch native app to handle the mime");
987 ewk_policy_decision_ignore(pPolicy);
989 AppControl* pAppControl = null;
990 _SelectBox selectBox;
992 int selectedIndex = 0;
994 std::unique_ptr<IList, AllElementsDeleter> pList(_AppManagerImpl::FindAppControlsN(NULL, NULL, &mime, NULL));
998 appCount = pList->GetCount();
1001 r = selectBox.Construct(false, L"", appCount+1); //+1 for Downloader
1002 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1004 selectBox.AddListItem(L"Download", _SelectBox::LIST_ITEM_TYPE_NORMAL, false);
1005 for (int i = 0; i < appCount; i++)
1007 pAppControl = dynamic_cast< AppControl* >(pList->GetAt(i));
1008 SysTryReturnVoidResult(NID_WEB_CTRL, pAppControl, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
1010 String text = pAppControl->GetAppName();
1011 SysLog(NID_WEB_CTRL, "AppName : %S", text.GetPointer());
1013 selectBox.AddListItem(text, _SelectBox::LIST_ITEM_TYPE_NORMAL, false);
1015 r = selectBox.ShowAndWait(selectedIndex);
1016 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1018 if (selectedIndex == 0) //download
1020 RequestId reqId = 0;
1021 DownloadRequest request(pUrl);
1023 _DownloadManagerImpl* pManagerImpl = _DownloadManagerImpl::GetInstance();
1024 SysTryReturnVoidResult(NID_WEB_CTRL, pManagerImpl, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
1026 r = pManagerImpl->Start(request, reqId);
1027 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1029 else if (selectedIndex != -1) // -1 for cancel
1031 String path("path");
1032 String pathVal(pUrl);
1035 r = dataList.Construct();
1036 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1038 r = dataList.Add(path, pathVal);
1039 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1041 pAppControl = dynamic_cast< AppControl* >(pList->GetAt(selectedIndex));
1042 SysTryReturnVoidResult(NID_WEB_CTRL, pAppControl, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
1044 _AppControlImpl* pAcImpl = _AppControlImpl::GetInstance(*pAppControl);
1045 SysTryReturnVoidResult(NID_WEB_CTRL, pAcImpl, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
1047 r = pAcImpl->Start(null, null, &dataList, null);
1048 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1055 case WEB_DECISION_DOWNLOAD:
1057 ewk_policy_decision_ignore(pPolicy);
1059 _WebDataHandler* pDownloadHandler = pImpl->GetDownloadHandler();
1060 SysTryReturnVoidResult(NID_WEB_CTRL, pDownloadHandler, E_SYSTEM, "[%s] A system error has been occurred. Failed to get DownloadHandler.", GetErrorMessage(E_SYSTEM));
1062 Ewk_Context* pContext = ewk_view_context_get(pView);
1063 SysAssertf(pContext, "Failed to get webkit instance.");
1065 pDownloadHandler->StartDownload(pUrl);
1069 case WEB_DECISION_IGNORE:
1071 ewk_policy_decision_ignore(pPolicy);
1081 ewk_policy_decision_use(pPolicy);
1086 ewk_policy_decision_ignore(pPolicy);
1091 OnProgressCompleted(void* pUserData, Evas_Object* pView, void* pEventInfo)
1093 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1094 SysAssertf(pImpl, "Failed to request");
1096 if (pImpl->IsRedirectRequested())
1098 pImpl->SetRedirectRequested(false);
1101 if (pImpl->IsLoadingErrorOccurred())
1103 pImpl->SetLoadingErrorOccurred(false);
1104 evas_object_smart_callback_call(pView, "load,finished", NULL);
1110 OnLoadingErrorOccurred(void* pUserData, Evas_Object* pView, void* pEventInfo)
1112 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1113 Ewk_Error* pErrorData = reinterpret_cast< Ewk_Error* >(pEventInfo);
1114 SysAssertf(pImpl && pErrorData, "Failed to request");
1116 int code = ewk_error_code_get(pErrorData);
1117 const char* pDescription = ewk_error_description_get(pErrorData);
1119 SysLog(NID_WEB_CTRL, "The current value of code is %d, description is %s", code, pDescription);
1121 pImpl->SetLoadingErrorOccurred(true);
1124 case EWK_ERROR_CODE_FRAMELOADINTERRUPTEDBYPOLICYCHANGE:
1126 case EWK_ERROR_CODE_PLUGINWILLHANDLELOAD:
1129 case EWK_ERROR_NETWORK_STATUS_CANCELLED:
1130 evas_object_smart_callback_call(pView, "load,stop", NULL);
1134 if (pImpl->GetLoadingListener())
1136 result r = E_SUCCESS;
1138 r = FireLoadingErrorOccurredEvent(pImpl, code, pDescription);
1139 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1147 OnLoadingCanceled(void* pUserData, Evas_Object* pView, void* pEventInfo)
1149 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1150 SysAssertf(pImpl, "Failed to request");
1152 if (pImpl->GetLoadingListener())
1154 result r = E_SUCCESS;
1156 std::unique_ptr<_LoadingEventArg> pEventArg(new (std::nothrow) _LoadingEventArg(WEB_EVENT_LOADINGLISTENER_CANCELED));
1157 SysTryReturnVoidResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
1159 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1160 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1161 pEventArg.release();
1168 OnLoadingCompleted(void* pUserData, Evas_Object* pView, void* pEventInfo)
1170 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1171 SysAssertf(pImpl, "Failed to request");
1173 if (pImpl->GetLoadingListener())
1175 result r = E_SUCCESS;
1177 std::unique_ptr<_LoadingEventArg> pEventArg(new (std::nothrow) _LoadingEventArg(WEB_EVENT_LOADINGLISTENER_COMPLETED));
1178 SysTryReturnVoidResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
1180 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1181 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1182 pEventArg.release();
1189 OnLoadingCommitted(void* pUserData, Evas_Object* pView, void* pEventInfo)
1191 evas_object_focus_set(pView, EINA_FALSE);
1196 OnFaviconReceived(void* pUserData, Evas_Object* pView, void* pEventInfo)
1198 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1199 SysAssertf(pImpl, "Failed to request");
1201 if (pImpl->GetLoadingListener())
1203 result r = E_SUCCESS;
1205 std::unique_ptr<_LoadingEventArg> pEventArg(new (std::nothrow) _LoadingEventArg(WEB_EVENT_LOADINGLISTENER_FAVICON_RECEIVED));
1206 SysTryReturnVoidResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
1208 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1209 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1210 pEventArg.release();
1217 OnDidStartDownloadCallback(const char* pUrl, void* pUserData)
1219 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1220 SysAssertf(pUrl && pImpl != null, "Failed to request");
1222 SysLog(NID_WEB_CTRL, "The current value of url is %s", pUrl);
1227 FireWebPageShowRequestedEvent(_WebImpl* pImpl, int event)
1229 result r = E_SUCCESS;
1231 std::unique_ptr<_WebUiEventArg> pEventArg(new (std::nothrow) _WebUiEventArg(event));
1232 SysTryReturnResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
1234 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1235 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1236 pEventArg.release();
1243 OnWebPageShowRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
1245 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1246 SysAssertf(pImpl, "Failed to request");
1248 if (pImpl->GetUiEventListener())
1250 result r = E_SUCCESS;
1252 r = FireWebPageShowRequestedEvent(pImpl, WEB_EVENT_WEBUIEVENTLISTENER_PAGE_SHOW_REQUESTED);
1253 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1255 if (pImpl->GetUiEventListenerF())
1257 result r = E_SUCCESS;
1259 r = FireWebPageShowRequestedEvent(pImpl, WEB_EVENT_WEBUIEVENTLISTENER_PAGE_SHOW_REQUESTED_FLOAT);
1260 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1266 OnWebWindowCreateRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
1268 _WebImpl* pParentImpl = reinterpret_cast< _WebImpl* >(pUserData);
1269 Evas_Object** pChildView = reinterpret_cast< Evas_Object** >(pEventInfo);
1270 SysAssertf(pParentImpl && pChildView, "Failed to request");
1272 IWebUiEventListener* pUserUiListener = pParentImpl->GetUiEventListener();
1273 IWebUiEventListenerF* pUserUiListenerF = pParentImpl->GetUiEventListenerF();
1274 if (pUserUiListener)
1276 Web* pWeb = pUserUiListener->OnWebWindowCreateRequested();
1279 _WebImpl* pChildImpl = _WebImpl::GetInstance(pWeb);
1280 SysTryReturnVoidResult(NID_WEB_CTRL, pChildImpl, E_SYSTEM, "[%s] A system error has been occurred. Failed to get ChildImpl object.", GetErrorMessage(E_SYSTEM));
1282 *pChildView = dynamic_cast< _Web* >(&pChildImpl->GetCore())->GetWebNativeNode();
1283 evas_object_data_set(*pChildView, PARENT_WEB_CTRL, pParentImpl);
1286 if (pUserUiListenerF)
1288 Web* pWeb = pUserUiListenerF->OnWebWindowCreateRequested();
1291 _WebImpl* pChildImpl = _WebImpl::GetInstance(pWeb);
1292 SysTryReturnVoidResult(NID_WEB_CTRL, pChildImpl, E_SYSTEM, "[%s] A system error has been occurred. Failed to get ChildImpl object.", GetErrorMessage(E_SYSTEM));
1294 *pChildView = dynamic_cast< _Web* >(&pChildImpl->GetCore())->GetWebNativeNode();
1295 evas_object_data_set(*pChildView, PARENT_WEB_CTRL, pParentImpl);
1302 FireWebWindowClosedRequestedEvent(_WebImpl* pImpl, int event)
1304 result r = E_SUCCESS;
1306 std::unique_ptr<_WebUiEventArg> pEventArg(new (std::nothrow) _WebUiEventArg(event));
1307 SysTryReturnResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
1309 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1310 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1311 pEventArg.release();
1318 OnWebWindowClosedRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
1320 _WebImpl* pChildImpl = reinterpret_cast< _WebImpl* >(pUserData);
1321 SysAssertf(pChildImpl, "Failed to request");
1323 _WebImpl* pParentImpl = reinterpret_cast< _WebImpl* >(evas_object_data_get(pView, PARENT_WEB_CTRL));
1324 if (pParentImpl == null)
1329 if (pParentImpl->GetUiEventListener())
1331 result r = E_SUCCESS;
1333 r = FireWebWindowClosedRequestedEvent(pChildImpl, WEB_EVENT_WEBUIEVENTLISTENER_WINDOW_CLOSE_REQUSTED);
1334 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1336 if (pParentImpl->GetUiEventListenerF())
1338 result r = E_SUCCESS;
1340 r = FireWebWindowClosedRequestedEvent(pChildImpl, WEB_EVENT_WEBUIEVENTLISTENER_WINDOW_CLOSE_REQUSTED_FLOAT);
1341 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1347 FireWebPreventDefaultTriggeredEvent(_WebImpl* pImpl, int event, bool trigger)
1349 result r = E_SUCCESS;
1351 std::unique_ptr<Boolean> pPreventTrigger(new (std::nothrow) Boolean(trigger));
1352 std::unique_ptr<_WebUiEventArg> pEventArg(new (std::nothrow) _WebUiEventArg(event));
1353 SysTryReturnResult(NID_WEB_CTRL, pPreventTrigger.get() && pEventArg.get(), E_OUT_OF_MEMORY, " Memory allocation failed." );
1355 r = pEventArg->SetEventInfo(_WebUiEventArg::PREVENT_DEFAULT, *pPreventTrigger.get());
1356 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1357 pPreventTrigger.release();
1359 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1360 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1361 pEventArg.release();
1368 OnWebPreventDefaultTriggered(void* pUserData, Evas_Object* pView, void* pEventInfo)
1370 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1371 Eina_Bool* pTrigger = reinterpret_cast< Eina_Bool* >(pEventInfo);
1372 SysAssertf(pImpl && pTrigger, "Failed to request");
1374 if (pImpl->GetUiEventListener())
1376 result r = E_SUCCESS;
1378 r = FireWebPreventDefaultTriggeredEvent(pImpl, WEB_EVENT_WEBUIEVENTLISTENER_PREVENT_DEFAULT_TRIGGERED, static_cast< bool >(*pTrigger));
1379 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1381 if (pImpl->GetUiEventListenerF())
1383 result r = E_SUCCESS;
1385 r = FireWebPreventDefaultTriggeredEvent(pImpl, WEB_EVENT_WEBUIEVENTLISTENER_PREVENT_DEFAULT_TRIGGERED_FLOAT, static_cast< bool >(*pTrigger));
1386 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1392 FireWebPageBlockSelectedEvent(_WebImpl* pImpl)
1394 result r = E_SUCCESS;
1396 std::unique_ptr<Point> startPoint(new (std::nothrow) Point());
1397 std::unique_ptr<Point> endPoint(new (std::nothrow) Point());
1398 SysTryReturnResult(NID_WEB_CTRL, startPoint.get() && endPoint.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
1400 pImpl->GetBlockRange(*startPoint.get(), *endPoint.get());
1402 if ((endPoint->x != 0) && (endPoint->y != 0))
1404 std::unique_ptr<_WebUiEventArg> pEventArg(new (std::nothrow) _WebUiEventArg(WEB_EVENT_WEBUIEVENTLISTENER_PAGE_BLOCK_SELECTED));
1405 SysTryReturnResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
1407 r = pEventArg->SetEventInfo(_WebUiEventArg::BLOCK_START, *startPoint.get());
1408 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1409 startPoint.release();
1411 r = pEventArg->SetEventInfo(_WebUiEventArg::BLOCK_END, *endPoint.get());
1412 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1415 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1416 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1417 pEventArg.release();
1425 FireWebPageBlockSelectedEventF(_WebImpl* pImpl)
1427 result r = E_SUCCESS;
1429 std::unique_ptr<FloatPoint> startPoint(new (std::nothrow) FloatPoint());
1430 std::unique_ptr<FloatPoint> endPoint(new (std::nothrow) FloatPoint());
1432 SysTryReturnResult(NID_WEB_CTRL, startPoint.get() && endPoint.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
1434 pImpl->GetBlockRange(*startPoint.get(), *endPoint.get());
1436 if ((endPoint->x != 0.0f) && (endPoint->y != 0.0f))
1438 std::unique_ptr<_WebUiEventArg> pEventArg(new (std::nothrow) _WebUiEventArg(WEB_EVENT_WEBUIEVENTLISTENER_PAGE_BLOCK_SELECTED_FLOAT));
1439 SysTryReturnResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
1441 r = pEventArg->SetEventInfo(_WebUiEventArg::BLOCK_START, *startPoint.get());
1442 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1443 startPoint.release();
1445 r = pEventArg->SetEventInfo(_WebUiEventArg::BLOCK_END, *endPoint.get());
1446 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1449 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1450 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1451 pEventArg.release();
1459 OnWebPageBlockSelected(void* pUserData, Evas_Object* pView, void* pEventInfo)
1461 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1462 Ewk_Text_Style* pStyle = reinterpret_cast< Ewk_Text_Style* >(pEventInfo);
1463 SysAssertf(pImpl && pStyle, "Failed to request");
1465 if (pImpl->GetUiEventListener())
1467 result r = E_SUCCESS;
1469 r = FireWebPageBlockSelectedEvent(pImpl);
1470 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1472 if (pImpl->GetUiEventListenerF())
1474 result r = E_SUCCESS;
1476 r = FireWebPageBlockSelectedEventF(pImpl);
1477 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1483 OnSelectUploadFile(Evas_Object* pView, Eina_Bool multipleFile, Eina_List* pAcceptTypes, const char* pCapture, void* pUserData)
1485 Eina_Bool ret = EINA_FALSE;
1486 Eina_List* pSelectedFileNames = null;
1487 String isMultipleSelection(L"single");
1491 isMultipleSelection.Append(L"multiple");
1494 std::unique_ptr<_MediaSelectionListener> pMediaListener(new (std::nothrow) _MediaSelectionListener());
1495 SysTryCatch(NID_WEB_CTRL, pMediaListener.get(), , E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
1498 int itemCount = eina_list_count(pAcceptTypes);
1499 String fileType = L"all";
1503 String item((char*)eina_list_nth(pAcceptTypes, 0));
1504 if (item.StartsWith("image/",0))
1506 fileType = L"image";
1508 else if (item.StartsWith("audio/",0))
1510 fileType = L"audio";
1512 else if (item.StartsWith("video/",0))
1514 fileType = L"video";
1519 result r = dataList.Construct();
1520 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
1522 String mode(L"selectionType");
1523 r = dataList.Add(mode, isMultipleSelection);
1524 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
1526 String type(L"type");
1527 r = dataList.Add(type, fileType);
1528 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
1530 std::unique_ptr<AppControl> pMediaAppControl(_AppManagerImpl::FindAppControlN(L"tizen.filemanager", L"http://tizen.org/appcontrol/operation/pick"));
1531 SysTryCatch(NID_WEB_CTRL, pMediaAppControl.get(), r = GetLastResult(), r, "[%s] Propagating.", GetErrorMessage(r));
1533 _AppControlImpl* pMediaAppControlImpl = _AppControlImpl::GetInstance(*pMediaAppControl);
1534 r = pMediaAppControlImpl->Start(null, null, &dataList, pMediaListener.get());
1535 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
1539 if (pMediaListener->IsSelectionCompleted())
1541 const ArrayList* pSelectedFiles = pMediaListener->GetSelectedFiles();
1542 SysTryCatch(NID_WEB_CTRL, pSelectedFiles, r = GetLastResult(), r, "[%s] Propagating.", GetErrorMessage(r));
1544 int fileCount = pSelectedFiles->GetCount();
1546 for (int i = 0; i < fileCount; i++)
1548 String* pFile = (String*)pSelectedFiles->GetAt(i);
1549 SysTryCatch(NID_WEB_CTRL, pFile, r = GetLastResult(), r, "[%s] Propagating.", GetErrorMessage(r));
1551 std::unique_ptr<ByteBuffer> pByteBuf(StringUtil::StringToUtf8N(*pFile));
1552 SysTryCatch(NID_WEB_CTRL, pByteBuf.get(), r = GetLastResult(), r, "[%s] Propagating.", GetErrorMessage(r));
1554 pSelectedFileNames = eina_list_append(pSelectedFileNames, strdup((const char*)pByteBuf->GetPointer()));
1561 ecore_main_loop_iterate();
1564 ewk_view_open_panel_reply(pView, pSelectedFileNames, ret);
1569 ewk_view_open_panel_reply(pView, null, ret);
1570 eina_list_free(pSelectedFileNames);
1576 OnHandleJavaScriptRequest(void* pUserData, Evas_Object* pView, void* pEventInfo)
1578 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1579 char* pJsonText = reinterpret_cast< char* >(pEventInfo);
1580 SysAssertf(pImpl && pJsonText, "Failed to request");
1582 result r = E_SUCCESS;
1584 SysLog(NID_WEB_CTRL, "The current value of jsontext is %s", pJsonText);
1586 std::unique_ptr<_JsBridgeArg> pEventArg(new (std::nothrow) _JsBridgeArg());
1587 SysTryReturnVoidResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
1589 r = pEventArg->Construct(pJsonText);
1590 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1592 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1593 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1594 pEventArg.release();
1599 OnWebKeypadStateChanged(void* pUserData, Evas_Object* pView, void* pEventInfo)
1601 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1602 Eina_Rectangle* pEinaRect = reinterpret_cast< Eina_Rectangle* >(pEventInfo);
1603 SysAssertf(pImpl && pEinaRect, "Failed to request");
1605 if (pImpl->GetSetting().GetInputStyle() == INPUT_STYLE_OVERLAY)
1607 _ICoordinateSystemTransformer* pXformer = _CoordinateSystem::GetInstance()->GetInverseTransformer();
1608 SysAssertf(pXformer, "Failed to get CoordinateTransformer");
1610 Rectangle rect(pEinaRect->x, pEinaRect->y, pEinaRect->w, pEinaRect->h);
1612 if (rect.height == 0)
1617 _Form* pFormCore = pImpl->GetParentFormCore(dynamic_cast< _Control* >(&pImpl->GetCore()));
1618 SysAssertf(pFormCore != null, "Failed to get FormCore");
1620 if (pFormCore->HasFooter() && pFormCore->IsFooterVisible())
1622 pImpl->SetFooterVisibleState(true);
1623 pFormCore->SetActionBarsVisible(FORM_ACTION_BAR_FOOTER, false);
1626 if (pImpl->GetWebKeypadEventListener())
1628 if (pImpl->IsKeypadVisible() == true)
1630 if ((pImpl->GetPreviousKeypadBounds().width == rect.width) && (pImpl->GetPreviousKeypadBounds().height != rect.height))
1632 pImpl->GetWebKeypadEventListener()->OnWebKeypadBoundsChanged(*dynamic_cast< Web* >(&pImpl->GetPublic()));
1637 pFormCore->DeflateClientRectHeight(pXformer->TransformVertical(rect.height));
1638 pImpl->GetWebKeypadEventListener()->OnWebKeypadWillOpen(*dynamic_cast< Web* >(&pImpl->GetPublic()));
1641 pImpl->SetKeypadVisibleState(true);
1642 pImpl->SetPreviousKeypadBounds(rect);
1646 result r = pImpl->SetFullScreenKeypad();
1647 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1653 OnWebKeypadOpened(void* pUserData, Evas_Object* pView, void* pEventInfo)
1655 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1656 SysAssertf(pImpl, "Failed to request");
1658 if (pImpl->GetWebKeypadEventListener())
1660 pImpl->GetWebKeypadEventListener()->OnWebKeypadOpened(*static_cast< Web* >(&pImpl->GetPublic()));
1666 OnWebKeypadClosed(void* pUserData, Evas_Object* pView, void* pEventInfo)
1668 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1669 SysAssertf(pImpl, "Failed to request");
1671 _Form* pFormCore = pImpl->GetParentFormCore(dynamic_cast< _Control* >(&pImpl->GetCore()));
1672 SysAssertf(pFormCore != null, "Failed to get FormCore");
1674 if (pImpl->IsKeypadVisible())
1676 if (pFormCore->HasFooter() && pImpl->IsFooterVisible())
1678 pImpl->SetFooterVisibleState(false);
1679 pFormCore->SetActionBarsVisible(FORM_ACTION_BAR_FOOTER, true);
1682 pFormCore->DeflateClientRectHeight(0);
1684 if (pImpl->GetWebKeypadEventListener())
1686 pImpl->GetWebKeypadEventListener()->OnWebKeypadClosed(*dynamic_cast< Web* >(&pImpl->GetPublic()));
1689 pImpl->SetKeypadVisibleState(false);
1695 OnWindowObjectFocusGained(void *pUserData, Evas_Object *pWin, void *pEvent_info)
1697 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1698 SysAssertf(pImpl, "Failed to request");
1700 if (pImpl->IsKeypadOpened() == true)
1702 _Web* pWebCore = dynamic_cast< _Web* >(&(pImpl->GetCore()));
1703 SysAssertf(pWebCore, "Failed to get Web core object");
1705 evas_object_focus_set(pWebCore->GetWebNativeNode(), EINA_TRUE);
1707 pImpl->SetKeypadOpened(false);
1713 OnWebNativeNodeFocusGained(void *pUserData, Evas *pCanvas, Evas_Object* pView, void* pEventInfo)
1715 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1716 SysAssertf(pImpl, "Failed to request");
1718 if (pImpl->IsKeypadOpened() == true)
1720 pImpl->SetKeypadOpened(false);
1726 OnColorPickerProviderRequested(Ewk_View_Smart_Data *pSmartData, int red, int green, int blue, int alpha)
1728 SysAssertf(pSmartData, "invalid smartdata");
1729 _WebImpl* pWebImpl = reinterpret_cast<_WebImpl*>(evas_object_data_get(pSmartData->self, WEB_CTRL));
1730 SysAssertf(pWebImpl, "Failed to get Impl");
1732 result r = E_SUCCESS;
1734 if (pWebImpl->GetColorpicker())
1741 r = pWebImpl->ShowColorPicker(red, green, blue, alpha, color);
1742 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Memory allocation failed.", GetErrorMessage(r));
1744 byte r1, g1, b1, a1;
1745 color.GetColorComponents(r1, g1, b1, a1);
1746 ewk_view_color_picker_color_set(pSmartData->self, r1, g1, b1, a1);
1753 OnColorPickerProviderDismissed(Ewk_View_Smart_Data *pSmartData)
1755 SysAssertf(pSmartData, "invalid smartdata");
1757 _WebImpl* pWebImpl = reinterpret_cast<_WebImpl*>(evas_object_data_get(pSmartData->self, WEB_CTRL));
1758 SysAssertf(pWebImpl, "Failed to get Impl");
1760 return pWebImpl->HideColorPicker();
1765 OnDatePickerProviderRequested(Ewk_View_Smart_Data *pSmartData, Ewk_Input_Type inputType, const char* inputValue)
1767 SysAssertf(pSmartData, "Failed to request");
1768 _WebImpl* pWebImpl = reinterpret_cast<_WebImpl*>(evas_object_data_get(pSmartData->self, WEB_CTRL));
1769 SysAssertf(pWebImpl, "Failed to get Impl");
1771 result r = E_SUCCESS;
1773 if (pWebImpl->GetDatepicker())
1775 ewk_view_focused_input_element_value_set(pSmartData->self, inputValue);
1782 r = pWebImpl->ShowDatePicker(inputType, inputValue, dateStr);
1783 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Memory allocation failed.", GetErrorMessage(r));
1785 std::unique_ptr<char[]> pDateStr(_StringConverter::CopyToCharArrayN(dateStr));
1786 SysTryReturn(NID_WEB_CTRL, pDateStr.get(), EINA_FALSE, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
1788 ewk_view_focused_input_element_value_set(pSmartData->self, pDateStr.get());
1795 OnSelectBoxRequested(Ewk_View_Smart_Data *pSmartData, Eina_Rectangle rect, Ewk_Text_Direction textDirection, double pageScaleFactor, Eina_List* pItems, int selectedIndex)
1797 SysAssertf(pSmartData, "Failed to request");
1799 _WebImpl* pWebImpl = reinterpret_cast<_WebImpl*>(evas_object_data_get(pSmartData->self, WEB_CTRL));
1800 SysAssertf(pWebImpl, "Failed to get Impl");
1802 result r = pWebImpl->ShowSelectBoxPopup(false, L"", pItems, pSmartData->self, selectedIndex);
1803 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
1810 OnSelectBoxClosed(Ewk_View_Smart_Data *pSmartData)
1812 SysAssertf(pSmartData, "invalid smartdata");
1814 _WebImpl* pWebImpl = reinterpret_cast<_WebImpl*>(evas_object_data_get(pSmartData->self, WEB_CTRL));
1815 SysAssertf(pWebImpl, "Failed to get Impl");
1817 result r = pWebImpl->ClearSelectBoxPopup();
1818 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
1825 OnSelectBoxUpdateRequested(Ewk_View_Smart_Data *pSmartData, Eina_Rectangle rect, Ewk_Text_Direction textDirection, Eina_List* pItems, int selectedIndex)
1827 SysAssertf(pSmartData, "invalid smartdata");
1829 _WebImpl* pWebImpl = reinterpret_cast<_WebImpl*>(evas_object_data_get(pSmartData->self, WEB_CTRL));
1830 SysAssertf(pWebImpl, "Failed to get Impl");
1832 result r = pWebImpl->UpdateSelectBoxPopup(pItems, selectedIndex, false);
1833 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
1840 OnCookiesPolicyGot(Ewk_Cookie_Accept_Policy policy, Ewk_Web_Error *pError, void *pUserData)
1842 _WebPresenter* pPresenter = reinterpret_cast< _WebPresenter* >(pUserData);
1843 SysAssertf(pPresenter && !pError, "Failed to request");
1845 bool ret = EINA_TRUE;
1849 case EWK_COOKIE_ACCEPT_POLICY_ALWAYS:
1851 case EWK_COOKIE_ACCEPT_POLICY_NO_THIRD_PARTY:
1855 case EWK_COOKIE_ACCEPT_POLICY_NEVER:
1864 SysLog(NID_WEB_CTRL, "The current value of policy is %d", ret);
1866 pPresenter->EndAsyncProcess(ret);
1871 OnScriptExecuted(Evas_Object* pView, const char* pResult, void* pUserData)
1873 _WebPresenter* pPresenter = reinterpret_cast< _WebPresenter* >(pUserData);
1874 SysAssertf(pPresenter, "Failed to request");
1876 String result(pResult);
1877 SysLog(NID_WEB_CTRL, "result : %ls", result.GetPointer());
1879 pPresenter->EndAsyncProcess(result);
1884 OnTextFound(void* pUserData, Evas_Object* pView, void* pEventInfo)
1886 _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1887 SysAssertf(pImpl, "Failed to request");
1889 int* pTotalCount = reinterpret_cast< int* >(pEventInfo);
1890 SysLog(NID_WEB_CTRL, "The current value of totalCount is %d", *pTotalCount);
1892 _WebPresenter* pWebPresenter = pImpl->GetSearchPresenter();
1896 pWebPresenter->EndAsyncProcess(*pTotalCount);
1900 if (pImpl->GetTextSearchListener())
1902 result r = E_SUCCESS;
1906 if (*pTotalCount > 0)
1908 ordinal = pImpl->GetAsyncSearchOrdinal();
1909 pImpl->SetAsyncSearchResult(*pTotalCount);
1912 if (pImpl->GetPendingAsyncSearchCount() > 0)
1917 std::unique_ptr<Integer> pCount(new (std::nothrow) Integer(*pTotalCount));
1918 std::unique_ptr<Integer> pOrdinal(new (std::nothrow) Integer(ordinal));
1919 std::unique_ptr<_TextSearchEventArg> pEventArg(new (std::nothrow) _TextSearchEventArg(WEB_EVENT_TEXTSEARCHLISTENER_TEXT_FOUND));
1920 SysTryReturnVoidResult(NID_WEB_CTRL, pCount.get() && pOrdinal.get() && pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
1922 r = pEventArg->SetEventInfo(_TextSearchEventArg::TOTAL_COUNT, *pCount.get());
1923 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1926 r = pEventArg->SetEventInfo(_TextSearchEventArg::CURRENT_ORDINAL, *pOrdinal.get());
1927 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1930 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1931 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1932 pEventArg.release();
1938 class _JsBridgeHashCodeProvider
1939 : public Tizen::Base::Collection::IHashCodeProviderT< Tizen::Base::String >
1942 _JsBridgeHashCodeProvider(){}
1943 virtual ~_JsBridgeHashCodeProvider(void) {}
1946 int GetHashCode(const Tizen::Base::String& obj) const
1948 return obj.GetHashCode();
1954 //Comparer implementation
1955 class _JsBridgeComparer
1956 : public Tizen::Base::Collection::IComparerT< Tizen::Base::String >
1959 _JsBridgeComparer(){}
1960 virtual ~_JsBridgeComparer(void) {}
1963 result Compare(const Tizen::Base::String& obj1, const Tizen::Base::String& obj2, int& cmp) const
1980 _WebImpl::_WebImpl(Web* pWeb, Tizen::Ui::_Control* pCore)
1981 : _ContainerImpl(pWeb, pCore)
1982 , __isFooterVisible(false)
1983 , __isKeypadVisible(false)
1984 , __isKeypadOpened(false)
1985 , __isLoadingErrorOccurred(false)
1986 , __isRedirectRequested(false)
1987 , __isCertificateRequested(false)
1988 , __isCertificateConfirmed(false)
1989 , __keypadBounds(0, 0, 0, 0)
1991 , __pUserLoadingListener(null)
1992 , __pUserUiListener(null)
1993 , __pUserUiListenerF(null)
1994 , __pUserKeypadEventListener(null)
1995 , __pTextSearchListener(null)
1997 , __pJsBridgeList(null)
1998 , __pJsProvider(null)
1999 , __pJsComparer(null)
2000 , __pWebDownloadHandler(null)
2002 , __pAuthChallenge(null)
2003 , __pAuthPopup(null)
2004 , __pUserConfirmPopup(null)
2005 , __pCertConfirmPopup(null)
2006 , __pSelectBox(null)
2007 , __pDatePicker(null)
2008 , __pColorPicker(null)
2009 , __policy(WEB_DECISION_CONTINUE)
2011 __textSearch.__searchAll = false;
2012 __textSearch.__searchForward = true;
2013 __textSearch.__caseSensitive = false;
2014 __textSearch.__pending = 0;
2015 __textSearch.__currentIndex = 1;
2016 __textSearch.__totalCount = -1;
2017 __textSearch.__text = L"";
2021 _WebImpl::~_WebImpl()
2023 RemoveEventListenerCallback();
2027 _WebImpl::CreateWebImplN(Web* pControl, const Rectangle& bounds)
2029 result r = E_SUCCESS;
2031 r = GET_SIZE_INFO(Web).CheckInitialSizeValid(Dimension(bounds.width, bounds.height), _CONTROL_ORIENTATION_PORTRAIT);
2032 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
2034 _Web* pCore = _Web::CreateWebN();
2035 SysTryReturn(NID_WEB_CTRL, pCore, null, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2037 _WebImpl* pImpl = new (std::nothrow) _WebImpl(pControl, pCore);
2039 r = CheckConstruction(pCore, pImpl);
2040 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
2042 r = pImpl->InitializeBoundsProperties(GET_SIZE_INFO(Web), bounds, pCore->GetOrientation());
2043 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2045 r = pImpl->Construct();
2046 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2058 _WebImpl::CreateWebImplN(Web* pControl, const FloatRectangle& bounds)
2060 result r = E_SUCCESS;
2062 r = GET_SIZE_INFO(Web).CheckInitialSizeValidF(FloatDimension(bounds.width, bounds.height), _CONTROL_ORIENTATION_PORTRAIT);
2063 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
2065 _Web* pCore = _Web::CreateWebN();
2066 SysTryReturn(NID_WEB_CTRL, pCore, null, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2068 _WebImpl* pImpl = new (std::nothrow) _WebImpl(pControl, pCore);
2070 r = CheckConstruction(pCore, pImpl);
2071 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
2073 r = pImpl->InitializeBoundsPropertiesF(GET_SIZE_INFO(Web), bounds, pCore->GetOrientation());
2074 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2076 r = pImpl->Construct();
2077 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2089 _WebImpl::Construct(void)
2091 result r = E_SUCCESS;
2093 r = __mutex.Create();
2094 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2096 r = __textSearch.__searchQueue.Construct();
2097 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2099 r = InitJsBridgeList();
2100 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2103 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2105 __pWebCore = dynamic_cast< _Web* >(&(GetCore()));
2106 SysTryReturnResult(NID_WEB_CTRL, __pWebCore, E_SYSTEM, "A system error has been occurred. Failed to get web control");
2113 _WebImpl::InitializeSetting(void)
2115 result r = E_SUCCESS;
2117 r = SetSetting(*__pWebCore->GetSetting());
2118 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2120 _WebSettingImpl* pWebSettingImpl = _WebSettingImpl::GetInstance(__pWebCore->GetSetting());
2122 SetCookieEnabled(pWebSettingImpl->IsCookieEnabled());
2123 SetPrivateBrowsingEnabled(pWebSettingImpl->IsPrivateBrowsingEnabled());
2124 SetZoomLevel(pWebSettingImpl->GetZoomLevel());
2126 SetEventListenerCallback();
2128 _Form* pFormCore = GetParentFormCore(dynamic_cast< _Control* >(&this->GetCore()));
2129 SysAssertf(pFormCore != null, "Failed to get FormCore");
2136 _WebImpl::IsLayoutable(void) const
2143 _WebImpl::InitWebEvent(void)
2145 __pWebEvent = std::unique_ptr<_WebEvent>(new (std::nothrow) _WebEvent());
2146 SysTryReturnResult(NID_WEB_CTRL, __pWebEvent.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
2148 return __pWebEvent->Construct(*this);
2153 _WebImpl::GetWebEvent(void) const
2155 return __pWebEvent.get();
2160 _WebImpl::ConvertToSlpHeaderN(const HttpHeader& header) const
2162 Eina_Hash* pHttpHeader = null;
2164 std::unique_ptr<IList> pFieldNameList(header.GetFieldNamesN());
2165 if (pFieldNameList.get())
2167 pHttpHeader = eina_hash_string_small_new(FreeCharArray);
2168 SysTryReturn(NID_WEB_CTRL, pHttpHeader, null, E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2170 int count = pFieldNameList->GetCount();
2172 for (int i = 0; i < count; i++)
2174 String* pFieldName = dynamic_cast< String* >(pFieldNameList->GetAt(i));
2175 SysTryCatch(NID_WEB_CTRL, pFieldName, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2177 std::unique_ptr<char[]> pKey(_StringConverter::CopyToCharArrayN(*pFieldName));
2178 SysTryCatch(NID_WEB_CTRL, pKey.get(), , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2180 std::unique_ptr<IEnumerator> pFieldValueEnum(header.GetFieldValuesN(*pFieldName));
2181 SysTryCatch(NID_WEB_CTRL, pFieldValueEnum.get(), , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2183 while (pFieldValueEnum->MoveNext() == E_SUCCESS)
2185 Eina_Bool ret = false;
2187 String* pFieldValue = dynamic_cast< String* >(pFieldValueEnum->GetCurrent());
2188 SysTryCatch(NID_WEB_CTRL, pFieldValue, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2190 std::unique_ptr<char[]> pValue(_StringConverter::CopyToCharArrayN(*pFieldValue));
2191 SysTryCatch(NID_WEB_CTRL, pValue.get(), , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2193 ret = eina_hash_add(pHttpHeader, pKey.get(), pValue.release());
2194 SysTryCatch(NID_WEB_CTRL, ret == EINA_TRUE, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2201 eina_hash_free(pHttpHeader);
2208 _WebImpl::LoadUrl(const String& url) const
2210 std::unique_ptr<char[]> pUrl(_StringConverter::CopyToCharArrayN(url));
2211 SysTryReturn(NID_WEB_CTRL, pUrl.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2213 ewk_view_url_set(__pWebCore->GetWebNativeNode(), pUrl.get());
2220 _WebImpl::LoadUrl(const String& url, const HttpHeader& header)
2222 std::unique_ptr<char[]> pUrl(_StringConverter::CopyToCharArrayN(url));
2223 SysTryReturn(NID_WEB_CTRL, pUrl.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2225 Eina_Hash* pHttpHeader = ConvertToSlpHeaderN(header);
2227 ewk_view_url_request_set(__pWebCore->GetWebNativeNode(), pUrl.get(), EWK_HTTP_METHOD_GET, pHttpHeader, null);
2229 eina_hash_free(pHttpHeader);
2236 _WebImpl::LoadUrlWithPostRequest(const String& url, const HttpHeader& header, const ByteBuffer& body) const
2238 std::unique_ptr<char[]> pUrl(_StringConverter::CopyToCharArrayN(url));
2239 SysTryReturn(NID_WEB_CTRL, pUrl.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2241 Eina_Hash* pHttpHeader = ConvertToSlpHeaderN(header);
2243 ewk_view_url_request_set(__pWebCore->GetWebNativeNode(), pUrl.get(), EWK_HTTP_METHOD_POST, pHttpHeader, reinterpret_cast< const char* >(body.GetPointer()));
2245 eina_hash_free(pHttpHeader);
2252 _WebImpl::LoadData(const String& baseUrl, const ByteBuffer& content, const String& mime, const String& encoding) const
2254 SysTryReturnResult(NID_WEB_CTRL, content.GetLimit() > 0, E_INVALID_ARG, "The content buffer is empty.");
2256 std::unique_ptr<char[]> pUrl(_StringConverter::CopyToCharArrayN(baseUrl));
2257 std::unique_ptr<char[]> pMime(_StringConverter::CopyToCharArrayN(mime));
2258 std::unique_ptr<char[]> pEncoding(_StringConverter::CopyToCharArrayN(encoding));
2259 SysTryReturn(NID_WEB_CTRL, pUrl.get() && pMime.get() && pEncoding.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2261 ewk_view_contents_set(__pWebCore->GetWebNativeNode(), reinterpret_cast< const char* >(content.GetPointer()), content.GetLimit(), pMime.get(), pEncoding.get(), pUrl.get());
2268 _WebImpl::Pause(void)
2270 ewk_view_suspend(__pWebCore->GetWebNativeNode());
2275 _WebImpl::Resume(void)
2277 ewk_view_resume(__pWebCore->GetWebNativeNode());
2282 _WebImpl::ShowSelectBoxPopup(bool isMultiSelect, const String& title, Eina_List* pItems, Evas_Object* pWebView, int selectedIndex)
2284 __pSelectBox.reset();
2286 int itemCount = eina_list_count(pItems);
2287 SysTryReturnResult(NID_WEB_CTRL, itemCount > 0, E_SYSTEM, "ItemCount is invalid.");
2289 result r = E_SUCCESS;
2291 std::unique_ptr<_SelectBox> pSelectBox(new (std::nothrow) _SelectBox());
2292 SysTryReturnResult(NID_WEB_CTRL, pSelectBox.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
2294 r = pSelectBox->Construct(isMultiSelect, title, itemCount, pWebView);
2295 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2297 r = pSelectBox->UpdateList(pItems, selectedIndex, false, false);
2298 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2300 __pSelectBox = std::move(pSelectBox);
2302 return __pSelectBox->ShowPopup();
2307 _WebImpl::UpdateSelectBoxPopup(Eina_List* pItems, int selectedIndex, bool isGroupedList)
2309 SysTryReturnResult(NID_WEB_CTRL, __pSelectBox.get(), E_SYSTEM, "SlectBox instance does not exist.");
2311 return __pSelectBox->UpdateList(pItems, selectedIndex, true, isGroupedList);
2316 _WebImpl::ClearSelectBoxPopup(void)
2318 SysTryReturnResult(NID_WEB_CTRL, __pSelectBox.get(), E_SYSTEM, "SlectBox instance does not exist.");
2320 __pSelectBox.reset();
2327 _WebImpl::GetDatepicker(void)
2329 _InputPickerPopup* pInputPicker =null;
2332 pInputPicker = __pDatePicker.get();
2334 return pInputPicker;
2339 _WebImpl::GetColorpicker(void)
2341 _InputPickerPopup* pInputPicker =null;
2344 pInputPicker = __pColorPicker.get();
2346 return pInputPicker;
2351 _WebImpl::CanGoBack(void) const
2353 return static_cast< bool >(ewk_view_back_possible(__pWebCore->GetWebNativeNode()));
2358 _WebImpl::CanGoForward(void) const
2360 return static_cast< bool >(ewk_view_forward_possible(__pWebCore->GetWebNativeNode()));
2365 _WebImpl::GoBack(void) const
2367 ewk_view_back(__pWebCore->GetWebNativeNode());
2372 _WebImpl::GoForward(void) const
2374 ewk_view_forward(__pWebCore->GetWebNativeNode());
2379 _WebImpl::GetUrl(void) const
2381 return ewk_view_url_get(__pWebCore->GetWebNativeNode());
2386 _WebImpl::GetTitle(void) const
2388 return ewk_view_title_get(__pWebCore->GetWebNativeNode());
2393 _WebImpl::StopLoading(void) const
2395 ewk_view_stop(__pWebCore->GetWebNativeNode());
2400 _WebImpl::Reload(void) const
2402 ewk_view_reload_bypass_cache(__pWebCore->GetWebNativeNode());
2407 _WebImpl::EvaluateJavascriptN(const String& scriptCode) const
2409 if (scriptCode.GetLength())
2411 std::unique_ptr<char[]> pScript(_StringConverter::CopyToCharArrayN(scriptCode));
2412 SysTryReturn(NID_WEB_CTRL, pScript.get(), null, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2414 _WebPresenter presenter;
2415 presenter.InitAsyncProcess();
2417 ewk_view_script_execute(__pWebCore->GetWebNativeNode(), pScript.get(), OnScriptExecuted, &presenter);
2419 Tizen::Base::String* pResult = new (std::nothrow) Tizen::Base::String(L"");
2420 SysTryReturn(NID_WEB_CTRL, pResult, null, E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2421 presenter.WaitAsyncProcess(*pResult);
2431 _WebImpl::SetZoomLevel(float level)
2433 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);
2435 ewk_view_scale_set(__pWebCore->GetWebNativeNode(), static_cast< double >(level), 0, 0);
2442 _WebImpl::GetZoomLevel(void) const
2444 return static_cast< float >(ewk_view_scale_get(__pWebCore->GetWebNativeNode()));
2448 const PageNavigationList*
2449 _WebImpl::GetBackForwardListN(void) const
2451 result r = E_SUCCESS;
2453 _PageNavigationListImpl* pNavigationListImpl = null;
2454 _HistoryItemImpl* pHistoryItemImpl = null;
2456 std::unique_ptr<PageNavigationList> pNavigationList;
2457 std::unique_ptr<ArrayList, AllElementsDeleter> pHistoryList;
2460 int forwardCount = 0;
2465 Ewk_History* pEwkHistoryList = ewk_view_history_get(__pWebCore->GetWebNativeNode());
2466 SysTryReturn(NID_WEB_CTRL, pEwkHistoryList, null, E_SYSTEM, "[%s] A system error has been occurred. Failed to get full history.", GetErrorMessage(E_SYSTEM));
2468 Ewk_History_Item* pEwkItem = ewk_history_nth_item_get(pEwkHistoryList, 0);
2469 SysTryCatch(NID_WEB_CTRL, pEwkItem, , E_DATA_NOT_FOUND, "[%s] There is no history.", GetErrorMessage(E_DATA_NOT_FOUND));
2471 pNavigationList = std::unique_ptr<PageNavigationList>(new (std::nothrow) PageNavigationList());
2472 SysTryCatch(NID_WEB_CTRL, pNavigationList.get(), , E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2474 pNavigationListImpl = _PageNavigationListImpl::GetInstance(pNavigationList.get());
2475 SysTryCatch(NID_WEB_CTRL, pNavigationListImpl, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2477 pHistoryList = std::unique_ptr<ArrayList, AllElementsDeleter>(new (std::nothrow) ArrayList());
2478 SysTryCatch(NID_WEB_CTRL, pHistoryList.get(), , E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2480 r = pHistoryList->Construct();
2481 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2483 backCount = ewk_history_back_list_length_get(pEwkHistoryList);
2484 forwardCount = ewk_history_forward_list_length_get(pEwkHistoryList);
2485 SysLog(NID_WEB_CTRL, "The current value of backCount is %d, forwardCount is %d", backCount, forwardCount);
2487 for (int i = -backCount; i < forwardCount + 1; i++)
2489 std::unique_ptr<HistoryItem> pHistoryItem(new (std::nothrow) HistoryItem());
2490 SysTryCatch(NID_WEB_CTRL, pHistoryItem.get(), , E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2492 pHistoryItemImpl = _HistoryItemImpl::GetInstance(pHistoryItem.get());
2493 SysTryCatch(NID_WEB_CTRL, pHistoryItemImpl, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2495 pEwkItem = ewk_history_nth_item_get(pEwkHistoryList, i);
2496 SysTryCatch(NID_WEB_CTRL, pEwkItem, , E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2498 url = ewk_history_item_uri_get(pEwkItem);
2499 title = ewk_history_item_title_get(pEwkItem);
2500 SysLog(NID_WEB_CTRL, "The current value of url is %s, title is %s", url.GetPointer(), title.GetPointer());
2502 pHistoryItemImpl->SetHistoryItem(url, title);
2504 r = pHistoryList->Add(*pHistoryItem.get());
2505 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2506 pHistoryItem.release();
2509 pNavigationListImpl->SetPageNavigationList(pHistoryList.release(), backCount);
2511 ewk_history_free(pEwkHistoryList);
2513 return pNavigationList.release();
2516 ewk_history_free(pEwkHistoryList);
2523 _WebImpl::SearchText(const String& text, bool searchForward)
2525 result r = E_SUCCESS;
2527 Ewk_Find_Options condition = static_cast< Ewk_Find_Options >(EWK_FIND_OPTIONS_SHOW_HIGHLIGHT | EWK_FIND_OPTIONS_CASE_INSENSITIVE);
2531 condition = static_cast < Ewk_Find_Options >(condition | EWK_FIND_OPTIONS_BACKWARDS);
2534 _WebPresenter presenter;
2535 presenter.InitAsyncProcess();
2537 r = SynchronizeSearch(SEARCH_SYNC, __pWebCore->GetWebNativeNode(), condition, text, searchForward, false, &presenter);
2538 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2541 presenter.WaitAsyncProcess(result);
2543 return static_cast < bool >(result);
2548 _WebImpl::SearchTextAllAsync(const Tizen::Base::String& text, bool caseSensitive)
2550 result r = E_SUCCESS;
2552 Ewk_Find_Options condition = EWK_FIND_OPTIONS_SHOW_HIGHLIGHT;
2556 condition = static_cast <Ewk_Find_Options>(condition | EWK_FIND_OPTIONS_CASE_INSENSITIVE);
2559 r = SynchronizeSearch(SEARCH_ALL_ASYNC, __pWebCore->GetWebNativeNode(), condition, text, true, caseSensitive);
2560 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2567 _WebImpl::SearchNextAsync(bool searchForward)
2569 SysTryReturnResult(NID_WEB_CTRL, __textSearch.__searchAll && __textSearch.__totalCount > -1, E_INVALID_OPERATION, "The SearchTextAllAsync() method is not called or completed.");
2570 SysTryReturnResult(NID_WEB_CTRL, (searchForward && __textSearch.__currentIndex < __textSearch.__totalCount) || (!searchForward && __textSearch.__currentIndex > 1)
2571 , E_OBJ_NOT_FOUND, "The Next instance is not available.");
2573 result r = E_SUCCESS;
2575 Ewk_Find_Options condition = EWK_FIND_OPTIONS_SHOW_HIGHLIGHT;
2577 if (__textSearch.__caseSensitive)
2579 condition = static_cast <Ewk_Find_Options>(condition | EWK_FIND_OPTIONS_CASE_INSENSITIVE);
2584 condition = static_cast <Ewk_Find_Options>(condition | EWK_FIND_OPTIONS_BACKWARDS);
2587 r = SynchronizeSearch(SEARCH_NEXT_ASYNC, __pWebCore->GetWebNativeNode(), condition, __textSearch.__text, searchForward);
2588 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2595 _WebImpl::SynchronizeSearch(_SearchType type, Evas_Object* pView, Ewk_Find_Options condition, const Tizen::Base::String& text, bool searchForward, bool caseSensitive, _WebPresenter* pWebPresenter)
2597 MutexGuard lock(__mutex);
2599 std::unique_ptr<char[]> pText(_StringConverter::CopyToCharArrayN(text));
2600 SysTryReturn(NID_WEB_CTRL, pText.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2605 if (__textSearch.__searchAll)
2607 DisableAsyncSearch();
2609 __textSearch.__searchQueue.Enqueue(this);
2610 __textSearch.__searchQueue.Enqueue(pWebPresenter);
2612 ewk_view_text_find(pView, "", condition, MAX_TEXT_MATCH);
2613 ewk_view_text_find(pView, pText.get(), condition, MAX_TEXT_MATCH);
2617 __textSearch.__searchQueue.Enqueue(pWebPresenter);
2619 ewk_view_text_find(pView, pText.get(), condition, MAX_TEXT_MATCH);
2623 case SEARCH_ALL_ASYNC:
2624 __textSearch.__searchAll = true;
2625 __textSearch.__text = text;
2626 __textSearch.__searchForward = true;
2627 __textSearch.__caseSensitive = caseSensitive;
2628 __textSearch.__totalCount = -1;
2629 __textSearch.__currentIndex = 1;
2631 __textSearch.__searchQueue.Enqueue(this);
2632 __textSearch.__searchQueue.Enqueue(this);
2634 ewk_view_text_find(pView, "", condition, MAX_TEXT_MATCH);
2635 ewk_view_text_find(pView, pText.get(), condition, MAX_TEXT_MATCH);
2638 case SEARCH_NEXT_ASYNC:
2639 __textSearch.__searchForward = searchForward;
2641 CalculateAsyncSearchOrdinal();
2643 __textSearch.__searchQueue.Enqueue(this);
2645 ewk_view_text_find(pView, pText.get(), condition, MAX_TEXT_MATCH);
2657 _WebImpl::SetAsyncSearchResult(int totalCount)
2659 __textSearch.__totalCount = totalCount;
2664 _WebImpl::GetSearchPresenter(void)
2666 MutexGuard lock(__mutex);
2668 return dynamic_cast< _WebPresenter* >(__textSearch.__searchQueue.Dequeue());
2673 _WebImpl::GetPendingAsyncSearchCount(void) const
2675 return __textSearch.__searchQueue.GetCount();
2680 _WebImpl::CalculateAsyncSearchOrdinal(void)
2682 if (__textSearch.__searchForward)
2684 __textSearch.__currentIndex++;
2688 __textSearch.__currentIndex--;
2694 _WebImpl::GetAsyncSearchOrdinal(void) const
2696 return __textSearch.__currentIndex;
2701 _WebImpl::DisableAsyncSearch(void)
2703 __textSearch.__searchAll = false;
2708 _WebImpl::SetSetting(const WebSetting& setting)
2710 if (__pWebCore->GetWebNativeNode())
2712 Ewk_Context* pContext = ewk_view_context_get(__pWebCore->GetWebNativeNode());
2713 Ewk_Settings* pSettings = ewk_view_settings_get(__pWebCore->GetWebNativeNode());
2714 SysAssertf(pContext && pSettings, "Failed to get webkit instance.");
2716 std::unique_ptr<char[]> pEncoding(_StringConverter::CopyToCharArrayN(setting.GetDefaultTextEncoding()));
2717 SysTryReturn(NID_WEB_CTRL, pEncoding.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2719 ewk_settings_default_encoding_set(pSettings, pEncoding.get());
2721 switch (setting.GetCacheControl())
2723 case WEB_CACHE_VALIDATED:
2724 ewk_context_cache_disabled_set(pContext, EINA_FALSE);
2727 case WEB_CACHE_IGNORE:
2728 ewk_context_cache_disabled_set(pContext, EINA_TRUE);
2735 if (setting.GetInputStyle() == INPUT_STYLE_OVERLAY)
2737 ewk_settings_default_keypad_enabled_set(pSettings, EINA_TRUE);
2741 ewk_settings_default_keypad_enabled_set(pSettings, EINA_FALSE);
2744 ewk_settings_font_default_size_set(pSettings, static_cast< Eina_Bool >(setting.GetFontSize()));
2746 ewk_settings_javascript_enabled_set(pSettings, static_cast< Eina_Bool >(setting.IsJavascriptEnabled()));
2748 ewk_settings_loads_images_automatically_set(pSettings, static_cast< Eina_Bool >(setting.IsAutoImageLoadEnabled()));
2750 std::unique_ptr<char[]> pAgent(_StringConverter::CopyToCharArrayN(setting.GetUserAgent()));
2751 SysTryReturn(NID_WEB_CTRL, pAgent.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2753 ewk_view_user_agent_set(__pWebCore->GetWebNativeNode(), pAgent.get());
2755 ewk_settings_auto_fitting_set(pSettings, static_cast< Eina_Bool >(setting.IsAutoFittingEnabled()));
2757 ewk_settings_scripts_window_open_set(pSettings, static_cast< Eina_Bool >(setting.IsJavaScriptPopupEnabled()));
2759 ewk_settings_form_candidate_data_enabled_set(pSettings, static_cast< Eina_Bool >(setting.IsAutoFormDataShowEnabled()));
2761 ewk_settings_autofill_password_form_enabled_set(pSettings, static_cast< Eina_Bool >(setting.IsAutoLoginFormFillEnabled()));
2764 _WebSettingImpl* pWebSettingImpl = _WebSettingImpl::GetInstance(__pWebCore->GetSetting());
2766 pWebSettingImpl->SetCertificateErrorHandlingMode(setting.GetCertificateErrorHandlingMode());
2767 pWebSettingImpl->SetDefaultTextEncoding(setting.GetDefaultTextEncoding());
2768 pWebSettingImpl->SetCacheControl(setting.GetCacheControl());
2769 pWebSettingImpl->SetFontSize(setting.GetFontSize());
2770 pWebSettingImpl->SetJavascriptEnabled(setting.IsJavascriptEnabled());
2771 pWebSettingImpl->SetAutoImageLoadEnabled(setting.IsAutoImageLoadEnabled());
2772 pWebSettingImpl->SetInputStyle(setting.GetInputStyle());
2773 pWebSettingImpl->SetUserAgent(setting.GetUserAgent());
2774 pWebSettingImpl->SetAutoFittingEnabled(setting.IsAutoFittingEnabled());
2775 pWebSettingImpl->SetJavaScriptPopupEnabled(setting.IsJavaScriptPopupEnabled());
2776 pWebSettingImpl->SetGeolocationEnabled(setting.IsGeolocationEnabled());
2777 pWebSettingImpl->SetAutoFormDataShowEnabled(setting.IsAutoFormDataShowEnabled());
2778 pWebSettingImpl->SetAutoLoginFormFillEnabled(setting.IsAutoLoginFormFillEnabled());
2785 _WebImpl::GetSetting(void) const
2787 return *__pWebCore->GetSetting();
2791 const HitElementResult*
2792 _WebImpl::GetElementByPointN(const Point& point) const
2794 result r = E_SUCCESS;
2796 _HitElementResultImpl* pHitElementResultImpl = null;
2798 std::unique_ptr<HitElementResult> pHitElementResult;
2799 std::unique_ptr<Bitmap> pImage;
2800 std::unique_ptr<HashMap, AllElementsDeleter> pAttributeMap;
2802 Point absPoint(__pWebCore->GetAbsoluteCoordinate(point));
2804 Ewk_Hit_Test* pEwkHitTest = ewk_view_hit_test_new(__pWebCore->GetWebNativeNode(), absPoint.x, absPoint.y, EWK_HIT_TEST_MODE_ALL);
2805 SysTryReturn(NID_WEB_CTRL, pEwkHitTest, null, E_SYSTEM, "[%s] Failed to get hit test.", GetErrorMessage(E_SYSTEM));
2807 Eina_Hash* pAttrHash = ewk_hit_test_attribute_hash_get(pEwkHitTest);
2808 Ewk_Hit_Test_Result_Context context = ewk_hit_test_result_context_get(pEwkHitTest);
2809 String url(ewk_hit_test_link_uri_get(pEwkHitTest));
2810 String tagName(ewk_hit_test_tag_name_get(pEwkHitTest));
2811 String nodeValue(ewk_hit_test_node_value_get(pEwkHitTest));
2813 SysLog(NID_WEB_CTRL, "The current value of url is %ls, tag is %ls, value is %ls", url.GetPointer(), tagName.GetPointer(), nodeValue.GetPointer());
2815 pHitElementResult = std::unique_ptr<HitElementResult>(new (std::nothrow) HitElementResult());
2816 SysTryCatch(NID_WEB_CTRL, pHitElementResult.get(), , E_OUT_OF_MEMORY, "[%s] Memory Allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2818 pHitElementResultImpl = _HitElementResultImpl::GetInstance(pHitElementResult.get());
2819 SysTryCatch(NID_WEB_CTRL, pHitElementResultImpl, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2821 if (context & EWK_HIT_TEST_RESULT_CONTEXT_IMAGE)
2827 int imageLength = ewk_hit_test_image_buffer_length_get(pEwkHitTest);
2828 void* pImageBuffer = ewk_hit_test_image_buffer_get(pEwkHitTest);
2829 const char* pExtension = ewk_hit_test_image_file_name_extension_get(pEwkHitTest);
2830 SysLog(NID_WEB_CTRL, "The current value of imageBuffer is %u, bufferLength is %d, extension is %s", pImageBuffer, imageLength, pExtension);
2832 r = buf.Construct(imageLength);
2833 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2835 r = buf.SetArray(reinterpret_cast< byte* >(pImageBuffer), 0, imageLength);
2836 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2840 // ToDo : webkit doesn't support types such as IMG_FORMAT_WBMP and IMG_FORMAT_TIFF
2841 // webkit support types such as ico and vp8 additionally
2842 if (strcmp(pExtension, "gif") == 0)
2844 format = IMG_FORMAT_GIF;
2846 else if (strcmp(pExtension, "jpg") == 0)
2848 format = IMG_FORMAT_JPG;
2850 else if (strcmp(pExtension, "png") == 0)
2852 format = IMG_FORMAT_PNG;
2854 else if (strcmp(pExtension, "bmp") == 0)
2856 format = IMG_FORMAT_BMP;
2860 SysLogException(NID_WEB_CTRL, E_UNSUPPORTED_FORMAT, "[%s] The %s format is not supported", GetErrorMessage(E_UNSUPPORTED_FORMAT), pExtension);
2864 r = image.Construct();
2865 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2867 pImage = std::unique_ptr<Bitmap>(image.DecodeN(buf, format, BITMAP_PIXEL_FORMAT_RGB565));
2868 SysTryCatch(NID_WEB_CTRL, pImage.get(), , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2873 pAttributeMap = std::unique_ptr<HashMap, AllElementsDeleter>(new (std::nothrow) HashMap());
2874 SysTryCatch(NID_WEB_CTRL, pAttributeMap.get(), , E_OUT_OF_MEMORY, "[%s] Memory Allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2876 r = pAttributeMap->Construct(eina_hash_population(pAttrHash));
2877 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2879 eina_hash_foreach(pAttrHash, AddHttpAttributeData, pAttributeMap.get());
2880 SysTryCatch(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2883 pHitElementResultImpl->SetHitElementResult(pAttributeMap.release(), pImage.release(), tagName, nodeValue, url);
2885 ewk_hit_test_free(pEwkHitTest);
2887 return pHitElementResult.release();
2890 ewk_hit_test_free(pEwkHitTest);
2896 const HitElementResult*
2897 _WebImpl::GetElementByPointN(const FloatPoint& point) const
2899 const Point integerPoint(_CoordinateSystemUtils::ConvertToInteger(point));
2901 std::unique_ptr<const HitElementResult> pHitElementResult(GetElementByPointN(integerPoint));
2902 SysTryReturn(NID_WEB_CTRL, pHitElementResult.get(), null, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2904 return pHitElementResult.release();
2909 _WebImpl::IsLoading(void) const
2911 double percent = ewk_view_load_progress_get(__pWebCore->GetWebNativeNode());
2913 if (Double::Compare(percent, 0.0) > 0 && Double::Compare(percent, 1.0) < 0)
2925 _WebImpl::GetTextFromBlock(void) const
2927 return ewk_view_text_selection_text_get(__pWebCore->GetWebNativeNode());
2932 _WebImpl::IsPrivateBrowsingEnabled(void) const
2934 if (__pWebCore->GetWebNativeNode() == null)
2936 return _WebSettingImpl::GetInstance(__pWebCore->GetSetting())->IsPrivateBrowsingEnabled();
2939 Ewk_Settings* pSettings = ewk_view_settings_get(__pWebCore->GetWebNativeNode());
2940 SysAssertf(pSettings, "Failed to get webkit instance.");
2942 return static_cast< bool >(ewk_settings_private_browsing_enabled_get(pSettings));
2947 _WebImpl::SetPrivateBrowsingEnabled(bool enable)
2949 if (__pWebCore->GetWebNativeNode() == null)
2951 _WebSettingImpl::GetInstance(__pWebCore->GetSetting())->SetPrivateBrowsingEnabled(enable);
2955 Ewk_Settings* pSettings = ewk_view_settings_get(__pWebCore->GetWebNativeNode());
2956 SysAssertf(pSettings, "Failed to get webkit instance.");
2958 ewk_settings_private_browsing_enabled_set(pSettings, static_cast< Eina_Bool >(enable));
2963 _WebImpl::ClearHistory(void)
2965 ewk_view_back_forward_list_clear(__pWebCore->GetWebNativeNode());
2970 _WebImpl::ClearCache(void)
2972 Ewk_Context* pContext = ewk_view_context_get(__pWebCore->GetWebNativeNode());
2973 SysAssertf(pContext, "Failed to get webkit instance.");
2975 ewk_context_cache_clear(pContext);
2980 _WebImpl::ClearCookie(void)
2982 Ewk_Context* pContext = ewk_view_context_get(__pWebCore->GetWebNativeNode());
2983 Ewk_Cookie_Manager* pCookieManager = ewk_context_cookie_manager_get(pContext);
2984 SysAssertf(pCookieManager, "Failed to get webkit instance.");
2986 ewk_cookie_manager_cookies_clear(pCookieManager);
2991 _WebImpl::ClearFormData(void)
2993 Ewk_Context* pContext = ewk_view_context_get(__pWebCore->GetWebNativeNode());
2994 SysAssertf(pContext, "Failed to get webkit instance.");
2996 ewk_context_form_candidate_data_clear(pContext);
3001 _WebImpl::ClearLoginFormData(void)
3003 Ewk_Context* pContext = ewk_view_context_get(__pWebCore->GetWebNativeNode());
3004 SysAssertf(pContext, "Failed to get webkit instance.");
3006 ewk_context_form_password_data_clear(pContext);
3011 _WebImpl::IsCookieEnabled(void) const
3013 if (__pWebCore->GetWebNativeNode() == null)
3015 return _WebSettingImpl::GetInstance(__pWebCore->GetSetting())->IsCookieEnabled();
3018 Ewk_Context* pContext = ewk_view_context_get(__pWebCore->GetWebNativeNode());
3019 Ewk_Cookie_Manager* pCookieManager = ewk_context_cookie_manager_get(pContext);
3020 SysAssertf(pCookieManager, "Failed to get webkit instance.");
3022 _WebPresenter presenter;
3023 presenter.InitAsyncProcess();
3025 ewk_cookie_manager_async_accept_policy_get(pCookieManager, OnCookiesPolicyGot, &presenter);
3027 bool result = false;
3028 presenter.WaitAsyncProcess(result);
3035 _WebImpl::SetCookieEnabled(bool enable)
3037 if (__pWebCore->GetWebNativeNode() == null)
3039 _WebSettingImpl::GetInstance(__pWebCore->GetSetting())->SetCookiEnabled(enable);
3044 Ewk_Context* pContext = ewk_view_context_get(__pWebCore->GetWebNativeNode());
3045 Ewk_Cookie_Manager* pCookieManager = ewk_context_cookie_manager_get(pContext);
3046 SysAssertf(pCookieManager, "Failed to get webkit instance.");
3050 ewk_cookie_manager_accept_policy_set(pCookieManager, EWK_COOKIE_ACCEPT_POLICY_NO_THIRD_PARTY);
3054 ewk_cookie_manager_accept_policy_set(pCookieManager, EWK_COOKIE_ACCEPT_POLICY_NEVER);
3055 ewk_cookie_manager_cookies_clear(pCookieManager);
3061 _WebImpl::SavePageAsPdf(const String& filePath, const Dimension* pSize) const
3063 result r = E_SUCCESS;
3065 std::unique_ptr<char[]> pFilePath(_StringConverter::CopyToCharArrayN(filePath));
3066 SysTryReturn(NID_WEB_CTRL, pFilePath.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3069 String fileExtension = File::GetFileExtension(filePath);
3070 int pathLength = filePath.GetLength();
3073 SysTryReturnResult(NID_WEB_CTRL, fileExtension.Equals("pdf", false), E_INVALID_ARG, "Invalid argument(s) is used. File extension is not pdf.");
3075 r = filePath.LastIndexOf(L"/", pathLength - 1, index);
3076 SysTryReturnResult(NID_WEB_CTRL, r == E_SUCCESS, E_INVALID_ARG, "Invalid argument(s) is used. Directory path is invalid.");
3077 r = filePath.SubString(0, index + 1, dirPath);
3078 SysTryReturnResult(NID_WEB_CTRL, r == E_SUCCESS, E_INVALID_ARG, "Invalid argument(s) is used. Directory path is invalid.");
3080 std::unique_ptr<char[]> pDirPath(_StringConverter::CopyToCharArrayN(dirPath));
3081 SysTryReturnResult(NID_WEB_CTRL, access(pDirPath.get(), W_OK) == 0, E_INACCESSIBLE_PATH, "Directory permission is read-only.");
3085 SysTryReturnResult(NID_WEB_CTRL, pSize->width > 0 && pSize->height > 0, E_INVALID_ARG, "Invalid argument(s) is used. Size of pdf file is invalid.");
3087 ewk_view_contents_pdf_get(__pWebCore->GetWebNativeNode(), pSize->width, pSize->height, pFilePath.get());
3091 Evas_Coord contentsWidth;
3092 Evas_Coord contentsHeight;
3094 ewk_view_contents_size_get(__pWebCore->GetWebNativeNode(), &contentsWidth, &contentsHeight);
3095 ewk_view_contents_pdf_get(__pWebCore->GetWebNativeNode(), contentsWidth, contentsHeight, pFilePath.get());
3103 _WebImpl::IsMimeSupported(const String& mime) const
3105 std::unique_ptr<char[]> pMime(_StringConverter::CopyToCharArrayN(mime));
3106 SysTryReturn(NID_WEB_CTRL, pMime.get(), false, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3108 return static_cast< bool >(ewk_frame_can_show_mime_type(ewk_view_main_frame_get(__pWebCore->GetWebNativeNode()), pMime.get()));
3113 _WebImpl::SetLoadingListener(ILoadingListener* pLoadingListener)
3115 __pUserLoadingListener = const_cast< ILoadingListener* >(pLoadingListener);
3120 _WebImpl::SetWebUiEventListener(IWebUiEventListener* pUiEventListener)
3122 __pUserUiListener = pUiEventListener;
3127 _WebImpl::SetWebUiEventListenerF(IWebUiEventListenerF* pUiEventListener)
3129 __pUserUiListenerF = pUiEventListener;
3134 _WebImpl::SetWebKeypadEventListener(IWebKeypadEventListener* pKeypadEventListener)
3136 __pUserKeypadEventListener = pKeypadEventListener;
3141 _WebImpl::SetDownloadListener(IWebDownloadListener* pDownLoadListener)
3143 if (__pWebDownloadHandler.get() == null)
3145 __pWebDownloadHandler = std::unique_ptr<_WebDataHandler>(new (std::nothrow) _WebDataHandler());
3146 SysTryReturnVoidResult(NID_WEB_CTRL, __pWebDownloadHandler.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
3149 __pWebDownloadHandler->SetDownloadListener(pDownLoadListener);
3150 __pWebDownloadHandler->SetWebEvent(__pWebEvent.get());
3155 _WebImpl::SetTextSearchListener(ITextSearchListener* pTextSearchListener)
3157 __pTextSearchListener = pTextSearchListener;
3162 _WebImpl::SetScrollEnabled(bool enable)
3164 _WebSettingImpl::GetInstance(__pWebCore->GetSetting())->SetScrollEnabled(enable);
3169 _WebImpl::IsScrollEnabled(void) const
3171 return _WebSettingImpl::GetInstance(__pWebCore->GetSetting())->IsScrollEnabled();
3176 _WebImpl::InitJsBridgeList(void)
3178 result r = E_SUCCESS;
3180 __pJsProvider = std::unique_ptr<_JsBridgeHashCodeProvider>(new (std::nothrow) _JsBridgeHashCodeProvider());
3181 SysTryReturnResult(NID_WEB_CTRL, __pJsProvider.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
3183 __pJsComparer = std::unique_ptr<_JsBridgeComparer>(new (std::nothrow) _JsBridgeComparer());
3184 SysTryReturnResult(NID_WEB_CTRL, __pJsComparer.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
3186 std::unique_ptr<HashMapT< String, IJavaScriptBridge* > > pJsBridgeList(new (std::nothrow) HashMapT< String, IJavaScriptBridge* >);
3187 SysTryReturnResult(NID_WEB_CTRL, pJsBridgeList.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
3189 r = pJsBridgeList->Construct(0, 0, *__pJsProvider.get(), *__pJsComparer.get());
3190 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3192 __pJsBridgeList = std::move(pJsBridgeList);
3199 _WebImpl::AddJavaScriptBridge(const IJavaScriptBridge& jsBridge)
3201 result r = E_SUCCESS;
3203 IJavaScriptBridge* pJsBridge = const_cast< IJavaScriptBridge* >(&jsBridge);
3204 String key(pJsBridge->GetName());
3206 r = __pJsBridgeList->Add(key, pJsBridge);
3207 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3214 _WebImpl::RemoveJavaScriptBridge(const IJavaScriptBridge& jsBridge)
3216 result r = E_SUCCESS;
3218 IJavaScriptBridge* pJsBridge = const_cast< IJavaScriptBridge* >(&jsBridge);
3219 String key(pJsBridge->GetName());
3221 r = __pJsBridgeList->Remove(key);
3222 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3229 _WebImpl::FindJsInterface(const IJsonValue* pValue) const
3231 result r = E_SUCCESS;
3233 IJsonValue* pJsonValue = null;
3234 IJavaScriptBridge* pJsBridge = null;
3236 String key(L"name");
3238 const JsonObject* pJsonObject = dynamic_cast< const JsonObject* >(pValue);
3239 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));
3241 r = pJsonObject->GetValue(&key, pJsonValue);
3242 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS && pJsonValue, null, r, "[%s] Propagating.", GetErrorMessage(r));
3244 JsonString* pBridgeName = dynamic_cast< JsonString* >(pJsonValue);
3245 SysTryReturn(NID_WEB_CTRL, pBridgeName, null, E_INVALID_ARG, "[%s] Invalid argument(s) is used. name key is missing." , GetErrorMessage(E_INVALID_ARG));
3247 r = __pJsBridgeList->GetValue(static_cast< String >(*pBridgeName), pJsBridge);
3248 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
3255 _WebImpl::GetLoadingListener(void) const
3257 return __pUserLoadingListener;
3261 IWebUiEventListener*
3262 _WebImpl::GetUiEventListener(void) const
3264 return __pUserUiListener;
3268 IWebUiEventListenerF*
3269 _WebImpl::GetUiEventListenerF(void) const
3271 return __pUserUiListenerF;
3275 IWebKeypadEventListener*
3276 _WebImpl::GetWebKeypadEventListener(void) const
3278 return __pUserKeypadEventListener;
3282 ITextSearchListener*
3283 _WebImpl::GetTextSearchListener(void) const
3285 return __pTextSearchListener;
3290 _WebImpl::SetEventListenerCallback(void) const
3292 Evas_Object* pWebNativeNode = __pWebCore->GetWebNativeNode();
3295 _EcoreEvas* pEcoreEvas = GetEcoreEvasMgr()->GetEcoreEvas();
3296 SysAssertf(pEcoreEvas, "Failed to get Ui ecore evas");
3298 Evas_Object* pWinObject = pEcoreEvas->GetWindowObject();
3299 SysAssertf(pWinObject, "Failed to get Ui window evas object");
3301 Ewk_View_Smart_Data* pSmartData = (Ewk_View_Smart_Data*) evas_object_smart_data_get(pWebNativeNode);
3302 SysAssertf(pSmartData, "Failed to request");
3304 Ewk_View_Smart_Class *pSmart = const_cast<Ewk_View_Smart_Class*>(pSmartData->api);
3305 SysAssertf(pSmart, "Failed to request");
3307 pSmart->popup_menu_show = OnSelectBoxRequested;
3308 pSmart->popup_menu_hide = OnSelectBoxClosed;
3309 pSmart->popup_menu_update = OnSelectBoxUpdateRequested;
3311 pSmart->input_picker_show = OnDatePickerProviderRequested;
3312 pSmart->input_picker_color_request = OnColorPickerProviderRequested;
3313 pSmart->input_picker_color_dismiss = OnColorPickerProviderDismissed;
3315 evas_object_data_set(pWebNativeNode, WEB_CTRL, this);
3317 // add loading event callbacks for ILoadingListener
3318 evas_object_smart_callback_add(pWebNativeNode, "create,window", OnWebWindowCreateRequested, this);
3319 evas_object_smart_callback_add(pWebNativeNode, "close,window", OnWebWindowClosedRequested, this);
3321 evas_object_smart_callback_add(pWebNativeNode, "policy,navigation,decide", OnLoadingRequested, this);
3322 evas_object_smart_callback_add(pWebNativeNode, "load,started", OnLoadingStarted, this);
3323 evas_object_smart_callback_add(pWebNativeNode, "load,finished", OnLoadingCompleted, this);
3324 evas_object_smart_callback_add(pWebNativeNode, "load,progress", OnEstimatedProgress, this);
3325 evas_object_smart_callback_add(pWebNativeNode, "load,progress,finished", OnProgressCompleted, this);
3326 evas_object_smart_callback_add(pWebNativeNode, "load,stop", OnLoadingCanceled, this);
3327 evas_object_smart_callback_add(pWebNativeNode, "load,error", OnLoadingErrorOccurred, this);
3328 evas_object_smart_callback_add(pWebNativeNode, "title,changed", OnPageTitleReceived, this);
3329 evas_object_smart_callback_add(pWebNativeNode, "load,committed", OnLoadingCommitted, this);
3331 evas_object_smart_callback_add(pWebNativeNode, "requestToNative,json", OnHandleJavaScriptRequest, this);
3333 evas_object_smart_callback_add(pWinObject, "focus,in", OnWindowObjectFocusGained, this);
3335 evas_object_smart_callback_add(pWebNativeNode, "inputmethod,changed", OnWebKeypadStateChanged, this);
3336 evas_object_smart_callback_add(pWebNativeNode, "editorclient,ime,opened", OnWebKeypadOpened, this);
3337 evas_object_smart_callback_add(pWebNativeNode, "editorclient,ime,closed", OnWebKeypadClosed, this);
3339 evas_object_smart_callback_add(pWebNativeNode, "authentication,challenge", OnHttpAuthenticationRequested, this);
3340 evas_object_smart_callback_add(pWebNativeNode, "authentication,canceled", OnHttpAuthenticationCanceled, this);
3342 evas_object_smart_callback_add(pWebNativeNode, "geolocation,permission,request", OnGeolocationPermissionRequested, this);
3344 ewk_view_javascript_alert_callback_set(pWebNativeNode, OnScriptAlertRequested, const_cast< _WebImpl* >(this));
3345 ewk_view_javascript_prompt_callback_set(pWebNativeNode, OnScriptPromptRequested, const_cast< _WebImpl* >(this));
3346 ewk_view_javascript_confirm_callback_set(pWebNativeNode, OnScriptConfirmRequested, const_cast< _WebImpl* >(this));
3348 evas_object_smart_callback_add(pWebNativeNode, "policy,response,decide", OnWebDataReceived, this);
3350 evas_object_smart_callback_add(pWebNativeNode, "load,nonemptylayout,finished", OnWebPageShowRequested, this);
3351 evas_object_smart_callback_add(pWebNativeNode, "request,certificate,confirm", OnCertificateRequested, this);
3352 evas_object_smart_callback_add(pWebNativeNode, "usermedia,permission,request", OnGetUserMediaPermissionRequsted, this);
3354 evas_object_smart_callback_add(pWebNativeNode, "notification,permission,request", OnNotificationPermissionRequested, this);
3355 evas_object_smart_callback_add(pWebNativeNode, "notification,show", OnNotificationShow, this);
3356 evas_object_smart_callback_add(pWebNativeNode, "notification,cancel", OnNotificationCancel, this);
3358 evas_object_smart_callback_add(pWebNativeNode, "protocolhandler,registration,requested", OnProtocolHandlerRegistrationRequested, this);
3359 evas_object_smart_callback_add(pWebNativeNode, "protocolhandler,isregistered", OnIsProtocolHandlerRegistered, this);
3360 evas_object_smart_callback_add(pWebNativeNode, "protocolhandler,unregistration,requested", OnProtocolHandlerUnregistrationRequested, this);
3362 evas_object_smart_callback_add(pWebNativeNode, "contenthandler,registration,requested", OnContentHandlerRegistrationRequested, this);
3363 evas_object_smart_callback_add(pWebNativeNode, "contenthandler,isregistered", OnIsContentHandlerRegistered, this);
3364 evas_object_smart_callback_add(pWebNativeNode, "contenthandler,unregistration,requested", OnContentHandlerUnregistrationRequested, this);
3365 evas_object_smart_callback_add(pWebNativeNode, "text,found", OnTextFound, this);
3367 evas_object_smart_callback_add(pWebNativeNode, "touchmove,handled", OnWebPreventDefaultTriggered, this);
3368 evas_object_smart_callback_add(pWebNativeNode, "icon,received", OnFaviconReceived, this);
3370 evas_object_smart_callback_add(pWebNativeNode, "text,style,state", OnWebPageBlockSelected, this);
3372 Ewk_Context* pContext = ewk_view_context_get(pWebNativeNode);
3373 SysAssertf(pContext, "Failed to get webkit instance.");
3374 ewk_context_did_start_download_callback_set(pContext, OnDidStartDownloadCallback, const_cast< _WebImpl* >(this));
3375 ewk_view_open_panel_callback_set(pWebNativeNode, OnSelectUploadFile, const_cast< _WebImpl* >(this));
3377 evas_object_event_callback_add(pWebNativeNode, EVAS_CALLBACK_FOCUS_IN, OnWebNativeNodeFocusGained, this);
3383 _WebImpl::RemoveEventListenerCallback(void) const
3385 Evas_Object* pWebNativeNode = __pWebCore->GetWebNativeNode();
3388 _EcoreEvas* pEcoreEvas = GetEcoreEvasMgr()->GetEcoreEvas();
3389 SysAssertf(pEcoreEvas, "Failed to get Ui ecore evas");
3391 Evas_Object* pWinObject = pEcoreEvas->GetWindowObject();
3392 SysAssertf(pWinObject, "Failed to get Ui window evas object");
3394 evas_object_smart_callback_del(pWebNativeNode, "create,window", OnWebWindowCreateRequested);
3395 evas_object_smart_callback_del(pWebNativeNode, "close,window", OnWebWindowClosedRequested);
3397 evas_object_smart_callback_del(pWebNativeNode, "policy,navigation,decide", OnLoadingRequested);
3398 evas_object_smart_callback_del(pWebNativeNode, "load,started", OnLoadingStarted);
3399 evas_object_smart_callback_del(pWebNativeNode, "load,finished", OnLoadingCompleted);
3400 evas_object_smart_callback_del(pWebNativeNode, "load,progress", OnEstimatedProgress);
3401 evas_object_smart_callback_del(pWebNativeNode, "load,progress,finished", OnProgressCompleted);
3402 evas_object_smart_callback_del(pWebNativeNode, "load,stop", OnLoadingCanceled);
3403 evas_object_smart_callback_del(pWebNativeNode, "load,error", OnLoadingErrorOccurred);
3404 evas_object_smart_callback_del(pWebNativeNode, "title,changed", OnPageTitleReceived);
3406 evas_object_smart_callback_del(pWebNativeNode, "requestToNative,json", OnHandleJavaScriptRequest);
3408 evas_object_smart_callback_del(pWinObject, "focus,in", OnWindowObjectFocusGained);
3410 evas_object_smart_callback_del(pWebNativeNode, "inputmethod,changed", OnWebKeypadStateChanged);
3411 evas_object_smart_callback_del(pWebNativeNode, "editorclient,ime,opened", OnWebKeypadOpened);
3412 evas_object_smart_callback_del(pWebNativeNode, "editorclient,ime,closed", OnWebKeypadClosed);
3414 evas_object_smart_callback_del(pWebNativeNode, "authentication,challenge", OnHttpAuthenticationRequested);
3415 evas_object_smart_callback_del(pWebNativeNode, "authentication,canceled", OnHttpAuthenticationCanceled);
3417 evas_object_smart_callback_del(pWebNativeNode, "geolocation,permission,request", OnGeolocationPermissionRequested);
3419 ewk_view_javascript_alert_callback_set(null, null, null);
3420 ewk_view_javascript_prompt_callback_set(null, null, null);
3421 ewk_view_javascript_confirm_callback_set(null, null, null);
3423 evas_object_smart_callback_del(pWebNativeNode, "policy,response,decide", OnWebDataReceived);
3425 evas_object_smart_callback_del(pWebNativeNode, "load,nonemptylayout,finished", OnWebPageShowRequested);
3426 evas_object_smart_callback_del(pWebNativeNode, "request,certificate,confirm", OnCertificateRequested);
3427 evas_object_smart_callback_del(pWebNativeNode, "usermedia,permission,request", OnGetUserMediaPermissionRequsted);
3429 evas_object_smart_callback_del(pWebNativeNode, "notification,permission,request", OnNotificationPermissionRequested);
3430 evas_object_smart_callback_del(pWebNativeNode, "notification,show", OnNotificationShow);
3431 evas_object_smart_callback_del(pWebNativeNode, "notification,cancel", OnNotificationCancel);
3432 evas_object_smart_callback_del(pWebNativeNode, "protocolhandler,registration,requested", OnProtocolHandlerRegistrationRequested);
3433 evas_object_smart_callback_del(pWebNativeNode, "protocolhandler,isregistered", OnIsProtocolHandlerRegistered);
3434 evas_object_smart_callback_del(pWebNativeNode, "protocolhandler,unregistration,requested", OnProtocolHandlerUnregistrationRequested);
3436 evas_object_smart_callback_del(pWebNativeNode, "contenthandler,registration,requested", OnContentHandlerRegistrationRequested);
3437 evas_object_smart_callback_del(pWebNativeNode, "contenthandler,isregistered", OnIsContentHandlerRegistered);
3438 evas_object_smart_callback_del(pWebNativeNode, "contenthandler,unregistration,requested", OnContentHandlerUnregistrationRequested);
3440 evas_object_smart_callback_del(pWebNativeNode, "text,found", OnTextFound);
3442 evas_object_smart_callback_del(pWebNativeNode, "touchmove,handled", OnWebPreventDefaultTriggered);
3443 evas_object_smart_callback_del(pWebNativeNode, "icon,received", OnFaviconReceived);
3445 evas_object_smart_callback_del(pWebNativeNode, "text,style,state", OnWebPageBlockSelected);
3447 ewk_view_open_panel_callback_set(null, null, null);
3449 evas_object_event_callback_del(pWebNativeNode, EVAS_CALLBACK_FOCUS_IN, OnWebNativeNodeFocusGained);
3455 _WebImpl::SetBlockSelectionPosition(const Point& startPoint)
3457 Evas_Object* pWebNativeNode = __pWebCore->GetWebNativeNode();
3459 Ewk_View_Smart_Data* pSmartData = (Ewk_View_Smart_Data*) evas_object_smart_data_get(pWebNativeNode);
3460 SysAssertf(pSmartData, "Failed to request");
3462 Point absPoint(__pWebCore->GetAbsoluteCoordinate(startPoint));
3464 Eina_Bool ret = pSmartData->api->text_selection_down(pSmartData, absPoint.x, absPoint.y);
3467 pSmartData->api->text_selection_up(pSmartData, absPoint.x, absPoint.y);
3469 Ewk_Hit_Test* pEwkHitTest = ewk_view_hit_test_new(__pWebCore->GetWebNativeNode(), absPoint.x, absPoint.y, EWK_HIT_TEST_MODE_ALL);
3470 SysTryReturnResult(NID_WEB_CTRL, pEwkHitTest, E_SYSTEM, "Failed to get hit test.");
3472 String tagName(ewk_hit_test_tag_name_get(pEwkHitTest));
3474 if (tagName.Equals(L"INPUT", false) || tagName.Equals(L"TEXTAREA", false))
3476 ewk_view_command_execute(pWebNativeNode, "SelectWord", 0);
3480 SysTryReturnResult(NID_WEB_CTRL, GetTextFromBlock().GetLength() > 0, E_INVALID_ARG, "Failed to set text selection up.");
3487 _WebImpl::SetBlockSelectionPosition(const FloatPoint& startPoint)
3489 return SetBlockSelectionPosition(_CoordinateSystemUtils::ConvertToInteger(startPoint));
3494 _WebImpl::ReleaseBlock(void)
3496 ewk_view_command_execute(__pWebCore->GetWebNativeNode(), "Unselect", 0);
3501 _WebImpl::GetBlockRange(Point& startPoint, Point& endPoint) const
3503 FloatPoint tempStartPoint;
3504 FloatPoint tempEndPoint;
3506 GetBlockRange(tempStartPoint, tempEndPoint);
3508 startPoint = _CoordinateSystemUtils::ConvertToInteger(tempStartPoint);
3509 endPoint = _CoordinateSystemUtils::ConvertToInteger(tempEndPoint);
3514 _WebImpl::GetBlockRange(FloatPoint& startPoint, FloatPoint& endPoint) const
3516 Eina_Rectangle leftHandle;
3517 Eina_Rectangle rightHandle;
3519 ewk_view_text_selection_range_get(__pWebCore->GetWebNativeNode(), &leftHandle, &rightHandle);
3521 startPoint.x = _CoordinateSystemUtils::ConvertToFloat(leftHandle.x);
3522 startPoint.y = _CoordinateSystemUtils::ConvertToFloat(leftHandle.y);
3523 endPoint.x = _CoordinateSystemUtils::ConvertToFloat(rightHandle.x + rightHandle.w);
3524 endPoint.y = _CoordinateSystemUtils::ConvertToFloat(rightHandle.y + rightHandle.h);
3526 if ((endPoint.x != 0.0f) && (endPoint.y != 0.0f))
3528 startPoint = __pWebCore->GetRelativeCoordinate(startPoint);
3529 endPoint = __pWebCore->GetRelativeCoordinate(endPoint);
3535 _WebImpl::GetFaviconN(void) const
3537 result r = E_SUCCESS;
3539 Evas_Object* pView = __pWebCore->GetWebNativeNode();
3541 Evas* pEvas = evas_object_evas_get(pView);
3542 Ewk_Context* pContext = ewk_view_context_get(pView);
3543 SysAssertf(pEvas && pContext, "Failed to request");
3545 const char* pUrl = ewk_view_url_get(pView);
3547 Tizen::Graphics::BufferInfo bufferInfo;
3548 Tizen::Base::ByteBuffer byteBuffer;
3550 std::unique_ptr<Bitmap> pBitmapImage(new (std::nothrow) Bitmap());
3551 SysTryReturn(NID_WEB_CTRL, pBitmapImage.get(), null, E_OUT_OF_MEMORY, "[%s] Memory Allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
3553 Evas_Object* pFavicon = ewk_context_icon_database_icon_object_add(pContext, pUrl, pEvas);
3559 r = _Utility::GetPixelBufferFromEvasObject(pFavicon, bufferInfo);
3560 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
3562 const Dimension dimension(bufferInfo.width, bufferInfo.height);
3564 r = byteBuffer.Construct((byte*)bufferInfo.pPixels, 0, dimension.height * dimension.width * 32, dimension.height * dimension.width * 32 );
3565 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
3567 r = pBitmapImage->Construct(byteBuffer, dimension, BITMAP_PIXEL_FORMAT_ARGB8888);
3568 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
3570 return pBitmapImage.release();
3576 _WebImpl::ScrollBy(const Tizen::Graphics::Point& diff)
3578 ewk_view_scroll_by(__pWebCore->GetWebNativeNode(), diff.x, diff.y);
3583 _WebImpl::ScrollTo(const Tizen::Graphics::Point& dest)
3585 ewk_view_scroll_set(__pWebCore->GetWebNativeNode(), dest.x, dest.y);
3590 _WebImpl::GetScrollPosition(void) const
3594 ewk_view_scroll_pos_get(__pWebCore->GetWebNativeNode(), &position.x, &position.y);
3601 _WebImpl::GetPageSize(void) const
3603 Evas_Coord width = 0;
3604 Evas_Coord height = 0;
3606 ewk_view_contents_size_get(__pWebCore->GetWebNativeNode(), &width, &height);
3608 Dimension size(static_cast< int >(width), static_cast< int >(height));
3615 _WebImpl::SetLoadingErrorOccurred(bool arg)
3617 __isLoadingErrorOccurred = arg;
3622 _WebImpl::IsLoadingErrorOccurred(void) const
3624 return __isLoadingErrorOccurred;
3629 _WebImpl::SetRedirectRequested(bool arg)
3631 __isRedirectRequested = arg;
3636 _WebImpl::IsRedirectRequested(void) const
3638 return __isRedirectRequested;
3643 _WebImpl::SetPolicyDecision(DecisionPolicy policy)
3650 _WebImpl::GetPolicyDecision(void) const
3657 _WebImpl::SetCertificateRequested(bool arg)
3659 __isCertificateRequested = arg;
3664 _WebImpl::IsCertificateRequested(void) const
3666 return __isCertificateRequested;
3671 _WebImpl::IsCertificateConfirmed(void) const
3673 return __isCertificateConfirmed;
3678 _WebImpl::LaunchAppControl(const IEventArg& arg)
3680 result r = E_SUCCESS;
3682 IEventArg* pArg = const_cast< IEventArg* >(&arg);
3683 _WebEventArg* pWebEventArg = dynamic_cast< _WebEventArg* >(pArg);
3684 SysTryReturnResult(NID_WEB_CTRL, pWebEventArg, E_INVALID_ARG, "Type casting failed. argument must be IEventArg type.");
3686 String operationId(L"");
3687 String uriPattern(pWebEventArg->GetEventMessage());
3688 SysLog(NID_WEB_CTRL, "The current value of web event type is %d", pWebEventArg->GetEventType());
3690 switch (pWebEventArg->GetEventType())
3692 case WEB_EVENT_REQUEST_RTSP:
3696 int uriLength = uriPattern.GetLength();
3699 operationId = L"http://tizen.org/appcontrol/operation/view";
3701 r = uriPattern.LastIndexOf(L".", uriLength - 1, index);
3702 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3704 r = uriPattern.SubString(index + 1, ext);
3705 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3707 r = _AppControlManager::GetMimeFromExt(ext, mimeType);
3708 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3710 r = _AppControlImpl::FindAndStart(operationId, &uriPattern, &mimeType, null, null, null);
3711 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3715 case WEB_EVENT_REQUEST_TEL:
3717 operationId = L"http://tizen.org/appcontrol/operation/dial";
3720 case WEB_EVENT_REQUEST_EMAIL:
3722 case WEB_EVENT_REQUEST_SMS:
3724 case WEB_EVENT_REQUEST_MMS:
3726 operationId = L"http://tizen.org/appcontrol/operation/compose";
3729 case WEB_EVENT_REQUEST_UNKNOWN:
3731 operationId = L"http://tizen.org/appcontrol/operation/view";
3739 r = _AppControlImpl::FindAndStart(operationId, &uriPattern, null, null, null, null);
3740 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3747 _WebImpl::SetFullScreenKeypad(void)
3749 result r = E_SUCCESS;
3751 std::unique_ptr<Keypad> pKeypad(new (std::nothrow) Keypad());
3752 SysTryReturnResult(NID_WEB_CTRL, pKeypad.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
3754 r = pKeypad->Construct(KEYPAD_STYLE_NORMAL, 100);
3755 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3757 String text(ewk_view_focused_input_element_value_get(__pWebCore->GetWebNativeNode()));
3758 pKeypad->SetText(text);
3760 r = pKeypad->SetShowState(true);
3761 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3763 r = pKeypad->Show();
3764 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3766 pKeypad->AddTextEventListener(*this);
3768 __pKeypad = std::move(pKeypad);
3775 _WebImpl::RemoveFullScreenKeypad(void)
3777 __pKeypad->RemoveTextEventListener(*this);
3784 _WebImpl::IsFooterVisible(void) const
3786 return __isFooterVisible;
3791 _WebImpl::SetFooterVisibleState(bool isFooterVisible)
3793 __isFooterVisible = isFooterVisible;
3798 _WebImpl::IsKeypadVisible(void) const
3800 return __isKeypadVisible;
3805 _WebImpl::SetKeypadVisibleState(bool isKeypadVisible)
3807 __isKeypadVisible = isKeypadVisible;
3812 _WebImpl::IsKeypadOpened(void) const
3814 return __isKeypadOpened;
3818 _WebImpl::SetKeypadOpened(bool isKeypadOpened)
3820 __isKeypadOpened = isKeypadOpened;
3825 _WebImpl::GetPreviousKeypadBounds(void) const
3827 return __keypadBounds;
3832 _WebImpl::SetPreviousKeypadBounds(Rectangle& bounds)
3834 __keypadBounds = bounds;
3839 _WebImpl::OnTextValueChangeCanceled(const Control& source)
3841 RemoveFullScreenKeypad();
3846 _WebImpl::OnTextValueChanged(const Control& source)
3848 std::unique_ptr<char[]> pText(_StringConverter::CopyToCharArrayN(__pKeypad->GetText()));
3850 ewk_view_focused_input_element_value_set(__pWebCore->GetWebNativeNode(), pText.get());
3852 RemoveFullScreenKeypad();
3857 _WebImpl::OnHandleJavaScriptRequestByEventArg(const IEventArg& arg)
3859 const _JsBridgeArg* pEventArg = dynamic_cast< const _JsBridgeArg* >(&arg);
3860 SysTryReturnResult(NID_WEB_CTRL, pEventArg, E_INVALID_ARG, "Invalid argument(s) is used. arg is not _JsBridgeArg object.");
3862 std::unique_ptr<IJsonValue> pJsonValue(JsonParser::ParseN(*(pEventArg->GetJsonData())));
3863 SysTryReturn(NID_WEB_JSON, GetLastResult() == E_SUCCESS, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3865 IJavaScriptBridge* pJsInterface = FindJsInterface(pJsonValue.get());
3866 SysTryReturnResult(NID_WEB_CTRL, pJsInterface, E_OBJ_NOT_FOUND, "JsInterface instance is not available.");
3868 pJsInterface->HandleJavaScriptRequestN(pJsonValue.release());
3875 _WebImpl::OnHandleLoadingEvent(const IEventArg& arg)
3877 result r = E_SUCCESS;
3879 const _LoadingEventArg* pEventArg = dynamic_cast< const _LoadingEventArg* >(&arg);
3880 SysTryReturnResult(NID_WEB_CTRL, pEventArg, E_INVALID_ARG, "Invalid argument(s) is used. Type casting failed. argument must be IEventArg type.");
3882 SysLog(NID_WEB_CTRL, "The current value of event type is %d", pEventArg->GetEventType());
3884 ILoadingListener* pLoadingListner = GetLoadingListener();
3885 SysTryReturnResult(NID_WEB_CTRL, pLoadingListner, E_SYSTEM, "A system error has been occurred. Loading listener was not set or null.");
3887 switch (pEventArg->GetEventType())
3889 case WEB_EVENT_LOADINGLISTENER_STARTED:
3891 pLoadingListner->OnLoadingStarted();
3895 case WEB_EVENT_LOADINGLISTENER_PROGRESS:
3897 const Integer* pProgressPercentage = dynamic_cast< const Integer* >(pEventArg->GetEventInfo(_LoadingEventArg::ESTIMATED_PROGRESS));
3898 SysTryReturn(NID_WEB_CTRL, pProgressPercentage, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3900 pLoadingListner->OnEstimatedProgress(pProgressPercentage->ToInt());
3904 case WEB_EVENT_LOADINGLISTENER_PAGETITLE_RECEIVED:
3906 const String* pPageTitle = dynamic_cast< const String* >(pEventArg->GetEventInfo(_LoadingEventArg::PAGE_TITLE));
3907 SysTryReturn(NID_WEB_CTRL, pPageTitle, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3909 pLoadingListner->OnPageTitleReceived(*pPageTitle);
3913 case WEB_EVENT_LOADINGLISTENER_CANCELED:
3915 pLoadingListner->OnLoadingCanceled();
3919 case WEB_EVENT_LOADINGLISTENER_ERROR_OCCURRED:
3921 const Integer* pErrorType = dynamic_cast< const Integer* >(pEventArg->GetEventInfo(_LoadingEventArg::ERROR_TYPE));
3922 SysTryReturn(NID_WEB_CTRL, pErrorType, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3924 const String* pErrorMessage = dynamic_cast< const String* >(pEventArg->GetEventInfo(_LoadingEventArg::ERROR_MESSAGE));
3925 SysTryReturn(NID_WEB_CTRL, pErrorMessage, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3927 LoadingErrorType errorType = ConvertErrorCode(pErrorType->ToInt());
3929 pLoadingListner->OnLoadingErrorOccurred(errorType, *pErrorMessage);
3933 case WEB_EVENT_LOADINGLISTENER_COMPLETED:
3935 pLoadingListner->OnLoadingCompleted();
3939 case WEB_EVENT_LOADINGLISTENER_AUTHENTICATION_CANCELED:
3941 pLoadingListner->OnHttpAuthenticationCanceled();
3945 case WEB_EVENT_LOADINGLISTENER_FAVICON_RECEIVED:
3947 std::unique_ptr<Bitmap> pFavicon(GetFaviconN());
3948 SysTryReturn(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3952 pLoadingListner->OnFaviconReceived(*pFavicon.get());
3968 _WebImpl::OnHandleWebDownloadEvent(const IEventArg& arg)
3970 result r = E_SUCCESS;
3972 const _WebDownloadEventArg* pEventArg = dynamic_cast< const _WebDownloadEventArg* >(&arg);
3973 SysTryReturnResult(NID_WEB_CTRL, pEventArg, E_INVALID_ARG, "Invalid argument(s) is used. Type casting failed. argument must be IEventArg type.");
3975 SysLog(NID_WEB_CTRL, "The current value of event type is %d", pEventArg->GetEventType());
3977 IWebDownloadListener* pWebDownloadListener = __pWebDownloadHandler->GetDownloadListener();
3978 SysTryReturnResult(NID_WEB_CTRL, pWebDownloadListener, E_SYSTEM, "A system error has been occurred. Web Downloading listener was not set or null.");
3980 switch (pEventArg->GetEventType())
3982 case WEB_EVENT_WEBDOWNLOADLISTENER_DATA_RECEIVED:
3984 const ByteBuffer* pChunk = dynamic_cast< const ByteBuffer* >(pEventArg->GetEventInfo(_WebDownloadEventArg::CHUNKED_DATA));
3985 SysTryReturn(NID_WEB_CTRL, pChunk, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3987 pWebDownloadListener->OnWebChunkedDataReceived(*pChunk);
3991 case WEB_EVENT_WEBDOWNLOADLISTENER_COMPLETED:
3993 pWebDownloadListener->OnWebDataDownloadCompleted();
3997 case WEB_EVENT_WEBDOWNLOADLISTENER_FAILED:
3999 const Integer* pErrorType = dynamic_cast< const Integer* >(pEventArg->GetEventInfo(_WebDownloadEventArg::ERROR_TYPE));
4000 SysTryReturn(NID_WEB_CTRL, pErrorType, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4002 LoadingErrorType errorType = static_cast < LoadingErrorType >(pErrorType->ToInt());
4004 pWebDownloadListener->OnWebDownloadFailed(errorType);
4019 _WebImpl::OnHandleWebUiEvent(const IEventArg& arg)
4021 result r = E_SUCCESS;
4023 const _WebUiEventArg* pEventArg = dynamic_cast< const _WebUiEventArg* >(&arg);
4024 SysTryReturnResult(NID_WEB_CTRL, pEventArg, E_INVALID_ARG, "Invalid argument(s) is used. Type casting failed. argument must be IEventArg type.");
4026 SysLog(NID_WEB_CTRL, "The current value of event type is %d", pEventArg->GetEventType());
4028 SysTryReturnResult(NID_WEB_CTRL, __pUserUiListener, E_SYSTEM, "A system error has been occurred. Web UI listener was not set or null.");
4030 switch (pEventArg->GetEventType())
4032 case WEB_EVENT_WEBUIEVENTLISTENER_PAGE_BLOCK_SELECTED:
4034 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4036 Point* pStartPoint = const_cast< Point* >(dynamic_cast< const Point* >(pEventArg->GetEventInfo(_WebUiEventArg::BLOCK_START)));
4037 SysTryReturn(NID_WEB_CTRL, pStartPoint, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4039 Point* pEndPoint = const_cast< Point* >(dynamic_cast< const Point* >(pEventArg->GetEventInfo(_WebUiEventArg::BLOCK_END)));
4040 SysTryReturn(NID_WEB_CTRL, pEndPoint, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4042 __pUserUiListener->OnWebPageBlockSelected(*pWeb, *pStartPoint, *pEndPoint);
4046 case WEB_EVENT_WEBUIEVENTLISTENER_PAGE_SHOW_REQUESTED:
4048 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4050 __pUserUiListener->OnWebPageShowRequested(*pWeb);
4054 case WEB_EVENT_WEBUIEVENTLISTENER_WINDOW_CLOSE_REQUSTED:
4056 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4058 __pUserUiListener->OnWebWindowCloseRequested(*pWeb);
4062 case WEB_EVENT_WEBUIEVENTLISTENER_PREVENT_DEFAULT_TRIGGERED:
4064 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4066 Boolean* pTrigger = const_cast< Boolean* >(dynamic_cast< const Boolean* >(pEventArg->GetEventInfo(_WebUiEventArg::PREVENT_DEFAULT)));
4067 SysTryReturn(NID_WEB_CTRL, pTrigger, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4069 __pUserUiListener->OnWebPreventDefaultTriggered(*pWeb, pTrigger->ToBool());
4084 _WebImpl::OnHandleWebUiEventF(const IEventArg& arg)
4086 result r = E_SUCCESS;
4088 const _WebUiEventArg* pEventArg = dynamic_cast< const _WebUiEventArg* >(&arg);
4089 SysTryReturnResult(NID_WEB_CTRL, pEventArg, E_INVALID_ARG, "Invalid argument(s) is used. Type casting failed. argument must be IEventArg type.");
4091 SysLog(NID_WEB_CTRL, "The current value of event type is %d", pEventArg->GetEventType());
4093 SysTryReturnResult(NID_WEB_CTRL, __pUserUiListenerF, E_SYSTEM, "A system error has been occurred. Web UI listener was not set or null.");
4095 switch (pEventArg->GetEventType())
4097 case WEB_EVENT_WEBUIEVENTLISTENER_PAGE_BLOCK_SELECTED_FLOAT:
4099 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4101 FloatPoint* pStartPoint = const_cast< FloatPoint* >(dynamic_cast< const FloatPoint* >(pEventArg->GetEventInfo(_WebUiEventArg::BLOCK_START)));
4102 SysTryReturn(NID_WEB_CTRL, pStartPoint, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4104 FloatPoint* pEndPoint = const_cast< FloatPoint* >(dynamic_cast< const FloatPoint* >(pEventArg->GetEventInfo(_WebUiEventArg::BLOCK_END)));
4105 SysTryReturn(NID_WEB_CTRL, pEndPoint, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4107 __pUserUiListenerF->OnWebPageBlockSelected(*pWeb, *pStartPoint, *pEndPoint);
4111 case WEB_EVENT_WEBUIEVENTLISTENER_PAGE_SHOW_REQUESTED_FLOAT:
4113 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4115 __pUserUiListenerF->OnWebPageShowRequested(*pWeb);
4119 case WEB_EVENT_WEBUIEVENTLISTENER_WINDOW_CLOSE_REQUSTED_FLOAT:
4121 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4123 __pUserUiListenerF->OnWebWindowCloseRequested(*pWeb);
4127 case WEB_EVENT_WEBUIEVENTLISTENER_PREVENT_DEFAULT_TRIGGERED_FLOAT:
4129 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4131 Boolean* pTrigger = const_cast< Boolean* >(dynamic_cast< const Boolean* >(pEventArg->GetEventInfo(_WebUiEventArg::PREVENT_DEFAULT)));
4132 SysTryReturn(NID_WEB_CTRL, pTrigger, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4134 __pUserUiListenerF->OnWebPreventDefaultTriggered(*pWeb, pTrigger->ToBool());
4149 _WebImpl::OnHandleTextSearchEvent(const IEventArg& arg)
4151 result r = E_SUCCESS;
4153 const _TextSearchEventArg* pEventArg = dynamic_cast< const _TextSearchEventArg* >(&arg);
4154 SysTryReturnResult(NID_WEB_CTRL, pEventArg, E_INVALID_ARG, "Invalid argument(s) is used. Type casting failed. argument must be IEventArg type.");
4156 SysLog(NID_WEB_CTRL, "The current value of event type is %d", pEventArg->GetEventType());
4158 ITextSearchListener* pTextSearchListner = GetTextSearchListener();
4159 SysTryReturnResult(NID_WEB_CTRL, pTextSearchListner, E_SYSTEM, "A system error has been occurred. Web text search listener was not set or null.");
4161 switch (pEventArg->GetEventType())
4163 case WEB_EVENT_TEXTSEARCHLISTENER_TEXT_FOUND:
4165 Integer* pTotalCount= dynamic_cast< Integer* >(const_cast< Object* >(pEventArg->GetEventInfo(_TextSearchEventArg::TOTAL_COUNT)));
4166 SysTryReturn(NID_WEB_CTRL, pTotalCount, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4168 Integer* pCurrentOrdinal = dynamic_cast< Integer* >(const_cast< Object* >(pEventArg->GetEventInfo(_TextSearchEventArg::CURRENT_ORDINAL)));
4169 SysTryReturn(NID_WEB_CTRL, pCurrentOrdinal, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4171 pTextSearchListner->OnTextFound(pTotalCount->ToInt(), pCurrentOrdinal->ToInt());
4186 _WebImpl::HttpAuthenticationRequested(Ewk_Auth_Challenge* pChallenge)
4188 result r = E_SUCCESS;
4190 String host(ewk_auth_challenge_url_get(pChallenge));
4191 String realm(ewk_auth_challenge_realm_get(pChallenge));
4193 __pAuthChallenge.reset();
4195 std::unique_ptr<AuthenticationChallenge> pAuthChallenge(new (std::nothrow) AuthenticationChallenge());
4196 SysTryReturnResult(NID_WEB_CTRL, pAuthChallenge, E_OUT_OF_MEMORY, "Memory Allocation failed.");
4198 _AuthenticationChallengeImpl* pAuthImpl = _AuthenticationChallengeImpl::GetInstance(pAuthChallenge.get());
4199 SysTryReturn(NID_WEB_CTRL, pAuthImpl, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4201 pAuthImpl->SetAuthenticationChallengeHandler(pChallenge);
4202 pAuthImpl->SetWebEvasObject(__pWebCore->GetWebNativeNode());
4204 __pAuthChallenge = std::move(pAuthChallenge);
4206 ewk_auth_challenge_suspend(pChallenge);
4207 if (__pUserLoadingListener && __pUserLoadingListener->OnHttpAuthenticationRequestedN(host, realm, *__pAuthChallenge.get()))
4209 __pAuthChallenge.release();
4213 r = ShowAuthenticationPopup(host, realm, __pAuthChallenge.get());
4214 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4222 _WebImpl::ShowAuthenticationPopup(const String& host, const String& realm, AuthenticationChallenge* pAuthChallenge)
4224 result r = E_SUCCESS;
4226 std::unique_ptr<_AuthConfirmPopup> pAuthPopup(new (std::nothrow) _AuthConfirmPopup());
4227 SysTryReturnResult(NID_WEB_CTRL, pAuthPopup, E_OUT_OF_MEMORY, "Memory Allocation failed.");
4229 r = pAuthPopup->Construct(host, realm, pAuthChallenge);
4230 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4232 __pAuthPopup = std::move(pAuthPopup);
4234 int modalResult = 0;
4235 r = __pAuthPopup->ShowAndWait(modalResult);
4236 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
4239 __pAuthPopup.reset();
4246 _WebImpl::ShowCertificateConfirmPopup(_CertificatePopupMode userConfirmMode, Ewk_Certificate_Policy_Decision* pPolicy)
4248 result r = E_SUCCESS;
4250 std::unique_ptr<_CertificateConfirmPopup> pCertConfirmPopup(new (std::nothrow) _CertificateConfirmPopup());
4251 SysTryReturnResult(NID_WEB_CTRL, pCertConfirmPopup.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
4253 r = pCertConfirmPopup->Construct(userConfirmMode, pPolicy);
4254 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4256 __pCertConfirmPopup = std::move(pCertConfirmPopup);
4258 int modalResult = 0;
4259 r = __pCertConfirmPopup->ShowAndWait(modalResult);
4260 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
4262 if (userConfirmMode == CERTIFICATE_POPUP_MODE_USER_CONFIRM)
4264 __isCertificateConfirmed = __pCertConfirmPopup->GetConfirmResult();
4268 __pCertConfirmPopup.reset();
4274 _WebImpl::ShowUserConfirmPopup(_UserConfirmMode userConfirmMode, void* pPolicy)
4276 result r = E_SUCCESS;
4278 std::unique_ptr<_UserConfirmPopup> pUserConfirmPopup(new (std::nothrow) _UserConfirmPopup());
4279 SysTryReturnResult(NID_WEB_CTRL, pUserConfirmPopup.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
4281 r = pUserConfirmPopup->Construct(userConfirmMode, pPolicy, true);
4282 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4284 __pUserConfirmPopup = std::move(pUserConfirmPopup);
4286 int modalResult = 0;
4287 r = __pUserConfirmPopup->ShowAndWait(modalResult);
4288 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
4291 __pUserConfirmPopup.reset();
4297 _WebImpl::ShowUserConfirmPopupAsync(_UserConfirmMode userConfirmMode, void* pPolicy)
4299 result r = E_SUCCESS;
4301 std::unique_ptr<_UserConfirmPopup> pUserConfirmPopup(new (std::nothrow) _UserConfirmPopup());
4302 SysTryReturnResult(NID_WEB_CTRL, pUserConfirmPopup.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
4304 r = pUserConfirmPopup->Construct(userConfirmMode, pPolicy, false);
4305 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4307 __pUserConfirmPopup = std::move(pUserConfirmPopup);
4309 r = __pUserConfirmPopup->ShowPopup();
4310 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
4312 __pUserConfirmPopup.release();
4317 __pUserConfirmPopup.reset();
4324 _WebImpl::GetParentFormCore(_Control* pControlCore)
4327 _Form* pFormCore = null;
4329 _Control* pParentControlCore = dynamic_cast< _Control* >(pControlCore->GetParent());
4331 if (pParentControlCore == null)
4333 _Window* pWindowCore = dynamic_cast< _Window* >(pControlCore);
4334 SysAssertf(pWindowCore, "Failed to get parent control and window core.");
4335 pFormCore = dynamic_cast< _Form* >(pWindowCore->GetOwner());
4336 if (pFormCore == null)
4338 pParentControlCore = dynamic_cast< _Control* >(pWindowCore->GetOwner());
4339 SysTryReturn(NID_WEB_CTRL, pParentControlCore, null, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4344 pFormCore = dynamic_cast< _Form* >(pParentControlCore);
4347 if (pFormCore != null)
4352 return GetParentFormCore(pParentControlCore);
4357 _WebImpl::OnFocusGained(const _ControlImpl& source)
4364 _WebImpl::OnFocusLost(const _ControlImpl& source)
4366 if(IsKeypadVisible() == true)
4368 OnWebKeypadClosed(this, null, null);
4370 SetKeypadOpened(true);
4373 evas_object_focus_set(__pWebCore->GetWebNativeNode(), EINA_FALSE);
4380 _WebImpl::HasValidNativeNode(void) const
4382 if (__pWebCore && __pWebCore->GetWebNativeNode())
4392 _WebImpl::OnAttachedToMainTree(void)
4394 result r = E_SUCCESS;
4396 r = __pWebCore->InitializeWebNativeNode();
4397 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4399 r = InitializeSetting();
4400 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4402 r = _ContainerImpl::OnAttachedToMainTree();
4403 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4410 _WebImpl::OnChangeLayout(_ControlOrientation orientation)
4412 _ContainerImpl::OnChangeLayout(orientation);
4414 if (IsKeypadVisible() == true)
4420 ecore_imf_context_input_panel_geometry_get(ecore_imf_context_add(ecore_imf_context_default_id_get()), &x, &y, &w, &h);
4422 _Form* pFormCore = GetParentFormCore(dynamic_cast< _Control* >(&this->GetCore()));
4423 SysAssertf(pFormCore != null, "Failed to get FormCore");
4425 pFormCore->DeflateClientRectHeight(h);
4428 if (__pColorPicker.get())
4430 __pColorPicker->ChangeLayout(orientation);
4436 _WebImpl::OnAncestorVisibleStateChanged(const _Control& control)
4438 if (IsVisible() == true)
4440 ewk_view_page_visibility_state_set(__pWebCore->GetWebNativeNode(), EWK_PAGE_VISIBILITY_STATE_VISIBLE, false);
4444 ewk_view_page_visibility_state_set(__pWebCore->GetWebNativeNode(), EWK_PAGE_VISIBILITY_STATE_HIDDEN, false);
4450 _WebImpl::GetDownloadHandler(void) const
4452 return __pWebDownloadHandler.get();
4457 _WebImpl::HideColorPicker(void)
4459 __pColorPicker.reset();
4466 _WebImpl::ShowColorPicker(int red, int green, int blue, int alpha, Color& color)
4468 result r = E_SUCCESS;
4470 std::unique_ptr<_InputPickerPopup> pColorHadler(new (std::nothrow) _InputPickerPopup());
4471 SysTryReturnResult(NID_WEB_CTRL, pColorHadler.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
4473 Tizen::Graphics::Color colorVal(static_cast< byte >(red), static_cast< byte >(green), static_cast< byte >(blue), static_cast< byte >(alpha));
4475 r = pColorHadler->Construct(colorVal);
4476 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4478 __pColorPicker = std::move(pColorHadler);
4480 r = __pColorPicker->ShowPopup();
4481 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
4483 color = __pColorPicker->GetColor();
4488 __pColorPicker.reset();
4495 _WebImpl::ShowDatePicker(Ewk_Input_Type inputType, const char* inputValue, String& dateStr)
4497 result r = E_SUCCESS;
4499 std::unique_ptr<_InputPickerPopup> pInputPicker(new (std::nothrow) _InputPickerPopup());
4500 SysTryReturnResult(NID_WEB_CTRL, pInputPicker.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
4502 r = pInputPicker->Construct(String(inputValue), inputType);
4503 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4505 __pDatePicker = std::move(pInputPicker);
4507 r = __pDatePicker->ShowPopup();
4508 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
4510 dateStr = __pDatePicker->GetDate();
4513 __pDatePicker.reset();
4520 _WebImpl::GetInstance(Web* pWeb)
4522 return dynamic_cast< _WebImpl* >(_ControlImpl::GetInstance(*pWeb));
4527 _WebImpl::GetInstance(const Web* pWeb)
4529 return dynamic_cast< const _WebImpl* >(_ControlImpl::GetInstance(*pWeb));
4533 _WebImpl::SearchHandler(Ewk_Custom_Handlers_Data* pHandlerData, bool checkmime)
4535 int checkReturn = 0;
4537 String handlerPath(Tizen::App::App::GetInstance()->GetAppRootPath() + CUSTOM_DB_DIRECTORY_PATH + USER_CONFIRM_DB_NAME);
4540 if( checkmime == true)
4542 table = CUSTOM_CONTENT_TABLE_NAME;
4546 table = CUSTOM_PROTOCOL_TABLE_NAME;
4549 String baseUri(ewk_custom_handlers_data_base_url_get(pHandlerData));
4550 String uri(ewk_custom_handlers_data_url_get(pHandlerData));
4551 String target(ewk_custom_handlers_data_target_get(pHandlerData));
4553 SysLog(NID_WEB_CTRL, "BaseUrl : %s, Url : %s, mime : %s", baseUri.GetPointer(), uri.GetPointer(), target.GetPointer());
4555 result r = db.Construct(handlerPath, "r+", null);
4556 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, -1, r, "[%s] Propagating.", GetErrorMessage(r));
4558 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"'"));
4559 SysTryReturn(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, -1, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4563 r = pEnum->MoveNext();
4564 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, -1, r, "[%s] Propagating.", GetErrorMessage(r));
4565 r = pEnum->GetIntAt(0, checkReturn);
4566 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, -1, r, "[%s] Propagating.", GetErrorMessage(r));
4577 _WebImpl::UnregistrationHandler(Ewk_Custom_Handlers_Data* pHandlerData, bool checkmime)
4581 String handlerPath(Tizen::App::App::GetInstance()->GetAppRootPath() + CUSTOM_DB_DIRECTORY_PATH + USER_CONFIRM_DB_NAME);
4584 if( checkmime == true)
4586 table = CUSTOM_CONTENT_TABLE_NAME;
4590 table = CUSTOM_PROTOCOL_TABLE_NAME;
4593 String baseUri(ewk_custom_handlers_data_base_url_get(pHandlerData));
4594 String uri(ewk_custom_handlers_data_url_get(pHandlerData));
4595 String target(ewk_custom_handlers_data_target_get(pHandlerData));
4597 SysLog(NID_WEB_CTRL, "BaseUrl : %s, Url : %s, mime : %s", baseUri.GetPointer(), uri.GetPointer(), target.GetPointer());
4599 result r = db.Construct(handlerPath, "r+", null);
4600 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4602 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"'"));
4603 SysTryReturn(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4607 r = pEnum->MoveNext();
4608 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4609 r = pEnum->GetIntAt(0, checkId);
4610 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4612 std::unique_ptr<DbStatement> pDeleteStmt(db.CreateStatementN(L"Delete From " + table + L" Where id = (?)"));
4613 SysTryReturn(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4615 r = pDeleteStmt->BindInt(0, checkId);
4616 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4618 db.BeginTransaction();
4620 std::unique_ptr<DbEnumerator> pEnum(db.ExecuteStatementN(*pDeleteStmt));
4622 db.CommitTransaction();
4628 const Tizen::Base::String
4629 _WebImpl::GetProtocolFromUri(const Tizen::Base::String& originUri, const Tizen::Base::String& currentUri)
4631 SysAssertf(currentUri != null, "Failed to get currenturi");
4633 result r = E_SUCCESS;
4636 String handlerPath(Tizen::App::App::GetInstance()->GetAppRootPath() + CUSTOM_DB_DIRECTORY_PATH + USER_CONFIRM_DB_NAME);
4637 String originReplace(originUri);
4638 String table(CUSTOM_PROTOCOL_TABLE_NAME);
4642 r = currentUri.LastIndexOf(L"/", currentUri.GetLength()-1, found);
4643 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4645 r = currentUri.SubString(0, found + 1, baseUri);
4646 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4648 r = db.Construct(handlerPath, "r+", null);
4649 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4651 std::unique_ptr<DbEnumerator> pEnum(db.QueryN(L"Select mime, url, allow From " + table + L" Where baseUrl = '" + baseUri + "'"));
4652 SysTryReturn(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, L"", GetLastResult(), "[%s] Propagating.", GetErrorMessage(r));
4656 while (pEnum->MoveNext() == E_SUCCESS)
4661 String originScheme;
4663 r = pEnum->GetStringAt(0, protocol);
4664 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4666 r = pEnum->GetStringAt(1, queryUrl);
4667 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4669 r = pEnum->GetIntAt(2, allow);
4670 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4677 String protocolScheme(protocol + L":");
4679 r = originReplace.SubString(0, protocolScheme.GetLength(), originScheme);
4680 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4682 if ((originReplace.GetLength() >= protocolScheme.GetLength()) && originScheme.Equals(protocolScheme, false))
4684 if (queryUrl.IndexOf(L"%s", 0, foundQuery) == E_SUCCESS)
4686 r = originReplace.Replace(originScheme, "");
4687 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4689 queryUrl.Replace("%s", originReplace, 0);
4690 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4702 const Tizen::Base::String
4703 _WebImpl::GetRedirectUri(const Tizen::Base::String& originUri, const Tizen::Base::String& currentUri, const Tizen::Base::String& mime)
4705 SysAssertf(currentUri != null, "Failed to get currenturi");
4707 result r = E_SUCCESS;
4710 String originUrlStr = originUri;
4711 const String replaceStr = L"%s";
4713 String handlerPath(Tizen::App::App::GetInstance()->GetAppRootPath() + CUSTOM_DB_DIRECTORY_PATH + USER_CONFIRM_DB_NAME);
4714 String table(CUSTOM_CONTENT_TABLE_NAME);
4718 r = currentUri.LastIndexOf(L"/", currentUri.GetLength()-1, found);
4719 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4721 r = currentUri.SubString(0, found + 1, baseUri);
4722 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4724 r = db.Construct(handlerPath, "r+", null);
4725 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4727 std::unique_ptr<DbEnumerator> pEnum(db.QueryN(L"Select allow, url From " + table + L" Where baseUrl = '" + baseUri + "' AND mime = '" + mime + L"'"));
4731 r = pEnum->MoveNext();
4732 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4733 r = pEnum->GetIntAt(0, allow);
4734 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4735 r = pEnum->GetStringAt(1, contentUrl);
4736 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4744 if (contentUrl != L"")
4746 r = contentUrl.Replace(replaceStr, originUrlStr, 0);
4747 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4757 }}} // Tizen::Web::Controls