2 * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 #include "injection.h"
18 #include "dotnet/dotnet_launcher.h"
29 #include <sys/types.h>
32 #define CMD_LINE_SIZE 24 // sizeof("/usr/bin/dotnet-launcher")
34 static std::string StandaloneOption("--standalone");
36 extern "C" int realMain(int argc, char *argv[], const char* mode)
39 bool standaloneMode = false;
40 char* standalonePath = nullptr;
41 bool corerunMode = false;
43 std::vector<char*> vargs;
45 // start index 1 to avoid passing executable name "dotnet-launcher" as a parameter
46 for (i = 1; i < argc; i++) {
47 if (StandaloneOption.compare(argv[i]) == 0) {
48 standaloneMode = true;
51 fprintf(stderr, "Assembly path must be after \"--standalone\" option\n");
55 standalonePath = argv[i];
57 vargs.push_back(argv[i]);
61 if (isManagedAssembly(argv[1]) || isNativeImage(argv[1])) {
65 using tizen::runtime::Launchpad;
66 using tizen::runtime::AppInfo;
67 using tizen::runtime::dotnetcore::CoreRuntime;
69 std::unique_ptr<CoreRuntime> runtime(new CoreRuntime(mode));
72 _INFO("##### Run it corerun Mode #########");
73 char appId[1024] = {0,};
75 snprintf(appId, 16, "%s", "dotnet-launcher");
76 appRoot = baseName(argv[1]);
78 if (runtime->initialize(true) != 0) {
79 _ERR("Failed to initialize");
83 int argsLen = vargs.size() - 1;
84 char** args = &vargs[1];
85 if (runtime->launch(appId, appRoot.c_str(), argv[1], argsLen, args)) {
86 _ERR("Failed to launch");
89 } else if (standaloneMode) {
90 _INFO("##### Run it standalone Mode #########");
91 char appId[1024] = {0,};
93 if (AUL_R_OK == aul_app_get_appid_bypid(getpid(), appId, sizeof(appId))) {
94 const char* appRootPath = aul_get_app_root_path();
95 if (appRootPath != nullptr)
96 appRoot = std::string(appRootPath);
98 // If appId is not set, it is executed directly by cmdline.
99 // In this case, appRoot is passed as an argument.
100 snprintf(appId, 16, "%s", "dotnet-launcher");
101 appRoot = baseName(baseName(standalonePath));
103 _INFO("AUL_APPID : %s", appId);
105 if (runtime->initialize(true) != 0) {
106 _ERR("Failed to initialize");
110 // change cmdline from dotnet-launcher to executable path
111 memset(argv[0], '\0', CMD_LINE_SIZE);
112 snprintf(argv[0], CMD_LINE_SIZE - 1, "%s", appId);
114 int argsLen = vargs.size();
115 char** args = &vargs[0];
116 if (runtime->launch(appId, appRoot.c_str(), standalonePath, argsLen, args)) {
117 _ERR("Failed to launch");
121 Launchpad.onCreate = [&runtime]() {
122 if (runtime->initialize(false) != 0)
123 _ERR("Failed to initialized");
125 _INFO("Success to initialized");
128 Launchpad.onTerminate = [&runtime](const AppInfo& appInfo, int argc, char** argv) {
129 _INFO("launch request with app path : %s", appInfo.path.c_str());
130 _INFO("appId : %s", appInfo.id.c_str());
131 _INFO("pkg : %s", appInfo.pkg.c_str());
133 // aul_get_app_root_path() can return NULL for error case.
134 if (appInfo.root.empty()) {
135 _ERR("Failed to launch. root path is set to NULL");
137 // The launchpad pass the name of exe file to the first argument.
138 // For the C# spec, we have to skip this first argument.
139 if (runtime->launch(appInfo.id.c_str(), appInfo.root.c_str(), appInfo.path.c_str(), argc-1, argv+1))
140 _ERR("Failed to launch");
143 int ret = Launchpad.loaderMain(argc, argv);
145 _ERR("fail to start loaderMain. candidate process is not created.");
153 int main(int argc, char *argv[])
155 /* checkInjection checks dotnet-launcher run mode,
156 if it contains DOTNET_LAUNCHER_INJECT variable, it injects library.
157 At the moment, this mechanism is used only when the Memory Profiler is started.
159 int res = checkInjection();
164 return realMain(argc, argv, "default");