blob: 39eb9879f86deafd2fc54ed3753b8a1bbf406a3a [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"
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
Adam Lesinski0368ebf2016-07-26 12:55:51 -070049// DO NOT UPDATE, this is more of a marketing version.
50static const char* sMajorVersion = "2";
51
52// Update minor version whenever a feature or flag is added.
Adam Lesinski3420eed2017-09-13 14:46:00 -070053static const char* sMinorVersion = "19";
Adam Lesinski0368ebf2016-07-26 12:55:51 -070054
Ryan Mitchell833a1a62018-07-10 13:51:36 -070055/** Prints the version information of AAPT2. */
56class VersionCommand : public Command {
57 public:
58 explicit VersionCommand() : Command("version") {
59 SetDescription("Prints the version of aapt.");
60 }
Adam Lesinski0368ebf2016-07-26 12:55:51 -070061
Ryan Mitchell833a1a62018-07-10 13:51:36 -070062 int Action(const std::vector<std::string>& /* args */) override {
63 std::cerr << StringPrintf("Android Asset Packaging Tool (aapt) %s:%s", sMajorVersion,
64 sMinorVersion)
65 << std::endl;
Adam Lesinski448a15c2017-07-25 10:59:26 -070066 return 0;
67 }
Ryan Mitchell833a1a62018-07-10 13:51:36 -070068};
Adam Lesinski448a15c2017-07-25 10:59:26 -070069
Ryan Mitchell833a1a62018-07-10 13:51:36 -070070/** The main entry point of AAPT. */
71class MainCommand : public Command {
72 public:
Ryan Mitchell214846d2018-09-19 16:57:01 -070073 explicit MainCommand(text::Printer* printer, IDiagnostics* diagnostics)
74 : Command("aapt2"), diagnostics_(diagnostics) {
Ryan Mitchell833a1a62018-07-10 13:51:36 -070075 AddOptionalSubcommand(util::make_unique<CompileCommand>(diagnostics));
76 AddOptionalSubcommand(util::make_unique<LinkCommand>(diagnostics));
Ryan Mitchell214846d2018-09-19 16:57:01 -070077 AddOptionalSubcommand(util::make_unique<DumpCommand>(printer, diagnostics));
Ryan Mitchell833a1a62018-07-10 13:51:36 -070078 AddOptionalSubcommand(util::make_unique<DiffCommand>());
79 AddOptionalSubcommand(util::make_unique<OptimizeCommand>());
80 AddOptionalSubcommand(util::make_unique<ConvertCommand>());
81 AddOptionalSubcommand(util::make_unique<VersionCommand>());
Adam Lesinski448a15c2017-07-25 10:59:26 -070082 }
Ryan Mitchell833a1a62018-07-10 13:51:36 -070083
84 int Action(const std::vector<std::string>& args) override {
85 if (args.size() == 0) {
86 diagnostics_->Error(DiagMessage() << "no subcommand specified");
87 } else {
88 diagnostics_->Error(DiagMessage() << "unknown subcommand '" << args[0] << "'");
89 }
90
91 Usage(&std::cerr);
92 return -1;
93 }
94
95 private:
96 IDiagnostics* diagnostics_;
97};
98
99/*
100 * Run in daemon mode. The first line of input is the command. This can be 'quit' which ends
101 * the daemon mode. Each subsequent line is a single parameter to the command. The end of a
102 * invocation is signaled by providing an empty line. At any point, an EOF signal or the
103 * command 'quit' will end the daemon mode.
104 */
105class DaemonCommand : public Command {
106 public:
Ryan Mitchell214846d2018-09-19 16:57:01 -0700107 explicit DaemonCommand(io::FileOutputStream* out, IDiagnostics* diagnostics)
108 : Command("daemon", "m"), out_(out), diagnostics_(diagnostics) {
Ryan Mitchell833a1a62018-07-10 13:51:36 -0700109 SetDescription("Runs aapt in daemon mode. Each subsequent line is a single parameter to the\n"
110 "command. The end of an invocation is signaled by providing an empty line.");
Fabien Sanglard2d34e762019-02-21 15:13:29 -0800111 AddOptionalFlag("--trace_folder", "Generate systrace json trace fragment to specified folder.",
112 &trace_folder_);
Ryan Mitchell833a1a62018-07-10 13:51:36 -0700113 }
114
Fabien Sanglard2d34e762019-02-21 15:13:29 -0800115 int Action(const std::vector<std::string>& arguments) override {
116 TRACE_FLUSH_ARGS(trace_folder_ ? trace_folder_.value() : "", "daemon", arguments);
Ryan Mitchell214846d2018-09-19 16:57:01 -0700117 text::Printer printer(out_);
Ryan Mitchell833a1a62018-07-10 13:51:36 -0700118 std::cout << "Ready" << std::endl;
119
120 while (true) {
121 std::vector<std::string> raw_args;
122 for (std::string line; std::getline(std::cin, line) && !line.empty();) {
123 raw_args.push_back(line);
124 }
125
126 if (!std::cin) {
127 break;
128 }
129
130 // An empty command does nothing.
131 if (raw_args.empty()) {
132 continue;
133 }
134
135 // End the dameon
136 if (raw_args[0] == "quit") {
137 break;
138 }
139
140 std::vector<StringPiece> args;
141 args.insert(args.end(), raw_args.begin(), raw_args.end());
Ryan Mitchell214846d2018-09-19 16:57:01 -0700142 int result = MainCommand(&printer, diagnostics_).Execute(args, &std::cerr);
143 out_->Flush();
144 if (result != 0) {
Ryan Mitchell833a1a62018-07-10 13:51:36 -0700145 std::cerr << "Error" << std::endl;
146 }
147 std::cerr << "Done" << std::endl;
148 }
149 std::cout << "Exiting daemon" << std::endl;
150
151 return 0;
152 }
153
154 private:
Ryan Mitchell214846d2018-09-19 16:57:01 -0700155 io::FileOutputStream* out_;
Ryan Mitchell833a1a62018-07-10 13:51:36 -0700156 IDiagnostics* diagnostics_;
Fabien Sanglard2d34e762019-02-21 15:13:29 -0800157 Maybe<std::string> trace_folder_;
Ryan Mitchell833a1a62018-07-10 13:51:36 -0700158};
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800159
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700160} // namespace aapt
Adam Lesinski330edcd2015-05-04 17:40:56 -0700161
Adam Lesinskiefeb7af2017-08-02 14:57:43 -0700162int MainImpl(int argc, char** argv) {
Ryan Mitchell833a1a62018-07-10 13:51:36 -0700163 if (argc < 1) {
Adam Lesinski448a15c2017-07-25 10:59:26 -0700164 return -1;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700165 }
166
Adam Lesinski448a15c2017-07-25 10:59:26 -0700167 // Collect the arguments starting after the program name and command name.
168 std::vector<StringPiece> args;
169 for (int i = 1; i < argc; i++) {
170 args.push_back(argv[i]);
171 }
172
Ryan Mitchell214846d2018-09-19 16:57:01 -0700173 // Use a smaller buffer so that there is less latency for printing to stdout.
174 constexpr size_t kStdOutBufferSize = 1024u;
175 aapt::io::FileOutputStream fout(STDOUT_FILENO, kStdOutBufferSize);
176 aapt::text::Printer printer(&fout);
Adam Lesinski448a15c2017-07-25 10:59:26 -0700177
Ryan Mitchell214846d2018-09-19 16:57:01 -0700178 aapt::StdErrDiagnostics diagnostics;
179 auto main_command = new aapt::MainCommand(&printer, &diagnostics);
180
181 // Add the daemon subcommand here so it cannot be called while executing the daemon
182 main_command->AddOptionalSubcommand(
183 aapt::util::make_unique<aapt::DaemonCommand>(&fout, &diagnostics));
Ryan Mitchell833a1a62018-07-10 13:51:36 -0700184 return main_command->Execute(args, &std::cerr);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800185}
Adam Lesinskiefeb7af2017-08-02 14:57:43 -0700186
187int main(int argc, char** argv) {
188#ifdef _WIN32
189 LPWSTR* wide_argv = CommandLineToArgvW(GetCommandLineW(), &argc);
190 CHECK(wide_argv != nullptr) << "invalid command line parameters passed to process";
191
192 std::vector<std::string> utf8_args;
193 for (int i = 0; i < argc; i++) {
194 std::string utf8_arg;
195 if (!::android::base::WideToUTF8(wide_argv[i], &utf8_arg)) {
196 std::cerr << "error converting input arguments to UTF-8" << std::endl;
197 return 1;
198 }
199 utf8_args.push_back(std::move(utf8_arg));
200 }
201 LocalFree(wide_argv);
202
203 std::unique_ptr<char* []> utf8_argv(new char*[utf8_args.size()]);
204 for (int i = 0; i < argc; i++) {
205 utf8_argv[i] = const_cast<char*>(utf8_args[i].c_str());
206 }
207 argv = utf8_argv.get();
208#endif
209 return MainImpl(argc, argv);
210}