Fix invalid licenses
[platform/framework/web/crosswalk-tizen.git] / src / runtime / main.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 "common/logger.h"
20 #include "common/constants.h"
21 #include "common/command_line.h"
22 #include "runtime/runtime.h"
23 #include "extension/extension_server.h"
24
25 int main(int argc, char* argv[]) {
26   // Parse commandline.
27   wrt::CommandLine::Init(argc, argv);
28
29   wrt::CommandLine* cmd = wrt::CommandLine::ForCurrentProcess();
30   if (cmd->HasOptionName(wrt::kSwitchExtensionServer)) {
31     // If cmd has the switch '--extension-server', run as extension server.
32     LOGGER(INFO) << "Extension server process has been created.";
33     if (!wrt::ExtensionServer::StartExtensionProcess()) {
34       LOGGER(ERROR) << "Failed to start extension server.";
35       exit(EXIT_FAILURE);
36     }
37   } else {
38     // Default behavior, run as runtime.
39     LOGGER(INFO) << "Runtime process has been created.";
40     ewk_init();
41     char* chromium_arg_options[] = {
42       argv[0],
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     wrt::Runtime runtime;
52     int ret = runtime.Exec(argc, argv);
53     ewk_shutdown();
54     exit(ret);
55   }
56
57   return EXIT_SUCCESS;
58 }