blob: 166e8ac1c02bedd5007af19267b9c9a5512cfa75 [file] [log] [blame]
Christopher Wiley4427d862015-09-14 11:07:39 -07001/*
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 */
Adam Lesinskiffa16862014-01-23 18:17:42 -080016
17#include "options.h"
Jiyong Park05463732018-08-09 16:03:02 +090018#include "logging.h"
Jiyong Park6f77e0c2018-07-28 16:55:44 +090019#include "os.h"
Adam Lesinskiffa16862014-01-23 18:17:42 -080020
Jiyong Park74595c12018-07-23 15:22:50 +090021#include <getopt.h>
22#include <stdlib.h>
23#include <unistd.h>
Jiyong Park8c380532018-08-30 14:55:26 +090024#include <algorithm>
Christopher Wileya590de82015-09-15 15:46:28 -070025#include <iostream>
Jiyong Park74595c12018-07-23 15:22:50 +090026#include <sstream>
27#include <string>
Adam Lesinskiffa16862014-01-23 18:17:42 -080028
Jiyong Park74595c12018-07-23 15:22:50 +090029#include <android-base/strings.h>
Christopher Wiley4432ccf2015-09-18 18:32:08 -070030
Jiyong Park6f77e0c2018-07-28 16:55:44 +090031using android::base::Split;
Jiyong Park74595c12018-07-23 15:22:50 +090032using android::base::Trim;
Christopher Wileya590de82015-09-15 15:46:28 -070033using std::endl;
Christopher Wiley4427d862015-09-14 11:07:39 -070034using std::string;
Christopher Wiley4427d862015-09-14 11:07:39 -070035
36namespace android {
37namespace aidl {
Christopher Wiley4427d862015-09-14 11:07:39 -070038
Jiyong Park74595c12018-07-23 15:22:50 +090039string Options::GetUsage() const {
40 std::ostringstream sstr;
41 sstr << "usage:" << endl
42 << myname_ << " --lang={java|cpp} [OPTION]... INPUT..." << endl
43 << " Generate Java or C++ files for AIDL file(s)." << endl
Steven Morelandda0654f2018-07-17 12:24:38 -070044 << endl
Jiyong Park74595c12018-07-23 15:22:50 +090045 << myname_ << " --preprocess OUTPUT INPUT..." << endl
46 << " Create an AIDL file having declarations of AIDL file(s)." << endl
Steven Morelandda0654f2018-07-17 12:24:38 -070047 << endl
Jiyong Parke59c3682018-09-11 23:10:25 +090048#ifndef _WIN32
49 << myname_ << " --dumpapi --out=DIR INPUT..." << endl
50 << " Dump API signature of AIDL file(s) to DIR." << endl
Jiyong Park3656c3c2018-08-01 20:02:01 +090051 << endl
Jiyong Parke59c3682018-09-11 23:10:25 +090052 << myname_ << " --checkapi OLD_DIR NEW_DIR" << endl
53 << " Checkes whether API dump NEW_DIR is backwards compatible extension " << endl
54 << " of the API dump OLD_DIR." << endl
55#endif
Steven Morelandda0654f2018-07-17 12:24:38 -070056 << endl;
Adam Lesinskiffa16862014-01-23 18:17:42 -080057
Jiyong Park74595c12018-07-23 15:22:50 +090058 // Legacy option formats
59 if (language_ == Options::Language::JAVA) {
60 sstr << myname_ << " [OPTION]... INPUT [OUTPUT]" << endl
61 << " Generate a Java file for an AIDL file." << endl
62 << endl;
63 } else if (language_ == Options::Language::CPP) {
64 sstr << myname_ << " [OPTION]... INPUT HEADER_DIR OUTPUT" << endl
65 << " Generate C++ headers and source for an AIDL file." << endl
66 << endl;
Christopher Wiley4427d862015-09-14 11:07:39 -070067 }
68
Jiyong Park74595c12018-07-23 15:22:50 +090069 sstr << "OPTION:" << endl
70 << " -I DIR, --include=DIR" << endl
71 << " Use DIR as a search path for import statements." << endl
Jiyong Park3c35e392018-08-30 13:10:30 +090072 << " -m FILE, --import=FILE" << endl
73 << " Import FILE directly without searching in the search paths." << endl
Jiyong Park74595c12018-07-23 15:22:50 +090074 << " -p FILE, --preprocessed=FILE" << endl
75 << " Include FILE which is created by --preprocess." << endl
76 << " -d FILE, --dep=FILE" << endl
77 << " Generate dependency file as FILE. Don't use this when" << endl
78 << " there are multiple input files. Use -a then." << endl
79 << " -o DIR, --out=DIR" << endl
80 << " Use DIR as the base output directory for generated files." << endl
81 << " -h DIR, --header_out=DIR" << endl
82 << " Generate C++ headers under DIR." << endl
83 << " -a" << endl
84 << " Generate dependency file next to the output file with the" << endl
85 << " name based on the input file." << endl
86 << " -b" << endl
87 << " Trigger fail when trying to compile a parcelable." << endl
88 << " --ninja" << endl
89 << " Generate dependency file in a format ninja understands." << endl
Steven Moreland6cee3482018-07-18 14:39:58 -070090 << " --structured" << endl
91 << " Whether this interface is defined exclusively in AIDL." << endl
92 << " It is therefore a candidate for stabilization." << endl
Jiyong Park74595c12018-07-23 15:22:50 +090093 << " -t, --trace" << endl
94 << " Include tracing code for systrace. Note that if either" << endl
95 << " the client or service code is not auto-generated by this" << endl
96 << " tool, that part will not be traced." << endl
97 << " --transaction_names" << endl
98 << " Generate transaction names." << endl
Andrei Onea390cb8b2019-02-01 18:55:54 +000099 << " --apimapping" << endl
100 << " Generates a mapping of declared aidl method signatures to" << endl
101 << " the original line number. e.g.: " << endl
102 << " If line 39 of foo/bar/IFoo.aidl contains:"
103 << " void doFoo(int bar, String baz);" << endl
104 << " Then the result would be:" << endl
105 << " foo.bar.Baz|doFoo|int,String,|void" << endl
106 << " foo/bar/IFoo.aidl:39" << endl
Jiyong Park309668e2018-07-28 16:55:44 +0900107 << " -v VER, --version=VER" << endl
108 << " Set the version of the interface and parcelable to VER." << endl
109 << " VER must be an interger greater than 0." << endl
Jiyong Parkce50e262018-10-29 09:54:20 +0900110 << " --log" << endl
111 << " Information about the transaction, e.g., method name, argument" << endl
112 << " values, execution time, etc., is provided via callback." << endl
Jiyong Park74595c12018-07-23 15:22:50 +0900113 << " --help" << endl
114 << " Show this help." << endl
115 << endl
116 << "INPUT:" << endl
117 << " An AIDL file." << endl
118 << endl
119 << "OUTPUT:" << endl
120 << " Path to the generated Java or C++ source file. This is ignored when" << endl
121 << " -o or --out is specified or the number of the input files are" << endl
122 << " more than one." << endl
123 << " For Java, if omitted, Java source file is generated at the same" << endl
124 << " place as the input AIDL file," << endl
125 << endl
Christopher Wiley054afbd2015-10-16 17:08:43 -0700126 << "HEADER_DIR:" << endl
Jiyong Park74595c12018-07-23 15:22:50 +0900127 << " Path to where C++ headers are generated." << endl;
128 return sstr.str();
Christopher Wileya590de82015-09-15 15:46:28 -0700129}
130
Jiyong Park6f77e0c2018-07-28 16:55:44 +0900131Options Options::From(const string& cmdline) {
132 vector<string> args = Split(cmdline, " ");
133 return From(args);
134}
135
136Options Options::From(const vector<string>& args) {
137 Options::Language lang = Options::Language::JAVA;
138 int argc = args.size();
139 if (argc >= 1 && args.at(0) == "aidl-cpp") {
140 lang = Options::Language::CPP;
141 }
142 const char* argv[argc + 1];
143 for (int i = 0; i < argc; i++) {
144 argv[i] = args.at(i).c_str();
145 }
146 argv[argc] = nullptr;
147
148 return Options(argc, argv, lang);
149}
150
Jiyong Park74595c12018-07-23 15:22:50 +0900151Options::Options(int argc, const char* const argv[], Options::Language default_lang)
152 : myname_(argv[0]), language_(default_lang) {
153 bool lang_option_found = false;
Jiyong Park6f77e0c2018-07-28 16:55:44 +0900154 optind = 0;
Jiyong Park74595c12018-07-23 15:22:50 +0900155 while (true) {
156 static struct option long_options[] = {
157 {"lang", required_argument, 0, 'l'},
158 {"preprocess", no_argument, 0, 's'},
Jiyong Parke59c3682018-09-11 23:10:25 +0900159#ifndef _WIN32
Jiyong Park74595c12018-07-23 15:22:50 +0900160 {"dumpapi", no_argument, 0, 'u'},
Jiyong Park3656c3c2018-08-01 20:02:01 +0900161 {"checkapi", no_argument, 0, 'A'},
Jiyong Parke59c3682018-09-11 23:10:25 +0900162#endif
Andrei Onea390cb8b2019-02-01 18:55:54 +0000163 {"apimapping", required_argument, 0, 'i'},
Jiyong Park74595c12018-07-23 15:22:50 +0900164 {"include", required_argument, 0, 'I'},
Jiyong Park3c35e392018-08-30 13:10:30 +0900165 {"import", required_argument, 0, 'm'},
Jiyong Park74595c12018-07-23 15:22:50 +0900166 {"preprocessed", required_argument, 0, 'p'},
167 {"dep", required_argument, 0, 'd'},
168 {"out", required_argument, 0, 'o'},
169 {"header_out", required_argument, 0, 'h'},
170 {"ninja", no_argument, 0, 'n'},
Steven Moreland6cee3482018-07-18 14:39:58 -0700171 {"structured", no_argument, 0, 'S'},
Jiyong Park74595c12018-07-23 15:22:50 +0900172 {"trace", no_argument, 0, 't'},
173 {"transaction_names", no_argument, 0, 'c'},
Jiyong Park309668e2018-07-28 16:55:44 +0900174 {"version", required_argument, 0, 'v'},
Jiyong Parkce50e262018-10-29 09:54:20 +0900175 {"log", no_argument, 0, 'L'},
Jiyong Park74595c12018-07-23 15:22:50 +0900176 {"help", no_argument, 0, 'e'},
177 {0, 0, 0, 0},
178 };
Jiyong Park3c35e392018-08-30 13:10:30 +0900179 const int c = getopt_long(argc, const_cast<char* const*>(argv),
180 "I:m:p:d:o:h:abtv:", long_options, nullptr);
Jiyong Park74595c12018-07-23 15:22:50 +0900181 if (c == -1) {
182 // no more options
183 break;
Christopher Wileya590de82015-09-15 15:46:28 -0700184 }
Jiyong Park74595c12018-07-23 15:22:50 +0900185 switch (c) {
186 case 'l':
187 if (language_ == Options::Language::CPP) {
188 // aidl-cpp can't set language. aidl-cpp exists only for backwards
189 // compatibility.
190 error_message_ << "aidl-cpp does not support --lang." << endl;
191 return;
192 } else {
193 lang_option_found = true;
Jiyong Park309668e2018-07-28 16:55:44 +0900194 string lang = Trim(optarg);
Jiyong Park74595c12018-07-23 15:22:50 +0900195 if (lang == "java") {
196 language_ = Options::Language::JAVA;
197 task_ = Options::Task::COMPILE;
198 } else if (lang == "cpp") {
199 language_ = Options::Language::CPP;
200 task_ = Options::Task::COMPILE;
Steven Morelandc26d8142018-09-17 14:25:33 -0700201 } else if (lang == "ndk") {
202 language_ = Options::Language::NDK;
203 task_ = Options::Task::COMPILE;
Jiyong Park74595c12018-07-23 15:22:50 +0900204 } else {
205 error_message_ << "Unsupported language: '" << lang << "'" << endl;
206 return;
207 }
208 }
209 break;
210 case 's':
211 if (task_ != Options::Task::UNSPECIFIED) {
212 task_ = Options::Task::PREPROCESS;
213 }
214 break;
Jiyong Parke59c3682018-09-11 23:10:25 +0900215#ifndef _WIN32
Jiyong Park74595c12018-07-23 15:22:50 +0900216 case 'u':
217 if (task_ != Options::Task::UNSPECIFIED) {
Jiyong Park3656c3c2018-08-01 20:02:01 +0900218 task_ = Options::Task::DUMP_API;
219 }
220 break;
221 case 'A':
222 if (task_ != Options::Task::UNSPECIFIED) {
223 task_ = Options::Task::CHECK_API;
224 // to ensure that all parcelables in the api dumpes are structured
225 structured_ = true;
Jiyong Park74595c12018-07-23 15:22:50 +0900226 }
227 break;
Jiyong Parke59c3682018-09-11 23:10:25 +0900228#endif
Jiyong Park8c380532018-08-30 14:55:26 +0900229 case 'I': {
230 import_dirs_.emplace(Trim(optarg));
Jiyong Park3c35e392018-08-30 13:10:30 +0900231 break;
Jiyong Park8c380532018-08-30 14:55:26 +0900232 }
233 case 'm': {
234 import_files_.emplace(Trim(optarg));
Jiyong Park74595c12018-07-23 15:22:50 +0900235 break;
Jiyong Park8c380532018-08-30 14:55:26 +0900236 }
Jiyong Park74595c12018-07-23 15:22:50 +0900237 case 'p':
Jiyong Park309668e2018-07-28 16:55:44 +0900238 preprocessed_files_.emplace_back(Trim(optarg));
Jiyong Park74595c12018-07-23 15:22:50 +0900239 break;
240 case 'd':
Jiyong Park309668e2018-07-28 16:55:44 +0900241 dependency_file_ = Trim(optarg);
Jiyong Park74595c12018-07-23 15:22:50 +0900242 break;
243 case 'o':
Jiyong Park309668e2018-07-28 16:55:44 +0900244 output_dir_ = Trim(optarg);
Jiyong Park05463732018-08-09 16:03:02 +0900245 if (output_dir_.back() != OS_PATH_SEPARATOR) {
246 output_dir_.push_back(OS_PATH_SEPARATOR);
247 }
Jiyong Park74595c12018-07-23 15:22:50 +0900248 break;
249 case 'h':
Jiyong Park309668e2018-07-28 16:55:44 +0900250 output_header_dir_ = Trim(optarg);
Jiyong Park05463732018-08-09 16:03:02 +0900251 if (output_header_dir_.back() != OS_PATH_SEPARATOR) {
252 output_header_dir_.push_back(OS_PATH_SEPARATOR);
253 }
Jiyong Park74595c12018-07-23 15:22:50 +0900254 break;
255 case 'n':
256 dependency_file_ninja_ = true;
257 break;
Steven Moreland6cee3482018-07-18 14:39:58 -0700258 case 'S':
259 structured_ = true;
260 break;
Jiyong Park74595c12018-07-23 15:22:50 +0900261 case 't':
262 gen_traces_ = true;
263 break;
264 case 'a':
265 auto_dep_file_ = true;
266 break;
267 case 'b':
268 fail_on_parcelable_ = true;
269 break;
270 case 'c':
271 gen_transaction_names_ = true;
272 break;
Jiyong Park309668e2018-07-28 16:55:44 +0900273 case 'v': {
274 const string ver_str = Trim(optarg);
275 int ver = atoi(ver_str.c_str());
276 if (ver > 0) {
277 version_ = ver;
278 } else {
279 error_message_ << "Invalid version number: '" << ver_str << "'. "
280 << "Version must be a positive natural number." << endl;
281 return;
282 }
283 break;
284 }
Jiyong Parkce50e262018-10-29 09:54:20 +0900285 case 'L':
286 gen_log_ = true;
287 break;
Jiyong Park74595c12018-07-23 15:22:50 +0900288 case 'e':
289 std::cerr << GetUsage();
290 exit(0);
Andrei Onea390cb8b2019-02-01 18:55:54 +0000291 case 'i':
292 output_file_ = Trim(optarg);
293 task_ = Task::DUMP_MAPPINGS;
294 break;
Jiyong Park74595c12018-07-23 15:22:50 +0900295 default:
Steven Moreland4dbadf52018-08-08 17:46:10 -0700296 std::cerr << GetUsage();
297 exit(1);
Jiyong Park74595c12018-07-23 15:22:50 +0900298 }
299 } // while
300
301 // Positional arguments
302 if (!lang_option_found && task_ == Options::Task::COMPILE) {
303 // the legacy arguments format
304 if (argc - optind <= 0) {
305 error_message_ << "No input file" << endl;
306 return;
307 }
308 if (language_ == Options::Language::JAVA) {
309 input_files_.emplace_back(argv[optind++]);
310 if (argc - optind >= 1) {
311 output_file_ = argv[optind++];
312 } else {
313 // when output is omitted, output is by default set to the input
314 // file path with .aidl is replaced to .java.
315 output_file_ = input_files_.front();
Steven Moreland4dbadf52018-08-08 17:46:10 -0700316 if (android::base::EndsWith(output_file_, ".aidl")) {
317 output_file_ = output_file_.substr(0, output_file_.length() - strlen(".aidl"));
318 }
319 output_file_ += ".java";
320
Jiyong Park6f77e0c2018-07-28 16:55:44 +0900321 if (!output_dir_.empty()) {
Jiyong Park05463732018-08-09 16:03:02 +0900322 output_file_ = output_dir_ + output_file_;
Jiyong Park6f77e0c2018-07-28 16:55:44 +0900323 }
Jiyong Park74595c12018-07-23 15:22:50 +0900324 }
Steven Morelandc26d8142018-09-17 14:25:33 -0700325 } else if (IsCppOutput()) {
Jiyong Park74595c12018-07-23 15:22:50 +0900326 input_files_.emplace_back(argv[optind++]);
327 if (argc - optind < 2) {
328 error_message_ << "No HEADER_DIR or OUTPUT." << endl;
329 return;
330 }
331 output_header_dir_ = argv[optind++];
Jiyong Park05463732018-08-09 16:03:02 +0900332 if (output_header_dir_.back() != OS_PATH_SEPARATOR) {
333 output_header_dir_.push_back(OS_PATH_SEPARATOR);
334 }
Jiyong Park74595c12018-07-23 15:22:50 +0900335 output_file_ = argv[optind++];
336 }
337 if (argc - optind > 0) {
338 error_message_ << "Too many arguments: ";
339 for (int i = optind; i < argc; i++) {
340 error_message_ << " " << argv[i];
341 }
342 error_message_ << endl;
343 }
Jiyong Park74595c12018-07-23 15:22:50 +0900344 } else {
345 // the new arguments format
Jiyong Parke59c3682018-09-11 23:10:25 +0900346 if (task_ == Options::Task::COMPILE || task_ == Options::Task::DUMP_API) {
Jiyong Park74595c12018-07-23 15:22:50 +0900347 if (argc - optind < 1) {
348 error_message_ << "No input file." << endl;
349 return;
350 }
351 } else {
352 if (argc - optind < 2) {
353 error_message_ << "Insufficient arguments. At least 2 required, but "
354 << "got " << (argc - optind) << "." << endl;
355 return;
356 }
Andrei Onea390cb8b2019-02-01 18:55:54 +0000357 if (task_ != Options::Task::CHECK_API && task_ != Options::Task::DUMP_MAPPINGS) {
Jiyong Park3656c3c2018-08-01 20:02:01 +0900358 output_file_ = argv[optind++];
359 }
Jiyong Park74595c12018-07-23 15:22:50 +0900360 }
361 while (optind < argc) {
362 input_files_.emplace_back(argv[optind++]);
363 }
Christopher Wileya590de82015-09-15 15:46:28 -0700364 }
365
Jiyong Park74595c12018-07-23 15:22:50 +0900366 // filter out invalid combinations
Steven Moreland4dbadf52018-08-08 17:46:10 -0700367 if (lang_option_found) {
Steven Morelandc26d8142018-09-17 14:25:33 -0700368 if (IsCppOutput() && task_ == Options::Task::COMPILE) {
Steven Moreland4dbadf52018-08-08 17:46:10 -0700369 if (output_dir_.empty()) {
370 error_message_ << "Output directory is not set. Set with --out." << endl;
371 return;
372 }
373 if (output_header_dir_.empty()) {
374 error_message_ << "Header output directory is not set. Set with "
375 << "--header_out." << endl;
376 return;
377 }
Jiyong Park74595c12018-07-23 15:22:50 +0900378 }
Steven Moreland4dbadf52018-08-08 17:46:10 -0700379 if (language_ == Options::Language::JAVA && task_ == Options::Task::COMPILE) {
380 if (output_dir_.empty()) {
381 error_message_ << "Output directory is not set. Set with --out." << endl;
382 return;
383 }
384 if (!output_header_dir_.empty()) {
385 error_message_ << "Header output directory is set, which does not make "
386 << "sense for Java." << endl;
387 return;
388 }
Jiyong Park74595c12018-07-23 15:22:50 +0900389 }
390 }
391 if (task_ == Options::Task::COMPILE) {
Jiyong Parke59c3682018-09-11 23:10:25 +0900392 for (const string& input : input_files_) {
393 if (!android::base::EndsWith(input, ".aidl")) {
394 error_message_ << "Expected .aidl file for input but got '" << input << "'" << endl;
395 return;
396 }
397 }
Jiyong Park74595c12018-07-23 15:22:50 +0900398 if (!output_file_.empty() && input_files_.size() > 1) {
399 error_message_ << "Multiple AIDL files can't be compiled to a single "
400 << "output file '" << output_file_ << "'. "
401 << "Use --out=DIR instead for output files." << endl;
402 return;
403 }
404 if (!dependency_file_.empty() && input_files_.size() > 1) {
405 error_message_ << "-d or --dep doesn't work when compiling multiple AIDL "
406 << "files. Use '-a' to generate dependency file next to "
407 << "the output file with the name based on the input "
408 << "file." << endl;
409 return;
410 }
Jiyong Parkce50e262018-10-29 09:54:20 +0900411 if (gen_log_ && language_ != Options::Language::CPP) {
412 error_message_ << "--log is currently supported only for --lang=cpp" << endl;
413 return;
414 }
Christopher Wileya590de82015-09-15 15:46:28 -0700415 }
Jiyong Park309668e2018-07-28 16:55:44 +0900416 if (task_ == Options::Task::PREPROCESS) {
417 if (version_ > 0) {
418 error_message_ << "--version should not be used with '--preprocess'." << endl;
419 return;
420 }
421 }
Jiyong Park3656c3c2018-08-01 20:02:01 +0900422 if (task_ == Options::Task::CHECK_API) {
423 if (input_files_.size() != 2) {
424 error_message_ << "--checkapi requires two inputs for comparing, "
425 << "but got " << input_files_.size() << "." << endl;
426 return;
427 }
428 }
Jiyong Parke59c3682018-09-11 23:10:25 +0900429 if (task_ == Options::Task::DUMP_API) {
430 if (output_dir_.empty()) {
431 error_message_ << "--dump_api requires output directory. Use --out." << endl;
432 return;
433 }
434 }
Jiyong Park05463732018-08-09 16:03:02 +0900435
436 CHECK(output_dir_.empty() || output_dir_.back() == OS_PATH_SEPARATOR);
437 CHECK(output_header_dir_.empty() || output_header_dir_.back() == OS_PATH_SEPARATOR);
Christopher Wileya590de82015-09-15 15:46:28 -0700438}
439
Christopher Wiley4427d862015-09-14 11:07:39 -0700440} // namespace android
441} // namespace aidl