Add new usercallbacks for executable to know when new webview created and destroyed.
[platform/framework/web/wrt.git] / src / wrt-client / wrt-client.cpp
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 #include "wrt-client.h"
17 #include <cstdlib>
18 #include <cstdio>
19 #include <string>
20 #include <dpl/log/log.h>
21 #include <dpl/optional_typedefs.h>
22 #include <common/application_data.h>
23 #include <core_module.h>
24 #include <global_logic.h>
25 #include <localization_setting.h>
26 #include <widget_deserialize_model.h>
27 #include <EWebKit2.h>
28 #include <dpl/localization/w3c_file_localization.h>
29 #include <dpl/localization/LanguageTagsProvider.h>
30
31 //W3C PACKAGING enviroment variable name
32 #define W3C_DEBUG_ENV_VARIABLE "DEBUG_LOAD_FINISH"
33
34 // window signal callback
35 const char *EDJE_SHOW_BACKWARD_SIGNAL = "show,backward,signal";
36 const std::string VIEWMODE_TYPE_FULLSCREEN = "fullscreen";
37 const std::string VIEWMODE_TYPE_MAXIMIZED = "maximized";
38
39 WrtClient::WrtClient(int argc, char **argv) :
40     Application(argc, argv, "wrt-client", false),
41     DPL::TaskDecl<WrtClient>(this),
42     m_launched(false),
43     m_initializing(false),
44     m_initialized(false),
45     m_sdkLauncherPid(0),
46     m_debugMode(false),
47     m_debuggerPort(0),
48     m_returnStatus(ReturnStatus::Succeeded),
49     m_widgetState(WidgetState::WidgetState_Stopped)
50 {
51     Touch();
52     LogDebug("App Created");
53 }
54
55 WrtClient::~WrtClient()
56 {
57     LogDebug("App Finished");
58 }
59
60 WrtClient::ReturnStatus::Type WrtClient::getReturnStatus() const
61 {
62     return m_returnStatus;
63 }
64
65 void WrtClient::OnStop()
66 {
67     LogInfo("Stopping Dummy Client");
68 }
69
70
71 void WrtClient::OnCreate()
72 {
73     LogInfo("On Create");
74     ADD_PROFILING_POINT("OnCreate callback", "point");
75 }
76
77
78 void WrtClient::OnResume()
79 {
80     if (m_widgetState != WidgetState_Suspended) {
81         LogWarning("Widget is not suspended, resuming was skipped");
82         return;
83     }
84     m_widget->Resume();
85     m_widgetState = WidgetState_Running;
86 }
87
88
89 void WrtClient::OnPause()
90 {
91     LogDebug("On pause");
92
93     if (m_widgetState != WidgetState_Running) {
94         LogWarning("Widget is not running to be suspended");
95         return;
96     }
97     m_widget->Suspend();
98     m_widgetState = WidgetState_Suspended;
99 }
100
101 void WrtClient::OnReset(bundle *b)
102 {
103     LogDebug("OnReset");
104     // bundle argument is freed after OnReset() is returned
105     // So bundle duplication is needed
106     ApplicationDataSingleton::Instance().setBundle(bundle_dup(b));
107
108     if (true == m_initializing) {
109         LogDebug("can not handle reset event");
110         return;
111     }
112     if (true == m_launched) {
113         if (m_widgetState == WidgetState_Stopped) {
114             LogError("Widget is not running to be reset");
115             return;
116         }
117         m_widget->Reset();
118         m_widgetState = WidgetState_Running;
119     } else {
120         if (true == checkArgument())
121         {
122             setStep();
123         }
124         else
125         {
126             showHelpAndQuit();
127         }
128     }
129 }
130
131 void WrtClient::OnTerminate()
132 {
133     LogDebug("Wrt Shutdown now");
134     shutdownStep();
135 }
136
137 void WrtClient::showHelpAndQuit()
138 {
139     printf("Usage: wrt-client [OPTION]... [WIDGET: ID]...\n"
140            "launch widgets.\n"
141            "Mandatory arguments to long options are mandatory for short "
142            "options too.\n"
143            "  -h,    --help                                 show this help\n"
144            "  -l,    --launch                               "
145            "launch widget with given tizen ID\n"
146            "  -t,    --tizen                                "
147            "launch widget with given tizen ID\n"
148            "\n");
149
150     Quit();
151 }
152
153 bool WrtClient::checkArgument()
154 {
155     LogInfo("checkArgument");
156
157     std::string arg = m_argv[0];
158
159     if (arg.empty()) {
160         return false;
161     }
162
163     if (arg.find("wrt-client") != std::string::npos)
164     {
165         if (m_argc <= 1) {
166             return false;
167         }
168
169         arg = m_argv[1];
170
171         if (arg == "-h" || arg == "--help") {
172             // Just show help
173             return false;
174         } else if (arg == "-l" || arg == "--launch" ||
175                 arg == "-t" || arg == "--tizen") {
176             if (m_argc != 3) {
177                 return false;
178             }
179             m_tizenId = std::string(m_argv[2]);
180         } else {
181             return false;
182         }
183     } else {
184         size_t pos = arg.find_last_of('/');
185
186         if (pos != std::string::npos) {
187             arg = arg.erase(0, pos + 1);
188         }
189
190         // Launch widget based on application basename
191         m_tizenId = arg;
192         LogDebug("Tizen id: " << m_tizenId);
193     }
194
195     return true;
196 }
197
198 void WrtClient::setStep()
199 {
200     LogInfo("setStep");
201
202     AddStep(&WrtClient::initStep);
203
204     setSdkLauncherDebugData();
205
206     AddStep(&WrtClient::launchStep);
207     AddStep(&WrtClient::shutdownStep);
208
209     m_initializing = true;
210
211     DPL::Event::ControllerEventHandler<NextStepEvent>::PostEvent(NextStepEvent());
212 }
213
214 void WrtClient::setSdkLauncherDebugData()
215 {
216     LogDebug("setSdkLauncherDebugData");
217
218     /* check bundle from sdk launcher */
219     bundle *bundleFromSdkLauncher;
220     bundleFromSdkLauncher = bundle_import_from_argv(m_argc, m_argv);
221     const char *bundle_debug = bundle_get_val(bundleFromSdkLauncher, "debug");
222     const char *bundle_pid = bundle_get_val(bundleFromSdkLauncher, "pid");
223     if (bundle_debug != NULL && bundle_pid != NULL) {
224         if (strcmp(bundle_debug, "true") == 0) {
225             m_debugMode = true;
226             m_sdkLauncherPid = atoi(bundle_pid);
227         } else {
228             m_debugMode = false;
229         }
230     }
231     bundle_free(bundleFromSdkLauncher);
232 }
233
234 bool WrtClient::checkDebugMode(SDKDebugData* debugData)
235 {
236     LogError("Checking for debug mode");
237     Assert(m_dao);
238
239     bool debugMode = debugData->debugMode;
240
241     LogInfo("[DEBUG_MODE] Widget is launched in " <<
242             (debugMode ? "DEBUG" : "RETAIL") <<
243             " mode.");
244
245     if (debugMode == true) {
246         // In WAC widget, only test widgets can use web inspector.
247         // In TIZEN widget,
248         // every launched widgets as debug mode can use it.
249         if (m_dao->getWidgetType().appType == WrtDB::APP_TYPE_WAC20)
250         {
251             bool developerMode =
252                 GlobalLogicSingleton::Instance().GetGlobalModel()
253                 ->DeveloperMode.Get();
254             //This code will be activated
255             //after WAC test certificate is used by SDK
256             //bool isTestWidget = view->m_widgetModel->IsTestWidget.Get();
257             //if(!isTestWidget)
258             //{
259             //    LogInfo("This is not WAC Test Widget");
260             //    break;
261             //}
262             if (!developerMode) {
263                 LogInfo("This is not WAC Developer Mode");
264                 debugMode = false;
265             }
266         }
267     }
268     return debugMode;
269 }
270
271 void WrtClient::OnEventReceived(const NextStepEvent& /*event*/)
272 {
273     LogDebug("Executing next step");
274     NextStep();
275 }
276
277 void WrtClient::initStep()
278 {
279     LogDebug("");
280     if (WRT::CoreModuleSingleton::Instance().Init()) {
281         m_initialized = true;
282     } else {
283         m_returnStatus = ReturnStatus::Failed;
284         SwitchToStep(&WrtClient::shutdownStep);
285     }
286
287     // ecore_event_jobs are processed sequentially without concession to
288     // other type events. To give a chance of execute to other events,
289     // ecore_timer_add was used.
290     DPL::Event::ControllerEventHandler<NextStepEvent>::PostTimedEvent(
291             NextStepEvent(),0.001);
292 }
293
294 bool WrtClient::checkWACTestCertififedWidget()
295 {
296     // WAC Waikiki Beta Release Core Specification: Widget Runtime
297     // 10 Dec 2010
298     //
299     // WR-4710 The WRT MUST enable debug functions only for WAC test widgets
300     // i.e. the functions must not be usable for normal WAC widgets, even when
301     // a WAC test widget is executing.
302     ADD_PROFILING_POINT("DeveloperModeCheck", "start");
303     Assert(!!m_dao);
304     // WAC test widget
305     // A widget signed with a WAC-issued test certificate as described in
306     // Developer Mode.
307
308     bool developerWidget = m_dao->isTestWidget();
309     bool developerMode =
310         GlobalLogicSingleton::Instance().GetGlobalModel()->DeveloperMode.Get();
311
312     LogDebug("Is WAC test widget: " << developerWidget);
313     LogDebug("Is developer Mode: " << developerMode);
314
315     if (developerWidget) {
316         if(!developerMode)
317         {
318             LogError("WAC test certified developer widget is needed for " <<
319                     "developer mode");
320             return false;
321         }else{
322             //TODO: WR-4660 (show popup about developer widget
323             //      during launch
324             LogInfo("POPUP: THIS IS TEST WIDGET!");
325         }
326     }
327     ADD_PROFILING_POINT("DeveloperModeCheck", "stop");
328     return true;
329 }
330
331 void WrtClient::loadFinishCallback(Evas_Object* webview)
332 {
333     ADD_PROFILING_POINT("loadFinishCallback", "start");
334     SDKDebugData* debug = new SDKDebugData;
335     debug->debugMode = m_debugMode;
336     debug->pid = new unsigned long(getpid());
337
338     LogInfo("Post result of launch");
339
340     // Start inspector server, if current mode is debugger mode.
341     // In the WK2 case, ewk_view_inspector_server_start should
342     // be called after WebProcess is created.
343     if (checkDebugMode(debug))
344     {
345         debug->portnum =
346             ewk_view_inspector_server_start(m_widget->GetCurrentWebview(), 0);
347         if (debug->portnum == 0) {
348             LogWarning("Failed to get portnum");
349         } else {
350             LogInfo("Assigned port number for inspector : "
351                     << debug->portnum);
352         }
353     } else {
354         LogDebug("Debug mode is disabled");
355     }
356
357     //w3c packaging test debug (message on 4>)
358     const char * makeScreen = getenv(W3C_DEBUG_ENV_VARIABLE);
359     if(makeScreen != NULL && strcmp(makeScreen, "1") == 0)
360     {
361         FILE* doutput = fdopen(4, "w");
362         fprintf(doutput,"didFinishLoadForFrameCallback: ready\n");
363         fclose(doutput);
364     }
365
366     if (webview) {
367         LogDebug("Launch succesfull");
368
369         m_launched = true;
370         m_initializing = false;
371         setlinebuf(stdout);
372         ADD_PROFILING_POINT("loadFinishCallback", "stop");
373         printf("launched\n");
374         fflush(stdout);
375     } else {
376         printf("failed\n");
377
378         m_returnStatus = ReturnStatus::Failed;
379         //shutdownStep
380         DPL::Event::ControllerEventHandler<NextStepEvent>::
381                 PostEvent(NextStepEvent());
382     }
383
384     if(debug->debugMode)
385     {
386         LogDebug("Send RT signal to wrt-launcher(pid: " << m_sdkLauncherPid);
387         union sigval sv;
388         /* send real time signal with result to wrt-launcher */
389         if(webview) {
390             LogDebug("userData->portnum : " << debug->portnum);
391             sv.sival_int = debug->portnum;
392         } else {
393            sv.sival_int = -1;
394         }
395         sigqueue(m_sdkLauncherPid, SIGRTMIN, sv);
396     }
397
398     ApplicationDataSingleton::Instance().freeBundle();
399
400     LogDebug("Cleaning wrtClient launch resources...");
401     delete debug->pid;
402     delete debug;
403 }
404
405 void WrtClient::progressFinishCallback()
406 {
407     m_splashScreen->stopSplashScreen();
408 }
409
410 void WrtClient::webkitExitCallback()
411 {
412     LogDebug("window close called, terminating app");
413     SwitchToStep(&WrtClient::shutdownStep);
414     DPL::Event::ControllerEventHandler<NextStepEvent>::PostEvent(
415             NextStepEvent());
416 }
417
418 void WrtClient::webCrashCallback()
419 {
420     LogError("webProcess crashed");
421     SwitchToStep(&WrtClient::shutdownStep);
422     DPL::Event::ControllerEventHandler<NextStepEvent>::PostEvent(
423             NextStepEvent());
424 }
425
426
427 void WrtClient::launchStep()
428 {
429     ADD_PROFILING_POINT("launchStep", "start");
430     LogDebug("Launching widget ...");
431
432     ADD_PROFILING_POINT("getRunnableWidgetObject", "start");
433     m_widget = WRT::CoreModuleSingleton::Instance()
434                     .getRunnableWidgetObject(m_tizenId);
435     ADD_PROFILING_POINT("getRunnableWidgetObject", "stop");
436
437     if (!m_widget) {
438         LogError("RunnableWidgetObject is NULL, stop launchStep");
439         DPL::Event::ControllerEventHandler<NextStepEvent>::PostEvent(
440                     NextStepEvent());
441         return;
442     }
443
444     if (m_widgetState == WidgetState_Running) {
445         LogWarning("Widget already running, stop launchStep");
446         DPL::Event::ControllerEventHandler<NextStepEvent>::PostEvent(
447                     NextStepEvent());
448         return;
449     }
450
451     if (m_widgetState == WidgetState_Authorizing) {
452         LogWarning("Widget already authorizing, stop launchStep");
453         DPL::Event::ControllerEventHandler<NextStepEvent>::PostEvent(
454                     NextStepEvent());
455         return;
456     }
457
458     m_dao.reset(new WrtDB::WidgetDAOReadOnly(DPL::FromASCIIString(m_tizenId)));
459     DPL::Optional<DPL::String> defloc = m_dao->getDefaultlocale();
460     if(!defloc.IsNull())
461     {
462         LanguageTagsProviderSingleton::Instance().addWidgetDefaultLocales(*defloc);
463     }
464
465     LocalizationSetting::SetLanguageChangedCallback(
466             languageChangedCallback, this);
467
468     ADD_PROFILING_POINT("CreateWindow", "start");
469     m_windowData.reset(new WindowData(static_cast<unsigned long>(getpid())));
470     ADD_PROFILING_POINT("CreateWindow", "stop");
471
472     WRT::UserDelegatesPtr cbs(new WRT::UserDelegates);
473     ADD_PROFILING_POINT("Create splash screen", "start");
474     m_splashScreen.reset(
475             new SplashScreenSupport(m_windowData->m_win));
476     if (m_splashScreen->createSplashScreen(m_dao->getSplashImgSrc())) {
477         m_splashScreen->startSplashScreen();
478         cbs->progressFinish = DPL::MakeDelegate(this, &WrtClient::progressFinishCallback);
479     }
480     ADD_PROFILING_POINT("Create splash screen", "stop");
481     DPL::OptionalString startUrl = W3CFileLocalization::getStartFile(m_dao);
482     m_widget->PrepareView(DPL::ToUTF8String(*startUrl),
483             m_windowData->m_win);
484     //you can't show window with splash screen before PrepareView
485     //ewk_view_add_with_context() in viewLogic breaks window
486
487     WrtDB::WidgetLocalizedInfo localizedInfo =
488         W3CFileLocalization::getLocalizedInfo(m_dao);
489     std:: string name = "";
490     if (!(localizedInfo.name.IsNull())) {
491         name = DPL::ToUTF8String(*(localizedInfo.name));
492     }
493     elm_win_title_set(m_windowData->m_win, name.c_str());
494     evas_object_show(m_windowData->m_win);
495     initializeWindowModes();
496     connectElmCallback();
497
498     if (!checkWACTestCertififedWidget())
499     {
500         LogWarning("WAC Certificate failed, stop launchStep");
501         return;
502     }
503
504     m_widgetState = WidgetState_Authorizing;
505     if (!m_widget->CheckBeforeLaunch()) {
506         LogError("CheckBeforeLaunch failed, stop launchStep");
507         DPL::Event::ControllerEventHandler<NextStepEvent>::PostEvent(
508                     NextStepEvent());
509         return;
510     }
511     LogInfo("Widget launch accepted. Entering running state");
512     m_widgetState = WidgetState_Running;
513
514     cbs->loadFinish = DPL::MakeDelegate(this, &WrtClient::loadFinishCallback);
515     cbs->bufferSet = DPL::MakeDelegate(this, &WrtClient::setLayout);
516     cbs->bufferUnset = DPL::MakeDelegate(this, &WrtClient::unsetLayout);
517     cbs->webkitExit = DPL::MakeDelegate(this, &WrtClient::webkitExitCallback);
518     cbs->webCrash = DPL::MakeDelegate(this, &WrtClient::webCrashCallback);
519     cbs->toggleFullscreen = DPL::MakeDelegate(m_windowData.get(), &WindowData::toggleFullscreen);
520
521     m_widget->SetUserDelegates(cbs);
522     m_widget->Show();
523     ADD_PROFILING_POINT("launchStep", "stop");
524 }
525
526 void WrtClient::initializeWindowModes()
527 {
528     Assert(m_windowData);
529     Assert(m_dao);
530     auto windowModes = m_dao->getWindowModes();
531     bool fullscreen = false;
532     FOREACH(it, windowModes)
533     {
534         std::string viewMode = DPL::ToUTF8String(*it);
535         if (viewMode == VIEWMODE_TYPE_FULLSCREEN) {
536             fullscreen = true;
537             break;
538         } else if (viewMode == VIEWMODE_TYPE_MAXIMIZED) {
539             break;
540         }
541     }
542
543     WrtDB::WidgetLocalizedInfo localizedInfo =
544             W3CFileLocalization::getLocalizedInfo(m_dao);
545     std::string name = "";
546     if (!(localizedInfo.name.IsNull())) {
547         name = DPL::ToUTF8String(*(localizedInfo.name));
548     }
549     LogInfo("initializeWindowModes " << m_debugMode);
550 #if 1
551     m_windowData->m_debugMode = FALSE;
552 #else
553     if(m_debugMode) {
554         m_windowData->m_debugMode = TRUE;
555     }
556     else {
557         m_windowData->m_debugMode = FALSE;
558     }
559 #endif
560     WindowData::CtxMenuItems ctxMenuItems;
561
562     WindowData::CtxMenuItem ctxMenuBackword;
563     ctxMenuBackword.label = WRT_OPTION_LABEL_BACKWARD;
564     ctxMenuBackword.icon = WRT_OPTION_ICON_BACKWARD;
565     ctxMenuBackword.callback = backwardCallback;
566     ctxMenuBackword.data = this;
567     ctxMenuItems.push_back(ctxMenuBackword);
568
569     WindowData::CtxMenuItem ctxMenuReload;
570     ctxMenuReload.label = WRT_OPTION_LABEL_RELOAD;
571     ctxMenuReload.icon = WRT_OPTION_ICON_RELOAD;
572     ctxMenuReload.callback = reloadCallback;
573     ctxMenuReload.data = this;
574     ctxMenuItems.push_back(ctxMenuReload);
575
576     WindowData::CtxMenuItem ctxMenuForward;
577     ctxMenuForward.label = WRT_OPTION_LABEL_FORWARD;
578     ctxMenuForward.icon = WRT_OPTION_ICON_FORWARD;
579     ctxMenuForward.callback = forwardCallback;
580     ctxMenuForward.data = this;
581     ctxMenuItems.push_back(ctxMenuForward);
582
583     m_windowData->setViewMode(name.c_str(),
584             fullscreen,
585             ctxMenuItems);
586 }
587
588 void WrtClient::backButtonCallback(void* data,
589                                      Evas_Object * /*obj*/,
590                                      void * /*event_info*/)
591 {
592     LogInfo("BackButtonCallback");
593     Assert(data);
594
595     WrtClient* This = static_cast<WrtClient*>(data);
596
597     This->m_widget->Backward();
598 }
599
600 void WrtClient::backwardCallback(void *data,
601         Evas_Object */*obj*/,
602         void */*event_info*/)
603 {
604     LogInfo("BackButtonCallback");
605     Assert(data);
606
607     WrtClient* This = static_cast<WrtClient*>(data);
608
609     This->m_widget->Backward();
610     This->m_windowData->initFullViewMode();
611 }
612
613 void WrtClient::reloadCallback(void *data,
614         Evas_Object */*obj*/,
615         void */*event_info*/)
616 {
617     LogInfo("reloadCallback");
618
619     WrtClient* This = static_cast<WrtClient*>(data);
620
621     This->m_widget->Reload();
622     This->m_windowData->initFullViewMode();
623 }
624
625 void WrtClient::forwardCallback(void *data,
626         Evas_Object */*obj*/,
627         void */*event_info*/)
628 {
629     LogInfo("forwardCallback");
630
631     WrtClient* This = static_cast<WrtClient*>(data);
632
633     This->m_widget->Forward();
634     This->m_windowData->initFullViewMode();
635 }
636
637
638 void WrtClient::connectElmCallback()
639 {
640     Assert(m_windowData);
641     Assert(m_dao);
642     if (m_dao->getWidgetType().appType == WrtDB::APP_TYPE_TIZENWEBAPP) {
643         WidgetSettings widgetSettings;
644         m_dao->getWidgetSettings(widgetSettings);
645         WidgetSettingList settings(widgetSettings);
646         WidgetSettingScreenLock rotationValue = settings.getRotationValue();
647         if (rotationValue == Screen_Portrait) {
648             elm_win_rotation_with_resize_set(m_windowData->m_win, 0);
649         } else if (rotationValue == Screen_Landscape) {
650             elm_win_rotation_with_resize_set(m_windowData->m_win, 270);
651         } else {
652             elm_win_rotation_with_resize_set(m_windowData->m_win, 0);
653         }
654     }
655 }
656
657 void WrtClient::setLayout(Evas_Object* newBuffer) {
658     LogDebug("add new webkit buffer to window");
659     Assert(newBuffer);
660     elm_object_content_set(m_windowData->m_conformant, newBuffer);
661     evas_object_show(newBuffer);
662     evas_object_focus_set(newBuffer, EINA_TRUE);
663 }
664
665 void WrtClient::unsetLayout(Evas_Object* currentBuffer) {
666     LogDebug("remove current webkit buffer from window");
667     Assert(currentBuffer);
668     evas_object_hide(currentBuffer);
669     elm_object_content_unset(m_windowData->m_conformant);
670 }
671
672 void WrtClient::shutdownStep()
673 {
674     LogDebug("Closing Wrt connection ...");
675     if (m_initialized && m_widget) {
676         m_widgetState = WidgetState_Stopped;
677         m_widget->Hide();
678         m_widget.reset();
679         m_windowData.reset();
680         WRT::CoreModuleSingleton::Instance().Terminate();
681         m_initialized = false;
682     }
683     Quit();
684 }
685
686 int WrtClient::languageChangedCallback(void *data)
687 {
688     LogDebug("Language Changed");
689     if(!data)
690         return 0;
691     WrtClient* wrtClient = static_cast<WrtClient*>(data);
692     if(!(wrtClient->m_dao))
693         return 0;
694
695     // reset function fetches system locales and recreates language tags
696     LanguageTagsProviderSingleton::Instance().resetLanguageTags();
697     // widget default locales are added to language tags below
698     DPL::OptionalString defloc = wrtClient->m_dao->getDefaultlocale();
699     if(!defloc.IsNull())
700     {
701         LanguageTagsProviderSingleton::Instance().addWidgetDefaultLocales(*defloc);
702     }
703
704     if (wrtClient->m_launched &&
705             wrtClient->m_widgetState != WidgetState_Stopped) {
706         wrtClient->m_widget->ReloadStartPage();
707     }
708     return 0;
709 }
710
711 int main(int argc,
712          char *argv[])
713 {
714     ADD_PROFILING_POINT("main-entered", "point");
715
716     // Output on stdout will be flushed after every newline character,
717     // even if it is redirected to a pipe. This is useful for running
718     // from a script and parsing output.
719     // (Standard behavior of stdlib is to use full buffering when
720     // redirected to a pipe, which means even after an end of line
721     // the output may not be flushed).
722     setlinebuf(stdout);
723
724     // set evas backend type
725     if (!getenv("ELM_ENGINE")) {
726         if (setenv("ELM_ENGINE", "gl", 1)) {
727                 LogDebug("Enable backend");
728         }
729     }
730 #ifndef TIZEN_PUBLIC
731     setenv("COREGL_FASTPATH", "1", 1);
732 #endif
733     setenv("CAIRO_GL_COMPOSITOR", "msaa", 1);
734     setenv("CAIRO_GL_LAZY_FLUSHING", "yes", 1);
735     setenv("ELM_IMAGE_CACHE", "0", 1);
736
737     // Set log tagging
738     DPL::Log::LogSystemSingleton::Instance().SetTag("WRT-CLIENT");
739
740     WrtClient app(argc, argv);
741
742     ADD_PROFILING_POINT("Before appExec", "point");
743     int ret = app.Exec();
744     LogDebug("App returned: " << ret);
745     ret = app.getReturnStatus();
746     LogDebug("WrtClient returned: " << ret);
747     return ret;
748 }