blob: 89cce5ffca53009b419367f262403b039826ac35 [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 Lesinskiefeb7af2017-08-02 14:57:43 -070027#include "android-base/utf8.h"
Adam Lesinskid5083f62017-01-16 15:07:21 -080028#include "androidfw/StringPiece.h"
Adam Lesinskice5e56e2016-10-21 17:56:45 -070029
Chris Warrington820d72a2017-04-27 15:27:01 +010030#include "Diagnostics.h"
31
Adam Lesinski1ab598f2015-08-14 14:26:04 -070032namespace aapt {
Adam Lesinski5886a922015-04-15 20:29:22 -070033
Adam Lesinski0368ebf2016-07-26 12:55:51 -070034// DO NOT UPDATE, this is more of a marketing version.
35static const char* sMajorVersion = "2";
36
37// Update minor version whenever a feature or flag is added.
Adam Lesinskif903d5f2017-07-10 04:19:28 -070038static const char* sMinorVersion = "18";
Adam Lesinski0368ebf2016-07-26 12:55:51 -070039
Adam Lesinskice5e56e2016-10-21 17:56:45 -070040int PrintVersion() {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070041 std::cerr << "Android Asset Packaging Tool (aapt) " << sMajorVersion << "."
42 << sMinorVersion << std::endl;
43 return 0;
Adam Lesinski0368ebf2016-07-26 12:55:51 -070044}
45
Chris Warrington820d72a2017-04-27 15:27:01 +010046extern int Compile(const std::vector<android::StringPiece>& args, IDiagnostics* diagnostics);
47extern int Link(const std::vector<android::StringPiece>& args, IDiagnostics* diagnostics);
Adam Lesinskid5083f62017-01-16 15:07:21 -080048extern int Dump(const std::vector<android::StringPiece>& args);
49extern int Diff(const std::vector<android::StringPiece>& args);
Adam Lesinskid48944a2017-02-21 14:22:30 -080050extern int Optimize(const std::vector<android::StringPiece>& args);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080051
Adam Lesinskicacb28f2016-10-19 12:18:14 -070052} // namespace aapt
Adam Lesinski330edcd2015-05-04 17:40:56 -070053
Adam Lesinskiefeb7af2017-08-02 14:57:43 -070054int MainImpl(int argc, char** argv) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070055 if (argc >= 2) {
56 argv += 1;
57 argc -= 1;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080058
Adam Lesinskid5083f62017-01-16 15:07:21 -080059 std::vector<android::StringPiece> args;
Adam Lesinskicacb28f2016-10-19 12:18:14 -070060 for (int i = 1; i < argc; i++) {
61 args.push_back(argv[i]);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080062 }
63
Adam Lesinskid5083f62017-01-16 15:07:21 -080064 android::StringPiece command(argv[0]);
Adam Lesinskicacb28f2016-10-19 12:18:14 -070065 if (command == "compile" || command == "c") {
Chris Warrington820d72a2017-04-27 15:27:01 +010066 aapt::StdErrDiagnostics diagnostics;
67 return aapt::Compile(args, &diagnostics);
Adam Lesinskicacb28f2016-10-19 12:18:14 -070068 } else if (command == "link" || command == "l") {
Chris Warrington820d72a2017-04-27 15:27:01 +010069 aapt::StdErrDiagnostics diagnostics;
70 return aapt::Link(args, &diagnostics);
Adam Lesinskicacb28f2016-10-19 12:18:14 -070071 } else if (command == "dump" || command == "d") {
Adam Lesinskice5e56e2016-10-21 17:56:45 -070072 return aapt::Dump(args);
Adam Lesinskicacb28f2016-10-19 12:18:14 -070073 } else if (command == "diff") {
Adam Lesinskice5e56e2016-10-21 17:56:45 -070074 return aapt::Diff(args);
Adam Lesinskid48944a2017-02-21 14:22:30 -080075 } else if (command == "optimize") {
76 return aapt::Optimize(args);
Adam Lesinskicacb28f2016-10-19 12:18:14 -070077 } else if (command == "version") {
Adam Lesinskice5e56e2016-10-21 17:56:45 -070078 return aapt::PrintVersion();
Adam Lesinskicacb28f2016-10-19 12:18:14 -070079 }
80 std::cerr << "unknown command '" << command << "'\n";
81 } else {
82 std::cerr << "no command specified\n";
83 }
84
Adam Lesinskiefeb7af2017-08-02 14:57:43 -070085 std::cerr << "\nusage: aapt2 [compile|link|dump|diff|optimize|version] ..." << std::endl;
Adam Lesinskicacb28f2016-10-19 12:18:14 -070086 return 1;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080087}
Adam Lesinskiefeb7af2017-08-02 14:57:43 -070088
89int 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}