Removed GetFactoryWidget.
[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(GetUserInstalledWidgetPath()));
85     if (!if_ok) {
86         LogError("Path <" << GetUserInstalledWidgetPath() <<
87             "> does not exist.");
88     }
89     return if_ok;
90 }
91 }// namespace anonymous
92
93 namespace WRT {
94
95 class CoreModuleImpl
96 {
97 public:
98
99     CoreModuleImpl() : m_initialized(false), m_ewkContext(NULL)
100     {
101         LogDebug("enter");
102     }
103
104     ~CoreModuleImpl()
105     {
106         LogDebug("Core module implementation destroyed");
107     }
108
109     bool Init()
110     {
111         if (!m_initialized) {
112             ADD_PROFILING_POINT("CoreModule::Init", "point");
113             DPL::Log::LogSystemSingleton::Instance().SetTag("WRT");
114             LogDebug("Initialize");
115             if (!checkPaths()) {
116                 LogError("Required path does not exist");
117                 return false;
118             }
119             Try
120             {
121
122                 // Needed settings for WKContext are located here
123                 // create Ewk_Context
124                 Ewk_Context* newEwkContext =
125                     ewk_context_new_with_injected_bundle_path(bundlePath);
126                 if (!newEwkContext) {
127                     LogError("Failed to create Ewk_Context");
128                     ThrowMsg(DPL::Exception, "Failed to create ewk context");
129                 }
130                     // cache model setting
131                 ewk_context_cache_model_set(newEwkContext,
132                                             EWK_CACHE_MODEL_DOCUMENT_BROWSER);
133                 m_ewkContext = newEwkContext;
134                 ADD_PROFILING_POINT("WebProcess fork", "start");
135
136                 // To fork a Webprocess as soon as possible,
137                 // the following ewk_api is called explicitly.
138                 ewk_context_cookies_policy_set(m_ewkContext,
139                                                EWK_COOKIE_JAR_ACCEPT_ALWAYS);
140                 ADD_PROFILING_POINT("WebProcess fork", "stop");
141
142                 GlobalContext::TouchArchitecture();
143
144                 ADD_PROFILING_POINT("attach databases", "start");
145                 MainThreadSingleton::Instance().AttachDatabases();
146                 ADD_PROFILING_POINT("attach databases", "stop");
147
148                 // Initialize popup manager
149                 DPL::Popup::PopupManagerSingleton::Instance().Initialize(
150                     DPL::Popup::PopupRendererPtr(new DPL::Popup::PopupRenderer));
151
152                 LogDebug("Initialize finished");
153             } catch (const DPL::Exception& ex) {
154                 LogError("Internal Error during screen preparation:");
155                 DPL::Exception::DisplayKnownException(ex);
156                 /* TODO:
157                  * Do deinitialization: check on which step exception occured
158                  * and deinitialize only initialized parts.
159                 */
160                 return false;
161             }
162             m_initialized = true;
163         }
164         return true;
165     }
166
167     void Terminate()
168     {
169         if (m_ewkContext) {
170             LogInfo("finalizeEwkContext called");
171             ewk_context_delete(m_ewkContext);
172             m_ewkContext = 0;
173         }
174         MainThreadSingleton::Instance().DetachDatabases();
175         // Deinitialize popup manager
176         DPL::Popup::PopupManagerSingleton::Instance().Deinitialize();
177
178         m_initialized = false;
179     }
180
181     RunnableWidgetObjectPtr getRunnableWidgetObject(
182             const std::string& tizenId)
183     {
184         try {
185             RunnableWidgetObjectPtr runnable;
186             WidgetModelPtr model = Domain::deserializeWidgetModel(tizenId);
187             if (!!model) {
188                 runnable.reset(new RunnableWidgetObject(model, m_ewkContext));
189             }
190             return runnable;
191         } catch (WrtDB::WidgetDAOReadOnly::Exception::WidgetNotExist) {
192             LogDebug("Widget not found.");
193             return RunnableWidgetObjectPtr();
194         }
195     }
196
197 private:
198     bool m_initialized;
199     Ewk_Context* m_ewkContext;
200 };
201
202 CoreModule::CoreModule() : m_impl(new CoreModuleImpl())
203 {
204 }
205
206 CoreModule::~CoreModule()
207 {
208 }
209
210 bool CoreModule::Init()
211 {
212     return m_impl->Init();
213 }
214
215 void CoreModule::Terminate()
216 {
217     return m_impl->Terminate();
218 }
219
220 RunnableWidgetObjectPtr CoreModule::getRunnableWidgetObject(
221         const std::string& tizenId)
222 {
223     return m_impl->getRunnableWidgetObject(tizenId);
224 }
225
226 } /* namespace WRT */