update wrt_0.8.107
[platform/framework/web/wrt.git] / src / api_new / core_module.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 /**
17  * @file    core_module.cpp
18  * @author  Przemyslaw Ciezkowski (p.ciezkowski@samsung.com)
19  * @author  Andrzej Surdej (a.surdej@samsung.com)
20  * @version 1.0
21  * @brief   File contains definitions of wrt core module.
22  */
23
24 #include "core_module.h"
25 #include "runnable_widget_object.h"
26 #include <string>
27 #include <main_thread.h>
28 #include <global_context.h>
29 #include <dpl/log/log.h>
30 #include <dpl/assert.h>
31 #include <dpl/exception.h>
32 #include <dpl/popup/popup_controller.h>
33 #include <dpl/singleton_impl.h>
34 #include "localization_setting.h"
35 #include <dpl/wrt-dao-ro/global_config.h>
36 #include <profiling_util.h>
37 #include <widget_deserialize_model.h>
38 #include <dpl/wrt-dao-ro/widget_dao_read_only.h>
39
40 #include <EWebKit2.h>
41
42 IMPLEMENT_SINGLETON(WRT::CoreModule)
43
44 namespace { //Anonymous
45
46 const char * const bundlePath = "/usr/lib/wrt-wk2-bundles/libwrt-wk2-bundle.so";
47
48 std::string cutOffFileName(const std::string& path)
49 {
50     size_t found = path.find_last_of("/");
51     if (found == std::string::npos) {
52         return path;
53     } else {
54         return path.substr(0, found);
55     }
56 }
57
58 bool isDir(const std::string& path)
59 {
60     struct stat st;
61     if (0 == stat(path.c_str(), &st) && S_ISDIR(st.st_mode)) {
62         return true;
63     }
64     LogError("Cannot access directory [ " << path << " ]");
65     return false;
66 }
67
68 bool checkPaths()
69 {
70     using namespace WrtDB;
71     using namespace WrtDB::GlobalConfig;
72
73     bool if_ok = true;
74     if_ok &= (isDir(cutOffFileName(GetWrtDatabaseFilePath())));
75     if (!if_ok) {
76         LogError("Path <" << GetWrtDatabaseFilePath() << "> does not exist.");
77     }
78
79     if_ok &= (isDir(GetDevicePluginPath()));
80     if (!if_ok) {
81         LogError("Path <" << GetDevicePluginPath() << "> does not exist.");
82     }
83
84     if_ok &= (isDir(GetFactoryInstalledWidgetPath()));
85     if (!if_ok) {
86         LogError("Path <" << GetFactoryInstalledWidgetPath() <<
87             "> does not exist.");
88     }
89
90     if_ok &= (isDir(GetUserInstalledWidgetPath()));
91     if (!if_ok) {
92         LogError("Path <" << GetUserInstalledWidgetPath() <<
93             "> does not exist.");
94     }
95     return if_ok;
96 }
97 }// namespace anonymous
98
99 namespace WRT {
100
101 class CoreModuleImpl
102 {
103 public:
104
105     CoreModuleImpl() : m_initialized(false), m_ewkContext(NULL)
106     {
107         LogDebug("enter");
108     }
109
110     ~CoreModuleImpl()
111     {
112         LogDebug("Core module implementation destroyed");
113     }
114
115     bool Init()
116     {
117         if (!m_initialized) {
118             DPL::Log::LogSystemSingleton::Instance().SetTag("WRT");
119             LogDebug("Initialize");
120             if (!checkPaths()) {
121                 LogError("Required path does not exist");
122                 return false;
123             }
124             Try
125             {
126
127                 // Needed settings for WKContext are located here
128                 // create Ewk_Context
129                 Ewk_Context* newEwkContext =
130                     ewk_context_new_with_injected_bundle_path(bundlePath);
131                 if (!newEwkContext) {
132                     LogError("Failed to create Ewk_Context");
133                     ThrowMsg(DPL::Exception, "Failed to create ewk context");
134                 }
135                     // cache model setting
136                 ewk_context_cache_model_set(newEwkContext,
137                                             EWK_CACHE_MODEL_PRIMARY_WEBBROWSER);
138                 m_ewkContext = newEwkContext;
139
140                 // To fork a Webprocess as soon as possible,
141                 // the following ewk_api is called explicitly.
142                 ewk_context_cookies_policy_set(m_ewkContext,
143                                                EWK_COOKIE_JAR_ACCEPT_ALWAYS);
144
145                 GlobalContext::TouchArchitecture();
146
147                 ADD_PROFILING_POINT("attach databases", "start");
148                 MainThreadSingleton::Instance().AttachDatabases();
149                 ADD_PROFILING_POINT("attach databases", "stop");
150
151                 // Initialize popup manager
152                 ADD_PROFILING_POINT("popup_manager_init", "start");
153                 DPL::Popup::PopupManagerSingleton::Instance().Initialize(
154                     DPL::Popup::PopupRendererPtr(new DPL::Popup::PopupRenderer));
155                 ADD_PROFILING_POINT("popup_manager_init", "stop");
156
157                 LogDebug("Initialize finished");
158             } catch (const DPL::Exception& ex) {
159                 LogError("Internal Error during screen preparation:");
160                 DPL::Exception::DisplayKnownException(ex);
161                 /* TODO:
162                  * Do deinitialization: check on which step exception occured
163                  * and deinitialize only initialized parts.
164                 */
165                 return false;
166             }
167             m_initialized = true;
168         }
169         return true;
170     }
171
172     void Terminate()
173     {
174         if (m_ewkContext) {
175             LogInfo("finalizeEwkContext called");
176             ewk_context_delete(m_ewkContext);
177             m_ewkContext = 0;
178         }
179         MainThreadSingleton::Instance().DetachDatabases();
180         // Deinitialize popup manager
181         DPL::Popup::PopupManagerSingleton::Instance().Deinitialize();
182
183         m_initialized = false;
184     }
185
186     RunnableWidgetObjectPtr getRunnableWidgetObject(
187             const std::string& tizenId)
188     {
189         try {
190             RunnableWidgetObjectPtr runnable;
191             WidgetModelPtr model = Domain::deserializeWidgetModel(tizenId);
192             if (!!model) {
193                 runnable.reset(new RunnableWidgetObject(model, m_ewkContext));
194             }
195             return runnable;
196         } catch (WrtDB::WidgetDAOReadOnly::Exception::WidgetNotExist) {
197             LogDebug("Widget not found.");
198             return RunnableWidgetObjectPtr();
199         }
200     }
201
202 private:
203     bool m_initialized;
204     Ewk_Context* m_ewkContext;
205 };
206
207 CoreModule::CoreModule() : m_impl(new CoreModuleImpl())
208 {
209 }
210
211 CoreModule::~CoreModule()
212 {
213 }
214
215 bool CoreModule::Init()
216 {
217     return m_impl->Init();
218 }
219
220 void CoreModule::Terminate()
221 {
222     return m_impl->Terminate();
223 }
224
225 RunnableWidgetObjectPtr CoreModule::getRunnableWidgetObject(
226         const std::string& tizenId)
227 {
228     return m_impl->getRunnableWidgetObject(tizenId);
229 }
230
231 } /* namespace WRT */