Modify tizen coding style
[platform/core/dotnet/launcher.git] / NativeLauncher / installer-plugin / 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 "common.h"
18
19 #include <cstdio>
20 #include <cstring>
21
22 #include <algorithm>
23 #include <vector>
24
25 std::vector<const char*> getCmdArgs(char** begin, char** end)
26 {
27         std::vector<const char*> list;
28         for (char** itr = begin+1; itr != end; itr++) {
29                 if (strncmp(*itr, "--", 2) != 0)
30                         list.push_back(*itr);
31         }
32         return list;
33 }
34
35 bool cmdOptionExists(char** begin, char** end, const std::string& option)
36 {
37         return std::find(begin, end, option) != end;
38 }
39
40 static void help(const char *argv0)
41 {
42         const char* helpDesc =
43                 "Usage: %s [args] <root paths or pkg name>\n"
44                 "               --help                  - Display this screen\n"
45                 "               --system                - Create NI under System DLLs\n"
46                 "               --dll                   - Create NI for DLL\n"
47                 "               --pkg                   - Create NI for package\n"
48                 "\n"
49                 "Example:\n"
50                 "Create native image for dlls and exes under platform directories\n"
51                 "%s --system\n"
52                 "Create native image for dll\n"
53                 "%s --dll /usr/bin/Tizen.Runtime.dll\n"
54                 "Create native image under the package's bin and lib directory\n"
55                 "%s --pkg org.tizen.FormsGallery\n\n";
56         printf(helpDesc, argv0, argv0, argv0, argv0);
57 }
58
59 int main(int argc, char* argv[])
60 {
61         bool pkgMode = false;
62         bool dllMode = false;
63
64         if (cmdOptionExists(argv, argv+argc, "--help")) {
65                 help(argv[0]);
66                 return 0;
67         } else if (cmdOptionExists(argv, argv+argc, "--system")) {
68                 createNiPlatform();
69                 return 0;
70         } else if (cmdOptionExists(argv, argv+argc, "--dll")) {
71                 dllMode = true;
72         } else if (cmdOptionExists(argv, argv+argc, "--pkg")) {
73                 pkgMode = true;
74         } else {
75                 help(argv[0]);
76                 return 1;
77         }
78
79         std::vector<const char*> args = getCmdArgs(argv, argv+argc);
80
81         if (args.size() < 1) {
82                 if (pkgMode)
83                         fprintf(stderr, "Package name is missed\n");
84                 else if (dllMode)
85                         fprintf(stderr, "DLL path is missed\n");
86                 help(argv[0]);
87                 return 1;
88         }
89
90         if (pkgMode) {
91                 for (const char* pkg : args) {
92                         if (createNiUnderPkgRoot(pkg) != 0) {
93                                 fprintf(stderr, "Failed to get root path from [%s]\n", pkg);
94                                 return 1;
95                         }
96                 }
97         } else if (dllMode) {
98                 for (const char* dll : args)
99                         createNiSelect(dll);
100         } else {
101                 createNiUnderDirs(args.data(), args.size());
102         }
103
104         return 0;
105 }