blob: e47bd67c4b8d8198b231fa6f089579d5f9871121 [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
Iurii Makhnof2480742022-04-26 14:51:24 +000027#include "Diagnostics.h"
Adam Lesinski448a15c2017-07-25 10:59:26 -070028#include "android-base/stringprintf.h"
Adam Lesinskiefeb7af2017-08-02 14:57:43 -070029#include "android-base/utf8.h"
Adam Lesinskid5083f62017-01-16 15:07:21 -080030#include "androidfw/StringPiece.h"
Iurii Makhnof2480742022-04-26 14:51:24 +000031#include "cmd/ApkInfo.h"
Ryan Mitchell833a1a62018-07-10 13:51:36 -070032#include "cmd/Command.h"
33#include "cmd/Compile.h"
34#include "cmd/Convert.h"
35#include "cmd/Diff.h"
36#include "cmd/Dump.h"
37#include "cmd/Link.h"
38#include "cmd/Optimize.h"
Ryan Mitchell214846d2018-09-19 16:57:01 -070039#include "io/FileStream.h"
Fabien Sanglard2d34e762019-02-21 15:13:29 -080040#include "trace/TraceBuffer.h"
Adam Lesinski448a15c2017-07-25 10:59:26 -070041#include "util/Files.h"
42#include "util/Util.h"
43
44using ::android::StringPiece;
45using ::android::base::StringPrintf;
Chris Warrington820d72a2017-04-27 15:27:01 +010046
Adam Lesinski1ab598f2015-08-14 14:26:04 -070047namespace aapt {
Adam Lesinski5886a922015-04-15 20:29:22 -070048
Ryan Mitchell833a1a62018-07-10 13:51:36 -070049/** Prints the version information of AAPT2. */
50class VersionCommand : public Command {
51 public:
52 explicit VersionCommand() : Command("version") {
53 SetDescription("Prints the version of aapt.");
54 }
Adam Lesinski0368ebf2016-07-26 12:55:51 -070055
Ryan Mitchell833a1a62018-07-10 13:51:36 -070056 int Action(const std::vector<std::string>& /* args */) override {
Ryan Mitchell34039b22019-03-18 08:57:47 -070057 std::cerr << StringPrintf("%s %s", util::GetToolName(), util::GetToolFingerprint().c_str())
Ryan Mitchell833a1a62018-07-10 13:51:36 -070058 << std::endl;
Adam Lesinski448a15c2017-07-25 10:59:26 -070059 return 0;
60 }
Ryan Mitchell833a1a62018-07-10 13:51:36 -070061};
Adam Lesinski448a15c2017-07-25 10:59:26 -070062
Ryan Mitchell833a1a62018-07-10 13:51:36 -070063/** The main entry point of AAPT. */
64class MainCommand : public Command {
65 public:
Ryan Mitchell214846d2018-09-19 16:57:01 -070066 explicit MainCommand(text::Printer* printer, IDiagnostics* diagnostics)
67 : Command("aapt2"), diagnostics_(diagnostics) {
Ryan Mitchell833a1a62018-07-10 13:51:36 -070068 AddOptionalSubcommand(util::make_unique<CompileCommand>(diagnostics));
69 AddOptionalSubcommand(util::make_unique<LinkCommand>(diagnostics));
Ryan Mitchell214846d2018-09-19 16:57:01 -070070 AddOptionalSubcommand(util::make_unique<DumpCommand>(printer, diagnostics));
Ryan Mitchell833a1a62018-07-10 13:51:36 -070071 AddOptionalSubcommand(util::make_unique<DiffCommand>());
72 AddOptionalSubcommand(util::make_unique<OptimizeCommand>());
73 AddOptionalSubcommand(util::make_unique<ConvertCommand>());
74 AddOptionalSubcommand(util::make_unique<VersionCommand>());
Iurii Makhnof2480742022-04-26 14:51:24 +000075 AddOptionalSubcommand(util::make_unique<ApkInfoCommand>(diagnostics));
Adam Lesinski448a15c2017-07-25 10:59:26 -070076 }
Ryan Mitchell833a1a62018-07-10 13:51:36 -070077
78 int Action(const std::vector<std::string>& args) override {
79 if (args.size() == 0) {
80 diagnostics_->Error(DiagMessage() << "no subcommand specified");
81 } else {
82 diagnostics_->Error(DiagMessage() << "unknown subcommand '" << args[0] << "'");
83 }
84
85 Usage(&std::cerr);
86 return -1;
87 }
88
89 private:
90 IDiagnostics* diagnostics_;
91};
92
93/*
94 * Run in daemon mode. The first line of input is the command. This can be 'quit' which ends
95 * the daemon mode. Each subsequent line is a single parameter to the command. The end of a
96 * invocation is signaled by providing an empty line. At any point, an EOF signal or the
97 * command 'quit' will end the daemon mode.
98 */
99class DaemonCommand : public Command {
100 public:
Ryan Mitchell214846d2018-09-19 16:57:01 -0700101 explicit DaemonCommand(io::FileOutputStream* out, IDiagnostics* diagnostics)
102 : Command("daemon", "m"), out_(out), diagnostics_(diagnostics) {
Ryan Mitchell833a1a62018-07-10 13:51:36 -0700103 SetDescription("Runs aapt in daemon mode. Each subsequent line is a single parameter to the\n"
104 "command. The end of an invocation is signaled by providing an empty line.");
Fabien Sanglard2d34e762019-02-21 15:13:29 -0800105 AddOptionalFlag("--trace_folder", "Generate systrace json trace fragment to specified folder.",
106 &trace_folder_);
Ryan Mitchell833a1a62018-07-10 13:51:36 -0700107 }
108
Fabien Sanglard2d34e762019-02-21 15:13:29 -0800109 int Action(const std::vector<std::string>& arguments) override {
110 TRACE_FLUSH_ARGS(trace_folder_ ? trace_folder_.value() : "", "daemon", arguments);
Ryan Mitchell214846d2018-09-19 16:57:01 -0700111 text::Printer printer(out_);
Ryan Mitchell833a1a62018-07-10 13:51:36 -0700112 std::cout << "Ready" << std::endl;
113
114 while (true) {
115 std::vector<std::string> raw_args;
116 for (std::string line; std::getline(std::cin, line) && !line.empty();) {
117 raw_args.push_back(line);
118 }
119
120 if (!std::cin) {
121 break;
122 }
123
124 // An empty command does nothing.
125 if (raw_args.empty()) {
126 continue;
127 }
128
129 // End the dameon
130 if (raw_args[0] == "quit") {
131 break;
132 }
133
134 std::vector<StringPiece> args;
135 args.insert(args.end(), raw_args.begin(), raw_args.end());
Ryan Mitchell214846d2018-09-19 16:57:01 -0700136 int result = MainCommand(&printer, diagnostics_).Execute(args, &std::cerr);
137 out_->Flush();
138 if (result != 0) {
Ryan Mitchell833a1a62018-07-10 13:51:36 -0700139 std::cerr << "Error" << std::endl;
140 }
141 std::cerr << "Done" << std::endl;
142 }
143 std::cout << "Exiting daemon" << std::endl;
144
145 return 0;
146 }
147
148 private:
Ryan Mitchell214846d2018-09-19 16:57:01 -0700149 io::FileOutputStream* out_;
Ryan Mitchell833a1a62018-07-10 13:51:36 -0700150 IDiagnostics* diagnostics_;
Ryan Mitchell4382e442021-07-14 12:53:01 -0700151 std::optional<std::string> trace_folder_;
Ryan Mitchell833a1a62018-07-10 13:51:36 -0700152};
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800153
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700154} // namespace aapt
Adam Lesinski330edcd2015-05-04 17:40:56 -0700155
Adam Lesinskiefeb7af2017-08-02 14:57:43 -0700156int MainImpl(int argc, char** argv) {
Ryan Mitchell833a1a62018-07-10 13:51:36 -0700157 if (argc < 1) {
Adam Lesinski448a15c2017-07-25 10:59:26 -0700158 return -1;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700159 }
160
Adam Lesinski448a15c2017-07-25 10:59:26 -0700161 // Collect the arguments starting after the program name and command name.
162 std::vector<StringPiece> args;
163 for (int i = 1; i < argc; i++) {
164 args.push_back(argv[i]);
165 }
166
Ryan Mitchell214846d2018-09-19 16:57:01 -0700167 // Use a smaller buffer so that there is less latency for printing to stdout.
168 constexpr size_t kStdOutBufferSize = 1024u;
169 aapt::io::FileOutputStream fout(STDOUT_FILENO, kStdOutBufferSize);
170 aapt::text::Printer printer(&fout);
Adam Lesinski448a15c2017-07-25 10:59:26 -0700171
Ryan Mitchell214846d2018-09-19 16:57:01 -0700172 aapt::StdErrDiagnostics diagnostics;
Ryan Mitchellac55e412019-09-24 16:26:20 -0700173 aapt::MainCommand main_command(&printer, &diagnostics);
Ryan Mitchell214846d2018-09-19 16:57:01 -0700174
175 // Add the daemon subcommand here so it cannot be called while executing the daemon
Ryan Mitchellac55e412019-09-24 16:26:20 -0700176 main_command.AddOptionalSubcommand(
Ryan Mitchell214846d2018-09-19 16:57:01 -0700177 aapt::util::make_unique<aapt::DaemonCommand>(&fout, &diagnostics));
Ryan Mitchellac55e412019-09-24 16:26:20 -0700178 return main_command.Execute(args, &std::cerr);
Steven Moreland2700afd2019-09-19 11:08:47 -0700179}
180
Adam Lesinskiefeb7af2017-08-02 14:57:43 -0700181int main(int argc, char** argv) {
182#ifdef _WIN32
183 LPWSTR* wide_argv = CommandLineToArgvW(GetCommandLineW(), &argc);
184 CHECK(wide_argv != nullptr) << "invalid command line parameters passed to process";
185
186 std::vector<std::string> utf8_args;
187 for (int i = 0; i < argc; i++) {
188 std::string utf8_arg;
189 if (!::android::base::WideToUTF8(wide_argv[i], &utf8_arg)) {
190 std::cerr << "error converting input arguments to UTF-8" << std::endl;
191 return 1;
192 }
193 utf8_args.push_back(std::move(utf8_arg));
194 }
195 LocalFree(wide_argv);
196
197 std::unique_ptr<char* []> utf8_argv(new char*[utf8_args.size()]);
198 for (int i = 0; i < argc; i++) {
199 utf8_argv[i] = const_cast<char*>(utf8_args[i].c_str());
200 }
201 argv = utf8_argv.get();
202#endif
203 return MainImpl(argc, argv);
204}