Refactoring CoreRuntime and plugin (#247)
[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 "core_runtime.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 static std::string AppTypeOption("--appType");
42
43 int main(int argc, char *argv[])
44 {
45         _INFO("##### Run in standalone mode #####");
46
47         char* standalonePath = nullptr;
48         bool paddingExist = false;
49         const char* appType = NULL;
50         const char* appRootPath = NULL;
51         char appId[APPID_MAX_LENGTH] = {0,};
52
53         std::vector<char*> vargs;
54
55         // start index 1 to avoid passing executable name "dotnet-launcher" as a parameter
56         for (int i = 1; i < argc; i++) {
57                 if (StandaloneOption.compare(argv[i]) == 0) {
58                         if (i > argc - 1) {
59                                 _ERR("Assembly path must be after \"--standalone\" option");
60                                 return -1;
61                         }
62                         i++;
63                         standalonePath = argv[i];
64                 } else if (PaddingOption.compare(argv[i]) == 0) {
65                         paddingExist = true;
66                 } else if (AppTypeOption.compare(argv[i]) == 0) {
67                         if (i > argc - 1) {
68                                 _ERR("app type for launchpad must be after \"--appType\" option");
69                                 return -1;
70                         }
71                         i++;
72                         appType = argv[i];
73                 } else {
74                         vargs.push_back(argv[i]);
75                 }
76         }
77
78         if (appType == NULL) {
79                 appType = "dotnet";
80         }
81
82         // get app ID and app root path
83         if (AUL_R_OK == aul_app_get_appid_bypid(getpid(), appId, sizeof(appId))) {
84                 _INFO("AUL_APPID : %s", appId);
85                 // aul_get_app_root_path returns const char*, so there is no need to free after use.
86                 appRootPath = aul_get_app_root_path();
87                 if (appRootPath == nullptr) {
88                         _ERR("Fail to get application root path");
89                         return -1;
90                 }
91         } else {
92                 _ERR("Fail to get app_id");
93                 return -1;
94         }
95
96         // set command name to assembly file
97         setCmdName(getFileName(standalonePath));
98
99         // change cmdline from dotnet-launcher to executable path
100         int cmdlineSize = paddingExist ? APPID_MAX_LENGTH : APPID_MAX_LENGTH - PaddingOption.length();
101         memset(argv[0], '\0', cmdlineSize);
102         snprintf(argv[0], cmdlineSize - 1, "%s", standalonePath);
103
104         // initialize CoreRuntime
105         if (CoreRuntime::initialize(appType, LaunchMode::launcher) != 0) {
106                 _ERR("Failed to initialize");
107                 return -1;
108         }
109
110         // launch application
111         if (CoreRuntime::launch(appId, appRootPath, standalonePath, vargs.size(), &vargs[0])) {
112                 _ERR("Failed to launch");
113                 return -1;
114         }
115
116         // finalize runtime
117         CoreRuntime::finalize();
118
119         return 0;
120 }