blob: 38d9ef84f44b5e84cb8ecc38624b9260f80f2145 [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
Adam Lesinski1ab598f2015-08-14 14:26:04 -070022namespace aapt {
Adam Lesinski5886a922015-04-15 20:29:22 -070023
Adam Lesinski0368ebf2016-07-26 12:55:51 -070024// DO NOT UPDATE, this is more of a marketing version.
25static const char* sMajorVersion = "2";
26
27// Update minor version whenever a feature or flag is added.
Adam Lesinskid48944a2017-02-21 14:22:30 -080028static const char* sMinorVersion = "9";
Adam Lesinski0368ebf2016-07-26 12:55:51 -070029
Adam Lesinskice5e56e2016-10-21 17:56:45 -070030int PrintVersion() {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070031 std::cerr << "Android Asset Packaging Tool (aapt) " << sMajorVersion << "."
32 << sMinorVersion << std::endl;
33 return 0;
Adam Lesinski0368ebf2016-07-26 12:55:51 -070034}
35
Adam Lesinskid5083f62017-01-16 15:07:21 -080036extern int Compile(const std::vector<android::StringPiece>& args);
37extern int Link(const std::vector<android::StringPiece>& args);
38extern int Dump(const std::vector<android::StringPiece>& args);
39extern int Diff(const std::vector<android::StringPiece>& args);
Adam Lesinskid48944a2017-02-21 14:22:30 -080040extern int Optimize(const std::vector<android::StringPiece>& args);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080041
Adam Lesinskicacb28f2016-10-19 12:18:14 -070042} // namespace aapt
Adam Lesinski330edcd2015-05-04 17:40:56 -070043
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080044int main(int argc, char** argv) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070045 if (argc >= 2) {
46 argv += 1;
47 argc -= 1;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080048
Adam Lesinskid5083f62017-01-16 15:07:21 -080049 std::vector<android::StringPiece> args;
Adam Lesinskicacb28f2016-10-19 12:18:14 -070050 for (int i = 1; i < argc; i++) {
51 args.push_back(argv[i]);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080052 }
53
Adam Lesinskid5083f62017-01-16 15:07:21 -080054 android::StringPiece command(argv[0]);
Adam Lesinskicacb28f2016-10-19 12:18:14 -070055 if (command == "compile" || command == "c") {
Adam Lesinskice5e56e2016-10-21 17:56:45 -070056 return aapt::Compile(args);
Adam Lesinskicacb28f2016-10-19 12:18:14 -070057 } else if (command == "link" || command == "l") {
Adam Lesinskice5e56e2016-10-21 17:56:45 -070058 return aapt::Link(args);
Adam Lesinskicacb28f2016-10-19 12:18:14 -070059 } else if (command == "dump" || command == "d") {
Adam Lesinskice5e56e2016-10-21 17:56:45 -070060 return aapt::Dump(args);
Adam Lesinskicacb28f2016-10-19 12:18:14 -070061 } else if (command == "diff") {
Adam Lesinskice5e56e2016-10-21 17:56:45 -070062 return aapt::Diff(args);
Adam Lesinskid48944a2017-02-21 14:22:30 -080063 } else if (command == "optimize") {
64 return aapt::Optimize(args);
Adam Lesinskicacb28f2016-10-19 12:18:14 -070065 } else if (command == "version") {
Adam Lesinskice5e56e2016-10-21 17:56:45 -070066 return aapt::PrintVersion();
Adam Lesinskicacb28f2016-10-19 12:18:14 -070067 }
68 std::cerr << "unknown command '" << command << "'\n";
69 } else {
70 std::cerr << "no command specified\n";
71 }
72
Adam Lesinskid48944a2017-02-21 14:22:30 -080073 std::cerr << "\nusage: aapt2 [compile|link|dump|diff|optimize|version] ..."
Adam Lesinskicacb28f2016-10-19 12:18:14 -070074 << std::endl;
75 return 1;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080076}