Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 1 | /* |
| 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 Lesinski | efeb7af | 2017-08-02 14:57:43 -0700 | [diff] [blame] | 17 | #ifdef _WIN32 |
| 18 | // clang-format off |
| 19 | #include <windows.h> |
| 20 | #include <shellapi.h> |
| 21 | // clang-format on |
| 22 | #endif |
| 23 | |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 24 | #include <iostream> |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 25 | #include <vector> |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 26 | |
Adam Lesinski | 448a15c | 2017-07-25 10:59:26 -0700 | [diff] [blame] | 27 | #include "android-base/stringprintf.h" |
Adam Lesinski | efeb7af | 2017-08-02 14:57:43 -0700 | [diff] [blame] | 28 | #include "android-base/utf8.h" |
Adam Lesinski | d5083f6 | 2017-01-16 15:07:21 -0800 | [diff] [blame] | 29 | #include "androidfw/StringPiece.h" |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 30 | |
Chris Warrington | 820d72a | 2017-04-27 15:27:01 +0100 | [diff] [blame] | 31 | #include "Diagnostics.h" |
Adam Lesinski | 448a15c | 2017-07-25 10:59:26 -0700 | [diff] [blame] | 32 | #include "util/Files.h" |
| 33 | #include "util/Util.h" |
| 34 | |
| 35 | using ::android::StringPiece; |
| 36 | using ::android::base::StringPrintf; |
Chris Warrington | 820d72a | 2017-04-27 15:27:01 +0100 | [diff] [blame] | 37 | |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 38 | namespace aapt { |
Adam Lesinski | 5886a92 | 2015-04-15 20:29:22 -0700 | [diff] [blame] | 39 | |
Adam Lesinski | 0368ebf | 2016-07-26 12:55:51 -0700 | [diff] [blame] | 40 | // DO NOT UPDATE, this is more of a marketing version. |
| 41 | static const char* sMajorVersion = "2"; |
| 42 | |
| 43 | // Update minor version whenever a feature or flag is added. |
Adam Lesinski | 3420eed | 2017-09-13 14:46:00 -0700 | [diff] [blame] | 44 | static const char* sMinorVersion = "19"; |
Adam Lesinski | 0368ebf | 2016-07-26 12:55:51 -0700 | [diff] [blame] | 45 | |
Adam Lesinski | 448a15c | 2017-07-25 10:59:26 -0700 | [diff] [blame] | 46 | static void PrintVersion() { |
| 47 | std::cerr << StringPrintf("Android Asset Packaging Tool (aapt) %s:%s", sMajorVersion, |
| 48 | sMinorVersion) |
| 49 | << std::endl; |
Adam Lesinski | 0368ebf | 2016-07-26 12:55:51 -0700 | [diff] [blame] | 50 | } |
| 51 | |
Adam Lesinski | 448a15c | 2017-07-25 10:59:26 -0700 | [diff] [blame] | 52 | static void PrintUsage() { |
Adam Lesinski | 8780eb6 | 2017-10-31 17:44:39 -0700 | [diff] [blame^] | 53 | std::cerr << "\nusage: aapt2 [compile|link|dump|diff|optimize|convert|version] ..." << std::endl; |
Adam Lesinski | 448a15c | 2017-07-25 10:59:26 -0700 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | extern int Compile(const std::vector<StringPiece>& args, IDiagnostics* diagnostics); |
| 57 | extern int Link(const std::vector<StringPiece>& args, IDiagnostics* diagnostics); |
| 58 | extern int Dump(const std::vector<StringPiece>& args); |
| 59 | extern int Diff(const std::vector<StringPiece>& args); |
| 60 | extern int Optimize(const std::vector<StringPiece>& args); |
Adam Lesinski | 8780eb6 | 2017-10-31 17:44:39 -0700 | [diff] [blame^] | 61 | extern int Convert(const std::vector<StringPiece>& args); |
Adam Lesinski | 448a15c | 2017-07-25 10:59:26 -0700 | [diff] [blame] | 62 | |
| 63 | static int ExecuteCommand(const StringPiece& command, const std::vector<StringPiece>& args, |
| 64 | IDiagnostics* diagnostics) { |
| 65 | if (command == "compile" || command == "c") { |
| 66 | return Compile(args, diagnostics); |
| 67 | } else if (command == "link" || command == "l") { |
| 68 | return Link(args, diagnostics); |
| 69 | } else if (command == "dump" || command == "d") { |
| 70 | return Dump(args); |
| 71 | } else if (command == "diff") { |
| 72 | return Diff(args); |
| 73 | } else if (command == "optimize") { |
| 74 | return Optimize(args); |
Adam Lesinski | 8780eb6 | 2017-10-31 17:44:39 -0700 | [diff] [blame^] | 75 | } else if (command == "convert") { |
| 76 | return Convert(args); |
Adam Lesinski | 448a15c | 2017-07-25 10:59:26 -0700 | [diff] [blame] | 77 | } else if (command == "version") { |
| 78 | PrintVersion(); |
| 79 | return 0; |
| 80 | } |
| 81 | diagnostics->Error(DiagMessage() << "unknown command '" << command << "'"); |
| 82 | return -1; |
| 83 | } |
| 84 | |
| 85 | static void RunDaemon(IDiagnostics* diagnostics) { |
| 86 | std::cout << "Ready" << std::endl; |
| 87 | |
Adam Lesinski | 43f6f77 | 2017-08-24 15:17:05 -0700 | [diff] [blame] | 88 | // Run in daemon mode. The first line of input is the command. This can be 'quit' which ends |
| 89 | // the daemon mode. Each subsequent line is a single parameter to the command. The end of a |
| 90 | // invocation is signaled by providing an empty line. At any point, an EOF signal or the |
| 91 | // command 'quit' will end the daemon mode. |
| 92 | while (true) { |
| 93 | std::vector<std::string> raw_args; |
| 94 | for (std::string line; std::getline(std::cin, line) && !line.empty();) { |
| 95 | raw_args.push_back(line); |
Adam Lesinski | 448a15c | 2017-07-25 10:59:26 -0700 | [diff] [blame] | 96 | } |
| 97 | |
Adam Lesinski | 43f6f77 | 2017-08-24 15:17:05 -0700 | [diff] [blame] | 98 | if (!std::cin) { |
Adam Lesinski | 448a15c | 2017-07-25 10:59:26 -0700 | [diff] [blame] | 99 | break; |
| 100 | } |
| 101 | |
Adam Lesinski | 43f6f77 | 2017-08-24 15:17:05 -0700 | [diff] [blame] | 102 | // An empty command does nothing. |
| 103 | if (raw_args.empty()) { |
| 104 | continue; |
| 105 | } |
| 106 | |
| 107 | if (raw_args[0] == "quit") { |
| 108 | break; |
| 109 | } |
Adam Lesinski | 448a15c | 2017-07-25 10:59:26 -0700 | [diff] [blame] | 110 | |
| 111 | std::vector<StringPiece> args; |
Adam Lesinski | 43f6f77 | 2017-08-24 15:17:05 -0700 | [diff] [blame] | 112 | args.insert(args.end(), ++raw_args.begin(), raw_args.end()); |
| 113 | int ret = ExecuteCommand(raw_args[0], args, diagnostics); |
Izabela Orlowska | 4a4ebe2 | 2017-08-24 16:19:45 +0100 | [diff] [blame] | 114 | if (ret != 0) { |
| 115 | std::cerr << "Error" << std::endl; |
| 116 | } |
| 117 | std::cerr << "Done" << std::endl; |
Adam Lesinski | 448a15c | 2017-07-25 10:59:26 -0700 | [diff] [blame] | 118 | } |
Adam Lesinski | 448a15c | 2017-07-25 10:59:26 -0700 | [diff] [blame] | 119 | std::cout << "Exiting daemon" << std::endl; |
| 120 | } |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 121 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 122 | } // namespace aapt |
Adam Lesinski | 330edcd | 2015-05-04 17:40:56 -0700 | [diff] [blame] | 123 | |
Adam Lesinski | efeb7af | 2017-08-02 14:57:43 -0700 | [diff] [blame] | 124 | int MainImpl(int argc, char** argv) { |
Adam Lesinski | 448a15c | 2017-07-25 10:59:26 -0700 | [diff] [blame] | 125 | if (argc < 2) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 126 | std::cerr << "no command specified\n"; |
Adam Lesinski | 448a15c | 2017-07-25 10:59:26 -0700 | [diff] [blame] | 127 | aapt::PrintUsage(); |
| 128 | return -1; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 129 | } |
| 130 | |
Adam Lesinski | 448a15c | 2017-07-25 10:59:26 -0700 | [diff] [blame] | 131 | argv += 1; |
| 132 | argc -= 1; |
| 133 | |
| 134 | aapt::StdErrDiagnostics diagnostics; |
| 135 | |
| 136 | // Collect the arguments starting after the program name and command name. |
| 137 | std::vector<StringPiece> args; |
| 138 | for (int i = 1; i < argc; i++) { |
| 139 | args.push_back(argv[i]); |
| 140 | } |
| 141 | |
| 142 | const StringPiece command(argv[0]); |
| 143 | if (command != "daemon" && command != "m") { |
| 144 | // Single execution. |
| 145 | const int result = aapt::ExecuteCommand(command, args, &diagnostics); |
| 146 | if (result < 0) { |
| 147 | aapt::PrintUsage(); |
| 148 | } |
| 149 | return result; |
| 150 | } |
| 151 | |
| 152 | aapt::RunDaemon(&diagnostics); |
| 153 | return 0; |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 154 | } |
Adam Lesinski | efeb7af | 2017-08-02 14:57:43 -0700 | [diff] [blame] | 155 | |
| 156 | int main(int argc, char** argv) { |
| 157 | #ifdef _WIN32 |
| 158 | LPWSTR* wide_argv = CommandLineToArgvW(GetCommandLineW(), &argc); |
| 159 | CHECK(wide_argv != nullptr) << "invalid command line parameters passed to process"; |
| 160 | |
| 161 | std::vector<std::string> utf8_args; |
| 162 | for (int i = 0; i < argc; i++) { |
| 163 | std::string utf8_arg; |
| 164 | if (!::android::base::WideToUTF8(wide_argv[i], &utf8_arg)) { |
| 165 | std::cerr << "error converting input arguments to UTF-8" << std::endl; |
| 166 | return 1; |
| 167 | } |
| 168 | utf8_args.push_back(std::move(utf8_arg)); |
| 169 | } |
| 170 | LocalFree(wide_argv); |
| 171 | |
| 172 | std::unique_ptr<char* []> utf8_argv(new char*[utf8_args.size()]); |
| 173 | for (int i = 0; i < argc; i++) { |
| 174 | utf8_argv[i] = const_cast<char*>(utf8_args[i].c_str()); |
| 175 | } |
| 176 | argv = utf8_argv.get(); |
| 177 | #endif |
| 178 | return MainImpl(argc, argv); |
| 179 | } |