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.
17 #include <ewk_chromium.h>
19 #include <Elementary.h>
21 #ifdef WATCH_FACE_FEATURE_SUPPORT
22 #include <bundle_internal.h>
23 #include <Ecore_Wayland.h>
24 #endif // WATCH_FACE_FEATURE_SUPPORT
26 #include "common/application_data.h"
27 #include "common/command_line.h"
28 #include "common/logger.h"
29 #include "common/profiler.h"
30 #include "runtime/browser/runtime.h"
31 #include "runtime/common/constants.h"
32 #include "runtime/browser/prelauncher.h"
33 #include "runtime/browser/preload_manager.h"
35 bool g_prelaunch = false;
37 #ifdef WATCH_FACE_FEATURE_SUPPORT
38 static int setWatchEnv(int argc, char **argv) {
40 char *wayland_display = NULL;
41 char *xdg_runtime_dir = NULL;
42 char *width_str = NULL;
43 char *height_str = NULL;
45 if (argc <= 0 || argv == NULL) {
47 LOGGER(ERROR) << "argument are invalid";
51 kb = bundle_import_from_argv(argc, argv);
53 bundle_get_str(kb, "XDG_RUNTIME_DIR", &xdg_runtime_dir);
54 bundle_get_str(kb, "WAYLAND_DISPLAY", &wayland_display);
55 bundle_get_str(kb, "WATCH_WIDTH", &width_str);
56 bundle_get_str(kb, "WATCH_HEIGHT", &height_str);
58 if (xdg_runtime_dir) {
59 LOGGER(DEBUG) << "senenv: " << xdg_runtime_dir;
60 setenv("XDG_RUNTIME_DIR", xdg_runtime_dir, 1);
62 LOGGER(ERROR) << "failed to get xdgruntimedir";
65 if (wayland_display) {
66 LOGGER(DEBUG) << "setenv: " << wayland_display;
67 setenv("WAYLAND_DISPLAY", wayland_display, 1);
69 LOGGER(ERROR) << "failed to get waylanddisplay";
73 LOGGER(ERROR) << "failed to get launch argv";
77 #endif // WATCH_FACE_FEATURE_SUPPORT
79 int real_main(int argc, char* argv[]) {
80 STEP_PROFILE_START("Start -> Launch Completed");
81 STEP_PROFILE_START("Start -> OnCreate");
83 common::CommandLine::Init(argc, argv);
85 common::CommandLine* cmd = common::CommandLine::ForCurrentProcess();
86 std::string appid = cmd->GetAppIdFromCommandLine(runtime::kRuntimeExecName);
89 auto appdata_manager = common::ApplicationDataManager::GetInstance();
90 common::ApplicationData* appdata = appdata_manager->GetApplicationData(appid);
91 if (!appdata->LoadManifestData()) {
95 #ifdef WATCH_FACE_FEATURE_SUPPORT
96 if (appdata->app_type() == common::ApplicationData::WATCH) {
97 setWatchEnv(argc, argv);
99 #endif // WATCH_FACE_FEATURE_SUPPORT
101 // Default behavior, run as runtime.
102 LOGGER(INFO) << "Runtime process has been created.";
105 char* chromium_arg_options[] = {
107 const_cast<char*>("--no-sandbox"),
108 const_cast<char*>("--enable-file-cookies"),
109 const_cast<char*>("--allow-file-access-from-files"),
110 const_cast<char*>("--allow-universal-access-from-files"),
111 const_cast<char*>("--single-process")
113 const int chromium_arg_cnt =
114 sizeof(chromium_arg_options) / sizeof(chromium_arg_options[0]);
115 ewk_set_arguments(chromium_arg_cnt, chromium_arg_options);
116 #ifdef WATCH_FACE_FEATURE_SUPPORT
118 if (appdata->app_type() == common::ApplicationData::WATCH) {
122 #endif // WATCH_FACE_FEATURE_SUPPORT
126 // Runtime's destructor should be called before ewk_shutdown()
128 std::unique_ptr<runtime::Runtime> runtime =
129 runtime::Runtime::MakeRuntime(appdata);
130 ret = runtime->Exec(argc, argv);
139 int main(int argc, char* argv[]) {
140 if (strcmp(argv[0], "/usr/bin/wrt-loader") == 0) {
141 elm_init(argc, argv);
142 auto preload = [argv](void) {
145 char* chromium_arg_options[] = {
147 const_cast<char*>("--no-sandbox"),
148 const_cast<char*>("--enable-file-cookies"),
149 const_cast<char*>("--allow-file-access-from-files"),
150 const_cast<char*>("--allow-universal-access-from-files"),
151 const_cast<char*>("--single-process")
153 const int chromium_arg_cnt =
154 sizeof(chromium_arg_options) / sizeof(chromium_arg_options[0]);
155 ewk_set_arguments(chromium_arg_cnt, chromium_arg_options);
156 runtime::PreloadManager::GetInstance()->CreateCacheComponet();
158 auto did_launch = [](const std::string& app_path) {
160 auto prelaunch = runtime::PreLauncher::Prelaunch;
161 return prelaunch(argc, argv, preload, did_launch, real_main);
163 return real_main(argc, argv);