blob: c5d38abcdf712e328dfda230ea659632cf73fa4b [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 Lesinski6f6ceb72014-11-14 14:48:12 -080017#include <iostream>
Adam Lesinski1ab598f2015-08-14 14:26:04 -070018#include <vector>
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080019
Adam Lesinskid5083f62017-01-16 15:07:21 -080020#include "androidfw/StringPiece.h"
Adam Lesinskice5e56e2016-10-21 17:56:45 -070021
Chris Warrington820d72a2017-04-27 15:27:01 +010022#include "Diagnostics.h"
23
Adam Lesinski1ab598f2015-08-14 14:26:04 -070024namespace aapt {
Adam Lesinski5886a922015-04-15 20:29:22 -070025
Adam Lesinski0368ebf2016-07-26 12:55:51 -070026// DO NOT UPDATE, this is more of a marketing version.
27static const char* sMajorVersion = "2";
28
29// Update minor version whenever a feature or flag is added.
Adam Lesinskif903d5f2017-07-10 04:19:28 -070030static const char* sMinorVersion = "18";
Adam Lesinski0368ebf2016-07-26 12:55:51 -070031
Adam Lesinskice5e56e2016-10-21 17:56:45 -070032int PrintVersion() {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070033 std::cerr << "Android Asset Packaging Tool (aapt) " << sMajorVersion << "."
34 << sMinorVersion << std::endl;
35 return 0;
Adam Lesinski0368ebf2016-07-26 12:55:51 -070036}
37
Chris Warrington820d72a2017-04-27 15:27:01 +010038extern int Compile(const std::vector<android::StringPiece>& args, IDiagnostics* diagnostics);
39extern int Link(const std::vector<android::StringPiece>& args, IDiagnostics* diagnostics);
Adam Lesinskid5083f62017-01-16 15:07:21 -080040extern int Dump(const std::vector<android::StringPiece>& args);
41extern int Diff(const std::vector<android::StringPiece>& args);
Adam Lesinskid48944a2017-02-21 14:22:30 -080042extern int Optimize(const std::vector<android::StringPiece>& args);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080043
Adam Lesinskicacb28f2016-10-19 12:18:14 -070044} // namespace aapt
Adam Lesinski330edcd2015-05-04 17:40:56 -070045
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080046int main(int argc, char** argv) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070047 if (argc >= 2) {
48 argv += 1;
49 argc -= 1;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080050
Adam Lesinskid5083f62017-01-16 15:07:21 -080051 std::vector<android::StringPiece> args;
Adam Lesinskicacb28f2016-10-19 12:18:14 -070052 for (int i = 1; i < argc; i++) {
53 args.push_back(argv[i]);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080054 }
55
Adam Lesinskid5083f62017-01-16 15:07:21 -080056 android::StringPiece command(argv[0]);
Adam Lesinskicacb28f2016-10-19 12:18:14 -070057 if (command == "compile" || command == "c") {
Chris Warrington820d72a2017-04-27 15:27:01 +010058 aapt::StdErrDiagnostics diagnostics;
59 return aapt::Compile(args, &diagnostics);
Adam Lesinskicacb28f2016-10-19 12:18:14 -070060 } else if (command == "link" || command == "l") {
Chris Warrington820d72a2017-04-27 15:27:01 +010061 aapt::StdErrDiagnostics diagnostics;
62 return aapt::Link(args, &diagnostics);
Adam Lesinskicacb28f2016-10-19 12:18:14 -070063 } else if (command == "dump" || command == "d") {
Adam Lesinskice5e56e2016-10-21 17:56:45 -070064 return aapt::Dump(args);
Adam Lesinskicacb28f2016-10-19 12:18:14 -070065 } else if (command == "diff") {
Adam Lesinskice5e56e2016-10-21 17:56:45 -070066 return aapt::Diff(args);
Adam Lesinskid48944a2017-02-21 14:22:30 -080067 } else if (command == "optimize") {
68 return aapt::Optimize(args);
Adam Lesinskicacb28f2016-10-19 12:18:14 -070069 } else if (command == "version") {
Adam Lesinskice5e56e2016-10-21 17:56:45 -070070 return aapt::PrintVersion();
Adam Lesinskicacb28f2016-10-19 12:18:14 -070071 }
72 std::cerr << "unknown command '" << command << "'\n";
73 } else {
74 std::cerr << "no command specified\n";
75 }
76
Adam Lesinskid48944a2017-02-21 14:22:30 -080077 std::cerr << "\nusage: aapt2 [compile|link|dump|diff|optimize|version] ..."
Adam Lesinskicacb28f2016-10-19 12:18:14 -070078 << std::endl;
79 return 1;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080080}