Christopher Wiley | 4427d86 | 2015-09-14 11:07:39 -0700 | [diff] [blame] | 1 | /* |
Christopher Wiley | b1bbdf8 | 2016-04-21 11:43:45 -0700 | [diff] [blame] | 2 | * Copyright (C) 2015, The Android Open Source Project * |
Christopher Wiley | 4427d86 | 2015-09-14 11:07:39 -0700 | [diff] [blame] | 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | |
Steven Moreland | 9fccf58 | 2018-08-27 20:36:27 -0700 | [diff] [blame] | 16 | #pragma once |
Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 17 | |
Jooyung Han | 888c5bc | 2020-12-22 17:28:47 +0900 | [diff] [blame^] | 18 | #include <map> |
Jiyong Park | 8c38053 | 2018-08-30 14:55:26 +0900 | [diff] [blame] | 19 | #include <set> |
Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 20 | #include <sstream> |
Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 21 | #include <string> |
| 22 | #include <vector> |
| 23 | |
Jooyung Han | 888c5bc | 2020-12-22 17:28:47 +0900 | [diff] [blame^] | 24 | #include "diagnostics.h" |
| 25 | |
Christopher Wiley | 4427d86 | 2015-09-14 11:07:39 -0700 | [diff] [blame] | 26 | namespace android { |
| 27 | namespace aidl { |
Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 28 | |
Jiyong Park | 8c38053 | 2018-08-30 14:55:26 +0900 | [diff] [blame] | 29 | using std::set; |
Jiyong Park | 1d2df7d | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 30 | using std::string; |
| 31 | using std::vector; |
| 32 | |
Jiyong Park | 6f77e0c | 2018-07-28 16:55:44 +0900 | [diff] [blame] | 33 | // A simple wrapper around ostringstream. This is just to make Options class |
| 34 | // copiable by the implicit copy constructor. If ostingstream is not wrapped, |
| 35 | // the implcit copy constructor is not generated because ostringstream isn't |
| 36 | // copiable. This class makes the field copiable by having a copy constructor |
| 37 | // that does not copy the underlying stream. |
| 38 | class ErrorMessage { |
| 39 | public: |
| 40 | ErrorMessage() = default; |
| 41 | ErrorMessage(const ErrorMessage&) {} |
| 42 | std::ostringstream stream_; |
Jiyong Park | e1d0268 | 2018-08-01 12:18:02 +0900 | [diff] [blame] | 43 | |
| 44 | template <typename T> |
| 45 | ErrorMessage& operator<<(T& t) { |
| 46 | stream_ << t; |
Jiyong Park | 6f77e0c | 2018-07-28 16:55:44 +0900 | [diff] [blame] | 47 | return *this; |
| 48 | } |
Jiyong Park | e1d0268 | 2018-08-01 12:18:02 +0900 | [diff] [blame] | 49 | |
| 50 | template <typename T> |
| 51 | ErrorMessage& operator<<(const T& t) { |
| 52 | stream_ << t; |
Jiyong Park | 6f77e0c | 2018-07-28 16:55:44 +0900 | [diff] [blame] | 53 | return *this; |
| 54 | } |
Jiyong Park | e1d0268 | 2018-08-01 12:18:02 +0900 | [diff] [blame] | 55 | |
| 56 | // for "<< endl" |
Jiyong Park | 6f77e0c | 2018-07-28 16:55:44 +0900 | [diff] [blame] | 57 | ErrorMessage& operator<<(std::ostream& (*f)(std::ostream&)) { |
| 58 | f(stream_); |
| 59 | return *this; |
| 60 | } |
| 61 | }; |
| 62 | |
Jooyung Han | 888c5bc | 2020-12-22 17:28:47 +0900 | [diff] [blame^] | 63 | class WarningOptions { |
| 64 | public: |
| 65 | std::vector<const char*> Parse(int argc, const char* const argv[], ErrorMessage& error_message); |
| 66 | DiagnosticSeverity Severity(DiagnosticID id) const; |
| 67 | |
| 68 | private: |
| 69 | bool as_errors_ = false; // -Werror |
| 70 | bool enable_all_ = false; // -Weverything |
| 71 | bool disable_all_ = false; // -w |
| 72 | std::set<std::string> enabled_; // -Wfoo |
| 73 | std::set<std::string> disabled_; // -Wno-foo |
| 74 | std::set<std::string> no_errors_; // -Wno-error=foo |
| 75 | |
| 76 | struct Mapping { |
| 77 | std::string name; |
| 78 | DiagnosticSeverity severity; |
| 79 | }; |
| 80 | std::map<DiagnosticID, Mapping> mapping_; |
| 81 | }; |
| 82 | |
Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 83 | class Options final { |
Steven Moreland | da0654f | 2018-07-17 12:24:38 -0700 | [diff] [blame] | 84 | public: |
Andrei Homescu | b62afd9 | 2020-05-11 19:24:59 -0700 | [diff] [blame] | 85 | enum class Language { UNSPECIFIED, JAVA, CPP, NDK, RUST }; |
Steven Moreland | da0654f | 2018-07-17 12:24:38 -0700 | [diff] [blame] | 86 | |
Andrei Onea | 8714b02 | 2019-02-01 18:55:54 +0000 | [diff] [blame] | 87 | enum class Task { UNSPECIFIED, COMPILE, PREPROCESS, DUMP_API, CHECK_API, DUMP_MAPPINGS }; |
Steven Moreland | da0654f | 2018-07-17 12:24:38 -0700 | [diff] [blame] | 88 | |
Steven Moreland | a57d0a6 | 2019-07-30 09:41:14 -0700 | [diff] [blame] | 89 | enum class Stability { UNSPECIFIED, VINTF }; |
| 90 | bool StabilityFromString(const std::string& stability, Stability* out_stability); |
| 91 | |
Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 92 | Options(int argc, const char* const argv[], Language default_lang = Language::UNSPECIFIED); |
Steven Moreland | da0654f | 2018-07-17 12:24:38 -0700 | [diff] [blame] | 93 | |
Jiyong Park | 6f77e0c | 2018-07-28 16:55:44 +0900 | [diff] [blame] | 94 | static Options From(const string& cmdline); |
| 95 | |
| 96 | static Options From(const vector<string>& args); |
| 97 | |
Steven Moreland | 6cee348 | 2018-07-18 14:39:58 -0700 | [diff] [blame] | 98 | // Contain no references to unstructured data types (such as a parcelable that is |
| 99 | // implemented in Java). These interfaces aren't inherently stable but they have the |
| 100 | // capacity to be stabilized. |
| 101 | bool IsStructured() const { return structured_; } |
| 102 | |
Steven Moreland | a57d0a6 | 2019-07-30 09:41:14 -0700 | [diff] [blame] | 103 | Stability GetStability() const { return stability_; } |
| 104 | |
Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 105 | Language TargetLanguage() const { return language_; } |
Steven Moreland | c26d814 | 2018-09-17 14:25:33 -0700 | [diff] [blame] | 106 | bool IsCppOutput() const { return language_ == Language::CPP || language_ == Language::NDK; } |
Steven Moreland | da0654f | 2018-07-17 12:24:38 -0700 | [diff] [blame] | 107 | |
Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 108 | Task GetTask() const { return task_; } |
Steven Moreland | da0654f | 2018-07-17 12:24:38 -0700 | [diff] [blame] | 109 | |
Jiyong Park | 8c38053 | 2018-08-30 14:55:26 +0900 | [diff] [blame] | 110 | const set<string>& ImportDirs() const { return import_dirs_; } |
Jiyong Park | 3c35e39 | 2018-08-30 13:10:30 +0900 | [diff] [blame] | 111 | |
Jiyong Park | 8c38053 | 2018-08-30 14:55:26 +0900 | [diff] [blame] | 112 | const set<string>& ImportFiles() const { return import_files_; } |
Steven Moreland | da0654f | 2018-07-17 12:24:38 -0700 | [diff] [blame] | 113 | |
Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 114 | const vector<string>& PreprocessedFiles() const { return preprocessed_files_; } |
Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 115 | |
Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 116 | string DependencyFile() const { |
Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 117 | return dependency_file_; |
| 118 | } |
Christopher Wiley | 4427d86 | 2015-09-14 11:07:39 -0700 | [diff] [blame] | 119 | |
Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 120 | bool AutoDepFile() const { return auto_dep_file_; } |
Christopher Wiley | ef4132c | 2015-11-05 15:47:40 -0800 | [diff] [blame] | 121 | |
Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 122 | bool GenTraces() const { return gen_traces_; } |
Steven Moreland | da0654f | 2018-07-17 12:24:38 -0700 | [diff] [blame] | 123 | |
Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 124 | bool GenTransactionNames() const { return gen_transaction_names_; } |
Christopher Wiley | 4427d86 | 2015-09-14 11:07:39 -0700 | [diff] [blame] | 125 | |
Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 126 | bool DependencyFileNinja() const { return dependency_file_ninja_; } |
| 127 | |
| 128 | const vector<string>& InputFiles() const { return input_files_; } |
| 129 | |
| 130 | // Path to the output file. This is used only when there is only one |
| 131 | // output file for the invocation. When there are multiple outputs |
| 132 | // (e.g. compile multiple AIDL files), output files are created under |
| 133 | // OutputDir(). |
| 134 | const string& OutputFile() const { return output_file_; } |
| 135 | |
| 136 | // Path to the directory where output file(s) will be generated under. |
| 137 | const string& OutputDir() const { return output_dir_; } |
| 138 | |
| 139 | // Path to the directory where header file(s) will be generated under. |
| 140 | // Only used when TargetLanguage() == Language::CPP |
| 141 | const string& OutputHeaderDir() const { return output_header_dir_; } |
| 142 | |
| 143 | bool FailOnParcelable() const { return fail_on_parcelable_; } |
| 144 | |
Jiyong Park | 309668e | 2018-07-28 16:55:44 +0900 | [diff] [blame] | 145 | int Version() const { return version_; } |
| 146 | |
Paul Trautrim | b77048c | 2020-01-21 16:39:32 +0900 | [diff] [blame] | 147 | string Hash() const { return hash_; } |
| 148 | |
Jiyong Park | ce50e26 | 2018-10-29 09:54:20 +0900 | [diff] [blame] | 149 | bool GenLog() const { return gen_log_; } |
| 150 | |
Jiyong Park | 6f77e0c | 2018-07-28 16:55:44 +0900 | [diff] [blame] | 151 | bool Ok() const { return error_message_.stream_.str().empty(); } |
Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 152 | |
Jiyong Park | 6f77e0c | 2018-07-28 16:55:44 +0900 | [diff] [blame] | 153 | string GetErrorMessage() const { return error_message_.stream_.str(); } |
Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 154 | |
| 155 | string GetUsage() const; |
Andreas Gampe | e9c816e | 2018-03-14 09:05:48 -0700 | [diff] [blame] | 156 | |
Andrei Onea | 8714b02 | 2019-02-01 18:55:54 +0000 | [diff] [blame] | 157 | bool GenApiMapping() const { return task_ == Task::DUMP_MAPPINGS; } |
| 158 | |
Devin Moore | 7b8d5c9 | 2020-03-17 14:14:08 -0700 | [diff] [blame] | 159 | static const string LanguageToString(Language language); |
| 160 | |
Jooyung Han | 888c5bc | 2020-12-22 17:28:47 +0900 | [diff] [blame^] | 161 | const WarningOptions& GetWarningOptions() const { return warning_options_; } |
| 162 | |
Steven Moreland | da0654f | 2018-07-17 12:24:38 -0700 | [diff] [blame] | 163 | // The following are for testability, but cannot be influenced on the command line. |
Andreas Gampe | e9c816e | 2018-03-14 09:05:48 -0700 | [diff] [blame] | 164 | // Threshold of interface methods to enable outlining of onTransact cases. |
| 165 | size_t onTransact_outline_threshold_{275u}; |
| 166 | // Number of cases to _not_ outline, if outlining is enabled. |
| 167 | size_t onTransact_non_outline_count_{275u}; |
| 168 | |
Christopher Wiley | 4427d86 | 2015-09-14 11:07:39 -0700 | [diff] [blame] | 169 | private: |
Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 170 | Options() = default; |
Christopher Wiley | 4427d86 | 2015-09-14 11:07:39 -0700 | [diff] [blame] | 171 | |
Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 172 | const string myname_; |
| 173 | Language language_ = Language::UNSPECIFIED; |
| 174 | Task task_ = Task::COMPILE; |
Jiyong Park | 8c38053 | 2018-08-30 14:55:26 +0900 | [diff] [blame] | 175 | set<string> import_dirs_; |
| 176 | set<string> import_files_; |
Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 177 | vector<string> preprocessed_files_; |
| 178 | string dependency_file_; |
| 179 | bool gen_traces_ = false; |
| 180 | bool gen_transaction_names_ = false; |
| 181 | bool dependency_file_ninja_ = false; |
Steven Moreland | a57d0a6 | 2019-07-30 09:41:14 -0700 | [diff] [blame] | 182 | bool structured_ = false; |
| 183 | Stability stability_ = Stability::UNSPECIFIED; |
Jiyong Park | 74595c1 | 2018-07-23 15:22:50 +0900 | [diff] [blame] | 184 | string output_dir_; |
| 185 | string output_header_dir_; |
| 186 | bool fail_on_parcelable_ = false; |
| 187 | bool auto_dep_file_ = false; |
| 188 | vector<string> input_files_; |
| 189 | string output_file_; |
Jiyong Park | 309668e | 2018-07-28 16:55:44 +0900 | [diff] [blame] | 190 | int version_ = 0; |
Paul Trautrim | b77048c | 2020-01-21 16:39:32 +0900 | [diff] [blame] | 191 | string hash_ = ""; |
Jiyong Park | ce50e26 | 2018-10-29 09:54:20 +0900 | [diff] [blame] | 192 | bool gen_log_ = false; |
Jiyong Park | 6f77e0c | 2018-07-28 16:55:44 +0900 | [diff] [blame] | 193 | ErrorMessage error_message_; |
Jooyung Han | 888c5bc | 2020-12-22 17:28:47 +0900 | [diff] [blame^] | 194 | WarningOptions warning_options_; |
Adam Lesinski | ffa1686 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 195 | }; |
| 196 | |
Christopher Wiley | 4427d86 | 2015-09-14 11:07:39 -0700 | [diff] [blame] | 197 | } // namespace aidl |
Steven Moreland | f4c64df | 2019-07-29 19:54:04 -0700 | [diff] [blame] | 198 | } // namespace android |