2 * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 #include <EWebKit_internal.h>
20 #include <Elementary.h>
22 #ifdef WATCH_FACE_FEATURE_SUPPORT
23 #include <bundle_internal.h>
24 #include <Ecore_Wayland.h>
25 #endif // WATCH_FACE_FEATURE_SUPPORT
27 #include "common/application_data.h"
28 #include "common/command_line.h"
29 #include "common/logger.h"
30 #include "common/profiler.h"
31 #include "runtime/browser/runtime.h"
32 #include "runtime/common/constants.h"
33 #include "runtime/browser/prelauncher.h"
34 #include "runtime/browser/preload_manager.h"
36 bool g_prelaunch = false;
38 #ifdef WATCH_FACE_FEATURE_SUPPORT
39 static int setWatchEnv(int argc, char **argv) {
41 char *wayland_display = NULL;
42 char *xdg_runtime_dir = NULL;
43 char *width_str = NULL;
44 char *height_str = NULL;
46 if (argc <= 0 || argv == NULL) {
48 LOGGER(ERROR) << "argument are invalid";
52 kb = bundle_import_from_argv(argc, argv);
54 bundle_get_str(kb, "XDG_RUNTIME_DIR", &xdg_runtime_dir);
55 bundle_get_str(kb, "WAYLAND_DISPLAY", &wayland_display);
56 bundle_get_str(kb, "WATCH_WIDTH", &width_str);
57 bundle_get_str(kb, "WATCH_HEIGHT", &height_str);
59 if (xdg_runtime_dir) {
60 LOGGER(DEBUG) << "senenv: " << xdg_runtime_dir;
61 setenv("XDG_RUNTIME_DIR", xdg_runtime_dir, 1);
63 LOGGER(ERROR) << "failed to get xdgruntimedir";
66 if (wayland_display) {
67 LOGGER(DEBUG) << "setenv: " << wayland_display;
68 setenv("WAYLAND_DISPLAY", wayland_display, 1);
70 LOGGER(ERROR) << "failed to get waylanddisplay";
74 LOGGER(ERROR) << "failed to get launch argv";
78 #endif // WATCH_FACE_FEATURE_SUPPORT
80 int real_main(int argc, char* argv[]) {
81 STEP_PROFILE_START("Start -> Launch Completed");
82 STEP_PROFILE_START("Start -> OnCreate");
84 common::CommandLine::Init(argc, argv);
86 common::CommandLine* cmd = common::CommandLine::ForCurrentProcess();
87 std::string appid = cmd->GetAppIdFromCommandLine(runtime::kRuntimeExecName);
90 auto appdata_manager = common::ApplicationDataManager::GetInstance();
91 common::ApplicationData* appdata = appdata_manager->GetApplicationData(appid);
92 if (!appdata->LoadManifestData()) {
96 #ifdef WATCH_FACE_FEATURE_SUPPORT
97 if (appdata->app_type() == common::ApplicationData::WATCH) {
98 setWatchEnv(argc, argv);
100 #endif // WATCH_FACE_FEATURE_SUPPORT
102 // Default behavior, run as runtime.
103 LOGGER(INFO) << "Runtime process has been created.";
106 char* chromium_arg_options[] = {
108 const_cast<char*>("--no-sandbox"),
109 const_cast<char*>("--enable-file-cookies"),
110 const_cast<char*>("--allow-file-access-from-files"),
111 const_cast<char*>("--allow-universal-access-from-files"),
112 const_cast<char*>("--single-process")
114 const int chromium_arg_cnt =
115 sizeof(chromium_arg_options) / sizeof(chromium_arg_options[0]);
116 ewk_set_arguments(chromium_arg_cnt, chromium_arg_options);
117 #ifdef WATCH_FACE_FEATURE_SUPPORT
119 if (appdata->app_type() == common::ApplicationData::WATCH) {
120 // Below code will be enabled after testing
121 //ecore_wl_shutdown();
122 //ecore_wl_init(NULL);
124 #endif // WATCH_FACE_FEATURE_SUPPORT
128 // Runtime's destructor should be called before ewk_shutdown()
130 std::unique_ptr<runtime::Runtime> runtime =
131 runtime::Runtime::MakeRuntime(appdata);
132 ret = runtime->Exec(argc, argv);
141 __attribute__((visibility("default")))
142 int main(int argc, char* argv[]) {
143 if (strcmp(argv[0], "/usr/bin/wrt-loader") == 0) {
144 elm_init(argc, argv);
145 elm_config_cache_flush_enabled_set(EINA_TRUE);
146 auto preload = [argv](void) {
149 char* chromium_arg_options[] = {
151 const_cast<char*>("--no-sandbox"),
152 const_cast<char*>("--enable-file-cookies"),
153 const_cast<char*>("--allow-file-access-from-files"),
154 const_cast<char*>("--allow-universal-access-from-files"),
155 const_cast<char*>("--single-process")
157 const int chromium_arg_cnt =
158 sizeof(chromium_arg_options) / sizeof(chromium_arg_options[0]);
159 ewk_set_arguments(chromium_arg_cnt, chromium_arg_options);
160 runtime::PreloadManager::GetInstance()->CreateCacheComponet();
162 auto did_launch = [](const std::string& app_path) {
164 auto prelaunch = runtime::PreLauncher::Prelaunch;
165 return prelaunch(argc, argv, preload, did_launch, real_main);
167 return real_main(argc, argv);