2014-11-14 14:48:12 -08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2017-08-02 14:57:43 -07:00
|
|
|
#ifdef _WIN32
|
|
|
|
// clang-format off
|
|
|
|
#include <windows.h>
|
|
|
|
#include <shellapi.h>
|
|
|
|
// clang-format on
|
|
|
|
#endif
|
|
|
|
|
2014-11-14 14:48:12 -08:00
|
|
|
#include <iostream>
|
2015-08-14 14:26:04 -07:00
|
|
|
#include <vector>
|
2014-11-14 14:48:12 -08:00
|
|
|
|
2017-07-25 10:59:26 -07:00
|
|
|
#include "android-base/stringprintf.h"
|
2017-08-02 14:57:43 -07:00
|
|
|
#include "android-base/utf8.h"
|
2017-01-16 15:07:21 -08:00
|
|
|
#include "androidfw/StringPiece.h"
|
2016-10-21 17:56:45 -07:00
|
|
|
|
2017-04-27 15:27:01 +01:00
|
|
|
#include "Diagnostics.h"
|
2018-07-10 13:51:36 -07:00
|
|
|
#include "cmd/Command.h"
|
|
|
|
#include "cmd/Compile.h"
|
|
|
|
#include "cmd/Convert.h"
|
|
|
|
#include "cmd/Diff.h"
|
|
|
|
#include "cmd/Dump.h"
|
|
|
|
#include "cmd/Link.h"
|
|
|
|
#include "cmd/Optimize.h"
|
2018-09-19 16:57:01 -07:00
|
|
|
#include "io/FileStream.h"
|
2017-07-25 10:59:26 -07:00
|
|
|
#include "util/Files.h"
|
|
|
|
#include "util/Util.h"
|
|
|
|
|
|
|
|
using ::android::StringPiece;
|
|
|
|
using ::android::base::StringPrintf;
|
2017-04-27 15:27:01 +01:00
|
|
|
|
2015-08-14 14:26:04 -07:00
|
|
|
namespace aapt {
|
2015-04-15 20:29:22 -07:00
|
|
|
|
2016-07-26 12:55:51 -07:00
|
|
|
// DO NOT UPDATE, this is more of a marketing version.
|
|
|
|
static const char* sMajorVersion = "2";
|
|
|
|
|
|
|
|
// Update minor version whenever a feature or flag is added.
|
2017-09-13 14:46:00 -07:00
|
|
|
static const char* sMinorVersion = "19";
|
2016-07-26 12:55:51 -07:00
|
|
|
|
2018-07-10 13:51:36 -07:00
|
|
|
/** Prints the version information of AAPT2. */
|
|
|
|
class VersionCommand : public Command {
|
|
|
|
public:
|
|
|
|
explicit VersionCommand() : Command("version") {
|
|
|
|
SetDescription("Prints the version of aapt.");
|
|
|
|
}
|
2017-07-25 10:59:26 -07:00
|
|
|
|
2018-07-10 13:51:36 -07:00
|
|
|
int Action(const std::vector<std::string>& /* args */) override {
|
|
|
|
std::cerr << StringPrintf("Android Asset Packaging Tool (aapt) %s:%s", sMajorVersion,
|
|
|
|
sMinorVersion)
|
|
|
|
<< std::endl;
|
2017-07-25 10:59:26 -07:00
|
|
|
return 0;
|
|
|
|
}
|
2018-07-10 13:51:36 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
/** The main entry point of AAPT. */
|
|
|
|
class MainCommand : public Command {
|
|
|
|
public:
|
2018-09-19 16:57:01 -07:00
|
|
|
explicit MainCommand(text::Printer* printer, IDiagnostics* diagnostics)
|
|
|
|
: Command("aapt2"), diagnostics_(diagnostics) {
|
2018-07-10 13:51:36 -07:00
|
|
|
AddOptionalSubcommand(util::make_unique<CompileCommand>(diagnostics));
|
|
|
|
AddOptionalSubcommand(util::make_unique<LinkCommand>(diagnostics));
|
2018-09-19 16:57:01 -07:00
|
|
|
AddOptionalSubcommand(util::make_unique<DumpCommand>(printer, diagnostics));
|
2018-07-10 13:51:36 -07:00
|
|
|
AddOptionalSubcommand(util::make_unique<DiffCommand>());
|
|
|
|
AddOptionalSubcommand(util::make_unique<OptimizeCommand>());
|
|
|
|
AddOptionalSubcommand(util::make_unique<ConvertCommand>());
|
|
|
|
AddOptionalSubcommand(util::make_unique<VersionCommand>());
|
|
|
|
}
|
2017-07-25 10:59:26 -07:00
|
|
|
|
2018-07-10 13:51:36 -07:00
|
|
|
int Action(const std::vector<std::string>& args) override {
|
|
|
|
if (args.size() == 0) {
|
|
|
|
diagnostics_->Error(DiagMessage() << "no subcommand specified");
|
|
|
|
} else {
|
|
|
|
diagnostics_->Error(DiagMessage() << "unknown subcommand '" << args[0] << "'");
|
2017-07-25 10:59:26 -07:00
|
|
|
}
|
|
|
|
|
2018-07-10 13:51:36 -07:00
|
|
|
Usage(&std::cerr);
|
|
|
|
return -1;
|
|
|
|
}
|
2017-07-25 10:59:26 -07:00
|
|
|
|
2018-07-10 13:51:36 -07:00
|
|
|
private:
|
|
|
|
IDiagnostics* diagnostics_;
|
|
|
|
};
|
2017-08-24 15:17:05 -07:00
|
|
|
|
2018-07-10 13:51:36 -07:00
|
|
|
/*
|
|
|
|
* Run in daemon mode. The first line of input is the command. This can be 'quit' which ends
|
|
|
|
* the daemon mode. Each subsequent line is a single parameter to the command. The end of a
|
|
|
|
* invocation is signaled by providing an empty line. At any point, an EOF signal or the
|
|
|
|
* command 'quit' will end the daemon mode.
|
|
|
|
*/
|
|
|
|
class DaemonCommand : public Command {
|
|
|
|
public:
|
2018-09-19 16:57:01 -07:00
|
|
|
explicit DaemonCommand(io::FileOutputStream* out, IDiagnostics* diagnostics)
|
|
|
|
: Command("daemon", "m"), out_(out), diagnostics_(diagnostics) {
|
2018-07-10 13:51:36 -07:00
|
|
|
SetDescription("Runs aapt in daemon mode. Each subsequent line is a single parameter to the\n"
|
|
|
|
"command. The end of an invocation is signaled by providing an empty line.");
|
|
|
|
}
|
2017-07-25 10:59:26 -07:00
|
|
|
|
2018-07-10 13:51:36 -07:00
|
|
|
int Action(const std::vector<std::string>& /* args */) override {
|
2018-09-19 16:57:01 -07:00
|
|
|
text::Printer printer(out_);
|
2018-07-10 13:51:36 -07:00
|
|
|
std::cout << "Ready" << std::endl;
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
std::vector<std::string> raw_args;
|
|
|
|
for (std::string line; std::getline(std::cin, line) && !line.empty();) {
|
|
|
|
raw_args.push_back(line);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!std::cin) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// An empty command does nothing.
|
|
|
|
if (raw_args.empty()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// End the dameon
|
|
|
|
if (raw_args[0] == "quit") {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<StringPiece> args;
|
|
|
|
args.insert(args.end(), raw_args.begin(), raw_args.end());
|
2018-09-19 16:57:01 -07:00
|
|
|
int result = MainCommand(&printer, diagnostics_).Execute(args, &std::cerr);
|
|
|
|
out_->Flush();
|
|
|
|
if (result != 0) {
|
2018-07-10 13:51:36 -07:00
|
|
|
std::cerr << "Error" << std::endl;
|
|
|
|
}
|
|
|
|
std::cerr << "Done" << std::endl;
|
2017-08-24 16:19:45 +01:00
|
|
|
}
|
2018-07-10 13:51:36 -07:00
|
|
|
std::cout << "Exiting daemon" << std::endl;
|
|
|
|
|
|
|
|
return 0;
|
2017-07-25 10:59:26 -07:00
|
|
|
}
|
2018-07-10 13:51:36 -07:00
|
|
|
|
|
|
|
private:
|
2018-09-19 16:57:01 -07:00
|
|
|
io::FileOutputStream* out_;
|
2018-07-10 13:51:36 -07:00
|
|
|
IDiagnostics* diagnostics_;
|
|
|
|
};
|
2014-11-14 14:48:12 -08:00
|
|
|
|
2016-10-19 12:18:14 -07:00
|
|
|
} // namespace aapt
|
2015-05-04 17:40:56 -07:00
|
|
|
|
2017-08-02 14:57:43 -07:00
|
|
|
int MainImpl(int argc, char** argv) {
|
2018-07-10 13:51:36 -07:00
|
|
|
if (argc < 1) {
|
2017-07-25 10:59:26 -07:00
|
|
|
return -1;
|
|
|
|
}
|
2014-11-14 14:48:12 -08:00
|
|
|
|
2017-07-25 10:59:26 -07:00
|
|
|
// Collect the arguments starting after the program name and command name.
|
|
|
|
std::vector<StringPiece> args;
|
|
|
|
for (int i = 1; i < argc; i++) {
|
|
|
|
args.push_back(argv[i]);
|
|
|
|
}
|
|
|
|
|
2018-09-19 16:57:01 -07:00
|
|
|
// Use a smaller buffer so that there is less latency for printing to stdout.
|
|
|
|
constexpr size_t kStdOutBufferSize = 1024u;
|
|
|
|
aapt::io::FileOutputStream fout(STDOUT_FILENO, kStdOutBufferSize);
|
|
|
|
aapt::text::Printer printer(&fout);
|
|
|
|
|
2018-07-10 13:51:36 -07:00
|
|
|
aapt::StdErrDiagnostics diagnostics;
|
2018-09-19 16:57:01 -07:00
|
|
|
auto main_command = new aapt::MainCommand(&printer, &diagnostics);
|
2014-11-14 14:48:12 -08:00
|
|
|
|
2018-09-19 16:57:01 -07:00
|
|
|
// Add the daemon subcommand here so it cannot be called while executing the daemon
|
|
|
|
main_command->AddOptionalSubcommand(
|
|
|
|
aapt::util::make_unique<aapt::DaemonCommand>(&fout, &diagnostics));
|
2018-07-10 13:51:36 -07:00
|
|
|
return main_command->Execute(args, &std::cerr);
|
2014-11-14 14:48:12 -08:00
|
|
|
}
|
2017-08-02 14:57:43 -07:00
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
#ifdef _WIN32
|
|
|
|
LPWSTR* wide_argv = CommandLineToArgvW(GetCommandLineW(), &argc);
|
|
|
|
CHECK(wide_argv != nullptr) << "invalid command line parameters passed to process";
|
|
|
|
|
|
|
|
std::vector<std::string> utf8_args;
|
|
|
|
for (int i = 0; i < argc; i++) {
|
|
|
|
std::string utf8_arg;
|
|
|
|
if (!::android::base::WideToUTF8(wide_argv[i], &utf8_arg)) {
|
|
|
|
std::cerr << "error converting input arguments to UTF-8" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
utf8_args.push_back(std::move(utf8_arg));
|
|
|
|
}
|
|
|
|
LocalFree(wide_argv);
|
|
|
|
|
|
|
|
std::unique_ptr<char* []> utf8_argv(new char*[utf8_args.size()]);
|
|
|
|
for (int i = 0; i < argc; i++) {
|
|
|
|
utf8_argv[i] = const_cast<char*>(utf8_args[i].c_str());
|
|
|
|
}
|
|
|
|
argv = utf8_argv.get();
|
|
|
|
#endif
|
|
|
|
return MainImpl(argc, argv);
|
|
|
|
}
|