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 | efeb7af | 2017-08-02 14:57:43 -0700 | [diff] [blame] | 27 | #include "android-base/utf8.h" |
Adam Lesinski | d5083f6 | 2017-01-16 15:07:21 -0800 | [diff] [blame] | 28 | #include "androidfw/StringPiece.h" |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 29 | |
Chris Warrington | 820d72a | 2017-04-27 15:27:01 +0100 | [diff] [blame] | 30 | #include "Diagnostics.h" |
| 31 | |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 32 | namespace aapt { |
Adam Lesinski | 5886a92 | 2015-04-15 20:29:22 -0700 | [diff] [blame] | 33 | |
Adam Lesinski | 0368ebf | 2016-07-26 12:55:51 -0700 | [diff] [blame] | 34 | // DO NOT UPDATE, this is more of a marketing version. |
| 35 | static const char* sMajorVersion = "2"; |
| 36 | |
| 37 | // Update minor version whenever a feature or flag is added. |
Adam Lesinski | f903d5f | 2017-07-10 04:19:28 -0700 | [diff] [blame] | 38 | static const char* sMinorVersion = "18"; |
Adam Lesinski | 0368ebf | 2016-07-26 12:55:51 -0700 | [diff] [blame] | 39 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 40 | int PrintVersion() { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 41 | std::cerr << "Android Asset Packaging Tool (aapt) " << sMajorVersion << "." |
| 42 | << sMinorVersion << std::endl; |
| 43 | return 0; |
Adam Lesinski | 0368ebf | 2016-07-26 12:55:51 -0700 | [diff] [blame] | 44 | } |
| 45 | |
Chris Warrington | 820d72a | 2017-04-27 15:27:01 +0100 | [diff] [blame] | 46 | extern int Compile(const std::vector<android::StringPiece>& args, IDiagnostics* diagnostics); |
| 47 | extern int Link(const std::vector<android::StringPiece>& args, IDiagnostics* diagnostics); |
Adam Lesinski | d5083f6 | 2017-01-16 15:07:21 -0800 | [diff] [blame] | 48 | extern int Dump(const std::vector<android::StringPiece>& args); |
| 49 | extern int Diff(const std::vector<android::StringPiece>& args); |
Adam Lesinski | d48944a | 2017-02-21 14:22:30 -0800 | [diff] [blame] | 50 | extern int Optimize(const std::vector<android::StringPiece>& args); |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 51 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 52 | } // namespace aapt |
Adam Lesinski | 330edcd | 2015-05-04 17:40:56 -0700 | [diff] [blame] | 53 | |
Adam Lesinski | efeb7af | 2017-08-02 14:57:43 -0700 | [diff] [blame] | 54 | int MainImpl(int argc, char** argv) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 55 | if (argc >= 2) { |
| 56 | argv += 1; |
| 57 | argc -= 1; |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 58 | |
Adam Lesinski | d5083f6 | 2017-01-16 15:07:21 -0800 | [diff] [blame] | 59 | std::vector<android::StringPiece> args; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 60 | for (int i = 1; i < argc; i++) { |
| 61 | args.push_back(argv[i]); |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 62 | } |
| 63 | |
Adam Lesinski | d5083f6 | 2017-01-16 15:07:21 -0800 | [diff] [blame] | 64 | android::StringPiece command(argv[0]); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 65 | if (command == "compile" || command == "c") { |
Chris Warrington | 820d72a | 2017-04-27 15:27:01 +0100 | [diff] [blame] | 66 | aapt::StdErrDiagnostics diagnostics; |
| 67 | return aapt::Compile(args, &diagnostics); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 68 | } else if (command == "link" || command == "l") { |
Chris Warrington | 820d72a | 2017-04-27 15:27:01 +0100 | [diff] [blame] | 69 | aapt::StdErrDiagnostics diagnostics; |
| 70 | return aapt::Link(args, &diagnostics); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 71 | } else if (command == "dump" || command == "d") { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 72 | return aapt::Dump(args); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 73 | } else if (command == "diff") { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 74 | return aapt::Diff(args); |
Adam Lesinski | d48944a | 2017-02-21 14:22:30 -0800 | [diff] [blame] | 75 | } else if (command == "optimize") { |
| 76 | return aapt::Optimize(args); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 77 | } else if (command == "version") { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 78 | return aapt::PrintVersion(); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 79 | } |
| 80 | std::cerr << "unknown command '" << command << "'\n"; |
| 81 | } else { |
| 82 | std::cerr << "no command specified\n"; |
| 83 | } |
| 84 | |
Adam Lesinski | efeb7af | 2017-08-02 14:57:43 -0700 | [diff] [blame] | 85 | std::cerr << "\nusage: aapt2 [compile|link|dump|diff|optimize|version] ..." << std::endl; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 86 | return 1; |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 87 | } |
Adam Lesinski | efeb7af | 2017-08-02 14:57:43 -0700 | [diff] [blame] | 88 | |
| 89 | int main(int argc, char** argv) { |
| 90 | #ifdef _WIN32 |
| 91 | LPWSTR* wide_argv = CommandLineToArgvW(GetCommandLineW(), &argc); |
| 92 | CHECK(wide_argv != nullptr) << "invalid command line parameters passed to process"; |
| 93 | |
| 94 | std::vector<std::string> utf8_args; |
| 95 | for (int i = 0; i < argc; i++) { |
| 96 | std::string utf8_arg; |
| 97 | if (!::android::base::WideToUTF8(wide_argv[i], &utf8_arg)) { |
| 98 | std::cerr << "error converting input arguments to UTF-8" << std::endl; |
| 99 | return 1; |
| 100 | } |
| 101 | utf8_args.push_back(std::move(utf8_arg)); |
| 102 | } |
| 103 | LocalFree(wide_argv); |
| 104 | |
| 105 | std::unique_ptr<char* []> utf8_argv(new char*[utf8_args.size()]); |
| 106 | for (int i = 0; i < argc; i++) { |
| 107 | utf8_argv[i] = const_cast<char*>(utf8_args[i].c_str()); |
| 108 | } |
| 109 | argv = utf8_argv.get(); |
| 110 | #endif |
| 111 | return MainImpl(argc, argv); |
| 112 | } |