Code cleanup (#251)
[platform/core/dotnet/launcher.git] / NativeLauncher / launcher / exec / launcher.cc
1 /*
2  * Copyright (c) 2016 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 "dotnet_launcher.h"
18 #include "utils.h"
19 #include "log.h"
20
21 #include <cstdio>
22 #include <vector>
23 #include <memory>
24
25 #include <aul.h>
26 #include <sys/types.h>
27 #include <unistd.h>
28
29 #include <sys/prctl.h>
30
31 using tizen::runtime::dotnetcore::CoreRuntime;
32
33 // By the specification, application id must be shorter than 50 characters.
34 // Current length of argv[0] is 25 with a space. ("/usr/bin/dotnet-launcher ")
35 // To be able to change argv[0] when standalone mode padding for executable path is added.
36 #define APPID_MAX_LENGTH        (25 + 105)
37 #define PRC_NAME_LENGTH         16
38
39 static std::string StandaloneOption("--standalone");
40 static std::string PaddingOption("--PADDING_TO_CHANGE_CMDLINE_PADDING_TO_CHANGE_CMDLINE_PADDING_TO_CHANGE_CMDLINE_PADDING_TO_CHANGE_CMDLINE");
41
42 int main(int argc, char *argv[])
43 {
44         _INFO("##### Run in standalone mode #####");
45
46         char* standalonePath = nullptr;
47         bool paddingExist = false;
48         const char* appRootPath = NULL;
49         char appId[APPID_MAX_LENGTH] = {0,};
50
51         std::vector<char*> vargs;
52
53         // start index 1 to avoid passing executable name "dotnet-launcher" as a parameter
54         for (int i = 1; i < argc; i++) {
55                 if (StandaloneOption.compare(argv[i]) == 0) {
56                         if (i > argc - 1) {
57                                 _ERR("Assembly path must be after \"--standalone\" option");
58                                 return -1;
59                         }
60                         i++;
61                         standalonePath = argv[i];
62                 } else if (PaddingOption.compare(argv[i]) == 0) {
63                         paddingExist = true;
64                 } else {
65                         vargs.push_back(argv[i]);
66                 }
67         }
68
69         std::unique_ptr<CoreRuntime> runtime(new CoreRuntime("standalone"));
70
71         // get app ID and app root path
72         if (AUL_R_OK == aul_app_get_appid_bypid(getpid(), appId, sizeof(appId))) {
73                 _INFO("AUL_APPID : %s", appId);
74                 // aul_get_app_root_path returns const char*, so there is no need to free after use.
75                 appRootPath = aul_get_app_root_path();
76                 if (appRootPath == nullptr) {
77                         _ERR("Fail to get application root path");
78                         return -1;
79                 }
80         } else {
81                 _ERR("Fail to get app_id");
82                 return -1;
83         }
84
85         // set command name to assembly file
86         setCmdName(getFileName(standalonePath));
87
88         // change cmdline from dotnet-launcher to executable path
89         int cmdlineSize = paddingExist ? APPID_MAX_LENGTH : APPID_MAX_LENGTH - PaddingOption.length();
90         memset(argv[0], '\0', cmdlineSize);
91         snprintf(argv[0], cmdlineSize - 1, "%s", standalonePath);
92
93         // initialize CoreRuntime (standalone mode enable, dlog redirection enable, root path NULL)
94         if (runtime->initialize(LaunchMode::launcher) != 0) {
95                 _ERR("Failed to initialize");
96                 return -1;
97         }
98
99         // launch application
100         if (runtime->launch(appId, appRootPath, standalonePath, vargs.size(), &vargs[0])) {
101                 _ERR("Failed to launch");
102                 return -1;
103         }
104
105         return 0;
106 }