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