Add 'Tizen Assembly Cache' feature
[platform/core/dotnet/launcher.git] / NativeLauncher / tool / nitool.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 "utils.h"
18 #include "ni_common.h"
19
20 #include <cstdio>
21 #include <cstring>
22
23 #include <algorithm>
24 #include <vector>
25
26 std::vector<std::string> getCmdArgs(char** begin, char** end)
27 {
28         std::vector<std::string> list;
29         for (char** itr = begin+1; itr != end; itr++) {
30                 if (strncmp(*itr, "--", 2) != 0)
31                         list.push_back(*itr);
32         }
33         return list;
34 }
35
36 static void help(const char *argv0)
37 {
38         const char* helpDesc =
39                 "Usage: %s [args] <root paths or pkg name>\n"
40                 "       --help              - Display this screen\n"
41                 "       --system            - Create NI under System DLLs\n"
42                 "       --dll               - Create NI for DLL\n"
43                 "       --pkg               - Create NI for package\n"
44                 "       --dir               - Create NI for directory\n"
45                 "       --r2r               - Use ready-to-run option (default: FNV)\n"
46                 "                             (This option should be used with other options)\n"
47                 "       --reset-system      - Remove System NI files\n"
48                 "       --reset-pkg         - Remove App NI files\n"
49                 "       --regen-all-app     - Re-generate All App NI files\n"
50                 "\n"
51                 "Example:\n"
52                 "1. Create native image for dlls and exes under platform directories\n"
53                 "   # %s --system\n"
54                 "2. Create native image for dll\n"
55                 "   # %s --dll /usr/bin/Tizen.Runtime.dll\n"
56                 "3. Create native image under the package's bin and lib directory\n"
57                 "   # %s --pkg org.tizen.FormsGallery\n"
58                 "4. Regenerate native images for all installed .net packages with ready-to-run option\n"
59                 "   # %s --r2r --regen-all-app\n\n";
60         printf(helpDesc, argv0, argv0, argv0, argv0, argv0);
61 }
62
63 int main(int argc, char* argv[])
64 {
65         bool pkgMode = false;
66         bool dllMode = false;
67         bool dirMode = false;
68         bool rmPkgMode = false;
69         bool enableR2R = false;
70         bool pkgDllMode = false;
71
72         NiCommonOption option = {std::string(), std::string(), std::string()};
73         if (initNICommon(&option) < 0) {
74                 fprintf(stderr, "Fail to initialize NI Common\n");
75                 return -1;
76         }
77
78         if (cmdOptionExists(argv, argv+argc, "--r2r")) {
79                 enableR2R = true;
80         }
81
82         if (cmdOptionExists(argv, argv+argc, "--help")) {
83                 help(argv[0]);
84                 return 0;
85         } else if (cmdOptionExists(argv, argv+argc, "--system")) {
86                 createNiPlatform(enableR2R);
87                 return 0;
88         } else if (cmdOptionExists(argv, argv+argc, "--dll")) {
89                 dllMode = true;
90         } else if (cmdOptionExists(argv, argv+argc, "--pkg")) {
91                 pkgMode = true;
92         } else if (cmdOptionExists(argv, argv+argc, "--dir")) {
93                 dirMode = true;
94         } else if (cmdOptionExists(argv, argv+argc, "--reset-system")) {
95                 removeNiPlatform();
96                 return 0;
97         } else if (cmdOptionExists(argv, argv+argc, "--reset-pkg")) {
98                 rmPkgMode = true;
99         } else if (cmdOptionExists(argv, argv+argc, "--regen-all-app")) {
100                 regenerateAppNI(enableR2R);
101                 return 0;
102         } else if (cmdOptionExists(argv, argv+argc, "--pkg-dll")) {
103                 pkgDllMode = true;
104         } else {
105                 help(argv[0]);
106                 return 0;
107         }
108
109         std::vector<std::string> args = getCmdArgs(argv, argv+argc);
110
111         if (args.size() < 1) {
112                 if (pkgMode)
113                         fprintf(stderr, "Package name is missed\n");
114                 else if (dllMode)
115                         fprintf(stderr, "DLL path is missed\n");
116                 help(argv[0]);
117                 return 1;
118         }
119
120         if (pkgMode) {
121                 for (const std::string pkg : args) {
122                         if (createNiUnderPkgRoot(pkg, enableR2R) != 0) {
123                                 fprintf(stderr, "Failed to get root path from [%s]\n", pkg.c_str());
124                                 return -1;
125                         }
126                 }
127         } else if (pkgDllMode) {
128                 if (createNiDllUnderPkgRoot(args[0], args[1], enableR2R) != 0) {
129                         fprintf(stderr, "Failed to get root path from [%s]\n", args[0].c_str());
130                         return -1;
131                 }
132         } else if (rmPkgMode) {
133                 for (const std::string pkg : args) {
134                         if (removeNiUnderPkgRoot(pkg) != 0) {
135                                 fprintf(stderr, "Failed to get root path from [%s]\n", pkg.c_str());
136                                 return -1;
137                         }
138                 }
139         } else if (dllMode) {
140                 for (const std::string dll : args) {
141                         if (createNiDll(dll, enableR2R) != 0) {
142                                 fprintf(stderr, "Failed to generate NI file [%s]\n", dll.c_str());
143                         }
144                 }
145         } else if (dirMode) {
146                 createNiUnderDirs(args.data(), args.size(), enableR2R);
147         }
148
149         return 0;
150 }