Fix for keypad issue
[framework/osp/web.git] / src / controls / FWebCtrl_WebImpl.cpp
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
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
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
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.
16 //
17
18 /**
19  * @file                FWebCtrl_WebImpl.cpp
20  * @brief               The file contains the definition of _WebImpl class.
21  *
22  * The file contains the definition of _WebImpl class.
23  */
24 #include <Ecore_IMF_Evas.h>
25 #include <Ecore_Evas.h>
26 #include <elm_config.h>
27 #include <elm_win.h>
28 #include <EWebKit2.h>
29 #include <ewk_popup_menu_item.h>
30 #include <libsoup/soup-status.h>
31 #include <FAppApp.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>
46 #include <FIoFile.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_WebNotification.h"
95 #include "FWebCtrl_PageNavigationListImpl.h"
96 #include "FWebCtrl_PromptPopup.h"
97 #include "FWebCtrl_SelectBox.h"
98 #include "FWebCtrl_Utility.h"
99 #include "FWebCtrl_Web.h"
100 #include "FWebCtrl_WebDataHandler.h"
101 #include "FWebCtrl_WebEvent.h"
102 #include "FWebCtrl_WebEventArg.h"
103 #include "FWebCtrl_WebImpl.h"
104 #include "FWebCtrl_WebPresenter.h"
105 #include "FWebCtrl_WebSettingImpl.h"
106
107
108 using namespace Tizen::App;
109 using namespace Tizen::Base;
110 using namespace Tizen::Base::Collection;
111 using namespace Tizen::Base::Runtime;
112 using namespace Tizen::Base::Utility;
113 using namespace Tizen::Content;
114 using namespace Tizen::Graphics;
115 using namespace Tizen::Io;
116 using namespace Tizen::Media;
117 using namespace Tizen::Net::Http;
118 using namespace Tizen::Ui;
119 using namespace Tizen::Ui::Animations;
120 using namespace Tizen::Ui::Controls;
121 using namespace Tizen::Web::Json;
122
123
124 namespace Tizen { namespace Web { namespace Controls
125 {
126
127
128 static const char WEB_CTRL[] = "webcontrol";
129 static const char PARENT_WEB_CTRL[] = "parentwebcontrol";
130
131
132 static const float MIN_ZOOM_LEVEL = 0.3;
133 static const float MAX_ZOOM_LEVEL = 2;
134
135
136 static const int REDIRECTION_HEADER_GROUP = 300;
137
138
139 static const int MAX_TEXT_MATCH = pow(2, 31) - 1;
140
141
142 static const int PORTRAIT_KEYPAD_HEIGHT = 444;
143 static const int LANDSCAPE_KEYPAD_HEIGHT = 316;
144
145
146 Eina_Bool
147 AddHttpHeaderData(const Eina_Hash* pHash, const void* pKey, void* pValue, void* pUserData)
148 {
149         result r = E_SUCCESS;
150
151         String key(reinterpret_cast< const char* >(pKey));
152         String value(reinterpret_cast< char* >(pValue));
153
154         SysLog(NID_WEB_CTRL, "The current value of key is %ls, value is %ls", key.GetPointer(), value.GetPointer());
155
156         r = reinterpret_cast< HttpHeader* >(pUserData)->AddField(key, value);
157         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
158
159         return EINA_TRUE;
160 }
161
162
163 Eina_Bool
164 AddHttpAttributeData(const Eina_Hash* pHash, const void* pKey, void* pValue, void* pUserData)
165 {
166         result r = E_SUCCESS;
167
168         std::unique_ptr<String> pAttrKey(new (std::nothrow) String(reinterpret_cast< char* >(const_cast< void* >(pKey))));
169         std::unique_ptr<String> pAttrValue(new (std::nothrow) String(reinterpret_cast< char* >(pValue)));
170         SysTryReturn(NID_WEB_CTRL, pAttrKey.get() && pAttrValue.get(), EINA_FALSE, E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
171
172         SysLog(NID_WEB_CTRL, "The current value of key is %ls, value is %ls", pAttrKey->GetPointer(), pAttrValue->GetPointer());
173
174         r = reinterpret_cast< HashMap* >(pUserData)->Add(*pAttrKey, *pAttrValue);
175         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
176         pAttrKey.release();
177         pAttrValue.release();
178
179         return EINA_TRUE;
180 }
181
182
183 void
184 FreeCharArray(void* pData)
185 {
186         delete[] reinterpret_cast<char*>(pData);
187 }
188
189
190 LoadingErrorType
191 ConvertErrorCode(int error)
192 {
193         LoadingErrorType errorCode = WEB_ERROR_UNKNOWN;
194
195         switch (error)
196         {
197         case EWK_ERROR_NETWORK_STATUS_CANCELLED:
198         //fall through
199         case EWK_ERROR_NETWORK_STATUS_CANT_RESOLVE:
200         //fall through
201         case EWK_ERROR_NETWORK_STATUS_CANT_RESOLVE_PROXY:
202         //fall through
203         case EWK_ERROR_NETWORK_STATUS_CANT_CONNECT:
204         //fall through
205         case EWK_ERROR_NETWORK_STATUS_CANT_CONNECT_PROXY:
206         //fall through
207         case EWK_ERROR_NETWORK_STATUS_IO_ERROR:
208         //fall through
209         case EWK_ERROR_NETWORK_STATUS_MALFORMED:
210         //fall through
211         case EWK_ERROR_NETWORK_STATUS_TRY_AGAIN:
212         //fall through
213         case EWK_ERROR_NETWORK_STATUS_TOO_MANY_REDIRECTS:
214         //fall through
215         case EWK_ERROR_NETWORK_STATUS_TLS_FAILED:
216         //fall through
217         case EWK_ERROR_NETWORK_STATUS_INTERNAL_SERVER_ERROR:
218         //fall through
219         case EWK_ERROR_NETWORK_STATUS_BAD_GATEWAY:
220         //fall through
221         case EWK_ERROR_NETWORK_STATUS_SERVICE_UNAVAILABLE:
222         //fall through
223         case EWK_ERROR_NETWORK_STATUS_GATEWAY_TIMEOUT:
224                 errorCode = WEB_NO_CONNECTION;
225                 break;
226
227         case EWK_ERROR_NETWORK_STATUS_BAD_REQUEST:
228         //fall through
229         case EWK_ERROR_NETWORK_STATUS_REQUEST_URI_TOO_LONG:
230                 errorCode = WEB_BAD_URL;
231                 break;
232
233         case EWK_ERROR_NETWORK_STATUS_FORBIDDEN:
234                 errorCode = WEB_FILE_ACCESS_FAILED;
235                 break;
236
237         case EWK_ERROR_NETWORK_STATUS_REQUEST_TIMEOUT:
238                 errorCode = WEB_REQUEST_TIMEOUT;
239                 break;
240
241         case EWK_ERROR_NETWORK_STATUS_UNSUPPORTED_MEDIA_TYPE:
242                 errorCode = WEB_MIME_NOT_SUPPORTED;
243                 break;
244
245         case EWK_ERROR_NETWORK_STATUS_INSUFFICIENT_STORAGE:
246                 errorCode = WEB_OUT_OF_MEMORY;
247                 break;
248
249         case EWK_ERROR_NETWORK_STATUS_REQUEST_ENTITY_TOO_LARGE:
250                 errorCode = WEB_REQUEST_MAX_EXCEEDED;
251                 break;
252
253         case EWK_ERROR_NETWORK_STATUS_CONTINUE:
254         //fall through
255         case EWK_ERROR_NETWORK_STATUS_SWITCHING_PROTOCOLS:
256         //fall through
257         case EWK_ERROR_NETWORK_STATUS_PROCESSING:
258         //fall through
259         case EWK_ERROR_NETWORK_STATUS_OK:
260         //fall through
261         case EWK_ERROR_NETWORK_STATUS_CREATED:
262         //fall through
263         case EWK_ERROR_NETWORK_STATUS_ACCEPTED:
264         //fall through
265         case EWK_ERROR_NETWORK_STATUS_NON_AUTHORITATIVE:
266         //fall through
267         case EWK_ERROR_NETWORK_STATUS_NO_CONTENT:
268         //fall through
269         case EWK_ERROR_NETWORK_STATUS_RESET_CONTENT:
270         //fall through
271         case EWK_ERROR_NETWORK_STATUS_PARTIAL_CONTENT:
272         //fall through
273         case EWK_ERROR_NETWORK_STATUS_MULTI_STATUS:
274         //fall through
275         case EWK_ERROR_NETWORK_STATUS_MULTIPLE_CHOICES:
276         //fall through
277         case EWK_ERROR_NETWORK_STATUS_MOVED_PERMANENTLY:
278         //fall through
279         case EWK_ERROR_NETWORK_STATUS_FOUND:
280         //fall through
281         case EWK_ERROR_NETWORK_STATUS_SEE_OTHER:
282         //fall through
283         case EWK_ERROR_NETWORK_STATUS_NOT_MODIFIED:
284         //fall through
285         case EWK_ERROR_NETWORK_STATUS_USE_PROXY:
286         //fall through
287         case EWK_ERROR_NETWORK_STATUS_NOT_APPEARING_IN_THIS_PROTOCOL:
288         //fall through
289         case EWK_ERROR_NETWORK_STATUS_TEMPORARY_REDIRECT:
290                 errorCode = WEB_HTTP_RESPONSE;
291                 break;
292
293         case EWK_ERROR_NETWORK_STATUS_SSL_FAILED:
294                 errorCode = WEB_INVALID_CERTIFICATE;
295                 break;
296
297         default:
298                 errorCode = WEB_ERROR_UNKNOWN;
299                 break;
300         }
301
302         return errorCode;
303 }
304
305
306 result
307 FireLoadingErrorOccurredEvent(_WebImpl* pImpl, int code, const char* pDescription)
308 {
309         result r = E_SUCCESS;
310
311         std::unique_ptr<Integer> pErrorCode(new (std::nothrow) Integer(code));
312         std::unique_ptr<String> pErrorDescription(new (std::nothrow) String(pDescription));
313         std::unique_ptr<_LoadingEventArg> pEventArg(new (std::nothrow) _LoadingEventArg(WEB_EVENT_LOADINGLISTENER_ERROR_OCCURRED));
314         SysTryReturnResult(NID_WEB_CTRL, pErrorCode.get() && pErrorDescription.get() && pEventArg.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
315
316         r = pEventArg->SetEventInfo(_LoadingEventArg::ERROR_TYPE, *pErrorCode.get());
317         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
318         pErrorCode.release();
319
320         r = pEventArg->SetEventInfo(_LoadingEventArg::ERROR_MESSAGE, *pErrorDescription.get());
321         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
322         pErrorDescription.release();
323
324         r = pImpl->GetWebEvent()->FireAsync(*pEventArg);
325         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
326         pEventArg.release();
327
328         return E_SUCCESS;
329 }
330
331
332 Eina_Bool
333 OnScriptAlertRequested(Evas_Object* pView, const char* pMessage, void* pUserData)
334 {
335         SysLog(NID_WEB_CTRL, "The current value of message is %s", pMessage);
336
337         result r = E_SUCCESS;
338
339         String msg(pMessage);
340
341         MessageBox messageBox;
342         r = messageBox.Construct(L"", msg, MSGBOX_STYLE_OK);
343         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
344
345         int modalResult = 0;
346         r = messageBox.ShowAndWait(modalResult);
347         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
348
349         ewk_view_javascript_alert_reply(pView);
350
351         return EINA_TRUE;
352 }
353
354
355 Eina_Bool
356 OnScriptConfirmRequested(Evas_Object* pView, const char* pMessage, void* pUserData)
357 {
358         SysLog(NID_WEB_CTRL, "The current value of message is %s", pMessage);
359
360         result r = E_SUCCESS;
361
362         String msg(pMessage);
363
364         MessageBox messageBox;
365         r = messageBox.Construct(L"", msg, MSGBOX_STYLE_OKCANCEL);
366         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
367
368         int modalResult = 0;
369         r = messageBox.ShowAndWait(modalResult);
370         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
371
372         if (modalResult == MSGBOX_RESULT_OK)
373         {
374                 ewk_view_javascript_confirm_reply(pView, EINA_TRUE);
375         }
376         else
377         {
378                 ewk_view_javascript_confirm_reply(pView, EINA_FALSE);
379         }
380
381         return EINA_TRUE;
382 }
383
384
385 Eina_Bool
386 OnScriptPromptRequested(Evas_Object* pView, const char* pMessage, const char* pDefaultValue, void* pUserData)
387 {
388         SysLog(NID_WEB_CTRL, "The current value of message is %s, defaulValue is %s", pMessage, pDefaultValue);
389
390         result r = E_SUCCESS;
391
392         String msg(pMessage);
393         String defVal(pDefaultValue);
394
395         int modalResult = -1;
396         Eina_Bool returnValue = EINA_TRUE;
397         _PromptPopup pPromptPopup;
398
399         r = pPromptPopup.Construct(msg, defVal);
400         SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, returnValue = EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
401
402         r = pPromptPopup.ShowAndWait(modalResult);
403         SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, returnValue = EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
404
405         if (modalResult == ID_BUTTON_PROMPT_OK)
406         {
407                 std::unique_ptr<char[]> pResult(_StringConverter::CopyToCharArrayN(pPromptPopup.GetPromptText()));
408                 SysTryCatch(NID_WEB_CTRL, pResult.get(), returnValue = EINA_FALSE, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
409
410                 ewk_view_javascript_prompt_reply(pView, pResult.get());
411                 return EINA_TRUE;
412         }
413
414 CATCH:
415         ewk_view_javascript_prompt_reply(pView, null);
416         return returnValue;
417 }
418
419
420 void
421 OnCertificateRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
422 {
423         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
424         Ewk_Certificate_Policy_Decision* pPolicy = reinterpret_cast< Ewk_Certificate_Policy_Decision* >(pEventInfo);
425         SysAssertf(pImpl && pPolicy, "Failed to request");
426
427         switch (pImpl->GetSetting().GetCertificateErrorHandlingMode())
428         {
429         case WEB_CERTIFICATE_ERROR_HANDLING_MODE_USER_CONFIRM:
430         {
431                 if (pImpl->IsCertificateRequested())
432                 {
433                         ewk_certificate_policy_decision_allowed_set(pPolicy, static_cast< Eina_Bool >(pImpl->IsCertificateConfirmed()));
434                         return;
435                 }
436
437                 result r = E_SUCCESS;
438
439                 r = pImpl->ShowCertificateConfirmPopup(CERTIFICATE_POPUP_MODE_USER_CONFIRM, pPolicy);
440                 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
441
442                 pImpl->SetCertificateRequested(true);
443                 break;
444         }
445         case WEB_CERTIFICATE_ERROR_HANDLING_MODE_CANCEL:
446 CATCH:
447                 ewk_certificate_policy_decision_allowed_set(pPolicy, EINA_FALSE);
448                 break;
449         case WEB_CERTIFICATE_ERROR_HANDLING_MODE_CONTINUE :
450                 ewk_certificate_policy_decision_allowed_set(pPolicy, EINA_TRUE);
451                 break;
452         default:
453                 SysAssert(false);
454         }
455 }
456
457
458 void
459 OnHttpAuthenticationRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
460 {
461         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
462         Ewk_Auth_Challenge* pChallenge = reinterpret_cast< Ewk_Auth_Challenge* >(pEventInfo);
463         SysAssertf(pImpl && pChallenge, "Failed to request");
464
465         result r = E_SUCCESS;
466
467         r = pImpl->HttpAuthenticationRequested(pChallenge);
468         SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
469         return;
470
471 CATCH:
472         ewk_auth_challenge_credential_cancel(pChallenge);
473         evas_object_smart_callback_call(pView, "authentication,canceled", NULL);
474 }
475
476
477 void
478 OnHttpAuthenticationCanceled(void* pUserData, Evas_Object* pView, void* pEventInfo)
479 {
480         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
481         SysAssertf(pImpl , "Failed to request");
482
483         if (pImpl->GetLoadingListener())
484         {
485                 result r = E_SUCCESS;
486
487                 std::unique_ptr<_LoadingEventArg> pEventArg(new (std::nothrow) _LoadingEventArg(WEB_EVENT_LOADINGLISTENER_AUTHENTICATION_CANCELED));
488                 SysTryReturnVoidResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
489
490                 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
491                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
492                 pEventArg.release();
493         }
494 }
495
496
497 void
498 OnGeolocationPermissionRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
499 {
500         _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
501         Ewk_Geolocation_Permission_Request* pPermissionRequest = reinterpret_cast< Ewk_Geolocation_Permission_Request* >(pEventInfo);
502         SysAssertf(pImpl && pPermissionRequest, "Failed to request");
503
504         if (pImpl->GetSetting().IsGeolocationEnabled())
505         {
506                 result r = E_SUCCESS;
507
508                 std::unique_ptr<DbEnumerator> pEnum;
509
510                 String geolocationPath(Tizen::App::App::GetInstance()->GetAppRootPath() + CUSTOM_DB_DIRECTORY_PATH + USER_CONFIRM_DB_NAME);
511                 String table(GEOLOCATION_TABLE_NAME);
512                 _DatabaseImpl db;
513
514                 const Ewk_Security_Origin* pSecurityOrigin = ewk_geolocation_permission_request_origin_get(pPermissionRequest);
515                 String origin = _Utility::CreateOrigin(pSecurityOrigin);
516
517                 r = db.Construct(geolocationPath, "r", null);
518                 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
519
520                 pEnum = std::unique_ptr<DbEnumerator>(db.QueryN(L"Select permission From " + table + L" Where origin = '" + origin + L"'"));
521                 if (pEnum.get())
522                 {
523                         r = pEnum->MoveNext();
524                         SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
525
526                         int permission = 0;
527                         r = pEnum->GetIntAt(0, permission);
528                         SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
529
530                         SysLog(NID_WEB_CTRL, "The current value of permission is %d", permission);
531
532                         ewk_geolocation_permission_request_set(pPermissionRequest, static_cast < Eina_Bool >(permission));
533                 }
534                 else
535                 {
536                         ewk_geolocation_permission_request_suspend(pPermissionRequest);
537
538                         r = pImpl->ShowUserConfirmPopupAsync(USER_CONFIRM_GEOLOCATION, pPermissionRequest);
539                         SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
540                 }
541
542                 return;
543         }
544
545 CATCH:
546         ewk_geolocation_permission_request_set(pPermissionRequest, EINA_FALSE);
547 }
548
549
550 void
551 OnGetUserMediaPermissionRequsted(void* pUserData, Evas_Object* pView, void* pEventInfo)
552 {
553         _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
554         Ewk_User_Media_Permission_Request* pPermissionRequest = reinterpret_cast< Ewk_User_Media_Permission_Request* >(pEventInfo);
555         SysAssertf(pImpl && pPermissionRequest, "Failed to request");
556
557         result r = pImpl->ShowUserConfirmPopupAsync(USER_CONFIRM_USERMEDIA, pEventInfo);
558         SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
559         return;
560
561 CATCH:
562         ewk_user_media_permission_request_set(pPermissionRequest, EINA_FALSE);
563 }
564
565
566 void
567 OnNotificationPermissionRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
568 {
569         result r = E_SUCCESS;
570         _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
571         Ewk_Notification_Permission_Request* pPermissionRequest = reinterpret_cast< Ewk_Notification_Permission_Request* >(pEventInfo);
572         SysAssertf(pImpl && pPermissionRequest, "Failed to request");
573
574         MessageBox messageBox;
575         r = messageBox.Construct(L"Notification request", L"Do you want to allow notifications from this site ?", MSGBOX_STYLE_OKCANCEL);
576         SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
577
578         int modalResult = 0;
579         r = messageBox.ShowAndWait(modalResult);
580         SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
581
582         if (modalResult == MSGBOX_RESULT_OK)
583         {
584                 ewk_notification_permission_request_set(pPermissionRequest, EINA_TRUE);
585         }
586         else
587         {
588                 ewk_notification_permission_request_set(pPermissionRequest, EINA_FALSE);
589         }
590 }
591
592
593 void
594 OnNotificationShow(void* pUserData, Evas_Object* pView, void* pEventInfo)
595 {
596         _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
597         Ewk_Notification* pNotification = reinterpret_cast< Ewk_Notification* >(pEventInfo);
598         SysAssertf(pImpl && pNotification, "Failed to request");
599
600         result r = E_SUCCESS;
601         Ewk_Context* pContext = ewk_view_context_get(pView);
602         SysAssertf(pContext, "Failed to get webkit instance.");
603         uint64_t notificationId = ewk_notification_id_get(pNotification);
604
605         //ewk_notification_security_origin_get(pNotification)
606
607         const char* text = ewk_notification_body_get(pNotification);
608         SysLog(NID_WEB_CTRL, "The current value of icon path is %s",ewk_notification_icon_url_get(pNotification));
609
610         std::unique_ptr<_WebNotification> pNotificationWindow( new (std::nothrow) _WebNotification());
611         SysTryReturnVoidResult(NID_WEB_CTRL, pNotificationWindow.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
612
613         r = pNotificationWindow->Construct(pContext, notificationId);
614         SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Error propogated.", GetErrorMessage(r));
615
616         pNotificationWindow->SetText(String(text));
617         pNotificationWindow->LaunchNotification();
618         pNotificationWindow.release();
619
620         ewk_notification_showed(pContext, notificationId);
621 }
622
623
624 void
625 OnNotificationCancel(void* pUserData, Evas_Object* pView, void* pEventInfo)
626 {
627         _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
628         uint64_t* pNotificationID = reinterpret_cast< uint64_t* >(pEventInfo);
629         SysAssertf(pImpl && pNotificationID, "Failed to request");
630
631         //ToDo : Where is ewk API for cancel operation?
632 }
633
634
635 void
636 OnProtocolHandlerRegistrationRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
637 {
638         result r = E_SUCCESS;
639         _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
640         SysAssertf(pImpl, "Failed to request");
641
642         r = pImpl->ShowUserConfirmPopup(USER_PROTOCOL_HANDLER, pEventInfo);
643         SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
644 }
645
646
647 void
648 OnIsProtocolHandlerRegistered(void* pUserData, Evas_Object* pView, void* pEventInfo)
649 {
650         int checkHandler = 0;
651         _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
652         Ewk_Custom_Handlers_Data* pHandlerData = reinterpret_cast< Ewk_Custom_Handlers_Data* >(pEventInfo);
653         SysAssertf(pImpl && pHandlerData, "Failed to request");
654
655         checkHandler = pImpl->SearchHandler(pHandlerData, false);
656         SysTryReturnVoidResult(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
657         switch (checkHandler)
658         {
659         case -1:
660                 return;
661         case 0:
662                 ewk_custom_handlers_data_result_set(pHandlerData, EWK_CUSTOM_HANDLERS_DECLINED);
663                 break;
664         case 1:
665                 ewk_custom_handlers_data_result_set(pHandlerData, EWK_CUSTOM_HANDLERS_REGISTERED);
666                 break;
667         case 2:
668                 ewk_custom_handlers_data_result_set(pHandlerData, EWK_CUSTOM_HANDLERS_NEW);
669                 break;
670         default:
671                 SysAssert(false);
672         }
673 }
674
675 void
676 OnProtocolHandlerUnregistrationRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
677 {
678         result r = E_SUCCESS;
679         _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
680         Ewk_Custom_Handlers_Data* pHandlerData = reinterpret_cast< Ewk_Custom_Handlers_Data* >(pEventInfo);
681         SysAssertf(pImpl && pHandlerData, "Failed to request");
682
683         r = pImpl->UnregistrationHandler(pHandlerData, false);
684         SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
685 }
686
687
688 void
689 OnContentHandlerRegistrationRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
690 {
691         result r = E_SUCCESS;
692         _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
693         SysAssertf(pImpl, "Failed to request");
694         
695         r = pImpl->ShowUserConfirmPopup(USER_CONTENT_HANDLER, pEventInfo);
696         SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
697 }
698
699
700 void
701 OnIsContentHandlerRegistered(void* pUserData, Evas_Object* pView, void* pEventInfo)
702 {
703         int checkHandler = 0;
704         _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
705         Ewk_Custom_Handlers_Data* pHandlerData = reinterpret_cast< Ewk_Custom_Handlers_Data* >(pEventInfo);
706         SysAssertf(pImpl && pHandlerData, "Failed to request");
707
708         checkHandler = pImpl->SearchHandler(pHandlerData, true);
709         SysTryReturnVoidResult(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
710         
711         switch (checkHandler)
712         {
713         case -1:
714                 return;
715         case 0:
716                 ewk_custom_handlers_data_result_set(pHandlerData, EWK_CUSTOM_HANDLERS_DECLINED);
717                 break;
718         case 1:
719                 ewk_custom_handlers_data_result_set(pHandlerData, EWK_CUSTOM_HANDLERS_REGISTERED);
720                 break;
721         case 2:
722                 ewk_custom_handlers_data_result_set(pHandlerData, EWK_CUSTOM_HANDLERS_NEW);
723                 break;
724         default:
725                 SysAssert(false);
726         }
727 }
728
729 void
730 OnContentHandlerUnregistrationRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
731 {
732         result r = E_SUCCESS;
733         _WebImpl* pImpl = reinterpret_cast<_WebImpl*>(pUserData);
734         Ewk_Custom_Handlers_Data* pHandlerData = reinterpret_cast< Ewk_Custom_Handlers_Data* >(pEventInfo);
735         SysAssertf(pImpl && pHandlerData, "Failed to request");
736
737         r = pImpl->UnregistrationHandler(pHandlerData, true);
738         SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
739 }
740
741
742 void
743 OnLoadingRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
744 {
745         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
746         Ewk_Policy_Decision* pPolicy = reinterpret_cast< Ewk_Policy_Decision* >(pEventInfo);
747         SysAssertf(pImpl && pPolicy, "Failed to request");
748
749         String url(ewk_policy_decision_url_get(pPolicy));
750         SysLog(NID_WEB_CTRL, "The current value of url is %ls", url.GetPointer());
751
752         if (url == L"about:blank")
753         {
754                 ewk_policy_decision_use(pPolicy);
755                 return;
756         }
757
758         if (pImpl->GetLoadingListener() && ewk_frame_is_main_frame(ewk_policy_decision_frame_get(pPolicy))
759                 && !pImpl->IsRedirectRequested())
760         {
761                 pImpl->SetCertificateRequested(false);
762
763                 if (pImpl->GetTextSearchListener())
764                 {
765                         pImpl->DisableAsyncSearch();
766                 }
767         
768                 WebNavigationType navigationType = WEB_NAVIGATION_OTHER;
769                 Ewk_Policy_Navigation_Type ewkNavigationType = ewk_policy_decision_navigation_type_get(pPolicy);
770
771                 switch (ewkNavigationType)
772                 {
773                 case EWK_POLICY_NAVIGATION_TYPE_LINK_CLICKED:
774                         navigationType = WEB_NAVIGATION_LINK_CLICKED;
775                         break;
776                 case EWK_POLICY_NAVIGATION_TYPE_FORM_SUBMITTED:
777                         navigationType = WEB_NAVIGATION_FORM_SUBMITTED;
778                         break;
779                 case EWK_POLICY_NAVIGATION_TYPE_BACK_FORWARD:
780                         navigationType = WEB_NAVIGATION_BACKFORWARD;
781                         break;
782                 case EWK_POLICY_NAVIGATION_TYPE_RELOAD:
783                         navigationType = WEB_NAVIGATION_RELOAD;
784                         break;
785                 case EWK_POLICY_NAVIGATION_TYPE_FORM_RESUBMITTED:
786                         navigationType = WEB_NAVIGATION_FORM_RESUBMITTED;
787                         break;
788                 case EWK_POLICY_NAVIGATION_TYPE_OTHER:
789                         navigationType = WEB_NAVIGATION_OTHER;
790                         break;
791                 default:
792                         SysAssert(false);
793                 }
794
795                 if (pImpl->GetLoadingListener()->OnLoadingRequested(url, navigationType))
796                 {
797                         ewk_policy_decision_ignore(pPolicy);
798
799                         return;
800                 }
801         }
802
803         String currentUrl(pImpl->GetUrl());
804         String redirectUrl(pImpl->GetProtocolFromUri(url,  currentUrl));
805         if (redirectUrl != L"")
806         {
807                 pImpl->LoadUrl(redirectUrl);
808                 ewk_policy_decision_ignore(pPolicy);
809
810                 return;
811         }
812         
813         Uri uri;
814         uri.SetUri(url);
815
816         String uriScheme(uri.GetScheme());
817         SysLog(NID_WEB_CTRL, "The current value of scheme is %ls", uriScheme.GetPointer());
818
819         if ((uriScheme != L"http") && (uriScheme != L"https") && (uriScheme != L"file"))
820         {
821                 ewk_policy_decision_ignore(pPolicy);
822
823                 if (uriScheme == L"")
824                 {
825                         return;
826                 }
827
828                 result r = E_SUCCESS;
829
830                 _WebEventType eventType = WEB_EVENT_REQUEST_UNKNOWN;
831
832                 if (uriScheme == L"rtsp")
833                 {
834                         eventType = WEB_EVENT_REQUEST_RTSP;
835                 }
836                 else if (uriScheme == L"mailto")
837                 {
838                         eventType = WEB_EVENT_REQUEST_EMAIL;
839                 }
840                 else if (uriScheme == L"tel")
841                 {
842                         eventType = WEB_EVENT_REQUEST_TEL;
843                 }
844                 else if (uriScheme == L"sms" || uriScheme == L"smsto" )
845                 {
846                         eventType = WEB_EVENT_REQUEST_SMS;
847                 }
848                 else if (uriScheme == L"mms" || uriScheme == L"mmsto" )
849                 {
850                         eventType = WEB_EVENT_REQUEST_MMS;
851                 }
852
853                 std::unique_ptr<_WebEventArg> pEventArg(new _WebEventArg(eventType, url));
854                 SysTryReturnVoidResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
855
856                 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
857                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
858                 pEventArg.release();
859
860                 return;
861         }
862
863         ewk_policy_decision_use(pPolicy);
864 }
865
866
867 void
868 OnLoadingStarted(void* pUserData, Evas_Object* pView, void* pEventInfo)
869 {
870         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
871         SysAssertf(pImpl, "Failed to request");
872
873         if (pImpl->GetLoadingListener())
874         {
875                 result r = E_SUCCESS;
876
877                 std::unique_ptr<_LoadingEventArg> pEventArg(new (std::nothrow) _LoadingEventArg(WEB_EVENT_LOADINGLISTENER_STARTED));
878                 SysTryReturnVoidResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
879
880                 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
881                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
882                 pEventArg.release();
883         }
884 }
885
886
887 void
888 OnPageTitleReceived(void* pUserData, Evas_Object* pView, void* pEventInfo)
889 {
890         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
891         char* pTitle = reinterpret_cast< char* >(pEventInfo);
892         SysAssertf(pImpl, "Failed to request");
893
894         SysLog(NID_WEB_CTRL, "The current value of title is %s", pTitle);
895
896         if (pImpl->GetLoadingListener())
897         {
898                 result r = E_SUCCESS;
899
900                 std::unique_ptr<String> pPageTitle(new (std::nothrow) String(pTitle));
901                 std::unique_ptr<_LoadingEventArg> pEventArg(new (std::nothrow) _LoadingEventArg(WEB_EVENT_LOADINGLISTENER_PAGETITLE_RECEIVED));
902                 SysTryReturnVoidResult(NID_WEB_CTRL, pPageTitle.get() && pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
903
904                 r = pEventArg->SetEventInfo(_LoadingEventArg::PAGE_TITLE, *pPageTitle.get());
905                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
906                 pPageTitle.release();
907
908                 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
909                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
910                 pEventArg.release();
911         }
912 }
913
914
915 void
916 OnEstimatedProgress(void* pUserData, Evas_Object* pView, void* pEventInfo)
917 {
918         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
919         double* pProgress = reinterpret_cast< double* >(pEventInfo);
920         SysAssertf(pImpl, "Failed to request");
921
922         SysLog(NID_WEB_CTRL, "The current value of progress is %lf", *pProgress);
923
924         if (pImpl->GetLoadingListener())
925         {
926                 result r = E_SUCCESS;
927
928                 std::unique_ptr<Integer> pProgressPercentage(new (std::nothrow) Integer(static_cast< int >(*pProgress * 100)));
929                 std::unique_ptr<_LoadingEventArg> pEventArg(new (std::nothrow) _LoadingEventArg(WEB_EVENT_LOADINGLISTENER_PROGRESS));
930                 SysTryReturnVoidResult(NID_WEB_CTRL, pProgressPercentage.get() && pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
931
932                 r = pEventArg->SetEventInfo(_LoadingEventArg::ESTIMATED_PROGRESS, *pProgressPercentage.get());
933                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
934                 pProgressPercentage.release();
935
936                 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
937                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
938                 pEventArg.release();
939         }
940 }
941
942
943 void
944 OnWebDataReceived(void* pUserData, Evas_Object* pView, void* pEventInfo)
945 {
946         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
947         Ewk_Policy_Decision* pPolicy = reinterpret_cast< Ewk_Policy_Decision* >(pEventInfo);
948         SysAssertf(pImpl && pPolicy, "Failed to request");
949
950         result r = E_SUCCESS;
951
952         const char* pUrl = ewk_policy_decision_url_get(pPolicy);
953         int code = ewk_policy_decision_response_status_code_get(pPolicy);
954         String mime(ewk_policy_decision_response_mime_get(pPolicy));
955         SysLog(NID_WEB_CTRL, "url : %s, mime : %ls, code : %d", pUrl, mime.GetPointer(), code);
956
957         ILoadingListener* pLoadingListener = pImpl->GetLoadingListener();
958
959         String url(ewk_policy_decision_url_get(pPolicy));
960
961         
962         if (pLoadingListener && ewk_frame_is_main_frame(ewk_policy_decision_frame_get(pPolicy)))
963         {
964                 const Eina_Hash* pHeader = ewk_policy_decision_response_headers_get(pPolicy);
965
966                 DecisionPolicy policy;
967                 HttpHeader httpHeader;
968
969                 if (code >= REDIRECTION_HEADER_GROUP && code < REDIRECTION_HEADER_GROUP + 100)
970                 {
971                         pImpl->SetRedirectRequested(true);
972                         mime = L"";
973                 }
974
975                 eina_hash_foreach(pHeader, AddHttpHeaderData, &httpHeader);
976                 SysTryCatch(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
977
978                 policy = pLoadingListener->OnWebDataReceived(mime, httpHeader);
979                 pImpl->SetPolicyDecision(policy);
980         }
981
982         switch (pImpl->GetPolicyDecision())
983         {
984         case WEB_DECISION_CONTINUE:
985         {
986                 String currentUrl(pImpl->GetUrl());
987                 String redirectUrl(pImpl->GetRedirectUri(url, currentUrl, mime));
988                 if (redirectUrl != L"")
989                 {
990                         pImpl->LoadUrl(redirectUrl);
991                         ewk_policy_decision_ignore(pPolicy);
992
993                         return;
994                 }
995
996                 if (pImpl->IsMimeSupported(mime) || mime == L"")
997                 {
998                         break;
999                 }
1000                 
1001                 else
1002                 {
1003                         SysLog(NID_WEB_CTRL, "Launch native app to handle the mime");
1004
1005                         ewk_policy_decision_ignore(pPolicy);
1006
1007                         AppControl* pAppControl = null;
1008                         _SelectBox selectBox;
1009                         int appCount = 0;
1010                         int selectedIndex = 0;
1011
1012                         std::unique_ptr<IList, AllElementsDeleter> pList(_AppManagerImpl::FindAppControlsN(NULL, NULL, &mime, NULL));
1013
1014                         if (pList.get())
1015                         {
1016                                 appCount = pList->GetCount();
1017                         }
1018
1019                         r = selectBox.Construct(false, L"", appCount+1); //+1 for Downloader
1020                         SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1021
1022                         selectBox.AddListItem(L"Download", _SelectBox::LIST_ITEM_TYPE_NORMAL, false);
1023                         for (int i = 0; i < appCount; i++)
1024                         {
1025                                 pAppControl = dynamic_cast< AppControl* >(pList->GetAt(i));
1026                                 SysTryReturnVoidResult(NID_WEB_CTRL, pAppControl, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
1027
1028                                 String text = pAppControl->GetAppName();
1029                                 SysLog(NID_WEB_CTRL, "AppName : %S", text.GetPointer());
1030
1031                                 selectBox.AddListItem(text, _SelectBox::LIST_ITEM_TYPE_NORMAL, false);
1032                         }
1033                         r = selectBox.ShowAndWait(selectedIndex);
1034                         SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1035
1036                         if (selectedIndex == 0) //download
1037                         {
1038                                 RequestId reqId = 0;
1039                                 DownloadRequest request(pUrl);
1040
1041                                 _DownloadManagerImpl* pManagerImpl = _DownloadManagerImpl::GetInstance();
1042                                 SysTryReturnVoidResult(NID_WEB_CTRL, pManagerImpl, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
1043
1044                                 r = pManagerImpl->Start(request, reqId);
1045                                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1046                         }
1047                         else if (selectedIndex != -1) // -1 for cancel
1048                         {
1049                                 String path("path");
1050                                 String pathVal(pUrl);
1051
1052                                 HashMap dataList;
1053                                 r = dataList.Construct();
1054                                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1055
1056                                 r = dataList.Add(path, pathVal);
1057                                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1058
1059                                 pAppControl = dynamic_cast< AppControl* >(pList->GetAt(selectedIndex));
1060                                 SysTryReturnVoidResult(NID_WEB_CTRL, pAppControl, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
1061
1062                                 _AppControlImpl* pAcImpl = _AppControlImpl::GetInstance(*pAppControl);
1063                                 SysTryReturnVoidResult(NID_WEB_CTRL, pAcImpl, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
1064
1065                                 r = pAcImpl->Start(null, null, &dataList, null);
1066                                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1067                         }
1068
1069                         return;
1070                 }
1071                 break;
1072         }
1073         case WEB_DECISION_DOWNLOAD:
1074         {
1075                 ewk_policy_decision_ignore(pPolicy);
1076
1077                 _WebDataHandler* pDownloadHandler = pImpl->GetDownloadHandler();
1078                 SysTryReturnVoidResult(NID_WEB_CTRL, pDownloadHandler, E_SYSTEM, "[%s] A system error has been occurred. Failed to get DownloadHandler.", GetErrorMessage(E_SYSTEM));
1079
1080                 Ewk_Context* pContext = ewk_view_context_get(pView);
1081                 SysAssertf(pContext, "Failed to get webkit instance.");
1082
1083                 pDownloadHandler->StartDownload(pUrl);
1084
1085                 return;
1086         }
1087         case WEB_DECISION_IGNORE:
1088         {
1089                 ewk_policy_decision_ignore(pPolicy);
1090
1091                 return;
1092         }
1093         default:
1094         {
1095                 SysAssert(false);
1096         }
1097         }
1098
1099         ewk_policy_decision_use(pPolicy);
1100
1101         return;
1102
1103 CATCH:
1104         ewk_policy_decision_ignore(pPolicy);
1105 }
1106
1107
1108 void
1109 OnProgressCompleted(void* pUserData, Evas_Object* pView, void* pEventInfo)
1110 {
1111         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1112         SysAssertf(pImpl, "Failed to request");
1113
1114         if (pImpl->IsRedirectRequested())
1115         {
1116                 pImpl->SetRedirectRequested(false);
1117         }
1118
1119         if (pImpl->IsLoadingErrorOccurred())
1120         {
1121                 pImpl->SetLoadingErrorOccurred(false);
1122                 evas_object_smart_callback_call(pView, "load,finished", NULL);
1123         }
1124 }
1125
1126
1127 void
1128 OnLoadingErrorOccurred(void* pUserData, Evas_Object* pView, void* pEventInfo)
1129 {
1130         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1131         Ewk_Error* pErrorData = reinterpret_cast< Ewk_Error* >(pEventInfo);
1132         SysAssertf(pImpl && pErrorData, "Failed to request");
1133
1134         int code = ewk_error_code_get(pErrorData);
1135         const char* pDescription = ewk_error_description_get(pErrorData);
1136
1137         SysLog(NID_WEB_CTRL, "The current value of code is %d, description is %s", code, pDescription);
1138
1139         pImpl->SetLoadingErrorOccurred(true);
1140         switch (code)
1141         {
1142         case EWK_ERROR_CODE_FRAMELOADINTERRUPTEDBYPOLICYCHANGE:
1143                 //fall through
1144         case EWK_ERROR_CODE_PLUGINWILLHANDLELOAD:
1145                 break;
1146
1147         case EWK_ERROR_NETWORK_STATUS_CANCELLED:
1148                 evas_object_smart_callback_call(pView, "load,stop", NULL);
1149                 break;
1150
1151         default:
1152                 if (pImpl->GetLoadingListener())
1153                 {
1154                         result r = E_SUCCESS;
1155
1156                         r = FireLoadingErrorOccurredEvent(pImpl, code, pDescription);
1157                         SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1158                 }
1159                 break;
1160         }
1161 }
1162
1163
1164 void
1165 OnLoadingCanceled(void* pUserData, Evas_Object* pView, void* pEventInfo)
1166 {
1167         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1168         SysAssertf(pImpl, "Failed to request");
1169
1170         if (pImpl->GetLoadingListener())
1171         {
1172                 result r = E_SUCCESS;
1173
1174                 std::unique_ptr<_LoadingEventArg> pEventArg(new (std::nothrow) _LoadingEventArg(WEB_EVENT_LOADINGLISTENER_CANCELED));
1175                 SysTryReturnVoidResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
1176
1177                 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1178                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1179                 pEventArg.release();
1180         }
1181
1182 }
1183
1184
1185 void
1186 OnLoadingCompleted(void* pUserData, Evas_Object* pView, void* pEventInfo)
1187 {
1188         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1189         SysAssertf(pImpl, "Failed to request");
1190
1191         if (pImpl->GetLoadingListener())
1192         {
1193                 result r = E_SUCCESS;
1194
1195                 std::unique_ptr<_LoadingEventArg> pEventArg(new (std::nothrow) _LoadingEventArg(WEB_EVENT_LOADINGLISTENER_COMPLETED));
1196                 SysTryReturnVoidResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
1197
1198                 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1199                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1200                 pEventArg.release();
1201         }
1202
1203 }
1204
1205
1206 void
1207 OnLoadingCommitted(void* pUserData, Evas_Object* pView, void* pEventInfo)
1208 {
1209         evas_object_focus_set(pView, EINA_FALSE);
1210 }
1211
1212
1213 void
1214 OnFaviconReceived(void* pUserData, Evas_Object* pView, void* pEventInfo)
1215 {
1216         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1217         SysAssertf(pImpl, "Failed to request");
1218
1219         if (pImpl->GetLoadingListener())
1220         {
1221                 result r = E_SUCCESS;
1222
1223                 std::unique_ptr<_LoadingEventArg> pEventArg(new (std::nothrow) _LoadingEventArg(WEB_EVENT_LOADINGLISTENER_FAVICON_RECEIVED));
1224                 SysTryReturnVoidResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
1225
1226                 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1227                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1228                 pEventArg.release();
1229         }
1230
1231 }
1232
1233
1234 void
1235 OnDidStartDownloadCallback(const char* pUrl, void* pUserData)
1236 {
1237         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1238         SysAssertf(pUrl && pImpl != null, "Failed to request");
1239
1240         SysLog(NID_WEB_CTRL, "The current value of url is %s", pUrl);
1241 }
1242
1243
1244 result
1245 FireWebPageShowRequestedEvent(_WebImpl* pImpl, int event)
1246 {
1247         result r = E_SUCCESS;
1248
1249         std::unique_ptr<_WebUiEventArg> pEventArg(new (std::nothrow) _WebUiEventArg(event));
1250         SysTryReturnResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
1251
1252         r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1253         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1254         pEventArg.release();
1255
1256         return E_SUCCESS;
1257 }
1258
1259
1260 void
1261 OnWebPageShowRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
1262 {
1263         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1264         SysAssertf(pImpl, "Failed to request");
1265
1266         if (pImpl->GetUiEventListener())
1267         {
1268                 result r = E_SUCCESS;
1269
1270                 r = FireWebPageShowRequestedEvent(pImpl, WEB_EVENT_WEBUIEVENTLISTENER_PAGE_SHOW_REQUESTED);
1271                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1272         }
1273         if (pImpl->GetUiEventListenerF())
1274         {
1275                 result r = E_SUCCESS;
1276
1277                 r = FireWebPageShowRequestedEvent(pImpl, WEB_EVENT_WEBUIEVENTLISTENER_PAGE_SHOW_REQUESTED_FLOAT);
1278                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1279         }
1280 }
1281
1282
1283 void
1284 OnWebWindowCreateRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
1285 {
1286         _WebImpl* pParentImpl = reinterpret_cast< _WebImpl* >(pUserData);
1287         Evas_Object** pChildView = reinterpret_cast< Evas_Object** >(pEventInfo);
1288         SysAssertf(pParentImpl && pChildView, "Failed to request");
1289
1290         IWebUiEventListener* pUserUiListener = pParentImpl->GetUiEventListener();
1291         IWebUiEventListenerF* pUserUiListenerF = pParentImpl->GetUiEventListenerF();
1292         if (pUserUiListener)
1293         {
1294                 Web* pWeb = pUserUiListener->OnWebWindowCreateRequested();
1295                 if (pWeb)
1296                 {
1297                         _WebImpl* pChildImpl = _WebImpl::GetInstance(pWeb);
1298                         SysTryReturnVoidResult(NID_WEB_CTRL, pChildImpl, E_SYSTEM, "[%s] A system error has been occurred. Failed to get ChildImpl object.", GetErrorMessage(E_SYSTEM));
1299
1300                         *pChildView = dynamic_cast< _Web* >(&pChildImpl->GetCore())->GetWebNativeNode();
1301                         evas_object_data_set(*pChildView, PARENT_WEB_CTRL, pParentImpl);
1302                 }
1303         }
1304         if (pUserUiListenerF)
1305         {
1306                 Web* pWeb = pUserUiListenerF->OnWebWindowCreateRequested();
1307                 if (pWeb)
1308                 {
1309                         _WebImpl* pChildImpl = _WebImpl::GetInstance(pWeb);
1310                         SysTryReturnVoidResult(NID_WEB_CTRL, pChildImpl, E_SYSTEM, "[%s] A system error has been occurred. Failed to get ChildImpl object.", GetErrorMessage(E_SYSTEM));
1311
1312                         *pChildView = dynamic_cast< _Web* >(&pChildImpl->GetCore())->GetWebNativeNode();
1313                         evas_object_data_set(*pChildView, PARENT_WEB_CTRL, pParentImpl);
1314                 }
1315         }
1316 }
1317
1318
1319 result
1320 FireWebWindowClosedRequestedEvent(_WebImpl* pImpl, int event)
1321 {
1322         result r = E_SUCCESS;
1323
1324         std::unique_ptr<_WebUiEventArg> pEventArg(new (std::nothrow) _WebUiEventArg(event));
1325         SysTryReturnResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
1326
1327         r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1328         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1329         pEventArg.release();
1330
1331         return E_SUCCESS;
1332 }
1333
1334
1335 void
1336 OnWebWindowClosedRequested(void* pUserData, Evas_Object* pView, void* pEventInfo)
1337 {
1338         _WebImpl* pChildImpl = reinterpret_cast< _WebImpl* >(pUserData);
1339         SysAssertf(pChildImpl, "Failed to request");
1340
1341         _WebImpl* pParentImpl = reinterpret_cast< _WebImpl* >(evas_object_data_get(pView, PARENT_WEB_CTRL));
1342         if (pParentImpl == null)
1343         {
1344                 return;
1345         }
1346
1347         if (pParentImpl->GetUiEventListener())
1348         {
1349                 result r = E_SUCCESS;
1350
1351                 r = FireWebWindowClosedRequestedEvent(pChildImpl, WEB_EVENT_WEBUIEVENTLISTENER_WINDOW_CLOSE_REQUSTED);
1352                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1353         }
1354         if (pParentImpl->GetUiEventListenerF())
1355         {
1356                 result r = E_SUCCESS;
1357
1358                 r = FireWebWindowClosedRequestedEvent(pChildImpl, WEB_EVENT_WEBUIEVENTLISTENER_WINDOW_CLOSE_REQUSTED_FLOAT);
1359                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1360         }
1361 }
1362
1363
1364 result
1365 FireWebPreventDefaultTriggeredEvent(_WebImpl* pImpl, int event, bool trigger)
1366 {
1367         result r = E_SUCCESS;
1368
1369         std::unique_ptr<Boolean> pPreventTrigger(new (std::nothrow) Boolean(trigger));
1370         std::unique_ptr<_WebUiEventArg> pEventArg(new (std::nothrow) _WebUiEventArg(event));
1371         SysTryReturnResult(NID_WEB_CTRL, pPreventTrigger.get() && pEventArg.get(), E_OUT_OF_MEMORY, " Memory allocation failed." );
1372
1373         r = pEventArg->SetEventInfo(_WebUiEventArg::PREVENT_DEFAULT, *pPreventTrigger.get());
1374         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1375         pPreventTrigger.release();
1376
1377         r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1378         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1379         pEventArg.release();
1380
1381         return E_SUCCESS;
1382 }
1383
1384
1385 void
1386 OnWebPreventDefaultTriggered(void* pUserData, Evas_Object* pView, void* pEventInfo)
1387 {
1388         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1389         Eina_Bool* pTrigger = reinterpret_cast< Eina_Bool* >(pEventInfo);
1390         SysAssertf(pImpl && pTrigger, "Failed to request");
1391
1392         if (pImpl->GetUiEventListener())
1393         {
1394                 result r = E_SUCCESS;
1395
1396                 r = FireWebPreventDefaultTriggeredEvent(pImpl, WEB_EVENT_WEBUIEVENTLISTENER_PREVENT_DEFAULT_TRIGGERED, static_cast< bool >(*pTrigger));
1397                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1398         }
1399         if (pImpl->GetUiEventListenerF())
1400         {
1401                 result r = E_SUCCESS;
1402
1403                 r = FireWebPreventDefaultTriggeredEvent(pImpl, WEB_EVENT_WEBUIEVENTLISTENER_PREVENT_DEFAULT_TRIGGERED_FLOAT, static_cast< bool >(*pTrigger));
1404                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1405         }
1406 }
1407
1408
1409 result
1410 FireWebPageBlockSelectedEvent(_WebImpl* pImpl)
1411 {
1412         result r = E_SUCCESS;
1413
1414         std::unique_ptr<Point> startPoint(new (std::nothrow) Point());
1415         std::unique_ptr<Point> endPoint(new (std::nothrow) Point());
1416         SysTryReturnResult(NID_WEB_CTRL, startPoint.get() && endPoint.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
1417
1418         pImpl->GetBlockRange(*startPoint.get(), *endPoint.get());
1419
1420         if ((endPoint->x != 0) && (endPoint->y != 0))
1421         {
1422                 std::unique_ptr<_WebUiEventArg> pEventArg(new (std::nothrow) _WebUiEventArg(WEB_EVENT_WEBUIEVENTLISTENER_PAGE_BLOCK_SELECTED));
1423                 SysTryReturnResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
1424
1425                 r = pEventArg->SetEventInfo(_WebUiEventArg::BLOCK_START, *startPoint.get());
1426                 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1427                 startPoint.release();
1428
1429                 r = pEventArg->SetEventInfo(_WebUiEventArg::BLOCK_END, *endPoint.get());
1430                 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1431                 endPoint.release();
1432
1433                 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1434                 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1435                 pEventArg.release();
1436         }
1437
1438         return E_SUCCESS;
1439 }
1440
1441
1442 result
1443 FireWebPageBlockSelectedEventF(_WebImpl* pImpl)
1444 {
1445         result r = E_SUCCESS;
1446
1447         std::unique_ptr<FloatPoint> startPoint(new (std::nothrow) FloatPoint());
1448         std::unique_ptr<FloatPoint> endPoint(new (std::nothrow) FloatPoint());
1449
1450         SysTryReturnResult(NID_WEB_CTRL, startPoint.get() && endPoint.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
1451
1452         pImpl->GetBlockRange(*startPoint.get(), *endPoint.get());
1453
1454         if ((endPoint->x != 0.0f) && (endPoint->y != 0.0f))
1455         {
1456                 std::unique_ptr<_WebUiEventArg> pEventArg(new (std::nothrow) _WebUiEventArg(WEB_EVENT_WEBUIEVENTLISTENER_PAGE_BLOCK_SELECTED_FLOAT));
1457                 SysTryReturnResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
1458
1459                 r = pEventArg->SetEventInfo(_WebUiEventArg::BLOCK_START, *startPoint.get());
1460                 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1461                 startPoint.release();
1462
1463                 r = pEventArg->SetEventInfo(_WebUiEventArg::BLOCK_END, *endPoint.get());
1464                 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1465                 endPoint.release();
1466
1467                 r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1468                 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1469                 pEventArg.release();
1470         }
1471
1472         return E_SUCCESS;
1473 }
1474
1475
1476 void
1477 OnWebPageBlockSelected(void* pUserData, Evas_Object* pView, void* pEventInfo)
1478 {
1479         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1480         Ewk_Text_Style* pStyle = reinterpret_cast< Ewk_Text_Style* >(pEventInfo);
1481         SysAssertf(pImpl && pStyle, "Failed to request");
1482
1483         if (pImpl->GetUiEventListener())
1484         {
1485                 result r = E_SUCCESS;
1486
1487                 r = FireWebPageBlockSelectedEvent(pImpl);
1488                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1489         }
1490         if (pImpl->GetUiEventListenerF())
1491         {
1492                 result r = E_SUCCESS;
1493
1494                 r = FireWebPageBlockSelectedEventF(pImpl);
1495                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1496         }
1497 }
1498
1499
1500 Eina_Bool
1501 OnSelectUploadFile(Evas_Object* pView, Eina_Bool multipleFile, Eina_List* pAcceptTypes, const char* pCapture, void* pUserData)
1502 {
1503         Eina_Bool ret = EINA_FALSE;
1504         Eina_List* pSelectedFileNames = null;
1505         String isMultipleSelection(L"single");
1506
1507         if (multipleFile)
1508         {
1509                 isMultipleSelection.Append(L"multiple");
1510         }
1511
1512         std::unique_ptr<_MediaSelectionListener> pMediaListener(new (std::nothrow) _MediaSelectionListener());
1513         SysTryCatch(NID_WEB_CTRL, pMediaListener.get(), , E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
1514
1515         {
1516                 int itemCount = eina_list_count(pAcceptTypes);
1517                 String fileType = L"all";
1518
1519                 if (itemCount == 1)
1520                 {
1521                         String item((char*)eina_list_nth(pAcceptTypes, 0));
1522                         if (item.StartsWith("image/",0))
1523                         {
1524                                 fileType = L"image";
1525                         }
1526                         else if (item.StartsWith("audio/",0))
1527                         {
1528                                 fileType = L"audio";
1529                         }
1530                         else if (item.StartsWith("video/",0))
1531                         {
1532                                 fileType = L"video";
1533                         }
1534                 }
1535
1536                 HashMap dataList;
1537                 result r = dataList.Construct();
1538                 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
1539
1540                 String mode(L"selectionType");
1541                 r = dataList.Add(mode, isMultipleSelection);
1542                 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
1543
1544                 String type(L"type");
1545                 r = dataList.Add(type, fileType);
1546                 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
1547
1548                 std::unique_ptr<AppControl> pMediaAppControl(_AppManagerImpl::FindAppControlN(L"tizen.filemanager", L"http://tizen.org/appcontrol/operation/pick"));
1549                 SysTryCatch(NID_WEB_CTRL, pMediaAppControl.get(), r = GetLastResult(), r, "[%s] Propagating.", GetErrorMessage(r));
1550
1551                 _AppControlImpl* pMediaAppControlImpl = _AppControlImpl::GetInstance(*pMediaAppControl);
1552                 r = pMediaAppControlImpl->Start(null, null, &dataList, pMediaListener.get());
1553                 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
1554
1555                 while (true)
1556                 {
1557                         if (pMediaListener->IsSelectionCompleted())
1558                         {
1559                                 const ArrayList* pSelectedFiles = pMediaListener->GetSelectedFiles();
1560                                 SysTryCatch(NID_WEB_CTRL, pSelectedFiles, r = GetLastResult(), r, "[%s] Propagating.", GetErrorMessage(r));
1561
1562                                 int fileCount = pSelectedFiles->GetCount();
1563
1564                                 for (int i = 0; i < fileCount; i++)
1565                                 {
1566                                         String* pFile = (String*)pSelectedFiles->GetAt(i);
1567                                         SysTryCatch(NID_WEB_CTRL, pFile, r = GetLastResult(), r, "[%s] Propagating.", GetErrorMessage(r));
1568
1569                                         std::unique_ptr<ByteBuffer> pByteBuf(StringUtil::StringToUtf8N(*pFile));
1570                                         SysTryCatch(NID_WEB_CTRL, pByteBuf.get(), r = GetLastResult(), r, "[%s] Propagating.", GetErrorMessage(r));
1571
1572                                         pSelectedFileNames = eina_list_append(pSelectedFileNames, strdup((const char*)pByteBuf->GetPointer()));
1573                                 }
1574
1575                                 ret = EINA_TRUE;
1576                                 break;
1577                         }
1578
1579                         ecore_main_loop_iterate();
1580                 }
1581
1582                 ewk_view_open_panel_reply(pView, pSelectedFileNames, ret);
1583                 return ret;
1584         }
1585
1586 CATCH:
1587         ewk_view_open_panel_reply(pView, null, ret);
1588         eina_list_free(pSelectedFileNames);
1589         return ret;
1590 }
1591
1592
1593 void
1594 OnHandleJavaScriptRequest(void* pUserData, Evas_Object* pView, void* pEventInfo)
1595 {
1596         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1597         char* pJsonText = reinterpret_cast< char* >(pEventInfo);
1598         SysAssertf(pImpl && pJsonText, "Failed to request");
1599
1600         result r = E_SUCCESS;
1601
1602         SysLog(NID_WEB_CTRL, "The current value of jsontext is %s", pJsonText);
1603
1604         std::unique_ptr<_JsBridgeArg> pEventArg(new (std::nothrow) _JsBridgeArg());
1605         SysTryReturnVoidResult(NID_WEB_CTRL, pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
1606
1607         r = pEventArg->Construct(pJsonText);
1608         SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1609
1610         r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1611         SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1612         pEventArg.release();
1613 }
1614
1615
1616 void
1617 OnWebKeypadStateChanged(void* pUserData, Evas_Object* pView, void* pEventInfo)
1618 {
1619         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1620         Eina_Rectangle* pEinaRect = reinterpret_cast< Eina_Rectangle* >(pEventInfo);
1621         SysAssertf(pImpl && pEinaRect, "Failed to request");
1622
1623         if (pImpl->GetSetting().GetInputStyle() == INPUT_STYLE_OVERLAY)
1624         {
1625                 _ICoordinateSystemTransformer* pXformer = _CoordinateSystem::GetInstance()->GetInverseTransformer();
1626                 SysAssertf(pXformer, "Failed to get CoordinateTransformer");
1627
1628                 Rectangle rect(pEinaRect->x, pEinaRect->y, pEinaRect->w, pEinaRect->h);
1629
1630                 if (rect.height == 0)
1631                 {
1632                         return;
1633                 }
1634
1635                 _Form* pFormCore = pImpl->GetParentFormCore(dynamic_cast< _Control* >(&pImpl->GetCore()));
1636                 if (pFormCore)
1637                 {
1638                         if (pFormCore->HasFooter() && pFormCore->IsFooterVisible())
1639                         {
1640                                 pImpl->SetFooterVisibleState(true);
1641                                 pFormCore->SetActionBarsVisible(FORM_ACTION_BAR_FOOTER, false);
1642                         }
1643
1644                         pFormCore->DeflateClientRectHeight(pXformer->TransformVertical(rect.height));
1645                 }
1646
1647                 if (pImpl->GetWebKeypadEventListener())
1648                 {
1649                         if (pImpl->IsKeypadVisible() == true)
1650                         {
1651                                 if ((pImpl->GetPreviousKeypadBounds().width == rect.width) && (pImpl->GetPreviousKeypadBounds().height != rect.height))
1652                                 {
1653                                         pImpl->GetWebKeypadEventListener()->OnWebKeypadBoundsChanged(*dynamic_cast< Web* >(&pImpl->GetPublic()));
1654                                 }
1655                         }
1656                         else
1657                         {
1658                                 pImpl->GetWebKeypadEventListener()->OnWebKeypadWillOpen(*dynamic_cast< Web* >(&pImpl->GetPublic()));
1659                         }
1660                 }
1661                 pImpl->SetKeypadVisibleState(true);
1662                 pImpl->SetPreviousKeypadBounds(rect);
1663         }
1664         else
1665         {
1666                 result r = pImpl->SetFullScreenKeypad();
1667                 SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1668         }
1669 }
1670
1671
1672 void
1673 OnWebKeypadOpened(void* pUserData, Evas_Object* pView, void* pEventInfo)
1674 {
1675         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1676         SysAssertf(pImpl, "Failed to request");
1677
1678         if (pImpl->GetWebKeypadEventListener())
1679         {
1680                 pImpl->GetWebKeypadEventListener()->OnWebKeypadOpened(*static_cast< Web* >(&pImpl->GetPublic()));
1681         }
1682 }
1683
1684
1685 void
1686 OnWebKeypadClosed(void* pUserData, Evas_Object* pView, void* pEventInfo)
1687 {
1688         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1689         SysAssertf(pImpl, "Failed to request");
1690
1691         _Form* pFormCore = pImpl->GetParentFormCore(dynamic_cast< _Control* >(&pImpl->GetCore()));
1692         if (pFormCore)
1693         {
1694                 if (pFormCore->HasFooter() && pImpl->IsFooterVisible())
1695                 {
1696                         pImpl->SetFooterVisibleState(false);
1697                         pFormCore->SetActionBarsVisible(FORM_ACTION_BAR_FOOTER, true);
1698                 }
1699
1700                 pFormCore->DeflateClientRectHeight(0);
1701         }
1702
1703         if (pImpl->GetWebKeypadEventListener())
1704         {
1705                 pImpl->GetWebKeypadEventListener()->OnWebKeypadClosed(*dynamic_cast< Web* >(&pImpl->GetPublic()));
1706         }
1707
1708         pImpl->SetKeypadVisibleState(false);
1709 }
1710
1711
1712 void
1713 OnWindowObjectFocusGained(void *pUserData, Evas_Object *pWin, void *pEvent_info)
1714 {
1715         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1716         SysAssertf(pImpl, "Failed to request");
1717
1718         if (pImpl->IsKeypadOpened() == true)
1719         {
1720                 _Web* pWebCore = dynamic_cast< _Web* >(&(pImpl->GetCore()));
1721                 SysAssertf(pWebCore, "Failed to get Web core object");
1722
1723                 evas_object_focus_set(pWebCore->GetWebNativeNode(), EINA_TRUE);
1724
1725                 pImpl->SetKeypadOpened(false);
1726         }
1727 }
1728
1729
1730 void
1731 OnWebNativeNodeFocusGained(void *pUserData, Evas *pCanvas, Evas_Object* pView, void* pEventInfo)
1732 {
1733         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1734         SysAssertf(pImpl, "Failed to request");
1735
1736         if (pImpl->IsKeypadOpened() == true)
1737         {
1738                 pImpl->SetKeypadOpened(false);
1739         }
1740
1741
1742
1743 Eina_Bool
1744 OnColorPickerProviderRequested(Ewk_View_Smart_Data *pSmartData, int red, int green, int blue, int alpha)
1745 {
1746         SysAssertf(pSmartData, "invalid smartdata");
1747         _WebImpl* pWebImpl = reinterpret_cast<_WebImpl*>(evas_object_data_get(pSmartData->self, WEB_CTRL));
1748         SysAssertf(pWebImpl, "Failed to get Impl");
1749
1750         result r = E_SUCCESS;
1751
1752         if (pWebImpl->GetColorpicker())
1753         {
1754                 return EINA_FALSE;
1755         }
1756
1757         Color color;
1758
1759         r = pWebImpl->ShowColorPicker(red, green, blue, alpha, color);
1760         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Memory allocation failed.", GetErrorMessage(r));
1761
1762         byte r1, g1, b1, a1;
1763         color.GetColorComponents(r1, g1, b1, a1);
1764         ewk_view_color_picker_color_set(pSmartData->self, r1, g1, b1, a1);
1765
1766         return EINA_TRUE;
1767 }
1768
1769
1770 Eina_Bool
1771 OnColorPickerProviderDismissed(Ewk_View_Smart_Data *pSmartData)
1772 {
1773         SysAssertf(pSmartData, "invalid smartdata");
1774
1775         _WebImpl* pWebImpl = reinterpret_cast<_WebImpl*>(evas_object_data_get(pSmartData->self, WEB_CTRL));
1776         SysAssertf(pWebImpl, "Failed to get Impl");
1777
1778         return pWebImpl->HideColorPicker();
1779 }
1780
1781
1782 Eina_Bool
1783 OnDatePickerProviderRequested(Ewk_View_Smart_Data *pSmartData, Ewk_Input_Type inputType, const char* inputValue)
1784 {
1785         SysAssertf(pSmartData, "Failed to request");
1786         _WebImpl* pWebImpl = reinterpret_cast<_WebImpl*>(evas_object_data_get(pSmartData->self, WEB_CTRL));
1787         SysAssertf(pWebImpl, "Failed to get Impl");
1788
1789         result r = E_SUCCESS;
1790
1791         if (pWebImpl->GetDatepicker())
1792         {
1793                 ewk_view_focused_input_element_value_set(pSmartData->self, inputValue);
1794
1795                 return EINA_FALSE;
1796         }
1797
1798         String dateStr;
1799
1800         r = pWebImpl->ShowDatePicker(inputType, inputValue, dateStr);
1801         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Memory allocation failed.", GetErrorMessage(r));
1802
1803         std::unique_ptr<char[]> pDateStr(_StringConverter::CopyToCharArrayN(dateStr));
1804         SysTryReturn(NID_WEB_CTRL, pDateStr.get(), EINA_FALSE, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
1805
1806         ewk_view_focused_input_element_value_set(pSmartData->self, pDateStr.get());
1807
1808         return EINA_TRUE;
1809 }
1810
1811
1812 Eina_Bool
1813 OnSelectBoxRequested(Ewk_View_Smart_Data *pSmartData, Eina_Rectangle rect, Ewk_Text_Direction textDirection, double pageScaleFactor, Eina_List* pItems, int selectedIndex)
1814 {
1815         SysAssertf(pSmartData, "Failed to request");
1816
1817         _WebImpl* pWebImpl = reinterpret_cast<_WebImpl*>(evas_object_data_get(pSmartData->self, WEB_CTRL));
1818         SysAssertf(pWebImpl, "Failed to get Impl");
1819
1820         result r = pWebImpl->ShowSelectBoxPopup(false, L"", pItems, pSmartData->self, selectedIndex);
1821         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
1822
1823         return EINA_TRUE;
1824 }
1825
1826
1827 Eina_Bool
1828 OnSelectBoxClosed(Ewk_View_Smart_Data *pSmartData)
1829 {
1830         SysAssertf(pSmartData, "invalid smartdata");
1831
1832         _WebImpl* pWebImpl = reinterpret_cast<_WebImpl*>(evas_object_data_get(pSmartData->self, WEB_CTRL));
1833         SysAssertf(pWebImpl, "Failed to get Impl");
1834
1835         result r = pWebImpl->ClearSelectBoxPopup();
1836         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
1837
1838         return EINA_TRUE;
1839 }
1840
1841
1842 Eina_Bool
1843 OnSelectBoxUpdateRequested(Ewk_View_Smart_Data *pSmartData, Eina_Rectangle rect, Ewk_Text_Direction textDirection, Eina_List* pItems, int selectedIndex)
1844 {
1845         SysAssertf(pSmartData, "invalid smartdata");
1846
1847         _WebImpl* pWebImpl = reinterpret_cast<_WebImpl*>(evas_object_data_get(pSmartData->self, WEB_CTRL));
1848         SysAssertf(pWebImpl, "Failed to get Impl");
1849
1850         result r = pWebImpl->UpdateSelectBoxPopup(pItems, selectedIndex, false);
1851         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, EINA_FALSE, r, "[%s] Propagating.", GetErrorMessage(r));
1852
1853         return EINA_TRUE;
1854 }
1855
1856
1857 void
1858 OnCookiesPolicyGot(Ewk_Cookie_Accept_Policy policy, Ewk_Web_Error *pError, void *pUserData)
1859 {
1860         _WebPresenter* pPresenter = reinterpret_cast< _WebPresenter* >(pUserData);
1861         SysAssertf(pPresenter && !pError, "Failed to request");
1862
1863         bool ret = EINA_TRUE;
1864
1865         switch (policy)
1866         {
1867         case EWK_COOKIE_ACCEPT_POLICY_ALWAYS:
1868                 //fall through
1869         case EWK_COOKIE_ACCEPT_POLICY_NO_THIRD_PARTY:
1870                 ret = EINA_TRUE;
1871                 break;
1872
1873         case EWK_COOKIE_ACCEPT_POLICY_NEVER:
1874                 //fall through
1875                 ret = EINA_FALSE;
1876                 break;
1877
1878         default:
1879                 SysAssert(false);
1880         }
1881
1882         SysLog(NID_WEB_CTRL, "The current value of policy is %d", ret);
1883
1884         pPresenter->EndAsyncProcess(ret);
1885 }
1886
1887
1888 void
1889 OnScriptExecuted(Evas_Object* pView, const char* pResult, void* pUserData)
1890 {
1891         _WebPresenter* pPresenter = reinterpret_cast< _WebPresenter* >(pUserData);
1892         SysAssertf(pPresenter, "Failed to request");
1893
1894         String result(pResult);
1895         SysLog(NID_WEB_CTRL, "result : %ls", result.GetPointer());
1896
1897         pPresenter->EndAsyncProcess(result);
1898 }
1899
1900
1901 void
1902 OnTextFound(void* pUserData, Evas_Object* pView, void* pEventInfo)
1903 {
1904         _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
1905         SysAssertf(pImpl, "Failed to request");
1906
1907         int* pTotalCount = reinterpret_cast< int* >(pEventInfo);
1908         SysLog(NID_WEB_CTRL, "The current value of totalCount is %d", *pTotalCount);
1909
1910         _WebPresenter* pWebPresenter = pImpl->GetSearchPresenter();
1911
1912         if (pWebPresenter)
1913         {
1914                 pWebPresenter->EndAsyncProcess(*pTotalCount);
1915         }
1916         else
1917         {
1918                 if (pImpl->GetTextSearchListener())
1919                 {
1920                         result r = E_SUCCESS;
1921
1922                         int ordinal = 0;
1923
1924                         if (*pTotalCount > 0)
1925                         {
1926                                 ordinal = pImpl->GetAsyncSearchOrdinal();
1927                                 pImpl->SetAsyncSearchResult(*pTotalCount);
1928                         }
1929
1930                         if (pImpl->GetPendingAsyncSearchCount() > 0)
1931                         {
1932                                 return;
1933                         }
1934
1935                         std::unique_ptr<Integer> pCount(new (std::nothrow) Integer(*pTotalCount));
1936                         std::unique_ptr<Integer> pOrdinal(new (std::nothrow) Integer(ordinal));
1937                         std::unique_ptr<_TextSearchEventArg> pEventArg(new (std::nothrow) _TextSearchEventArg(WEB_EVENT_TEXTSEARCHLISTENER_TEXT_FOUND));
1938                         SysTryReturnVoidResult(NID_WEB_CTRL, pCount.get() && pOrdinal.get() && pEventArg.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
1939
1940                         r = pEventArg->SetEventInfo(_TextSearchEventArg::TOTAL_COUNT, *pCount.get());
1941                         SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1942                         pCount.release();
1943
1944                         r = pEventArg->SetEventInfo(_TextSearchEventArg::CURRENT_ORDINAL, *pOrdinal.get());
1945                         SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1946                         pOrdinal.release();
1947
1948                         r = pImpl->GetWebEvent()->FireAsync(*pEventArg.get());
1949                         SysTryReturnVoidResult(NID_WEB_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
1950                         pEventArg.release();
1951                 }
1952         }
1953 }
1954
1955
1956 class _JsBridgeHashCodeProvider
1957         : public Tizen::Base::Collection::IHashCodeProviderT< Tizen::Base::String >
1958 {
1959 public:
1960         _JsBridgeHashCodeProvider(){}
1961         virtual ~_JsBridgeHashCodeProvider(void) {}
1962
1963
1964         int GetHashCode(const Tizen::Base::String& obj) const
1965         {
1966                 return obj.GetHashCode();
1967         }
1968
1969 };
1970
1971
1972 //Comparer implementation
1973 class _JsBridgeComparer
1974         : public Tizen::Base::Collection::IComparerT< Tizen::Base::String >
1975 {
1976 public:
1977         _JsBridgeComparer(){}
1978         virtual ~_JsBridgeComparer(void) {}
1979
1980
1981         result Compare(const Tizen::Base::String& obj1, const Tizen::Base::String& obj2, int& cmp) const
1982         {
1983                 if (obj1 == obj2)
1984                 {
1985                         cmp = 0;
1986                 }
1987                 else
1988                 {
1989                         cmp = 1;
1990                 }
1991
1992                 return E_SUCCESS;
1993         }
1994
1995 };
1996
1997
1998 _WebImpl::_WebImpl(Web* pWeb, Tizen::Ui::_Control* pCore)
1999         : _ContainerImpl(pWeb, pCore)
2000         , __isFooterVisible(false)
2001         , __isKeypadVisible(false)
2002         , __isKeypadOpened(false)
2003         , __isLoadingErrorOccurred(false)
2004         , __isRedirectRequested(false)
2005         , __isCertificateRequested(false)
2006         , __isCertificateConfirmed(false)
2007         , __keypadBounds(0, 0, 0, 0)
2008         , __pWebCore(null)
2009         , __pUserLoadingListener(null)
2010         , __pUserUiListener(null)
2011         , __pUserUiListenerF(null)
2012         , __pUserKeypadEventListener(null)
2013         , __pTextSearchListener(null)
2014         , __pKeypad(null)
2015         , __pJsBridgeList(null)
2016         , __pJsProvider(null)
2017         , __pJsComparer(null)
2018         , __pWebDownloadHandler(null)
2019         , __pWebEvent(null)
2020         , __pAuthChallenge(null)
2021         , __pAuthPopup(null)
2022         , __pUserConfirmPopup(null)
2023         , __pCertConfirmPopup(null)
2024         , __pSelectBox(null)
2025         , __pDatePicker(null)
2026         , __pColorPicker(null)
2027         , __policy(WEB_DECISION_CONTINUE)
2028 {
2029         __textSearch.__searchAll = false;
2030         __textSearch.__searchForward = true;
2031         __textSearch.__caseSensitive = false;
2032         __textSearch.__pending = 0;
2033         __textSearch.__currentIndex = 1;
2034         __textSearch.__totalCount = -1;
2035         __textSearch.__text = L"";
2036 }
2037
2038
2039 _WebImpl::~_WebImpl()
2040 {
2041         RemoveEventListenerCallback();
2042 }
2043
2044 _WebImpl*
2045 _WebImpl::CreateWebImplN(Web* pControl, const Rectangle& bounds)
2046 {
2047         result r = E_SUCCESS;
2048
2049         r = GET_SIZE_INFO(Web).CheckInitialSizeValid(Dimension(bounds.width, bounds.height), _CONTROL_ORIENTATION_PORTRAIT);
2050         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
2051
2052         _Web* pCore = _Web::CreateWebN();
2053         SysTryReturn(NID_WEB_CTRL, pCore, null, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2054
2055         _WebImpl* pImpl = new (std::nothrow) _WebImpl(pControl, pCore);
2056
2057         r = CheckConstruction(pCore, pImpl);
2058         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
2059
2060         r = pImpl->InitializeBoundsProperties(GET_SIZE_INFO(Web), bounds, pCore->GetOrientation());
2061         SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2062
2063         r = pImpl->Construct();
2064         SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2065
2066         return pImpl;
2067
2068 CATCH:
2069         delete pImpl;
2070
2071         return null;
2072 }
2073
2074
2075 _WebImpl*
2076 _WebImpl::CreateWebImplN(Web* pControl, const FloatRectangle& bounds)
2077 {
2078         result r = E_SUCCESS;
2079
2080         r = GET_SIZE_INFO(Web).CheckInitialSizeValidF(FloatDimension(bounds.width, bounds.height), _CONTROL_ORIENTATION_PORTRAIT);
2081         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
2082
2083         _Web* pCore = _Web::CreateWebN();
2084         SysTryReturn(NID_WEB_CTRL, pCore, null, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2085
2086         _WebImpl* pImpl = new (std::nothrow) _WebImpl(pControl, pCore);
2087
2088         r = CheckConstruction(pCore, pImpl);
2089         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
2090
2091         r = pImpl->InitializeBoundsPropertiesF(GET_SIZE_INFO(Web), bounds, pCore->GetOrientation());
2092         SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2093
2094         r = pImpl->Construct();
2095         SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2096
2097         return pImpl;
2098
2099 CATCH:
2100         delete pImpl;
2101
2102         return null;
2103 }
2104
2105
2106 result
2107 _WebImpl::Construct(void)
2108 {
2109         result r = E_SUCCESS;
2110
2111         r = __mutex.Create();
2112         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2113
2114         r = __textSearch.__searchQueue.Construct();
2115         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2116
2117         r = InitJsBridgeList();
2118         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2119
2120         r = InitWebEvent();
2121         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2122
2123         __pWebCore = dynamic_cast< _Web* >(&(GetCore()));
2124         SysTryReturnResult(NID_WEB_CTRL, __pWebCore, E_SYSTEM, "A system error has been occurred. Failed to get web control");
2125
2126         return E_SUCCESS;
2127 }
2128
2129
2130 result
2131 _WebImpl::InitializeSetting(void)
2132 {
2133         result r = E_SUCCESS;
2134
2135         r = SetSetting(*__pWebCore->GetSetting());
2136         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2137
2138         _WebSettingImpl* pWebSettingImpl = _WebSettingImpl::GetInstance(__pWebCore->GetSetting());
2139
2140         SetCookieEnabled(pWebSettingImpl->IsCookieEnabled());
2141         SetPrivateBrowsingEnabled(pWebSettingImpl->IsPrivateBrowsingEnabled());
2142         SetZoomLevel(pWebSettingImpl->GetZoomLevel());
2143
2144         SetEventListenerCallback();
2145
2146         return E_SUCCESS;
2147 }
2148
2149
2150 bool
2151 _WebImpl::IsLayoutable(void) const
2152 {
2153         return true;
2154 }
2155
2156
2157 result
2158 _WebImpl::InitWebEvent(void)
2159 {
2160         __pWebEvent = std::unique_ptr<_WebEvent>(new (std::nothrow) _WebEvent());
2161         SysTryReturnResult(NID_WEB_CTRL, __pWebEvent.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
2162
2163         return __pWebEvent->Construct(*this);
2164 }
2165
2166
2167 _WebEvent*
2168 _WebImpl::GetWebEvent(void) const
2169 {
2170         return __pWebEvent.get();
2171 }
2172
2173
2174 Eina_Hash*
2175 _WebImpl::ConvertToSlpHeaderN(const HttpHeader& header) const
2176 {
2177         Eina_Hash* pHttpHeader = null;
2178
2179         std::unique_ptr<IList> pFieldNameList(header.GetFieldNamesN());
2180         if (pFieldNameList.get())
2181         {
2182                 pHttpHeader = eina_hash_string_small_new(FreeCharArray);
2183                 SysTryReturn(NID_WEB_CTRL, pHttpHeader, null, E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2184                 
2185                 int count = pFieldNameList->GetCount();
2186
2187                 for (int i = 0; i < count; i++)
2188                 {
2189                         String* pFieldName = dynamic_cast< String* >(pFieldNameList->GetAt(i));
2190                         SysTryCatch(NID_WEB_CTRL, pFieldName, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2191
2192                         std::unique_ptr<char[]> pKey(_StringConverter::CopyToCharArrayN(*pFieldName));
2193                         SysTryCatch(NID_WEB_CTRL, pKey.get(), , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2194
2195                         std::unique_ptr<IEnumerator> pFieldValueEnum(header.GetFieldValuesN(*pFieldName));
2196                         SysTryCatch(NID_WEB_CTRL, pFieldValueEnum.get(), , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2197                         
2198                         while (pFieldValueEnum->MoveNext() == E_SUCCESS)
2199                         {
2200                                 Eina_Bool ret = false;
2201
2202                                 String* pFieldValue = dynamic_cast< String* >(pFieldValueEnum->GetCurrent());
2203                                 SysTryCatch(NID_WEB_CTRL, pFieldValue, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2204
2205                                 std::unique_ptr<char[]> pValue(_StringConverter::CopyToCharArrayN(*pFieldValue));
2206                                 SysTryCatch(NID_WEB_CTRL, pValue.get(), , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2207
2208                                 ret = eina_hash_add(pHttpHeader, pKey.get(), pValue.release());
2209                                 SysTryCatch(NID_WEB_CTRL, ret == EINA_TRUE, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2210                         }
2211                 }
2212         }
2213         return pHttpHeader;
2214
2215 CATCH:
2216         eina_hash_free(pHttpHeader);
2217
2218         return null;
2219 }
2220
2221
2222 result
2223 _WebImpl::LoadUrl(const String& url) const
2224 {
2225         std::unique_ptr<char[]> pUrl(_StringConverter::CopyToCharArrayN(url));
2226         SysTryReturn(NID_WEB_CTRL, pUrl.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2227
2228         ewk_view_url_set(__pWebCore->GetWebNativeNode(), pUrl.get());
2229
2230         return E_SUCCESS;
2231 }
2232
2233
2234 result 
2235 _WebImpl::LoadUrl(const String& url, const HttpHeader& header)
2236 {
2237         std::unique_ptr<char[]> pUrl(_StringConverter::CopyToCharArrayN(url));
2238         SysTryReturn(NID_WEB_CTRL, pUrl.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2239         
2240         Eina_Hash* pHttpHeader = ConvertToSlpHeaderN(header);
2241
2242         ewk_view_url_request_set(__pWebCore->GetWebNativeNode(), pUrl.get(), EWK_HTTP_METHOD_GET, pHttpHeader, null);
2243
2244         eina_hash_free(pHttpHeader);
2245
2246         return E_SUCCESS;
2247 }
2248
2249
2250 result
2251 _WebImpl::LoadUrlWithPostRequest(const String& url, const HttpHeader& header, const ByteBuffer& body) const
2252 {
2253         std::unique_ptr<char[]> pUrl(_StringConverter::CopyToCharArrayN(url));
2254         SysTryReturn(NID_WEB_CTRL, pUrl.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2255
2256         Eina_Hash* pHttpHeader = ConvertToSlpHeaderN(header);
2257
2258         ewk_view_url_request_set(__pWebCore->GetWebNativeNode(), pUrl.get(), EWK_HTTP_METHOD_POST, pHttpHeader, reinterpret_cast< const char* >(body.GetPointer()));
2259
2260         eina_hash_free(pHttpHeader);
2261
2262         return E_SUCCESS;
2263 }
2264
2265
2266 result
2267 _WebImpl::LoadData(const String& baseUrl, const ByteBuffer& content, const String& mime, const String& encoding) const
2268 {
2269         SysTryReturnResult(NID_WEB_CTRL, content.GetLimit() > 0, E_INVALID_ARG, "The content buffer is empty.");
2270
2271         std::unique_ptr<char[]> pUrl(_StringConverter::CopyToCharArrayN(baseUrl));
2272         std::unique_ptr<char[]> pMime(_StringConverter::CopyToCharArrayN(mime));
2273         std::unique_ptr<char[]> pEncoding(_StringConverter::CopyToCharArrayN(encoding));
2274         SysTryReturn(NID_WEB_CTRL, pUrl.get() && pMime.get() && pEncoding.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2275
2276         ewk_view_contents_set(__pWebCore->GetWebNativeNode(), reinterpret_cast< const char* >(content.GetPointer()), content.GetLimit(), pMime.get(), pEncoding.get(), pUrl.get());
2277
2278         return E_SUCCESS;
2279 }
2280
2281
2282 void
2283 _WebImpl::Pause(void)
2284 {
2285         ewk_view_suspend(__pWebCore->GetWebNativeNode());
2286 }
2287
2288
2289 void
2290 _WebImpl::Resume(void)
2291 {
2292         ewk_view_resume(__pWebCore->GetWebNativeNode());
2293 }
2294
2295
2296 result
2297 _WebImpl::ShowSelectBoxPopup(bool isMultiSelect, const String& title, Eina_List* pItems, Evas_Object* pWebView, int selectedIndex)
2298 {
2299         __pSelectBox.reset();
2300
2301         int itemCount = eina_list_count(pItems);
2302         SysTryReturnResult(NID_WEB_CTRL, itemCount > 0, E_SYSTEM, "ItemCount is invalid.");
2303
2304         result r = E_SUCCESS;
2305
2306         std::unique_ptr<_SelectBox> pSelectBox(new (std::nothrow) _SelectBox());
2307         SysTryReturnResult(NID_WEB_CTRL, pSelectBox.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
2308
2309         r = pSelectBox->Construct(isMultiSelect, title, itemCount, pWebView);
2310         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2311
2312         r = pSelectBox->UpdateList(pItems, selectedIndex, false, false);
2313         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2314
2315         __pSelectBox = std::move(pSelectBox);
2316
2317         return __pSelectBox->ShowPopup();
2318 }
2319
2320
2321 result
2322 _WebImpl::UpdateSelectBoxPopup(Eina_List* pItems, int selectedIndex, bool isGroupedList)
2323 {
2324         SysTryReturnResult(NID_WEB_CTRL, __pSelectBox.get(), E_SYSTEM, "SlectBox instance does not exist.");
2325
2326         return __pSelectBox->UpdateList(pItems, selectedIndex, true, isGroupedList);
2327 }
2328
2329
2330 result
2331 _WebImpl::ClearSelectBoxPopup(void)
2332 {
2333         SysTryReturnResult(NID_WEB_CTRL, __pSelectBox.get(), E_SYSTEM, "SlectBox instance does not exist.");
2334
2335         __pSelectBox.reset();
2336
2337         return E_SUCCESS;
2338 }
2339
2340
2341 _InputPickerPopup*
2342 _WebImpl::GetDatepicker(void)
2343 {
2344         _InputPickerPopup* pInputPicker =null;
2345         if (__pDatePicker)
2346         {
2347                 pInputPicker =  __pDatePicker.get();
2348         }
2349         return pInputPicker;
2350 }
2351
2352
2353 _InputPickerPopup*
2354 _WebImpl::GetColorpicker(void)
2355 {
2356         _InputPickerPopup* pInputPicker =null;
2357         if (__pColorPicker)
2358         {
2359                 pInputPicker =  __pColorPicker.get();
2360         }
2361         return pInputPicker;
2362 }
2363
2364
2365 bool
2366 _WebImpl::CanGoBack(void) const
2367 {
2368         return static_cast< bool >(ewk_view_back_possible(__pWebCore->GetWebNativeNode()));
2369 }
2370
2371
2372 bool
2373 _WebImpl::CanGoForward(void) const
2374 {
2375         return static_cast< bool >(ewk_view_forward_possible(__pWebCore->GetWebNativeNode()));
2376 }
2377
2378
2379 void
2380 _WebImpl::GoBack(void) const
2381 {
2382         ewk_view_back(__pWebCore->GetWebNativeNode());
2383 }
2384
2385
2386 void
2387 _WebImpl::GoForward(void) const
2388 {
2389         ewk_view_forward(__pWebCore->GetWebNativeNode());
2390 }
2391
2392
2393 Tizen::Base::String
2394 _WebImpl::GetUrl(void) const
2395 {
2396         return ewk_view_url_get(__pWebCore->GetWebNativeNode());
2397 }
2398
2399
2400 Tizen::Base::String
2401 _WebImpl::GetTitle(void) const
2402 {
2403         return ewk_view_title_get(__pWebCore->GetWebNativeNode());
2404 }
2405
2406
2407 void
2408 _WebImpl::StopLoading(void) const
2409 {
2410         ewk_view_stop(__pWebCore->GetWebNativeNode());
2411 }
2412
2413
2414 void
2415 _WebImpl::Reload(void) const
2416 {
2417         ewk_view_reload_bypass_cache(__pWebCore->GetWebNativeNode());
2418 }
2419
2420
2421 String*
2422 _WebImpl::EvaluateJavascriptN(const String& scriptCode) const
2423 {
2424         if (scriptCode.GetLength())
2425         {
2426                 std::unique_ptr<char[]> pScript(_StringConverter::CopyToCharArrayN(scriptCode));
2427                 SysTryReturn(NID_WEB_CTRL, pScript.get(), null, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2428
2429                 _WebPresenter presenter;
2430                 presenter.InitAsyncProcess();
2431
2432                 ewk_view_script_execute(__pWebCore->GetWebNativeNode(), pScript.get(), OnScriptExecuted, &presenter);
2433
2434                 Tizen::Base::String* pResult = new (std::nothrow) Tizen::Base::String(L"");
2435                 SysTryReturn(NID_WEB_CTRL, pResult, null, E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2436                 presenter.WaitAsyncProcess(*pResult);
2437
2438                 return pResult;
2439         }
2440
2441         return null;
2442 }
2443
2444
2445 result
2446 _WebImpl::SetZoomLevel(float level)
2447 {
2448         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);
2449
2450         ewk_view_scale_set(__pWebCore->GetWebNativeNode(), static_cast< double >(level), 0, 0);
2451
2452         return E_SUCCESS;
2453 }
2454
2455
2456 float
2457 _WebImpl::GetZoomLevel(void) const
2458 {
2459         return static_cast< float >(ewk_view_scale_get(__pWebCore->GetWebNativeNode()));
2460 }
2461
2462
2463 const PageNavigationList*
2464 _WebImpl::GetBackForwardListN(void) const
2465 {
2466         result r = E_SUCCESS;
2467
2468         _PageNavigationListImpl* pNavigationListImpl = null;
2469         _HistoryItemImpl* pHistoryItemImpl = null;
2470
2471         std::unique_ptr<PageNavigationList> pNavigationList;
2472         std::unique_ptr<ArrayList, AllElementsDeleter> pHistoryList;
2473
2474         int backCount = 0;
2475         int forwardCount = 0;
2476
2477         String url(L"");
2478         String title(L"");
2479
2480         Ewk_History* pEwkHistoryList = ewk_view_history_get(__pWebCore->GetWebNativeNode());
2481         SysTryReturn(NID_WEB_CTRL, pEwkHistoryList, null, E_SYSTEM, "[%s] A system error has been occurred. Failed to get full history.", GetErrorMessage(E_SYSTEM));
2482
2483         Ewk_History_Item* pEwkItem = ewk_history_nth_item_get(pEwkHistoryList, 0);
2484         SysTryCatch(NID_WEB_CTRL, pEwkItem, , E_DATA_NOT_FOUND, "[%s] There is no history.", GetErrorMessage(E_DATA_NOT_FOUND));
2485
2486         pNavigationList = std::unique_ptr<PageNavigationList>(new (std::nothrow) PageNavigationList());
2487         SysTryCatch(NID_WEB_CTRL, pNavigationList.get(), , E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2488
2489         pNavigationListImpl = _PageNavigationListImpl::GetInstance(pNavigationList.get());
2490         SysTryCatch(NID_WEB_CTRL, pNavigationListImpl, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2491
2492         pHistoryList = std::unique_ptr<ArrayList, AllElementsDeleter>(new (std::nothrow) ArrayList());
2493         SysTryCatch(NID_WEB_CTRL, pHistoryList.get(), , E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2494
2495         r = pHistoryList->Construct();
2496         SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2497
2498         backCount = ewk_history_back_list_length_get(pEwkHistoryList);
2499         forwardCount = ewk_history_forward_list_length_get(pEwkHistoryList);
2500         SysLog(NID_WEB_CTRL, "The current value of backCount is %d, forwardCount is %d", backCount, forwardCount);
2501
2502         for (int i = -backCount; i < forwardCount + 1; i++)
2503         {
2504                 std::unique_ptr<HistoryItem> pHistoryItem(new (std::nothrow) HistoryItem());
2505                 SysTryCatch(NID_WEB_CTRL, pHistoryItem.get(), , E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2506
2507                 pHistoryItemImpl = _HistoryItemImpl::GetInstance(pHistoryItem.get());
2508                 SysTryCatch(NID_WEB_CTRL, pHistoryItemImpl, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2509
2510                 pEwkItem = ewk_history_nth_item_get(pEwkHistoryList, i);
2511                 SysTryCatch(NID_WEB_CTRL, pEwkItem, , E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2512
2513                 url = ewk_history_item_uri_get(pEwkItem);
2514                 title = ewk_history_item_title_get(pEwkItem);
2515                 SysLog(NID_WEB_CTRL, "The current value of url is %s, title is %s", url.GetPointer(), title.GetPointer());
2516
2517                 pHistoryItemImpl->SetHistoryItem(url, title);
2518
2519                 r = pHistoryList->Add(*pHistoryItem.get());
2520                 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2521                 pHistoryItem.release();
2522         }
2523
2524         pNavigationListImpl->SetPageNavigationList(pHistoryList.release(), backCount);
2525
2526         ewk_history_free(pEwkHistoryList);
2527
2528         return pNavigationList.release();
2529
2530 CATCH:
2531         ewk_history_free(pEwkHistoryList);
2532
2533         return null;
2534 }
2535
2536
2537 bool
2538 _WebImpl::SearchText(const String& text, bool searchForward)
2539 {
2540         result r = E_SUCCESS;
2541
2542         Ewk_Find_Options condition = static_cast< Ewk_Find_Options >(EWK_FIND_OPTIONS_SHOW_HIGHLIGHT | EWK_FIND_OPTIONS_CASE_INSENSITIVE);
2543
2544         if (!searchForward)
2545         {
2546             condition = static_cast < Ewk_Find_Options >(condition | EWK_FIND_OPTIONS_BACKWARDS);
2547         }
2548
2549         _WebPresenter presenter;
2550         presenter.InitAsyncProcess();
2551
2552         r = SynchronizeSearch(SEARCH_SYNC, __pWebCore->GetWebNativeNode(), condition, text, searchForward, false, &presenter);
2553         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2554
2555         int result = 0;
2556         presenter.WaitAsyncProcess(result);
2557
2558         return static_cast < bool >(result);
2559 }
2560
2561
2562 result
2563 _WebImpl::SearchTextAllAsync(const Tizen::Base::String& text, bool caseSensitive)
2564 {
2565         result r = E_SUCCESS;
2566
2567         Ewk_Find_Options condition = EWK_FIND_OPTIONS_SHOW_HIGHLIGHT;
2568
2569         if (!caseSensitive)
2570         {
2571             condition = static_cast <Ewk_Find_Options>(condition | EWK_FIND_OPTIONS_CASE_INSENSITIVE);
2572         }
2573
2574         r = SynchronizeSearch(SEARCH_ALL_ASYNC, __pWebCore->GetWebNativeNode(), condition, text, true, caseSensitive);
2575         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2576
2577         return E_SUCCESS;
2578 }
2579
2580
2581 result
2582 _WebImpl::SearchNextAsync(bool searchForward)
2583 {
2584         SysTryReturnResult(NID_WEB_CTRL, __textSearch.__searchAll && __textSearch.__totalCount > -1, E_INVALID_OPERATION, "The SearchTextAllAsync() method is not called or completed.");
2585         SysTryReturnResult(NID_WEB_CTRL, (searchForward && __textSearch.__currentIndex < __textSearch.__totalCount) || (!searchForward && __textSearch.__currentIndex > 1)
2586                 , E_OBJ_NOT_FOUND,  "The Next instance is not available.");
2587
2588         result r = E_SUCCESS;
2589
2590         Ewk_Find_Options condition = EWK_FIND_OPTIONS_SHOW_HIGHLIGHT;
2591
2592         if (__textSearch.__caseSensitive)
2593         {
2594                 condition = static_cast <Ewk_Find_Options>(condition | EWK_FIND_OPTIONS_CASE_INSENSITIVE);
2595         }
2596
2597         if (!searchForward)
2598         {
2599                 condition = static_cast <Ewk_Find_Options>(condition | EWK_FIND_OPTIONS_BACKWARDS);
2600         }
2601
2602         r = SynchronizeSearch(SEARCH_NEXT_ASYNC, __pWebCore->GetWebNativeNode(), condition, __textSearch.__text, searchForward);
2603         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
2604
2605         return E_SUCCESS;
2606 }
2607
2608
2609 result
2610 _WebImpl::SynchronizeSearch(_SearchType type, Evas_Object* pView, Ewk_Find_Options condition, const Tizen::Base::String& text, bool searchForward, bool caseSensitive,  _WebPresenter* pWebPresenter)
2611 {
2612         MutexGuard lock(__mutex);
2613
2614         std::unique_ptr<char[]> pText(_StringConverter::CopyToCharArrayN(text));
2615         SysTryReturn(NID_WEB_CTRL, pText.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2616
2617         switch (type)
2618         {
2619         case SEARCH_SYNC:
2620                 if (__textSearch.__searchAll)
2621                 {
2622                         DisableAsyncSearch();
2623
2624                         __textSearch.__searchQueue.Enqueue(this);
2625                         __textSearch.__searchQueue.Enqueue(pWebPresenter);
2626
2627                         ewk_view_text_find(pView, "", condition, MAX_TEXT_MATCH);
2628                         ewk_view_text_find(pView, pText.get(), condition, MAX_TEXT_MATCH);
2629                 }
2630                 else
2631                 {
2632                         __textSearch.__searchQueue.Enqueue(pWebPresenter);
2633
2634                         ewk_view_text_find(pView, pText.get(), condition, MAX_TEXT_MATCH);
2635                 }
2636                 break;
2637
2638         case SEARCH_ALL_ASYNC:
2639                 __textSearch.__searchAll = true;
2640                 __textSearch.__text = text;
2641                 __textSearch.__searchForward = true;
2642                 __textSearch.__caseSensitive = caseSensitive;
2643                 __textSearch.__totalCount = -1;
2644                 __textSearch.__currentIndex = 1;
2645
2646                 __textSearch.__searchQueue.Enqueue(this);
2647                 __textSearch.__searchQueue.Enqueue(this);
2648
2649                 ewk_view_text_find(pView, "", condition, MAX_TEXT_MATCH);
2650                 ewk_view_text_find(pView, pText.get(), condition, MAX_TEXT_MATCH);
2651                 break;
2652
2653         case SEARCH_NEXT_ASYNC:
2654                 __textSearch.__searchForward = searchForward;
2655
2656                 CalculateAsyncSearchOrdinal();
2657
2658                 __textSearch.__searchQueue.Enqueue(this);
2659
2660                 ewk_view_text_find(pView, pText.get(), condition, MAX_TEXT_MATCH);
2661                 break;
2662
2663         default:
2664                 SysAssert(false);
2665         }
2666
2667         return E_SUCCESS;
2668 }
2669
2670
2671 void
2672 _WebImpl::SetAsyncSearchResult(int totalCount)
2673 {
2674         __textSearch.__totalCount = totalCount;
2675 }
2676
2677
2678 _WebPresenter*
2679 _WebImpl::GetSearchPresenter(void)
2680 {
2681         MutexGuard lock(__mutex);
2682
2683         return dynamic_cast< _WebPresenter* >(__textSearch.__searchQueue.Dequeue());
2684 }
2685
2686
2687  int
2688  _WebImpl::GetPendingAsyncSearchCount(void) const
2689 {
2690         return __textSearch.__searchQueue.GetCount();
2691 }
2692
2693
2694 void
2695 _WebImpl::CalculateAsyncSearchOrdinal(void)
2696 {
2697         if (__textSearch.__searchForward)
2698         {
2699                 __textSearch.__currentIndex++;
2700         }
2701         else
2702         {
2703                 __textSearch.__currentIndex--;
2704         }
2705 }
2706
2707
2708  int
2709  _WebImpl::GetAsyncSearchOrdinal(void) const
2710 {
2711         return __textSearch.__currentIndex;
2712 }
2713
2714
2715  void
2716  _WebImpl::DisableAsyncSearch(void)
2717 {
2718         __textSearch.__searchAll = false;
2719 }
2720
2721
2722 result
2723 _WebImpl::SetSetting(const WebSetting& setting)
2724 {
2725         if (__pWebCore->GetWebNativeNode())
2726         {
2727                 Ewk_Context* pContext = ewk_view_context_get(__pWebCore->GetWebNativeNode());
2728                 Ewk_Settings* pSettings = ewk_view_settings_get(__pWebCore->GetWebNativeNode());
2729                 SysAssertf(pContext && pSettings, "Failed to get webkit instance.");
2730
2731                 std::unique_ptr<char[]> pEncoding(_StringConverter::CopyToCharArrayN(setting.GetDefaultTextEncoding()));
2732                 SysTryReturn(NID_WEB_CTRL, pEncoding.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2733
2734                 ewk_settings_default_encoding_set(pSettings, pEncoding.get());
2735
2736                 switch (setting.GetCacheControl())
2737                 {
2738                 case WEB_CACHE_VALIDATED:
2739                         ewk_context_cache_disabled_set(pContext, EINA_FALSE);
2740                         break;
2741
2742                 case WEB_CACHE_IGNORE:
2743                         ewk_context_cache_disabled_set(pContext, EINA_TRUE);
2744                         break;
2745
2746                 default:
2747                         SysAssert(false);
2748                 }
2749
2750                 if (setting.GetInputStyle() == INPUT_STYLE_OVERLAY)
2751                 {
2752                         ewk_settings_default_keypad_enabled_set(pSettings, EINA_TRUE);
2753                 }
2754                 else
2755                 {
2756                         ewk_settings_default_keypad_enabled_set(pSettings, EINA_FALSE);
2757                 }
2758
2759                 ewk_settings_font_default_size_set(pSettings, static_cast< Eina_Bool >(setting.GetFontSize()));
2760
2761                 ewk_settings_javascript_enabled_set(pSettings, static_cast< Eina_Bool >(setting.IsJavascriptEnabled()));
2762
2763                 ewk_settings_loads_images_automatically_set(pSettings, static_cast< Eina_Bool >(setting.IsAutoImageLoadEnabled()));
2764
2765                 std::unique_ptr<char[]> pAgent(_StringConverter::CopyToCharArrayN(setting.GetUserAgent()));
2766                 SysTryReturn(NID_WEB_CTRL, pAgent.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2767
2768                 ewk_view_user_agent_set(__pWebCore->GetWebNativeNode(), pAgent.get());
2769
2770                 ewk_settings_auto_fitting_set(pSettings, static_cast< Eina_Bool >(setting.IsAutoFittingEnabled()));
2771
2772                 ewk_settings_scripts_window_open_set(pSettings,  static_cast< Eina_Bool >(setting.IsJavaScriptPopupEnabled()));
2773
2774                 ewk_settings_form_candidate_data_enabled_set(pSettings,  static_cast< Eina_Bool >(setting.IsAutoFormDataShowEnabled()));
2775
2776                 ewk_settings_autofill_password_form_enabled_set(pSettings,  static_cast< Eina_Bool >(setting.IsAutoLoginFormFillEnabled()));
2777         }
2778
2779         _WebSettingImpl* pWebSettingImpl = _WebSettingImpl::GetInstance(__pWebCore->GetSetting());
2780
2781         pWebSettingImpl->SetCertificateErrorHandlingMode(setting.GetCertificateErrorHandlingMode());
2782         pWebSettingImpl->SetDefaultTextEncoding(setting.GetDefaultTextEncoding());
2783         pWebSettingImpl->SetCacheControl(setting.GetCacheControl());
2784         pWebSettingImpl->SetFontSize(setting.GetFontSize());
2785         pWebSettingImpl->SetJavascriptEnabled(setting.IsJavascriptEnabled());
2786         pWebSettingImpl->SetAutoImageLoadEnabled(setting.IsAutoImageLoadEnabled());
2787         pWebSettingImpl->SetInputStyle(setting.GetInputStyle());
2788         pWebSettingImpl->SetUserAgent(setting.GetUserAgent());
2789         pWebSettingImpl->SetAutoFittingEnabled(setting.IsAutoFittingEnabled());
2790         pWebSettingImpl->SetJavaScriptPopupEnabled(setting.IsJavaScriptPopupEnabled());
2791         pWebSettingImpl->SetGeolocationEnabled(setting.IsGeolocationEnabled());
2792         pWebSettingImpl->SetAutoFormDataShowEnabled(setting.IsAutoFormDataShowEnabled());
2793         pWebSettingImpl->SetAutoLoginFormFillEnabled(setting.IsAutoLoginFormFillEnabled());
2794
2795         return E_SUCCESS;
2796 }
2797
2798
2799 WebSetting
2800 _WebImpl::GetSetting(void) const
2801 {
2802         return *__pWebCore->GetSetting();
2803 }
2804
2805
2806 const HitElementResult*
2807 _WebImpl::GetElementByPointN(const Point& point) const
2808 {
2809         result r = E_SUCCESS;
2810
2811         _HitElementResultImpl* pHitElementResultImpl = null;
2812
2813         std::unique_ptr<HitElementResult> pHitElementResult;
2814         std::unique_ptr<Bitmap> pImage;
2815         std::unique_ptr<HashMap, AllElementsDeleter> pAttributeMap;
2816
2817         Point absPoint(__pWebCore->GetAbsoluteCoordinate(point));
2818
2819         Ewk_Hit_Test* pEwkHitTest = ewk_view_hit_test_new(__pWebCore->GetWebNativeNode(), absPoint.x, absPoint.y, EWK_HIT_TEST_MODE_ALL);
2820         SysTryReturn(NID_WEB_CTRL, pEwkHitTest, null, E_SYSTEM, "[%s] Failed to get hit test.", GetErrorMessage(E_SYSTEM));
2821
2822         Eina_Hash* pAttrHash = ewk_hit_test_attribute_hash_get(pEwkHitTest);
2823         Ewk_Hit_Test_Result_Context context = ewk_hit_test_result_context_get(pEwkHitTest);
2824         String url(ewk_hit_test_link_uri_get(pEwkHitTest));
2825         String tagName(ewk_hit_test_tag_name_get(pEwkHitTest));
2826         String nodeValue(ewk_hit_test_node_value_get(pEwkHitTest));
2827
2828         SysLog(NID_WEB_CTRL, "The current value of url is %ls, tag is %ls, value is %ls", url.GetPointer(), tagName.GetPointer(), nodeValue.GetPointer());
2829
2830         pHitElementResult = std::unique_ptr<HitElementResult>(new (std::nothrow) HitElementResult());
2831         SysTryCatch(NID_WEB_CTRL, pHitElementResult.get(), , E_OUT_OF_MEMORY, "[%s] Memory Allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2832
2833         pHitElementResultImpl = _HitElementResultImpl::GetInstance(pHitElementResult.get());
2834         SysTryCatch(NID_WEB_CTRL, pHitElementResultImpl, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2835
2836         if (context & EWK_HIT_TEST_RESULT_CONTEXT_IMAGE)
2837         {
2838                 ByteBuffer buf;
2839                 Image image;
2840                 ImageFormat format;
2841
2842                 int imageLength = ewk_hit_test_image_buffer_length_get(pEwkHitTest);
2843                 void* pImageBuffer = ewk_hit_test_image_buffer_get(pEwkHitTest);
2844                 const char* pExtension = ewk_hit_test_image_file_name_extension_get(pEwkHitTest);
2845                 SysLog(NID_WEB_CTRL, "The current value of imageBuffer is %u, bufferLength is %d, extension is %s", pImageBuffer, imageLength, pExtension);
2846
2847                 r = buf.Construct(imageLength);
2848                 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2849
2850                 r = buf.SetArray(reinterpret_cast< byte* >(pImageBuffer), 0, imageLength);
2851                 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2852
2853                 buf.Rewind();
2854
2855 //              ToDo : webkit doesn't support types such as IMG_FORMAT_WBMP and IMG_FORMAT_TIFF
2856 //              webkit support types such as ico and vp8 additionally
2857                 if (strcmp(pExtension, "gif") == 0)
2858                 {
2859                         format = IMG_FORMAT_GIF;
2860                 }
2861                 else if (strcmp(pExtension, "jpg") == 0)
2862                 {
2863                         format = IMG_FORMAT_JPG;
2864                 }
2865                 else if (strcmp(pExtension, "png") == 0)
2866                 {
2867                         format = IMG_FORMAT_PNG;
2868                 }
2869                 else if (strcmp(pExtension, "bmp") == 0)
2870                 {
2871                         format = IMG_FORMAT_BMP;
2872                 }
2873                 else
2874                 {
2875                         SysLogException(NID_WEB_CTRL, E_UNSUPPORTED_FORMAT, "[%s] The %s format is not supported", GetErrorMessage(E_UNSUPPORTED_FORMAT), pExtension);
2876                         goto CATCH;
2877                 }
2878
2879                 r = image.Construct();
2880                 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2881
2882                 pImage = std::unique_ptr<Bitmap>(image.DecodeN(buf, format, BITMAP_PIXEL_FORMAT_RGB565));
2883                 SysTryCatch(NID_WEB_CTRL, pImage.get(), , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2884         }
2885
2886         if (pAttrHash)
2887         {
2888                 pAttributeMap = std::unique_ptr<HashMap, AllElementsDeleter>(new (std::nothrow) HashMap());
2889                 SysTryCatch(NID_WEB_CTRL, pAttributeMap.get(), , E_OUT_OF_MEMORY, "[%s] Memory Allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
2890
2891                 r = pAttributeMap->Construct(eina_hash_population(pAttrHash));
2892                 SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2893
2894                 eina_hash_foreach(pAttrHash, AddHttpAttributeData, pAttributeMap.get());
2895                 SysTryCatch(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, , GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2896         }
2897
2898         pHitElementResultImpl->SetHitElementResult(pAttributeMap.release(), pImage.release(), tagName, nodeValue, url);
2899
2900         ewk_hit_test_free(pEwkHitTest);
2901
2902         return pHitElementResult.release();
2903
2904 CATCH:
2905         ewk_hit_test_free(pEwkHitTest);
2906
2907         return null;
2908 }
2909
2910
2911 const HitElementResult*
2912 _WebImpl::GetElementByPointN(const FloatPoint& point) const
2913 {
2914         const Point integerPoint(_CoordinateSystemUtils::ConvertToInteger(point));
2915
2916         std::unique_ptr<const HitElementResult> pHitElementResult(GetElementByPointN(integerPoint));
2917         SysTryReturn(NID_WEB_CTRL, pHitElementResult.get(), null, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
2918
2919         return pHitElementResult.release();
2920 }
2921
2922
2923 bool
2924 _WebImpl::IsLoading(void) const
2925 {
2926         double percent = ewk_view_load_progress_get(__pWebCore->GetWebNativeNode());
2927
2928         if (Double::Compare(percent, 0.0) > 0 && Double::Compare(percent, 1.0) < 0)
2929         {
2930                 return true;
2931         }
2932         else
2933         {
2934                 return false;
2935         }
2936 }
2937
2938
2939 String
2940 _WebImpl::GetTextFromBlock(void) const
2941 {
2942         return ewk_view_text_selection_text_get(__pWebCore->GetWebNativeNode());
2943 }
2944
2945
2946 bool
2947 _WebImpl::IsPrivateBrowsingEnabled(void) const
2948 {
2949         if (__pWebCore->GetWebNativeNode() == null)
2950         {
2951                 return _WebSettingImpl::GetInstance(__pWebCore->GetSetting())->IsPrivateBrowsingEnabled();
2952         }
2953
2954         Ewk_Settings* pSettings = ewk_view_settings_get(__pWebCore->GetWebNativeNode());
2955         SysAssertf(pSettings, "Failed to get webkit instance.");
2956
2957         return static_cast< bool >(ewk_settings_private_browsing_enabled_get(pSettings));
2958 }
2959
2960
2961 void
2962 _WebImpl::SetPrivateBrowsingEnabled(bool enable)
2963 {
2964         if (__pWebCore->GetWebNativeNode() == null)
2965         {
2966                 _WebSettingImpl::GetInstance(__pWebCore->GetSetting())->SetPrivateBrowsingEnabled(enable);
2967                 return;
2968         }
2969
2970         Ewk_Settings* pSettings = ewk_view_settings_get(__pWebCore->GetWebNativeNode());
2971         SysAssertf(pSettings, "Failed to get webkit instance.");
2972
2973         ewk_settings_private_browsing_enabled_set(pSettings, static_cast< Eina_Bool >(enable));
2974 }
2975
2976
2977 void
2978 _WebImpl::ClearHistory(void)
2979 {
2980         ewk_view_back_forward_list_clear(__pWebCore->GetWebNativeNode());
2981 }
2982
2983
2984 void
2985 _WebImpl::ClearCache(void)
2986 {
2987         Ewk_Context* pContext = ewk_view_context_get(__pWebCore->GetWebNativeNode());
2988         SysAssertf(pContext, "Failed to get webkit instance.");
2989
2990         ewk_context_cache_clear(pContext);
2991 }
2992
2993
2994 void
2995 _WebImpl::ClearCookie(void)
2996 {
2997         Ewk_Context* pContext = ewk_view_context_get(__pWebCore->GetWebNativeNode());
2998         Ewk_Cookie_Manager* pCookieManager =  ewk_context_cookie_manager_get(pContext);
2999         SysAssertf(pCookieManager, "Failed to get webkit instance.");
3000
3001         ewk_cookie_manager_cookies_clear(pCookieManager);
3002 }
3003
3004
3005 void
3006 _WebImpl::ClearFormData(void)
3007 {
3008         Ewk_Context* pContext = ewk_view_context_get(__pWebCore->GetWebNativeNode());
3009         SysAssertf(pContext, "Failed to get webkit instance.");
3010
3011         ewk_context_form_candidate_data_clear(pContext);
3012 }
3013
3014
3015 void
3016 _WebImpl::ClearLoginFormData(void)
3017 {
3018         Ewk_Context* pContext = ewk_view_context_get(__pWebCore->GetWebNativeNode());
3019         SysAssertf(pContext, "Failed to get webkit instance.");
3020
3021         ewk_context_form_password_data_clear(pContext);
3022 }
3023
3024
3025 bool
3026 _WebImpl::IsCookieEnabled(void) const
3027 {
3028         if (__pWebCore->GetWebNativeNode() == null)
3029         {
3030                 return _WebSettingImpl::GetInstance(__pWebCore->GetSetting())->IsCookieEnabled();
3031         }
3032
3033         Ewk_Context* pContext = ewk_view_context_get(__pWebCore->GetWebNativeNode());
3034         Ewk_Cookie_Manager* pCookieManager =  ewk_context_cookie_manager_get(pContext);
3035         SysAssertf(pCookieManager, "Failed to get webkit instance.");
3036
3037         _WebPresenter presenter;
3038         presenter.InitAsyncProcess();
3039
3040         ewk_cookie_manager_async_accept_policy_get(pCookieManager, OnCookiesPolicyGot, &presenter);
3041
3042         bool result = false;
3043         presenter.WaitAsyncProcess(result);
3044
3045         return result;
3046 }
3047
3048
3049 void
3050 _WebImpl::SetCookieEnabled(bool enable)
3051 {
3052         if (__pWebCore->GetWebNativeNode() == null)
3053         {
3054                 _WebSettingImpl::GetInstance(__pWebCore->GetSetting())->SetCookiEnabled(enable);
3055
3056                 return;
3057         }
3058
3059         Ewk_Context* pContext = ewk_view_context_get(__pWebCore->GetWebNativeNode());
3060         Ewk_Cookie_Manager* pCookieManager =  ewk_context_cookie_manager_get(pContext);
3061         SysAssertf(pCookieManager, "Failed to get webkit instance.");
3062
3063         if (enable)
3064         {
3065                 ewk_cookie_manager_accept_policy_set(pCookieManager, EWK_COOKIE_ACCEPT_POLICY_NO_THIRD_PARTY);
3066         }
3067         else
3068         {
3069                 ewk_cookie_manager_accept_policy_set(pCookieManager, EWK_COOKIE_ACCEPT_POLICY_NEVER);
3070                 ewk_cookie_manager_cookies_clear(pCookieManager);
3071         }
3072 }
3073
3074
3075 result 
3076 _WebImpl::SavePageAsPdf(const String& filePath, const Dimension* pSize) const
3077 {
3078         result r = E_SUCCESS;
3079
3080         std::unique_ptr<char[]> pFilePath(_StringConverter::CopyToCharArrayN(filePath));
3081         SysTryReturn(NID_WEB_CTRL, pFilePath.get(), GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3082
3083         String dirPath;
3084         String fileExtension = File::GetFileExtension(filePath);
3085         int pathLength = filePath.GetLength();
3086         int index = 0;
3087
3088         SysTryReturnResult(NID_WEB_CTRL, fileExtension.Equals("pdf", false), E_INVALID_ARG, "Invalid argument(s) is used. File extension is not pdf.");
3089
3090         r = filePath.LastIndexOf(L"/", pathLength - 1, index);
3091         SysTryReturnResult(NID_WEB_CTRL, r == E_SUCCESS, E_INVALID_ARG, "Invalid argument(s) is used. Directory path is invalid.");
3092         r = filePath.SubString(0, index + 1, dirPath);
3093         SysTryReturnResult(NID_WEB_CTRL, r == E_SUCCESS, E_INVALID_ARG, "Invalid argument(s) is used. Directory path is invalid.");
3094
3095         std::unique_ptr<char[]> pDirPath(_StringConverter::CopyToCharArrayN(dirPath));
3096         SysTryReturnResult(NID_WEB_CTRL, access(pDirPath.get(), W_OK) == 0, E_INACCESSIBLE_PATH, "Directory permission is read-only.");
3097
3098         if (pSize)
3099         {
3100                 SysTryReturnResult(NID_WEB_CTRL, pSize->width > 0 && pSize->height > 0, E_INVALID_ARG, "Invalid argument(s) is used. Size of pdf file is invalid.");
3101
3102                 ewk_view_contents_pdf_get(__pWebCore->GetWebNativeNode(), pSize->width, pSize->height, pFilePath.get());
3103         }
3104         else
3105         {
3106                 Evas_Coord contentsWidth;
3107                 Evas_Coord contentsHeight;
3108
3109                 ewk_view_contents_size_get(__pWebCore->GetWebNativeNode(), &contentsWidth, &contentsHeight);
3110                 ewk_view_contents_pdf_get(__pWebCore->GetWebNativeNode(), contentsWidth, contentsHeight, pFilePath.get());
3111         }
3112
3113         return E_SUCCESS;
3114 }
3115
3116
3117 bool
3118 _WebImpl::IsMimeSupported(const String& mime) const
3119 {
3120         std::unique_ptr<char[]> pMime(_StringConverter::CopyToCharArrayN(mime));
3121         SysTryReturn(NID_WEB_CTRL, pMime.get(), false, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3122
3123         return static_cast< bool >(ewk_frame_can_show_mime_type(ewk_view_main_frame_get(__pWebCore->GetWebNativeNode()), pMime.get()));
3124 }
3125
3126
3127 void
3128 _WebImpl::SetLoadingListener(ILoadingListener* pLoadingListener)
3129 {
3130         __pUserLoadingListener = const_cast< ILoadingListener* >(pLoadingListener);
3131 }
3132
3133
3134 void
3135 _WebImpl::SetWebUiEventListener(IWebUiEventListener* pUiEventListener)
3136 {
3137         __pUserUiListener = pUiEventListener;
3138 }
3139
3140
3141 void
3142 _WebImpl::SetWebUiEventListenerF(IWebUiEventListenerF* pUiEventListener)
3143 {
3144         __pUserUiListenerF = pUiEventListener;
3145 }
3146
3147
3148 void
3149 _WebImpl::SetWebKeypadEventListener(IWebKeypadEventListener* pKeypadEventListener)
3150 {
3151         __pUserKeypadEventListener = pKeypadEventListener;
3152 }
3153
3154
3155 void
3156 _WebImpl::SetDownloadListener(IWebDownloadListener* pDownLoadListener)
3157 {
3158         if (__pWebDownloadHandler.get() == null)
3159         {
3160                 __pWebDownloadHandler = std::unique_ptr<_WebDataHandler>(new (std::nothrow) _WebDataHandler());
3161                 SysTryReturnVoidResult(NID_WEB_CTRL, __pWebDownloadHandler.get(), E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
3162         }
3163
3164         __pWebDownloadHandler->SetDownloadListener(pDownLoadListener);
3165         __pWebDownloadHandler->SetWebEvent(__pWebEvent.get());
3166 }
3167
3168
3169 void
3170 _WebImpl::SetTextSearchListener(ITextSearchListener* pTextSearchListener)
3171 {
3172         __pTextSearchListener = pTextSearchListener;
3173 }
3174
3175
3176 void
3177 _WebImpl::SetScrollEnabled(bool enable)
3178 {
3179         _WebSettingImpl::GetInstance(__pWebCore->GetSetting())->SetScrollEnabled(enable);
3180 }
3181
3182
3183 bool
3184 _WebImpl::IsScrollEnabled(void) const
3185 {
3186         return _WebSettingImpl::GetInstance(__pWebCore->GetSetting())->IsScrollEnabled();
3187 }
3188
3189
3190 result
3191 _WebImpl::InitJsBridgeList(void)
3192 {
3193         result r = E_SUCCESS;
3194
3195         __pJsProvider = std::unique_ptr<_JsBridgeHashCodeProvider>(new (std::nothrow) _JsBridgeHashCodeProvider());
3196         SysTryReturnResult(NID_WEB_CTRL, __pJsProvider.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
3197
3198         __pJsComparer = std::unique_ptr<_JsBridgeComparer>(new (std::nothrow) _JsBridgeComparer());
3199         SysTryReturnResult(NID_WEB_CTRL, __pJsComparer.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
3200
3201         std::unique_ptr<HashMapT< String, IJavaScriptBridge* > > pJsBridgeList(new (std::nothrow) HashMapT< String, IJavaScriptBridge* >);
3202         SysTryReturnResult(NID_WEB_CTRL, pJsBridgeList.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
3203
3204         r = pJsBridgeList->Construct(0, 0, *__pJsProvider.get(), *__pJsComparer.get());
3205         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3206
3207         __pJsBridgeList = std::move(pJsBridgeList);
3208
3209         return E_SUCCESS;
3210 }
3211
3212
3213 result
3214 _WebImpl::AddJavaScriptBridge(const IJavaScriptBridge& jsBridge)
3215 {
3216         result r = E_SUCCESS;
3217
3218         IJavaScriptBridge* pJsBridge = const_cast< IJavaScriptBridge* >(&jsBridge);
3219         String key(pJsBridge->GetName());
3220
3221         r = __pJsBridgeList->Add(key, pJsBridge);
3222         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3223
3224         return E_SUCCESS;
3225 }
3226
3227
3228 result
3229 _WebImpl::RemoveJavaScriptBridge(const IJavaScriptBridge& jsBridge)
3230 {
3231         result r = E_SUCCESS;
3232
3233         IJavaScriptBridge* pJsBridge = const_cast< IJavaScriptBridge* >(&jsBridge);
3234         String key(pJsBridge->GetName());
3235
3236         r = __pJsBridgeList->Remove(key);
3237         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3238
3239         return E_SUCCESS;
3240 }
3241
3242
3243 IJavaScriptBridge*
3244 _WebImpl::FindJsInterface(const IJsonValue* pValue) const
3245 {
3246         result r = E_SUCCESS;
3247
3248         IJsonValue* pJsonValue = null;
3249         IJavaScriptBridge* pJsBridge = null;
3250
3251         String key(L"name");
3252
3253         const JsonObject* pJsonObject = dynamic_cast< const JsonObject* >(pValue);
3254         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));
3255
3256         r = pJsonObject->GetValue(&key, pJsonValue);
3257         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS && pJsonValue, null, r, "[%s] Propagating.", GetErrorMessage(r));
3258
3259         JsonString* pBridgeName = dynamic_cast< JsonString* >(pJsonValue);
3260         SysTryReturn(NID_WEB_CTRL, pBridgeName, null, E_INVALID_ARG, "[%s] Invalid argument(s) is used. name key is missing." , GetErrorMessage(E_INVALID_ARG));
3261
3262         r = __pJsBridgeList->GetValue(static_cast< String >(*pBridgeName), pJsBridge);
3263         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
3264
3265         return pJsBridge;
3266 }
3267
3268
3269 ILoadingListener*
3270 _WebImpl::GetLoadingListener(void) const
3271 {
3272         return __pUserLoadingListener;
3273 }
3274
3275
3276 IWebUiEventListener*
3277 _WebImpl::GetUiEventListener(void) const
3278 {
3279         return __pUserUiListener;
3280 }
3281
3282
3283 IWebUiEventListenerF*
3284 _WebImpl::GetUiEventListenerF(void) const
3285 {
3286         return __pUserUiListenerF;
3287 }
3288
3289
3290 IWebKeypadEventListener*
3291 _WebImpl::GetWebKeypadEventListener(void) const
3292 {
3293         return __pUserKeypadEventListener;
3294 }
3295
3296
3297 ITextSearchListener*
3298 _WebImpl::GetTextSearchListener(void) const
3299 {
3300         return __pTextSearchListener;
3301 }
3302
3303
3304 void
3305 _WebImpl::SetEventListenerCallback(void) const
3306 {
3307         Evas_Object* pWebNativeNode = __pWebCore->GetWebNativeNode();
3308         if (pWebNativeNode)
3309         {
3310                 _EcoreEvas* pEcoreEvas = GetEcoreEvasMgr()->GetEcoreEvas();
3311                 SysAssertf(pEcoreEvas, "Failed to get Ui ecore evas");
3312
3313                 Evas_Object* pWinObject = pEcoreEvas->GetWindowObject();
3314                 SysAssertf(pWinObject, "Failed to get Ui window evas object");
3315
3316                 Ewk_View_Smart_Data* pSmartData = (Ewk_View_Smart_Data*) evas_object_smart_data_get(pWebNativeNode);
3317                 SysAssertf(pSmartData, "Failed to request");
3318
3319                 Ewk_View_Smart_Class *pSmart = const_cast<Ewk_View_Smart_Class*>(pSmartData->api);
3320                 SysAssertf(pSmart, "Failed to request");
3321
3322                 pSmart->popup_menu_show = OnSelectBoxRequested;
3323                 pSmart->popup_menu_hide = OnSelectBoxClosed;
3324                 pSmart->popup_menu_update = OnSelectBoxUpdateRequested;
3325
3326                 pSmart->input_picker_show = OnDatePickerProviderRequested;
3327                 pSmart->input_picker_color_request = OnColorPickerProviderRequested;
3328                 pSmart->input_picker_color_dismiss = OnColorPickerProviderDismissed;
3329
3330                 evas_object_data_set(pWebNativeNode, WEB_CTRL, this);
3331
3332                 // add loading event callbacks for ILoadingListener
3333                 evas_object_smart_callback_add(pWebNativeNode, "create,window", OnWebWindowCreateRequested, this);
3334                 evas_object_smart_callback_add(pWebNativeNode, "close,window", OnWebWindowClosedRequested, this);
3335
3336                 evas_object_smart_callback_add(pWebNativeNode, "policy,navigation,decide", OnLoadingRequested, this);
3337                 evas_object_smart_callback_add(pWebNativeNode, "load,started", OnLoadingStarted, this);
3338                 evas_object_smart_callback_add(pWebNativeNode, "load,finished", OnLoadingCompleted, this);
3339                 evas_object_smart_callback_add(pWebNativeNode, "load,progress", OnEstimatedProgress, this);
3340                 evas_object_smart_callback_add(pWebNativeNode, "load,progress,finished", OnProgressCompleted, this);
3341                 evas_object_smart_callback_add(pWebNativeNode, "load,stop", OnLoadingCanceled, this);
3342                 evas_object_smart_callback_add(pWebNativeNode, "load,error", OnLoadingErrorOccurred, this);
3343                 evas_object_smart_callback_add(pWebNativeNode, "title,changed", OnPageTitleReceived, this);
3344                 evas_object_smart_callback_add(pWebNativeNode, "load,committed", OnLoadingCommitted, this);
3345
3346                 evas_object_smart_callback_add(pWebNativeNode, "requestToNative,json", OnHandleJavaScriptRequest, this);
3347
3348                 evas_object_smart_callback_add(pWinObject, "focus,in", OnWindowObjectFocusGained, this);
3349
3350                 evas_object_smart_callback_add(pWebNativeNode, "inputmethod,changed", OnWebKeypadStateChanged, this);
3351                 evas_object_smart_callback_add(pWebNativeNode, "editorclient,ime,opened", OnWebKeypadOpened, this);
3352                 evas_object_smart_callback_add(pWebNativeNode, "editorclient,ime,closed", OnWebKeypadClosed, this);
3353
3354                 evas_object_smart_callback_add(pWebNativeNode, "authentication,challenge", OnHttpAuthenticationRequested, this);
3355                 evas_object_smart_callback_add(pWebNativeNode, "authentication,canceled", OnHttpAuthenticationCanceled, this);
3356
3357                 evas_object_smart_callback_add(pWebNativeNode, "geolocation,permission,request", OnGeolocationPermissionRequested, this);
3358
3359                 ewk_view_javascript_alert_callback_set(pWebNativeNode, OnScriptAlertRequested, const_cast< _WebImpl* >(this));
3360                 ewk_view_javascript_prompt_callback_set(pWebNativeNode, OnScriptPromptRequested, const_cast< _WebImpl* >(this));
3361                 ewk_view_javascript_confirm_callback_set(pWebNativeNode, OnScriptConfirmRequested, const_cast< _WebImpl* >(this));
3362
3363                 evas_object_smart_callback_add(pWebNativeNode, "policy,response,decide", OnWebDataReceived, this);
3364
3365                 evas_object_smart_callback_add(pWebNativeNode, "load,nonemptylayout,finished", OnWebPageShowRequested, this);
3366                 evas_object_smart_callback_add(pWebNativeNode, "request,certificate,confirm", OnCertificateRequested, this);
3367                 evas_object_smart_callback_add(pWebNativeNode, "usermedia,permission,request", OnGetUserMediaPermissionRequsted, this);
3368
3369                 evas_object_smart_callback_add(pWebNativeNode, "notification,permission,request", OnNotificationPermissionRequested, this);
3370                 evas_object_smart_callback_add(pWebNativeNode, "notification,show", OnNotificationShow, this);
3371                 evas_object_smart_callback_add(pWebNativeNode, "notification,cancel", OnNotificationCancel, this);
3372
3373                 evas_object_smart_callback_add(pWebNativeNode, "protocolhandler,registration,requested", OnProtocolHandlerRegistrationRequested, this);
3374                 evas_object_smart_callback_add(pWebNativeNode, "protocolhandler,isregistered", OnIsProtocolHandlerRegistered, this);
3375                 evas_object_smart_callback_add(pWebNativeNode, "protocolhandler,unregistration,requested", OnProtocolHandlerUnregistrationRequested, this);
3376
3377                 evas_object_smart_callback_add(pWebNativeNode, "contenthandler,registration,requested", OnContentHandlerRegistrationRequested, this);
3378                 evas_object_smart_callback_add(pWebNativeNode, "contenthandler,isregistered", OnIsContentHandlerRegistered, this);
3379                 evas_object_smart_callback_add(pWebNativeNode, "contenthandler,unregistration,requested", OnContentHandlerUnregistrationRequested, this);
3380                 evas_object_smart_callback_add(pWebNativeNode, "text,found", OnTextFound, this);
3381
3382                 evas_object_smart_callback_add(pWebNativeNode, "touchmove,handled", OnWebPreventDefaultTriggered, this);
3383                 evas_object_smart_callback_add(pWebNativeNode, "icon,received", OnFaviconReceived, this);
3384
3385                 evas_object_smart_callback_add(pWebNativeNode, "text,style,state", OnWebPageBlockSelected, this);
3386
3387                 Ewk_Context* pContext = ewk_view_context_get(pWebNativeNode);
3388                 SysAssertf(pContext, "Failed to get webkit instance.");
3389                 ewk_context_did_start_download_callback_set(pContext, OnDidStartDownloadCallback, const_cast< _WebImpl* >(this));
3390                 ewk_view_open_panel_callback_set(pWebNativeNode, OnSelectUploadFile, const_cast< _WebImpl* >(this));
3391
3392                 evas_object_event_callback_add(pWebNativeNode, EVAS_CALLBACK_FOCUS_IN, OnWebNativeNodeFocusGained, this);
3393         }
3394 }
3395
3396
3397 void
3398 _WebImpl::RemoveEventListenerCallback(void) const
3399 {
3400         Evas_Object* pWebNativeNode = __pWebCore->GetWebNativeNode();
3401         if (pWebNativeNode)
3402         {
3403                 _EcoreEvas* pEcoreEvas = GetEcoreEvasMgr()->GetEcoreEvas();
3404                 SysAssertf(pEcoreEvas, "Failed to get Ui ecore evas");
3405
3406                 Evas_Object* pWinObject = pEcoreEvas->GetWindowObject();
3407                 SysAssertf(pWinObject, "Failed to get Ui window evas object");
3408
3409                 evas_object_smart_callback_del(pWebNativeNode, "create,window", OnWebWindowCreateRequested);
3410                 evas_object_smart_callback_del(pWebNativeNode, "close,window", OnWebWindowClosedRequested);
3411
3412                 evas_object_smart_callback_del(pWebNativeNode, "policy,navigation,decide", OnLoadingRequested);
3413                 evas_object_smart_callback_del(pWebNativeNode, "load,started", OnLoadingStarted);
3414                 evas_object_smart_callback_del(pWebNativeNode, "load,finished", OnLoadingCompleted);
3415                 evas_object_smart_callback_del(pWebNativeNode, "load,progress", OnEstimatedProgress);
3416                 evas_object_smart_callback_del(pWebNativeNode, "load,progress,finished", OnProgressCompleted);
3417                 evas_object_smart_callback_del(pWebNativeNode, "load,stop", OnLoadingCanceled);
3418                 evas_object_smart_callback_del(pWebNativeNode, "load,error", OnLoadingErrorOccurred);
3419                 evas_object_smart_callback_del(pWebNativeNode, "title,changed", OnPageTitleReceived);
3420
3421                 evas_object_smart_callback_del(pWebNativeNode, "requestToNative,json", OnHandleJavaScriptRequest);
3422
3423                 evas_object_smart_callback_del_full(pWinObject, "focus,in", OnWindowObjectFocusGained, this);
3424
3425                 evas_object_smart_callback_del(pWebNativeNode, "inputmethod,changed", OnWebKeypadStateChanged);
3426                 evas_object_smart_callback_del(pWebNativeNode, "editorclient,ime,opened", OnWebKeypadOpened);
3427                 evas_object_smart_callback_del(pWebNativeNode, "editorclient,ime,closed", OnWebKeypadClosed);
3428
3429                 evas_object_smart_callback_del(pWebNativeNode, "authentication,challenge", OnHttpAuthenticationRequested);
3430                 evas_object_smart_callback_del(pWebNativeNode, "authentication,canceled", OnHttpAuthenticationCanceled);
3431
3432                 evas_object_smart_callback_del(pWebNativeNode, "geolocation,permission,request", OnGeolocationPermissionRequested);
3433
3434                 ewk_view_javascript_alert_callback_set(null, null, null);
3435                 ewk_view_javascript_prompt_callback_set(null, null, null);
3436                 ewk_view_javascript_confirm_callback_set(null, null, null);
3437
3438                 evas_object_smart_callback_del(pWebNativeNode, "policy,response,decide", OnWebDataReceived);
3439
3440                 evas_object_smart_callback_del(pWebNativeNode, "load,nonemptylayout,finished", OnWebPageShowRequested);
3441                 evas_object_smart_callback_del(pWebNativeNode, "request,certificate,confirm", OnCertificateRequested);
3442                 evas_object_smart_callback_del(pWebNativeNode, "usermedia,permission,request", OnGetUserMediaPermissionRequsted);
3443
3444                 evas_object_smart_callback_del(pWebNativeNode, "notification,permission,request", OnNotificationPermissionRequested);
3445                 evas_object_smart_callback_del(pWebNativeNode, "notification,show", OnNotificationShow);
3446                 evas_object_smart_callback_del(pWebNativeNode, "notification,cancel", OnNotificationCancel);
3447                 evas_object_smart_callback_del(pWebNativeNode, "protocolhandler,registration,requested", OnProtocolHandlerRegistrationRequested);
3448                 evas_object_smart_callback_del(pWebNativeNode, "protocolhandler,isregistered", OnIsProtocolHandlerRegistered);
3449                 evas_object_smart_callback_del(pWebNativeNode, "protocolhandler,unregistration,requested", OnProtocolHandlerUnregistrationRequested);
3450
3451                 evas_object_smart_callback_del(pWebNativeNode, "contenthandler,registration,requested", OnContentHandlerRegistrationRequested);
3452                 evas_object_smart_callback_del(pWebNativeNode, "contenthandler,isregistered", OnIsContentHandlerRegistered);
3453                 evas_object_smart_callback_del(pWebNativeNode, "contenthandler,unregistration,requested", OnContentHandlerUnregistrationRequested);
3454
3455                 evas_object_smart_callback_del(pWebNativeNode, "text,found", OnTextFound);
3456
3457                 evas_object_smart_callback_del(pWebNativeNode, "touchmove,handled", OnWebPreventDefaultTriggered);
3458                 evas_object_smart_callback_del(pWebNativeNode, "icon,received", OnFaviconReceived);
3459
3460                 evas_object_smart_callback_del(pWebNativeNode, "text,style,state", OnWebPageBlockSelected);
3461
3462                 ewk_view_open_panel_callback_set(null, null, null);
3463
3464                 evas_object_event_callback_del(pWebNativeNode, EVAS_CALLBACK_FOCUS_IN, OnWebNativeNodeFocusGained);
3465         }
3466 }
3467
3468
3469 result
3470 _WebImpl::SetBlockSelectionPosition(const Point& startPoint)
3471 {
3472         Evas_Object* pWebNativeNode = __pWebCore->GetWebNativeNode();
3473
3474         Ewk_View_Smart_Data* pSmartData = (Ewk_View_Smart_Data*) evas_object_smart_data_get(pWebNativeNode);
3475         SysAssertf(pSmartData, "Failed to request");
3476
3477         Point absPoint(__pWebCore->GetAbsoluteCoordinate(startPoint));
3478
3479         Eina_Bool ret = pSmartData->api->text_selection_down(pSmartData, absPoint.x, absPoint.y);
3480         if (ret)
3481         {
3482                 pSmartData->api->text_selection_up(pSmartData, absPoint.x, absPoint.y);
3483
3484                 Ewk_Hit_Test* pEwkHitTest = ewk_view_hit_test_new(__pWebCore->GetWebNativeNode(), absPoint.x, absPoint.y, EWK_HIT_TEST_MODE_ALL);
3485                 SysTryReturnResult(NID_WEB_CTRL, pEwkHitTest, E_SYSTEM, "Failed to get hit test.");
3486
3487                 String tagName(ewk_hit_test_tag_name_get(pEwkHitTest));
3488
3489                 if (tagName.Equals(L"INPUT", false) || tagName.Equals(L"TEXTAREA", false))
3490                 {
3491                         ewk_view_command_execute(pWebNativeNode, "SelectWord", 0);
3492                 }
3493         }
3494
3495         SysTryReturnResult(NID_WEB_CTRL, GetTextFromBlock().GetLength() > 0, E_INVALID_ARG, "Failed to set text selection up.");
3496
3497         return E_SUCCESS;
3498 }
3499
3500
3501 result
3502 _WebImpl::SetBlockSelectionPosition(const FloatPoint& startPoint)
3503 {
3504         return SetBlockSelectionPosition(_CoordinateSystemUtils::ConvertToInteger(startPoint));
3505 }
3506
3507
3508 void
3509 _WebImpl::ReleaseBlock(void)
3510 {
3511         ewk_view_command_execute(__pWebCore->GetWebNativeNode(), "Unselect", 0);
3512 }
3513
3514
3515 void
3516 _WebImpl::GetBlockRange(Point& startPoint, Point& endPoint) const
3517 {
3518         FloatPoint tempStartPoint;
3519         FloatPoint tempEndPoint;
3520
3521         GetBlockRange(tempStartPoint, tempEndPoint);
3522
3523         startPoint = _CoordinateSystemUtils::ConvertToInteger(tempStartPoint);
3524         endPoint = _CoordinateSystemUtils::ConvertToInteger(tempEndPoint);
3525 }
3526
3527
3528 void
3529 _WebImpl::GetBlockRange(FloatPoint& startPoint, FloatPoint& endPoint) const
3530 {
3531         Eina_Rectangle leftHandle;
3532         Eina_Rectangle rightHandle;
3533
3534         ewk_view_text_selection_range_get(__pWebCore->GetWebNativeNode(), &leftHandle, &rightHandle);
3535
3536         startPoint.x = _CoordinateSystemUtils::ConvertToFloat(leftHandle.x);
3537         startPoint.y = _CoordinateSystemUtils::ConvertToFloat(leftHandle.y);
3538         endPoint.x = _CoordinateSystemUtils::ConvertToFloat(rightHandle.x + rightHandle.w);
3539         endPoint.y = _CoordinateSystemUtils::ConvertToFloat(rightHandle.y + rightHandle.h);
3540
3541         if ((endPoint.x != 0.0f) && (endPoint.y != 0.0f))
3542         {
3543                 startPoint = __pWebCore->GetRelativeCoordinate(startPoint);
3544                 endPoint = __pWebCore->GetRelativeCoordinate(endPoint);
3545         }
3546 }
3547
3548
3549 Bitmap*
3550 _WebImpl::GetFaviconN(void) const
3551 {
3552         result r = E_SUCCESS;
3553
3554         Evas_Object* pView = __pWebCore->GetWebNativeNode();
3555
3556         Evas* pEvas = evas_object_evas_get(pView);
3557         Ewk_Context* pContext = ewk_view_context_get(pView);
3558         SysAssertf(pEvas && pContext, "Failed to request");
3559
3560         const char* pUrl = ewk_view_url_get(pView);
3561
3562         Tizen::Graphics::BufferInfo bufferInfo;
3563         Tizen::Base::ByteBuffer byteBuffer;
3564
3565         std::unique_ptr<Bitmap> pBitmapImage(new (std::nothrow) Bitmap());
3566         SysTryReturn(NID_WEB_CTRL, pBitmapImage.get(), null, E_OUT_OF_MEMORY, "[%s] Memory Allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
3567
3568         Evas_Object* pFavicon = ewk_context_icon_database_icon_object_add(pContext, pUrl, pEvas);
3569         if (!pFavicon)
3570         {
3571                 return null;
3572         }
3573
3574         r = _Utility::GetPixelBufferFromEvasObject(pFavicon,  bufferInfo);
3575         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
3576
3577         const Dimension dimension(bufferInfo.width, bufferInfo.height);
3578
3579         r = byteBuffer.Construct((byte*)bufferInfo.pPixels, 0, dimension.height * dimension.width * 32, dimension.height * dimension.width * 32 );
3580         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
3581
3582         r = pBitmapImage->Construct(byteBuffer, dimension, BITMAP_PIXEL_FORMAT_ARGB8888);
3583         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
3584
3585         return pBitmapImage.release();
3586
3587 }
3588
3589
3590 void
3591 _WebImpl::ScrollBy(const Tizen::Graphics::Point& diff)
3592 {
3593         ewk_view_scroll_by(__pWebCore->GetWebNativeNode(), diff.x, diff.y);
3594 }
3595
3596
3597 void
3598 _WebImpl::ScrollTo(const Tizen::Graphics::Point& dest)
3599 {
3600         ewk_view_scroll_set(__pWebCore->GetWebNativeNode(), dest.x, dest.y);
3601 }
3602
3603
3604 Point
3605 _WebImpl::GetScrollPosition(void) const
3606 {
3607         Point position;
3608
3609         ewk_view_scroll_pos_get(__pWebCore->GetWebNativeNode(), &position.x, &position.y);
3610
3611         return position;
3612 }
3613
3614
3615 Dimension
3616 _WebImpl::GetPageSize(void) const
3617 {
3618         Evas_Coord width = 0;
3619         Evas_Coord height = 0;
3620
3621         ewk_view_contents_size_get(__pWebCore->GetWebNativeNode(), &width, &height);
3622
3623         Dimension size(static_cast< int >(width), static_cast< int >(height));
3624
3625         return size;
3626 }
3627
3628
3629 void
3630 _WebImpl::SetLoadingErrorOccurred(bool arg)
3631 {
3632         __isLoadingErrorOccurred = arg;
3633 }
3634
3635
3636 bool
3637 _WebImpl::IsLoadingErrorOccurred(void) const
3638 {
3639         return __isLoadingErrorOccurred;
3640 }
3641
3642
3643 void
3644 _WebImpl::SetRedirectRequested(bool arg)
3645 {
3646         __isRedirectRequested = arg;
3647 }
3648
3649
3650 bool
3651 _WebImpl::IsRedirectRequested(void) const
3652 {
3653         return __isRedirectRequested;
3654 }
3655
3656
3657 void
3658 _WebImpl::SetPolicyDecision(DecisionPolicy policy)
3659 {
3660         __policy = policy;
3661 }
3662
3663
3664 DecisionPolicy
3665 _WebImpl::GetPolicyDecision(void) const
3666 {
3667         return __policy;
3668 }
3669
3670
3671 void
3672 _WebImpl::SetCertificateRequested(bool arg)
3673 {
3674         __isCertificateRequested = arg;
3675 }
3676
3677
3678 bool
3679 _WebImpl::IsCertificateRequested(void) const
3680 {
3681         return __isCertificateRequested;
3682 }
3683
3684
3685 bool
3686 _WebImpl::IsCertificateConfirmed(void) const
3687 {
3688         return __isCertificateConfirmed;
3689 }
3690
3691
3692 result
3693 _WebImpl::LaunchAppControl(const IEventArg& arg)
3694 {
3695         result r = E_SUCCESS;
3696
3697         IEventArg* pArg = const_cast< IEventArg* >(&arg);
3698         _WebEventArg* pWebEventArg = dynamic_cast< _WebEventArg* >(pArg);
3699         SysTryReturnResult(NID_WEB_CTRL, pWebEventArg, E_INVALID_ARG, "Type casting failed. argument must be IEventArg type.");
3700
3701         String operationId(L"");
3702         String uriPattern(pWebEventArg->GetEventMessage());
3703         SysLog(NID_WEB_CTRL, "The current value of web event type is %d", pWebEventArg->GetEventType());
3704
3705         switch (pWebEventArg->GetEventType())
3706         {
3707         case WEB_EVENT_REQUEST_RTSP:
3708         {
3709                 String ext;
3710                 String mimeType;
3711                 int uriLength = uriPattern.GetLength();
3712                 int index;
3713
3714                 operationId = L"http://tizen.org/appcontrol/operation/view";
3715
3716                 r = uriPattern.LastIndexOf(L".", uriLength - 1, index);
3717                 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3718
3719                 r = uriPattern.SubString(index + 1, ext);
3720                 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3721
3722                 r = _AppControlManager::GetMimeFromExt(ext, mimeType);
3723                 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3724
3725                 r = _AppControlImpl::FindAndStart(operationId, &uriPattern, &mimeType, null, null, null);
3726                 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3727
3728                 return r;
3729         }
3730         case WEB_EVENT_REQUEST_TEL:
3731         {
3732                 operationId = L"http://tizen.org/appcontrol/operation/dial";
3733                 break;
3734         }
3735         case WEB_EVENT_REQUEST_EMAIL:
3736         //fall through
3737         case WEB_EVENT_REQUEST_SMS:
3738         //fall through
3739         case WEB_EVENT_REQUEST_MMS:
3740         {
3741                 operationId = L"http://tizen.org/appcontrol/operation/compose";
3742                 break;
3743         }
3744         case WEB_EVENT_REQUEST_UNKNOWN:
3745         {
3746                 operationId = L"http://tizen.org/appcontrol/operation/view";
3747                 break;
3748         }
3749         default:
3750                 SysAssert(false);
3751                 break;
3752         }
3753
3754         r = _AppControlImpl::FindAndStart(operationId, &uriPattern, null, null, null, null);
3755         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3756
3757         return r;
3758 }
3759
3760
3761 result
3762 _WebImpl::SetFullScreenKeypad(void)
3763 {
3764         result r = E_SUCCESS;
3765
3766         std::unique_ptr<Keypad> pKeypad(new (std::nothrow) Keypad());
3767         SysTryReturnResult(NID_WEB_CTRL, pKeypad.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
3768
3769         r = pKeypad->Construct(KEYPAD_STYLE_NORMAL, 100);
3770         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3771
3772         String text(ewk_view_focused_input_element_value_get(__pWebCore->GetWebNativeNode()));
3773         pKeypad->SetText(text);
3774
3775         r = pKeypad->SetShowState(true);
3776         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3777
3778         r = pKeypad->Show();
3779         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
3780
3781         pKeypad->AddTextEventListener(*this);
3782
3783         __pKeypad = std::move(pKeypad);
3784
3785         return E_SUCCESS;
3786 }
3787
3788
3789 void
3790 _WebImpl::RemoveFullScreenKeypad(void)
3791 {
3792         __pKeypad->RemoveTextEventListener(*this);
3793
3794         __pKeypad.reset();
3795 }
3796
3797
3798 bool
3799 _WebImpl::IsFooterVisible(void) const
3800 {
3801         return __isFooterVisible;
3802 }
3803
3804
3805 void
3806 _WebImpl::SetFooterVisibleState(bool isFooterVisible)
3807 {
3808         __isFooterVisible = isFooterVisible;
3809 }
3810
3811
3812 bool
3813 _WebImpl::IsKeypadVisible(void) const
3814 {
3815         return __isKeypadVisible;
3816 }
3817
3818
3819 void
3820 _WebImpl::SetKeypadVisibleState(bool isKeypadVisible)
3821 {
3822         __isKeypadVisible = isKeypadVisible;
3823 }
3824
3825
3826 bool 
3827 _WebImpl::IsKeypadOpened(void) const
3828 {
3829         return __isKeypadOpened;
3830 }
3831
3832 void 
3833 _WebImpl::SetKeypadOpened(bool isKeypadOpened)
3834 {
3835         __isKeypadOpened = isKeypadOpened;
3836 }
3837
3838
3839 Rectangle
3840 _WebImpl::GetPreviousKeypadBounds(void) const
3841 {
3842         return __keypadBounds;
3843 }
3844
3845
3846 void 
3847 _WebImpl::SetPreviousKeypadBounds(Rectangle& bounds)
3848 {
3849         __keypadBounds = bounds;
3850 }
3851
3852
3853 void
3854 _WebImpl::OnTextValueChangeCanceled(const Control& source)
3855 {
3856         RemoveFullScreenKeypad();
3857 }
3858
3859
3860 void
3861 _WebImpl::OnTextValueChanged(const Control& source)
3862 {
3863         std::unique_ptr<char[]> pText(_StringConverter::CopyToCharArrayN(__pKeypad->GetText()));
3864
3865         ewk_view_focused_input_element_value_set(__pWebCore->GetWebNativeNode(), pText.get());
3866
3867         RemoveFullScreenKeypad();
3868 }
3869
3870
3871 result
3872 _WebImpl::OnHandleJavaScriptRequestByEventArg(const IEventArg& arg)
3873 {
3874         const _JsBridgeArg* pEventArg = dynamic_cast< const _JsBridgeArg* >(&arg);
3875         SysTryReturnResult(NID_WEB_CTRL, pEventArg, E_INVALID_ARG, "Invalid argument(s) is used. arg is not _JsBridgeArg object.");
3876
3877         std::unique_ptr<IJsonValue> pJsonValue(JsonParser::ParseN(*(pEventArg->GetJsonData())));
3878         SysTryReturn(NID_WEB_JSON, GetLastResult() == E_SUCCESS, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3879
3880         IJavaScriptBridge* pJsInterface = FindJsInterface(pJsonValue.get());
3881         SysTryReturnResult(NID_WEB_CTRL, pJsInterface, E_OBJ_NOT_FOUND, "JsInterface instance is not available.");
3882
3883         pJsInterface->HandleJavaScriptRequestN(pJsonValue.release());
3884
3885         return E_SUCCESS;
3886 }
3887
3888
3889 result
3890 _WebImpl::OnHandleLoadingEvent(const IEventArg& arg)
3891 {
3892         result r = E_SUCCESS;
3893
3894         const _LoadingEventArg* pEventArg = dynamic_cast< const _LoadingEventArg* >(&arg);
3895         SysTryReturnResult(NID_WEB_CTRL, pEventArg, E_INVALID_ARG, "Invalid argument(s) is used. Type casting failed. argument must be IEventArg type.");
3896
3897         SysLog(NID_WEB_CTRL, "The current value of event type is %d", pEventArg->GetEventType());
3898
3899         ILoadingListener* pLoadingListner = GetLoadingListener();
3900         SysTryReturnResult(NID_WEB_CTRL, pLoadingListner, E_SYSTEM, "A system error has been occurred. Loading listener was not set or null.");
3901
3902         switch (pEventArg->GetEventType())
3903         {
3904         case WEB_EVENT_LOADINGLISTENER_STARTED:
3905         {
3906                 pLoadingListner->OnLoadingStarted();
3907                 break;
3908         }
3909
3910         case WEB_EVENT_LOADINGLISTENER_PROGRESS:
3911         {
3912                 const Integer* pProgressPercentage = dynamic_cast< const Integer* >(pEventArg->GetEventInfo(_LoadingEventArg::ESTIMATED_PROGRESS));
3913                 SysTryReturn(NID_WEB_CTRL, pProgressPercentage, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3914
3915                 pLoadingListner->OnEstimatedProgress(pProgressPercentage->ToInt());
3916                 break;
3917         }
3918
3919         case WEB_EVENT_LOADINGLISTENER_PAGETITLE_RECEIVED:
3920         {
3921                 const String* pPageTitle = dynamic_cast< const String* >(pEventArg->GetEventInfo(_LoadingEventArg::PAGE_TITLE));
3922                 SysTryReturn(NID_WEB_CTRL, pPageTitle, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3923
3924                 pLoadingListner->OnPageTitleReceived(*pPageTitle);
3925                 break;
3926         }
3927
3928         case WEB_EVENT_LOADINGLISTENER_CANCELED:
3929         {
3930                 pLoadingListner->OnLoadingCanceled();
3931                 break;
3932         }
3933
3934         case WEB_EVENT_LOADINGLISTENER_ERROR_OCCURRED:
3935         {
3936                 const Integer* pErrorType = dynamic_cast< const Integer* >(pEventArg->GetEventInfo(_LoadingEventArg::ERROR_TYPE));
3937                 SysTryReturn(NID_WEB_CTRL, pErrorType, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3938
3939                 const String* pErrorMessage = dynamic_cast< const String* >(pEventArg->GetEventInfo(_LoadingEventArg::ERROR_MESSAGE));
3940                 SysTryReturn(NID_WEB_CTRL, pErrorMessage, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3941
3942                 LoadingErrorType errorType = ConvertErrorCode(pErrorType->ToInt());
3943
3944                 pLoadingListner->OnLoadingErrorOccurred(errorType, *pErrorMessage);
3945                 break;
3946         }
3947
3948         case WEB_EVENT_LOADINGLISTENER_COMPLETED:
3949         {
3950                 pLoadingListner->OnLoadingCompleted();
3951                 break;
3952         }
3953
3954         case WEB_EVENT_LOADINGLISTENER_AUTHENTICATION_CANCELED:
3955         {
3956                 pLoadingListner->OnHttpAuthenticationCanceled();
3957                 break;
3958         }
3959
3960         case WEB_EVENT_LOADINGLISTENER_FAVICON_RECEIVED:
3961         {
3962                 std::unique_ptr<Bitmap> pFavicon(GetFaviconN());
3963                 SysTryReturn(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
3964
3965                 if (pFavicon.get())
3966                 {
3967                         pLoadingListner->OnFaviconReceived(*pFavicon.get());
3968                 }
3969                 break;
3970         }
3971
3972         default:
3973         {
3974                 SysAssert(false);
3975         }
3976         }
3977
3978         return r;
3979 }
3980
3981
3982 result
3983 _WebImpl::OnHandleWebDownloadEvent(const IEventArg& arg)
3984 {
3985         result r = E_SUCCESS;
3986
3987         const _WebDownloadEventArg* pEventArg = dynamic_cast< const _WebDownloadEventArg* >(&arg);
3988         SysTryReturnResult(NID_WEB_CTRL, pEventArg, E_INVALID_ARG, "Invalid argument(s) is used. Type casting failed. argument must be IEventArg type.");
3989
3990         SysLog(NID_WEB_CTRL, "The current value of event type is %d", pEventArg->GetEventType());
3991
3992         IWebDownloadListener* pWebDownloadListener = __pWebDownloadHandler->GetDownloadListener();
3993         SysTryReturnResult(NID_WEB_CTRL, pWebDownloadListener, E_SYSTEM, "A system error has been occurred. Web Downloading listener was not set or null.");
3994
3995         switch (pEventArg->GetEventType())
3996         {
3997         case WEB_EVENT_WEBDOWNLOADLISTENER_DATA_RECEIVED:
3998         {
3999                 const ByteBuffer* pChunk = dynamic_cast< const ByteBuffer* >(pEventArg->GetEventInfo(_WebDownloadEventArg::CHUNKED_DATA));
4000                 SysTryReturn(NID_WEB_CTRL, pChunk, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4001
4002                 pWebDownloadListener->OnWebChunkedDataReceived(*pChunk);
4003                 break;
4004         }
4005
4006         case WEB_EVENT_WEBDOWNLOADLISTENER_COMPLETED:
4007         {
4008                 pWebDownloadListener->OnWebDataDownloadCompleted();
4009                 break;
4010         }
4011
4012         case WEB_EVENT_WEBDOWNLOADLISTENER_FAILED:
4013         {
4014                 const Integer* pErrorType = dynamic_cast< const Integer* >(pEventArg->GetEventInfo(_WebDownloadEventArg::ERROR_TYPE));
4015                 SysTryReturn(NID_WEB_CTRL, pErrorType, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4016
4017                 LoadingErrorType errorType = static_cast < LoadingErrorType >(pErrorType->ToInt());
4018
4019                 pWebDownloadListener->OnWebDownloadFailed(errorType);
4020                 break;
4021         }
4022
4023         default:
4024         {
4025                 SysAssert(false);
4026         }
4027         }
4028
4029         return r;
4030 }
4031
4032
4033 result
4034 _WebImpl::OnHandleWebUiEvent(const IEventArg& arg)
4035 {
4036         const _WebUiEventArg* pEventArg = dynamic_cast< const _WebUiEventArg* >(&arg);
4037         SysTryReturnResult(NID_WEB_CTRL, pEventArg, E_INVALID_ARG, "Invalid argument(s) is used. Type casting failed. argument must be IEventArg type.");
4038
4039         SysLog(NID_WEB_CTRL, "The current value of event type is %d", pEventArg->GetEventType());
4040
4041         SysTryReturnResult(NID_WEB_CTRL, __pUserUiListener, E_SYSTEM, "A system error has been occurred. Web UI listener was not set or null.");
4042
4043         switch (pEventArg->GetEventType())
4044         {
4045         case WEB_EVENT_WEBUIEVENTLISTENER_PAGE_BLOCK_SELECTED:
4046         {
4047                 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4048
4049                 Point* pStartPoint = const_cast< Point* >(dynamic_cast< const Point* >(pEventArg->GetEventInfo(_WebUiEventArg::BLOCK_START)));
4050                 SysTryReturn(NID_WEB_CTRL, pStartPoint, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4051
4052                 Point* pEndPoint = const_cast< Point* >(dynamic_cast< const Point* >(pEventArg->GetEventInfo(_WebUiEventArg::BLOCK_END)));
4053                 SysTryReturn(NID_WEB_CTRL, pEndPoint, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4054
4055                 __pUserUiListener->OnWebPageBlockSelected(*pWeb, *pStartPoint, *pEndPoint);
4056                 break;
4057         }
4058
4059         case WEB_EVENT_WEBUIEVENTLISTENER_PAGE_SHOW_REQUESTED:
4060         {
4061                 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4062
4063                 __pUserUiListener->OnWebPageShowRequested(*pWeb);
4064                 break;
4065         }
4066
4067         case WEB_EVENT_WEBUIEVENTLISTENER_WINDOW_CLOSE_REQUSTED:
4068         {
4069                 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4070
4071                 __pUserUiListener->OnWebWindowCloseRequested(*pWeb);
4072                 break;
4073         }
4074
4075         case WEB_EVENT_WEBUIEVENTLISTENER_PREVENT_DEFAULT_TRIGGERED:
4076         {
4077                 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4078
4079                 Boolean* pTrigger = const_cast< Boolean* >(dynamic_cast< const Boolean* >(pEventArg->GetEventInfo(_WebUiEventArg::PREVENT_DEFAULT)));
4080                 SysTryReturn(NID_WEB_CTRL, pTrigger, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4081
4082                 __pUserUiListener->OnWebPreventDefaultTriggered(*pWeb, pTrigger->ToBool());
4083                 break;
4084         }
4085
4086         default:
4087         {
4088                 SysAssert(false);
4089         }
4090         }
4091
4092         return E_SUCCESS;
4093 }
4094
4095
4096 result
4097 _WebImpl::OnHandleWebUiEventF(const IEventArg& arg)
4098 {
4099         const _WebUiEventArg* pEventArg = dynamic_cast< const _WebUiEventArg* >(&arg);
4100         SysTryReturnResult(NID_WEB_CTRL, pEventArg, E_INVALID_ARG, "Invalid argument(s) is used. Type casting failed. argument must be IEventArg type.");
4101
4102         SysLog(NID_WEB_CTRL, "The current value of event type is %d", pEventArg->GetEventType());
4103
4104         SysTryReturnResult(NID_WEB_CTRL, __pUserUiListenerF, E_SYSTEM, "A system error has been occurred. Web UI listener was not set or null.");
4105
4106         switch (pEventArg->GetEventType())
4107         {
4108         case WEB_EVENT_WEBUIEVENTLISTENER_PAGE_BLOCK_SELECTED_FLOAT:
4109         {
4110                 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4111
4112                 FloatPoint* pStartPoint = const_cast< FloatPoint* >(dynamic_cast< const FloatPoint* >(pEventArg->GetEventInfo(_WebUiEventArg::BLOCK_START)));
4113                 SysTryReturn(NID_WEB_CTRL, pStartPoint, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4114
4115                 FloatPoint* pEndPoint = const_cast< FloatPoint* >(dynamic_cast< const FloatPoint* >(pEventArg->GetEventInfo(_WebUiEventArg::BLOCK_END)));
4116                 SysTryReturn(NID_WEB_CTRL, pEndPoint, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4117
4118                 __pUserUiListenerF->OnWebPageBlockSelected(*pWeb, *pStartPoint, *pEndPoint);
4119                 break;
4120         }
4121
4122         case WEB_EVENT_WEBUIEVENTLISTENER_PAGE_SHOW_REQUESTED_FLOAT:
4123         {
4124                 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4125
4126                 __pUserUiListenerF->OnWebPageShowRequested(*pWeb);
4127                 break;
4128         }
4129
4130         case WEB_EVENT_WEBUIEVENTLISTENER_WINDOW_CLOSE_REQUSTED_FLOAT:
4131         {
4132                 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4133
4134                 __pUserUiListenerF->OnWebWindowCloseRequested(*pWeb);
4135                 break;
4136         }
4137
4138         case WEB_EVENT_WEBUIEVENTLISTENER_PREVENT_DEFAULT_TRIGGERED_FLOAT:
4139         {
4140                 Web* pWeb = dynamic_cast< Web* >(&(this->GetPublic()));
4141
4142                 Boolean* pTrigger = const_cast< Boolean* >(dynamic_cast< const Boolean* >(pEventArg->GetEventInfo(_WebUiEventArg::PREVENT_DEFAULT)));
4143                 SysTryReturn(NID_WEB_CTRL, pTrigger, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4144
4145                 __pUserUiListenerF->OnWebPreventDefaultTriggered(*pWeb, pTrigger->ToBool());
4146                 break;
4147         }
4148
4149         default:
4150         {
4151                 SysAssert(false);
4152         }
4153         }
4154
4155         return E_SUCCESS;
4156 }
4157
4158
4159 result
4160 _WebImpl::OnHandleTextSearchEvent(const IEventArg& arg)
4161 {
4162         result r = E_SUCCESS;
4163
4164         const _TextSearchEventArg* pEventArg = dynamic_cast< const _TextSearchEventArg* >(&arg);
4165         SysTryReturnResult(NID_WEB_CTRL, pEventArg, E_INVALID_ARG, "Invalid argument(s) is used. Type casting failed. argument must be IEventArg type.");
4166
4167         SysLog(NID_WEB_CTRL, "The current value of event type is %d", pEventArg->GetEventType());
4168
4169         ITextSearchListener* pTextSearchListner = GetTextSearchListener();
4170         SysTryReturnResult(NID_WEB_CTRL, pTextSearchListner, E_SYSTEM, "A system error has been occurred. Web text search listener was not set or null.");
4171
4172         switch (pEventArg->GetEventType())
4173         {
4174         case WEB_EVENT_TEXTSEARCHLISTENER_TEXT_FOUND:
4175         {
4176                 Integer* pTotalCount= dynamic_cast< Integer* >(const_cast< Object* >(pEventArg->GetEventInfo(_TextSearchEventArg::TOTAL_COUNT)));
4177                 SysTryReturn(NID_WEB_CTRL, pTotalCount, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4178
4179                 Integer* pCurrentOrdinal = dynamic_cast< Integer* >(const_cast< Object* >(pEventArg->GetEventInfo(_TextSearchEventArg::CURRENT_ORDINAL)));
4180                 SysTryReturn(NID_WEB_CTRL, pCurrentOrdinal, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4181
4182                 pTextSearchListner->OnTextFound(pTotalCount->ToInt(), pCurrentOrdinal->ToInt());
4183                 break;
4184         }
4185
4186         default:
4187         {
4188                 SysAssert(false);
4189         }
4190         }
4191
4192         return r;
4193 }
4194
4195
4196 result
4197 _WebImpl::HttpAuthenticationRequested(Ewk_Auth_Challenge* pChallenge)
4198 {
4199         result r = E_SUCCESS;
4200
4201         String host(ewk_auth_challenge_url_get(pChallenge));
4202         String realm(ewk_auth_challenge_realm_get(pChallenge));
4203
4204         __pAuthChallenge.reset();
4205
4206         std::unique_ptr<AuthenticationChallenge> pAuthChallenge(new (std::nothrow) AuthenticationChallenge());
4207         SysTryReturnResult(NID_WEB_CTRL, pAuthChallenge, E_OUT_OF_MEMORY, "Memory Allocation failed.");
4208
4209         _AuthenticationChallengeImpl* pAuthImpl = _AuthenticationChallengeImpl::GetInstance(pAuthChallenge.get());
4210         SysTryReturn(NID_WEB_CTRL, pAuthImpl,  GetLastResult(),  GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4211
4212         pAuthImpl->SetAuthenticationChallengeHandler(pChallenge);
4213         pAuthImpl->SetWebEvasObject(__pWebCore->GetWebNativeNode());
4214
4215         __pAuthChallenge = std::move(pAuthChallenge);
4216
4217         ewk_auth_challenge_suspend(pChallenge);
4218         if (__pUserLoadingListener && __pUserLoadingListener->OnHttpAuthenticationRequestedN(host, realm, *__pAuthChallenge.get()))
4219         {
4220                 __pAuthChallenge.release();
4221         }
4222         else
4223         {
4224                 r = ShowAuthenticationPopup(host, realm, __pAuthChallenge.get());
4225                 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4226         }
4227
4228         return E_SUCCESS;
4229 }
4230
4231
4232 result
4233 _WebImpl::ShowAuthenticationPopup(const String& host, const String& realm, AuthenticationChallenge* pAuthChallenge)
4234 {
4235         result r = E_SUCCESS;
4236
4237         std::unique_ptr<_AuthConfirmPopup> pAuthPopup(new (std::nothrow) _AuthConfirmPopup());
4238         SysTryReturnResult(NID_WEB_CTRL, pAuthPopup, E_OUT_OF_MEMORY, "Memory Allocation failed.");
4239
4240         r = pAuthPopup->Construct(host, realm, pAuthChallenge);
4241         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4242
4243         __pAuthPopup = std::move(pAuthPopup);
4244
4245         int modalResult = 0;
4246         r = __pAuthPopup->ShowAndWait(modalResult);
4247         SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
4248
4249 CATCH:
4250         __pAuthPopup.reset();
4251
4252         return r;
4253 }
4254
4255
4256 result
4257 _WebImpl::ShowCertificateConfirmPopup(_CertificatePopupMode userConfirmMode, Ewk_Certificate_Policy_Decision* pPolicy)
4258 {
4259         result r = E_SUCCESS;
4260
4261         std::unique_ptr<_CertificateConfirmPopup> pCertConfirmPopup(new (std::nothrow) _CertificateConfirmPopup());
4262         SysTryReturnResult(NID_WEB_CTRL, pCertConfirmPopup.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
4263
4264         r = pCertConfirmPopup->Construct(userConfirmMode, pPolicy);
4265         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4266
4267         __pCertConfirmPopup = std::move(pCertConfirmPopup);
4268
4269         int modalResult = 0;
4270         r = __pCertConfirmPopup->ShowAndWait(modalResult);
4271         SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
4272
4273         if (userConfirmMode == CERTIFICATE_POPUP_MODE_USER_CONFIRM)
4274         {
4275                 __isCertificateConfirmed = __pCertConfirmPopup->GetConfirmResult();
4276         }
4277
4278 CATCH:
4279         __pCertConfirmPopup.reset();
4280
4281         return r;
4282 }
4283
4284 result
4285 _WebImpl::ShowUserConfirmPopup(_UserConfirmMode userConfirmMode, void* pPolicy)
4286 {
4287         result r = E_SUCCESS;
4288
4289         std::unique_ptr<_UserConfirmPopup> pUserConfirmPopup(new (std::nothrow) _UserConfirmPopup());
4290         SysTryReturnResult(NID_WEB_CTRL, pUserConfirmPopup.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
4291
4292         r = pUserConfirmPopup->Construct(userConfirmMode, pPolicy, true);
4293         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4294
4295         __pUserConfirmPopup = std::move(pUserConfirmPopup);
4296
4297         int modalResult = 0;
4298         r = __pUserConfirmPopup->ShowAndWait(modalResult);
4299         SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
4300         
4301 CATCH:
4302         __pUserConfirmPopup.reset();
4303
4304         return r;
4305 }
4306
4307 result
4308 _WebImpl::ShowUserConfirmPopupAsync(_UserConfirmMode userConfirmMode, void* pPolicy)
4309 {
4310         result r = E_SUCCESS;
4311
4312         std::unique_ptr<_UserConfirmPopup> pUserConfirmPopup(new (std::nothrow) _UserConfirmPopup());
4313         SysTryReturnResult(NID_WEB_CTRL, pUserConfirmPopup.get(), E_OUT_OF_MEMORY, "Memory Allocation failed.");
4314
4315         r = pUserConfirmPopup->Construct(userConfirmMode, pPolicy, false);
4316         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4317
4318         __pUserConfirmPopup = std::move(pUserConfirmPopup);
4319
4320         r = __pUserConfirmPopup->ShowPopup();
4321         SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
4322
4323         __pUserConfirmPopup.release();
4324
4325         return E_SUCCESS;
4326
4327 CATCH:
4328         __pUserConfirmPopup.reset();
4329
4330         return r;
4331 }
4332
4333
4334 _Form*
4335 _WebImpl::GetParentFormCore(_Control* pControlCore)
4336 {
4337         String parentName;
4338         _Form* pFormCore = null;
4339
4340         _Control* pParentControlCore = dynamic_cast< _Control* >(pControlCore->GetParent());
4341         if (!pParentControlCore)
4342         {
4343                 return null;
4344         }
4345
4346         pFormCore = dynamic_cast< _Form* >(pParentControlCore);
4347         if (pFormCore)
4348         {
4349                 return pFormCore;
4350         }
4351
4352         return GetParentFormCore(pParentControlCore);
4353 }
4354
4355
4356 bool 
4357 _WebImpl::OnFocusGained(const _ControlImpl& source)
4358 {
4359         return true;
4360 }
4361
4362
4363 bool 
4364 _WebImpl::OnFocusLost(const _ControlImpl& source)
4365 {
4366         if(IsKeypadVisible() == true)
4367         {
4368                 SetKeypadOpened(true);
4369
4370                 SetKeypadVisibleState(false);
4371         }
4372
4373         evas_object_focus_set(__pWebCore->GetWebNativeNode(), EINA_FALSE);
4374
4375         return true;
4376 }
4377
4378
4379 bool
4380 _WebImpl::HasValidNativeNode(void) const
4381 {
4382         if (__pWebCore && __pWebCore->GetWebNativeNode())
4383         {
4384                 return true;
4385         }
4386
4387         return false;
4388 }
4389
4390
4391 result
4392 _WebImpl::OnAttachedToMainTree(void)
4393 {
4394         result r = E_SUCCESS;
4395
4396         r = __pWebCore->InitializeWebNativeNode();
4397         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4398
4399         r = InitializeSetting();
4400         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4401
4402         r = _ContainerImpl::OnAttachedToMainTree();
4403         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4404
4405         return E_SUCCESS;
4406 }
4407
4408
4409 void
4410 _WebImpl::OnChangeLayout(_ControlOrientation orientation)
4411 {
4412         _ContainerImpl::OnChangeLayout(orientation);
4413
4414         if (__pColorPicker.get())
4415         {
4416                 __pColorPicker->ChangeLayout(orientation);
4417         }
4418 }
4419
4420
4421 void
4422 _WebImpl::OnAncestorVisibleStateChanged(const _Control& control)
4423 {
4424         if (IsVisible() == true)
4425         {
4426                 ewk_view_page_visibility_state_set(__pWebCore->GetWebNativeNode(), EWK_PAGE_VISIBILITY_STATE_VISIBLE, false);
4427         }
4428         else
4429         {
4430                 ewk_view_page_visibility_state_set(__pWebCore->GetWebNativeNode(), EWK_PAGE_VISIBILITY_STATE_HIDDEN, false);
4431         }
4432 }
4433
4434
4435 _WebDataHandler*
4436 _WebImpl::GetDownloadHandler(void) const
4437 {
4438         return __pWebDownloadHandler.get();
4439 }
4440
4441
4442 Eina_Bool
4443 _WebImpl::HideColorPicker(void)
4444 {
4445         __pColorPicker.reset();
4446
4447         return EINA_TRUE;
4448 }
4449
4450
4451 result
4452 _WebImpl::ShowColorPicker(int red, int green, int blue, int alpha, Color& color)
4453 {
4454         result r = E_SUCCESS;
4455
4456         std::unique_ptr<_InputPickerPopup> pColorHadler(new (std::nothrow) _InputPickerPopup());
4457         SysTryReturnResult(NID_WEB_CTRL, pColorHadler.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
4458
4459         Tizen::Graphics::Color colorVal(static_cast< byte >(red), static_cast< byte >(green), static_cast< byte >(blue), static_cast< byte >(alpha));
4460
4461         r = pColorHadler->Construct(colorVal);
4462         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4463
4464         __pColorPicker = std::move(pColorHadler);
4465
4466         r = __pColorPicker->ShowPopup();
4467         SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
4468
4469         color = __pColorPicker->GetColor();
4470
4471         return E_SUCCESS;
4472
4473 CATCH:
4474         __pColorPicker.reset();
4475
4476         return r;
4477 }
4478
4479
4480 result
4481 _WebImpl::ShowDatePicker(Ewk_Input_Type inputType, const char* inputValue, String& dateStr)
4482 {
4483         result r = E_SUCCESS;
4484
4485         std::unique_ptr<_InputPickerPopup> pInputPicker(new (std::nothrow) _InputPickerPopup());
4486         SysTryReturnResult(NID_WEB_CTRL, pInputPicker.get(), E_OUT_OF_MEMORY, "Memory allocation failed.");
4487
4488         r = pInputPicker->Construct(String(inputValue), inputType);
4489         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4490
4491         __pDatePicker = std::move(pInputPicker);
4492
4493         r = __pDatePicker->ShowPopup();
4494         SysTryCatch(NID_WEB_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
4495
4496         dateStr = __pDatePicker->GetDate();
4497
4498 CATCH:
4499         __pDatePicker.reset();
4500
4501         return r;
4502 }
4503
4504
4505 _WebImpl*
4506 _WebImpl::GetInstance(Web* pWeb)
4507 {
4508         return dynamic_cast< _WebImpl* >(_ControlImpl::GetInstance(*pWeb));
4509 }
4510
4511
4512 const _WebImpl*
4513 _WebImpl::GetInstance(const Web* pWeb)
4514 {
4515         return dynamic_cast< const _WebImpl* >(_ControlImpl::GetInstance(*pWeb));
4516 }
4517
4518
4519 int 
4520 _WebImpl::SearchHandler(Ewk_Custom_Handlers_Data* pHandlerData, bool checkmime)
4521 {
4522         int checkReturn = 0;
4523         _DatabaseImpl db;
4524         String handlerPath(Tizen::App::App::GetInstance()->GetAppRootPath() + CUSTOM_DB_DIRECTORY_PATH + USER_CONFIRM_DB_NAME);
4525
4526         String table;
4527         if( checkmime == true)
4528         {
4529                 table = CUSTOM_CONTENT_TABLE_NAME;
4530         }
4531         else
4532         {
4533                 table = CUSTOM_PROTOCOL_TABLE_NAME;
4534         }
4535         
4536         String baseUri(ewk_custom_handlers_data_base_url_get(pHandlerData));
4537         String uri(ewk_custom_handlers_data_url_get(pHandlerData));
4538         String target(ewk_custom_handlers_data_target_get(pHandlerData));
4539
4540         SysLog(NID_WEB_CTRL, "BaseUrl : %s, Url : %s, mime : %s", baseUri.GetPointer(), uri.GetPointer(), target.GetPointer());
4541         
4542         result r = db.Construct(handlerPath, "r+", null);
4543         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, -1, r, "[%s] Propagating.", GetErrorMessage(r));
4544
4545         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"'"));
4546         SysTryReturn(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, -1, GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4547
4548         if(pEnum.get())
4549         {
4550                 r = pEnum->MoveNext();
4551                 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, -1, r, "[%s] Propagating.", GetErrorMessage(r));
4552                 r = pEnum->GetIntAt(0, checkReturn);
4553                 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, -1, r, "[%s] Propagating.", GetErrorMessage(r));
4554         }
4555         else
4556         {
4557                 checkReturn = 2;
4558         }
4559
4560         return checkReturn;
4561 }
4562
4563
4564 result 
4565 _WebImpl::UnregistrationHandler(Ewk_Custom_Handlers_Data* pHandlerData, bool checkmime)
4566 {
4567         int checkId = 0;
4568         _DatabaseImpl db;
4569         String handlerPath(Tizen::App::App::GetInstance()->GetAppRootPath() + CUSTOM_DB_DIRECTORY_PATH + USER_CONFIRM_DB_NAME);
4570
4571         String table;
4572         if( checkmime == true)
4573         {
4574                 table = CUSTOM_CONTENT_TABLE_NAME;
4575         }
4576         else
4577         {
4578                 table = CUSTOM_PROTOCOL_TABLE_NAME;
4579         }
4580
4581         String baseUri(ewk_custom_handlers_data_base_url_get(pHandlerData));
4582         String uri(ewk_custom_handlers_data_url_get(pHandlerData));
4583         String target(ewk_custom_handlers_data_target_get(pHandlerData));
4584         
4585         SysLog(NID_WEB_CTRL, "BaseUrl : %s, Url : %s, mime : %s", baseUri.GetPointer(), uri.GetPointer(), target.GetPointer());
4586         
4587         result r = db.Construct(handlerPath, "r+", null);
4588         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4589
4590         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"'"));
4591         SysTryReturn(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4592
4593         if(pEnum.get())
4594         {
4595                 r = pEnum->MoveNext();
4596                 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4597                 r = pEnum->GetIntAt(0, checkId);
4598                 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4599                 
4600                 std::unique_ptr<DbStatement> pDeleteStmt(db.CreateStatementN(L"Delete From " + table + L" Where id = (?)"));
4601                 SysTryReturn(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, GetLastResult(), GetLastResult(), "[%s] Propagating.", GetErrorMessage(GetLastResult()));
4602
4603                 r = pDeleteStmt->BindInt(0, checkId);
4604                 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
4605                 
4606                 db.BeginTransaction();
4607                 
4608                 std::unique_ptr<DbEnumerator> pEnum(db.ExecuteStatementN(*pDeleteStmt));
4609                 
4610                 db.CommitTransaction();
4611         }
4612
4613         return E_SUCCESS;
4614 }
4615
4616
4617 const Tizen::Base::String 
4618 _WebImpl::GetProtocolFromUri(const Tizen::Base::String& originUri, const Tizen::Base::String& currentUri)
4619 {
4620         if (originUri == L"" || currentUri == L"")
4621         {
4622                 return L"";
4623         }
4624
4625         result r = E_SUCCESS;
4626         String baseUri;
4627         _DatabaseImpl db;
4628         String handlerPath(Tizen::App::App::GetInstance()->GetAppRootPath() + CUSTOM_DB_DIRECTORY_PATH + USER_CONFIRM_DB_NAME);
4629         String originReplace(originUri);
4630         String table(CUSTOM_PROTOCOL_TABLE_NAME);
4631         int found = 0;
4632         int foundQuery = 0;
4633
4634         r = currentUri.LastIndexOf(L"/", currentUri.GetLength()-1, found);
4635         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4636         
4637         r = currentUri.SubString(0, found + 1, baseUri);
4638         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4639                 
4640         r = db.Construct(handlerPath, "r+", null);
4641         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4642         
4643         std::unique_ptr<DbEnumerator> pEnum(db.QueryN(L"Select mime, url, allow From " + table + L" Where baseUrl = '" + baseUri + "'"));
4644         SysTryReturn(NID_WEB_CTRL, GetLastResult() == E_SUCCESS, L"", GetLastResult(), "[%s] Propagating.", GetErrorMessage(r));
4645
4646         if(pEnum.get())
4647         {
4648                 while (pEnum->MoveNext() == E_SUCCESS)
4649                 {                       
4650                         String protocol;
4651                         String queryUrl;
4652                         int allow;
4653                         String originScheme;
4654
4655                         r = pEnum->GetStringAt(0, protocol);
4656                         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4657                 
4658                         r = pEnum->GetStringAt(1, queryUrl);
4659                         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4660                         
4661                         r = pEnum->GetIntAt(2, allow);
4662                         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4663
4664                         if (allow == 0)
4665                         {
4666                                 break;
4667                         }
4668
4669                         String protocolScheme(protocol + L":");
4670                         
4671                         r = originReplace.SubString(0, protocolScheme.GetLength(), originScheme);
4672                         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4673                                                 
4674                         if ((originReplace.GetLength() >= protocolScheme.GetLength()) && originScheme.Equals(protocolScheme, false))
4675                         {
4676                                 if (queryUrl.IndexOf(L"%s", 0, foundQuery) == E_SUCCESS)
4677                                 {
4678                                         r = originReplace.Replace(originScheme, "");
4679                                         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4680                                         
4681                                         queryUrl.Replace("%s", originReplace, 0);
4682                                         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4683
4684                                         return queryUrl;
4685                                 }
4686                         }               
4687                 }
4688         }
4689         
4690         return L"";
4691 }
4692
4693
4694 const Tizen::Base::String 
4695 _WebImpl::GetRedirectUri(const Tizen::Base::String& originUri, const Tizen::Base::String& currentUri, const Tizen::Base::String& mime)
4696 {
4697         if (originUri == L"" || currentUri == L"" || mime == L"")
4698         {
4699                 return L"";
4700         }
4701
4702         result r = E_SUCCESS;
4703         String baseUri;
4704         String contentUrl;
4705         String originUrlStr = originUri;
4706         const String replaceStr = L"%s";
4707         _DatabaseImpl db;
4708         String handlerPath(Tizen::App::App::GetInstance()->GetAppRootPath() + CUSTOM_DB_DIRECTORY_PATH + USER_CONFIRM_DB_NAME);
4709         String table(CUSTOM_CONTENT_TABLE_NAME);
4710         int allow = 0;
4711         int found = 0;
4712         
4713         r = currentUri.LastIndexOf(L"/", currentUri.GetLength()-1, found);
4714         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4715                 
4716         r = currentUri.SubString(0, found + 1, baseUri);
4717         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4718                 
4719         r = db.Construct(handlerPath, "r+", null);
4720         SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4721
4722         std::unique_ptr<DbEnumerator> pEnum(db.QueryN(L"Select allow, url From " + table + L" Where baseUrl = '" + baseUri + "' AND mime = '" + mime + L"'"));
4723         
4724         if (pEnum.get())
4725         {
4726                 r = pEnum->MoveNext();
4727                 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4728                 r = pEnum->GetIntAt(0, allow);
4729                 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4730                 r = pEnum->GetStringAt(1, contentUrl);
4731                 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4732                         
4733                 if (allow == 0)
4734                 {
4735                         return L"";
4736                 }
4737                 else
4738                 {
4739                         if (contentUrl != L"")
4740                         {
4741                                 r = contentUrl.Replace(replaceStr, originUrlStr, 0);
4742                                 SysTryReturn(NID_WEB_CTRL, r == E_SUCCESS, L"", r, "[%s] Propagating.", GetErrorMessage(r));
4743
4744                                 return contentUrl;
4745                         }
4746                 }
4747         }
4748         
4749         return L"";
4750 }
4751
4752
4753 }}} // Tizen::Web::Controls