blob: 86f4c42c72a7651909211162cfe07ddeec2f6a3a [file] [log] [blame]
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001/*
2 * Copyright (C) 2015 The Android Open Source Project
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
Adam Lesinskiefeb7af2017-08-02 14:57:43 -070017#ifdef _WIN32
18// clang-format off
19#include <windows.h>
20#include <shellapi.h>
21// clang-format on
22#endif
23
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080024#include <iostream>
Adam Lesinski1ab598f2015-08-14 14:26:04 -070025#include <vector>
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080026
Adam Lesinski448a15c2017-07-25 10:59:26 -070027#include "android-base/stringprintf.h"
Adam Lesinskiefeb7af2017-08-02 14:57:43 -070028#include "android-base/utf8.h"
Adam Lesinskid5083f62017-01-16 15:07:21 -080029#include "androidfw/StringPiece.h"
Adam Lesinskice5e56e2016-10-21 17:56:45 -070030
Chris Warrington820d72a2017-04-27 15:27:01 +010031#include "Diagnostics.h"
Adam Lesinski448a15c2017-07-25 10:59:26 -070032#include "util/Files.h"
33#include "util/Util.h"
34
35using ::android::StringPiece;
36using ::android::base::StringPrintf;
Chris Warrington820d72a2017-04-27 15:27:01 +010037
Adam Lesinski1ab598f2015-08-14 14:26:04 -070038namespace aapt {
Adam Lesinski5886a922015-04-15 20:29:22 -070039
Adam Lesinski0368ebf2016-07-26 12:55:51 -070040// DO NOT UPDATE, this is more of a marketing version.
41static const char* sMajorVersion = "2";
42
43// Update minor version whenever a feature or flag is added.
Adam Lesinskif903d5f2017-07-10 04:19:28 -070044static const char* sMinorVersion = "18";
Adam Lesinski0368ebf2016-07-26 12:55:51 -070045
Adam Lesinski448a15c2017-07-25 10:59:26 -070046static void PrintVersion() {
47 std::cerr << StringPrintf("Android Asset Packaging Tool (aapt) %s:%s", sMajorVersion,
48 sMinorVersion)
49 << std::endl;
Adam Lesinski0368ebf2016-07-26 12:55:51 -070050}
51
Adam Lesinski448a15c2017-07-25 10:59:26 -070052static void PrintUsage() {
53 std::cerr << "\nusage: aapt2 [compile|link|dump|diff|optimize|version] ..." << std::endl;
54}
55
56extern int Compile(const std::vector<StringPiece>& args, IDiagnostics* diagnostics);
57extern int Link(const std::vector<StringPiece>& args, IDiagnostics* diagnostics);
58extern int Dump(const std::vector<StringPiece>& args);
59extern int Diff(const std::vector<StringPiece>& args);
60extern int Optimize(const std::vector<StringPiece>& args);
61
62static int ExecuteCommand(const StringPiece& command, const std::vector<StringPiece>& args,
63 IDiagnostics* diagnostics) {
64 if (command == "compile" || command == "c") {
65 return Compile(args, diagnostics);
66 } else if (command == "link" || command == "l") {
67 return Link(args, diagnostics);
68 } else if (command == "dump" || command == "d") {
69 return Dump(args);
70 } else if (command == "diff") {
71 return Diff(args);
72 } else if (command == "optimize") {
73 return Optimize(args);
74 } else if (command == "version") {
75 PrintVersion();
76 return 0;
77 }
78 diagnostics->Error(DiagMessage() << "unknown command '" << command << "'");
79 return -1;
80}
81
82static void RunDaemon(IDiagnostics* diagnostics) {
83 std::cout << "Ready" << std::endl;
84
Adam Lesinski43f6f772017-08-24 15:17:05 -070085 // Run in daemon mode. The first line of input is the command. This can be 'quit' which ends
86 // the daemon mode. Each subsequent line is a single parameter to the command. The end of a
87 // invocation is signaled by providing an empty line. At any point, an EOF signal or the
88 // command 'quit' will end the daemon mode.
89 while (true) {
90 std::vector<std::string> raw_args;
91 for (std::string line; std::getline(std::cin, line) && !line.empty();) {
92 raw_args.push_back(line);
Adam Lesinski448a15c2017-07-25 10:59:26 -070093 }
94
Adam Lesinski43f6f772017-08-24 15:17:05 -070095 if (!std::cin) {
Adam Lesinski448a15c2017-07-25 10:59:26 -070096 break;
97 }
98
Adam Lesinski43f6f772017-08-24 15:17:05 -070099 // An empty command does nothing.
100 if (raw_args.empty()) {
101 continue;
102 }
103
104 if (raw_args[0] == "quit") {
105 break;
106 }
Adam Lesinski448a15c2017-07-25 10:59:26 -0700107
108 std::vector<StringPiece> args;
Adam Lesinski43f6f772017-08-24 15:17:05 -0700109 args.insert(args.end(), ++raw_args.begin(), raw_args.end());
110 int ret = ExecuteCommand(raw_args[0], args, diagnostics);
Izabela Orlowska4a4ebe22017-08-24 16:19:45 +0100111 if (ret != 0) {
112 std::cerr << "Error" << std::endl;
113 }
114 std::cerr << "Done" << std::endl;
Adam Lesinski448a15c2017-07-25 10:59:26 -0700115 }
Adam Lesinski448a15c2017-07-25 10:59:26 -0700116 std::cout << "Exiting daemon" << std::endl;
117}
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800118
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700119} // namespace aapt
Adam Lesinski330edcd2015-05-04 17:40:56 -0700120
Adam Lesinskiefeb7af2017-08-02 14:57:43 -0700121int MainImpl(int argc, char** argv) {
Adam Lesinski448a15c2017-07-25 10:59:26 -0700122 if (argc < 2) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700123 std::cerr << "no command specified\n";
Adam Lesinski448a15c2017-07-25 10:59:26 -0700124 aapt::PrintUsage();
125 return -1;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700126 }
127
Adam Lesinski448a15c2017-07-25 10:59:26 -0700128 argv += 1;
129 argc -= 1;
130
131 aapt::StdErrDiagnostics diagnostics;
132
133 // Collect the arguments starting after the program name and command name.
134 std::vector<StringPiece> args;
135 for (int i = 1; i < argc; i++) {
136 args.push_back(argv[i]);
137 }
138
139 const StringPiece command(argv[0]);
140 if (command != "daemon" && command != "m") {
141 // Single execution.
142 const int result = aapt::ExecuteCommand(command, args, &diagnostics);
143 if (result < 0) {
144 aapt::PrintUsage();
145 }
146 return result;
147 }
148
149 aapt::RunDaemon(&diagnostics);
150 return 0;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800151}
Adam Lesinskiefeb7af2017-08-02 14:57:43 -0700152
153int main(int argc, char** argv) {
154#ifdef _WIN32
155 LPWSTR* wide_argv = CommandLineToArgvW(GetCommandLineW(), &argc);
156 CHECK(wide_argv != nullptr) << "invalid command line parameters passed to process";
157
158 std::vector<std::string> utf8_args;
159 for (int i = 0; i < argc; i++) {
160 std::string utf8_arg;
161 if (!::android::base::WideToUTF8(wide_argv[i], &utf8_arg)) {
162 std::cerr << "error converting input arguments to UTF-8" << std::endl;
163 return 1;
164 }
165 utf8_args.push_back(std::move(utf8_arg));
166 }
167 LocalFree(wide_argv);
168
169 std::unique_ptr<char* []> utf8_argv(new char*[utf8_args.size()]);
170 for (int i = 0; i < argc; i++) {
171 utf8_argv[i] = const_cast<char*>(utf8_args[i].c_str());
172 }
173 argv = utf8_argv.get();
174#endif
175 return MainImpl(argc, argv);
176}