2eefcf2dae500523e36393ba205eb098fa026c0a
[platform/framework/web/crosswalk-tizen.git] / runtime / browser / runtime_process.cc
1 /*
2  * Copyright (c) 2015 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 #include <ewk_chromium.h>
18
19 #include <Elementary.h>
20
21 #include "common/command_line.h"
22 #include "common/logger.h"
23 #include "common/profiler.h"
24 #include "runtime/browser/runtime.h"
25 #include "runtime/browser/prelauncher.h"
26 #include "runtime/browser/preload_manager.h"
27
28 bool g_prelaunch = false;
29
30 int real_main(int argc, char* argv[]) {
31   STEP_PROFILE_START("Start -> Launch Completed");
32   STEP_PROFILE_START("Start -> OnCreate");
33   // Parse commandline.
34   common::CommandLine::Init(argc, argv);
35
36   // Default behavior, run as runtime.
37   LOGGER(INFO) << "Runtime process has been created.";
38   if (!g_prelaunch) {
39     ewk_init();
40     char* chromium_arg_options[] = {
41       argv[0],
42       const_cast<char*>("--no-sandbox"),
43       const_cast<char*>("--enable-file-cookies"),
44       const_cast<char*>("--allow-file-access-from-files"),
45       const_cast<char*>("--allow-universal-access-from-files")
46     };
47     const int chromium_arg_cnt =
48         sizeof(chromium_arg_options) / sizeof(chromium_arg_options[0]);
49     ewk_set_arguments(chromium_arg_cnt, chromium_arg_options);
50   }
51
52   int ret = 0;
53   // Runtime's destructor should be called before ewk_shutdown()
54   {
55     runtime::Runtime runtime;
56     ret = runtime.Exec(argc, argv);
57   }
58   ewk_shutdown();
59   exit(ret);
60
61   return EXIT_SUCCESS;
62 }
63
64 int main(int argc, char* argv[]) {
65   if (strcmp(argv[0], "/usr/bin/wrt-loader") == 0) {
66     elm_init(argc, argv);
67     auto preload = [argv](void) {
68       g_prelaunch = true;
69       ewk_init();
70       char* chromium_arg_options[] = {
71         argv[0],
72         const_cast<char*>("--no-sandbox"),
73         const_cast<char*>("--enable-file-cookies"),
74         const_cast<char*>("--allow-file-access-from-files"),
75         const_cast<char*>("--allow-universal-access-from-files")
76       };
77       const int chromium_arg_cnt =
78           sizeof(chromium_arg_options) / sizeof(chromium_arg_options[0]);
79       ewk_set_arguments(chromium_arg_cnt, chromium_arg_options);
80       runtime::PreloadManager::GetInstance()->CreateCacheComponet();
81     };
82     auto did_launch = [](const std::string& app_path) {
83     };
84     auto prelaunch = runtime::PreLauncher::Prelaunch;
85     return prelaunch(argc, argv, preload, did_launch, real_main);
86   } else {
87     return real_main(argc, argv);
88   }
89 }