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