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