blob: 350b4c105eee768ac2115ddad1f2f4a75b62412e [file] [log] [blame]
Will McVickerefd970d2019-09-25 15:28:30 -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 */
16
Adam Lesinskiffa16862014-01-23 18:17:42 -080017#include "aidl_language.h"
Jiyong Park1deecc32018-07-17 01:14:41 +090018#include "aidl_typenames.h"
Jiyong Parke5c45292020-05-26 19:06:24 +090019#include "parser.h"
Christopher Wileyf690be52015-09-14 15:19:10 -070020
Adam Lesinskiffa16862014-01-23 18:17:42 -080021#include <stdio.h>
Adam Lesinskiffa16862014-01-23 18:17:42 -080022#include <stdlib.h>
Christopher Wiley4a2884b2015-10-07 11:27:45 -070023#include <string.h>
Jiyong Park68bc77a2018-07-19 19:00:45 +090024#include <algorithm>
Jiyong Park1deecc32018-07-17 01:14:41 +090025#include <iostream>
Jiyong Park68bc77a2018-07-19 19:00:45 +090026#include <set>
27#include <sstream>
Casey Dahlindd691812015-09-09 17:59:06 -070028#include <string>
Jiyong Park1deecc32018-07-17 01:14:41 +090029#include <utility>
Christopher Wileyf690be52015-09-14 15:19:10 -070030
Steven Moreland1c4ba202018-08-09 10:49:54 -070031#include <android-base/parsedouble.h>
Roshan Pius9d7810a2016-07-28 08:57:50 -070032#include <android-base/parseint.h>
Elliott Hughes0a620672015-12-04 13:53:18 -080033#include <android-base/strings.h>
Christopher Wileyd76067c2015-10-19 17:00:13 -070034
Steven Moreland21780812020-09-11 01:29:45 +000035#include "aidl_language_y.h"
Christopher Wiley4a2884b2015-10-07 11:27:45 -070036#include "logging.h"
Adam Lesinskiffa16862014-01-23 18:17:42 -080037
Will McVickerd7d18df2019-09-12 13:40:50 -070038#include "aidl.h"
39
Casey Dahlin07b9dde2015-09-10 19:13:49 -070040#ifdef _WIN32
41int isatty(int fd)
42{
43 return (fd == 0);
44}
45#endif
46
Jooyung Han888c5bc2020-12-22 17:28:47 +090047using android::aidl::DiagnosticID;
Christopher Wiley4a2884b2015-10-07 11:27:45 -070048using android::aidl::IoDelegate;
Christopher Wileyd76067c2015-10-19 17:00:13 -070049using android::base::Join;
Christopher Wiley8aa4d9f2015-11-16 19:10:45 -080050using android::base::Split;
Casey Dahlindd691812015-09-09 17:59:06 -070051using std::cerr;
Jiyong Park1deecc32018-07-17 01:14:41 +090052using std::pair;
Jiyong Park68bc77a2018-07-19 19:00:45 +090053using std::set;
Christopher Wiley4a2884b2015-10-07 11:27:45 -070054using std::string;
55using std::unique_ptr;
Jiyong Parkccf00f82018-07-17 01:39:23 +090056using std::vector;
Adam Lesinskiffa16862014-01-23 18:17:42 -080057
Jeongik Cha047c5ee2019-08-07 23:16:49 +090058namespace {
Jeongik Cha997281d2020-01-16 15:23:59 +090059bool IsJavaKeyword(const char* str) {
Jeongik Cha047c5ee2019-08-07 23:16:49 +090060 static const std::vector<std::string> kJavaKeywords{
61 "abstract", "assert", "boolean", "break", "byte", "case", "catch",
62 "char", "class", "const", "continue", "default", "do", "double",
63 "else", "enum", "extends", "final", "finally", "float", "for",
64 "goto", "if", "implements", "import", "instanceof", "int", "interface",
65 "long", "native", "new", "package", "private", "protected", "public",
66 "return", "short", "static", "strictfp", "super", "switch", "synchronized",
67 "this", "throw", "throws", "transient", "try", "void", "volatile",
68 "while", "true", "false", "null",
69 };
70 return std::find(kJavaKeywords.begin(), kJavaKeywords.end(), str) != kJavaKeywords.end();
71}
Jeongik Cha997281d2020-01-16 15:23:59 +090072
73void AddHideComment(CodeWriter* writer) {
74 writer->Write("/* @hide */\n");
75}
76
77inline bool HasHideComment(const std::string& comment) {
78 return std::regex_search(comment, std::regex("@hide\\b"));
79}
Jeongik Cha047c5ee2019-08-07 23:16:49 +090080} // namespace
81
Devin Mooredf93ebb2020-03-25 14:03:35 -070082AidlLocation::AidlLocation(const std::string& file, Point begin, Point end, Source source)
83 : file_(file), begin_(begin), end_(end), source_(source) {}
Steven Moreland46e9da82018-07-27 15:45:29 -070084
85std::ostream& operator<<(std::ostream& os, const AidlLocation& l) {
Devin Moore5de18ed2020-04-02 13:52:29 -070086 os << l.file_;
87 if (l.LocationKnown()) {
88 os << ":" << l.begin_.line << "." << l.begin_.column << "-";
89 if (l.begin_.line != l.end_.line) {
90 os << l.end_.line << ".";
91 }
92 os << l.end_.column;
Steven Moreland46e9da82018-07-27 15:45:29 -070093 }
Steven Moreland46e9da82018-07-27 15:45:29 -070094 return os;
95}
96
97AidlNode::AidlNode(const AidlLocation& location) : location_(location) {}
98
Mathew Inwoodadb74672019-11-29 14:01:53 +000099std::string AidlNode::PrintLine() const {
Andrei Onea8714b022019-02-01 18:55:54 +0000100 std::stringstream ss;
101 ss << location_.file_ << ":" << location_.begin_.line;
102 return ss.str();
103}
104
Mathew Inwoodadb74672019-11-29 14:01:53 +0000105std::string AidlNode::PrintLocation() const {
106 std::stringstream ss;
107 ss << location_.file_ << ":" << location_.begin_.line << ":" << location_.begin_.column << ":"
108 << location_.end_.line << ":" << location_.end_.column;
109 return ss.str();
110}
111
Jooyung Han5c2fcae2020-12-26 00:04:39 +0900112static const AidlTypeSpecifier kStringType{AIDL_LOCATION_HERE, "String", false, nullptr, ""};
Jooyung Hanf8dbbcc2020-12-26 03:05:55 +0900113static const AidlTypeSpecifier kStringArrayType{AIDL_LOCATION_HERE, "String", true, nullptr, ""};
Jooyung Han5c2fcae2020-12-26 00:04:39 +0900114static const AidlTypeSpecifier kIntType{AIDL_LOCATION_HERE, "int", false, nullptr, ""};
115static const AidlTypeSpecifier kLongType{AIDL_LOCATION_HERE, "long", false, nullptr, ""};
116static const AidlTypeSpecifier kBooleanType{AIDL_LOCATION_HERE, "boolean", false, nullptr, ""};
117
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700118const std::vector<AidlAnnotation::Schema>& AidlAnnotation::AllSchemas() {
119 static const std::vector<Schema> kSchemas{
Jooyung Hand902a972020-10-23 17:32:44 +0900120 {AidlAnnotation::Type::NULLABLE, "nullable", {}, false},
121 {AidlAnnotation::Type::UTF8_IN_CPP, "utf8InCpp", {}, false},
Steven Morelanda7764e52020-10-27 17:29:29 +0000122 {AidlAnnotation::Type::SENSITIVE_DATA, "SensitiveData", {}, false},
Jooyung Hand902a972020-10-23 17:32:44 +0900123 {AidlAnnotation::Type::VINTF_STABILITY, "VintfStability", {}, false},
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700124 {AidlAnnotation::Type::UNSUPPORTED_APP_USAGE,
125 "UnsupportedAppUsage",
Jooyung Han5c2fcae2020-12-26 00:04:39 +0900126 {{"expectedSignature", kStringType},
127 {"implicitMember", kStringType},
128 {"maxTargetSdk", kIntType},
129 {"publicAlternatives", kStringType},
130 {"trackingBug", kLongType}},
Jooyung Hand902a972020-10-23 17:32:44 +0900131 false},
132 {AidlAnnotation::Type::JAVA_STABLE_PARCELABLE, "JavaOnlyStableParcelable", {}, false},
133 {AidlAnnotation::Type::HIDE, "Hide", {}, false},
Jooyung Han5c2fcae2020-12-26 00:04:39 +0900134 {AidlAnnotation::Type::BACKING, "Backing", {{"type", kStringType}}, false, {"type"}},
Jooyung Han5721a232020-12-24 04:34:55 +0900135 {AidlAnnotation::Type::JAVA_PASSTHROUGH,
136 "JavaPassthrough",
Jooyung Han5c2fcae2020-12-26 00:04:39 +0900137 {{"annotation", kStringType}},
Jooyung Han5721a232020-12-24 04:34:55 +0900138 true,
139 {"annotation"}},
Jiyong Park9aa3d042020-12-04 23:30:02 +0900140 {AidlAnnotation::Type::JAVA_DERIVE,
Jooyung Han5721a232020-12-24 04:34:55 +0900141 "JavaDerive",
Jooyung Han5c2fcae2020-12-26 00:04:39 +0900142 {{"toString", kBooleanType}, {"equals", kBooleanType}},
Jooyung Han5721a232020-12-24 04:34:55 +0900143 false},
Jooyung Hand902a972020-10-23 17:32:44 +0900144 {AidlAnnotation::Type::JAVA_ONLY_IMMUTABLE, "JavaOnlyImmutable", {}, false},
145 {AidlAnnotation::Type::FIXED_SIZE, "FixedSize", {}, false},
Jooyung Han5c2fcae2020-12-26 00:04:39 +0900146 {AidlAnnotation::Type::DESCRIPTOR, "Descriptor", {{"value", kStringType}}, false, {"value"}},
Andrei Homescue61feb52020-08-18 15:44:24 -0700147 {AidlAnnotation::Type::RUST_DERIVE,
148 "RustDerive",
Jooyung Han5c2fcae2020-12-26 00:04:39 +0900149 {{"Copy", kBooleanType},
150 {"Clone", kBooleanType},
151 {"PartialOrd", kBooleanType},
152 {"Ord", kBooleanType},
153 {"PartialEq", kBooleanType},
154 {"Eq", kBooleanType},
155 {"Hash", kBooleanType}},
Jooyung Hand902a972020-10-23 17:32:44 +0900156 false},
Jooyung Hanf8dbbcc2020-12-26 03:05:55 +0900157 {AidlAnnotation::Type::SUPPRESS_WARNINGS,
158 "SuppressWarnings",
159 {{"value", kStringArrayType}},
160 false,
161 {"value"}},
Jiyong Parkbf5fd5c2020-06-05 19:48:05 +0900162 };
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700163 return kSchemas;
164}
Jiyong Park68bc77a2018-07-19 19:00:45 +0900165
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700166std::string AidlAnnotation::TypeToString(Type type) {
167 for (const Schema& schema : AllSchemas()) {
168 if (type == schema.type) return schema.name;
169 }
170 AIDL_FATAL(AIDL_LOCATION_HERE) << "Unrecognized type: " << static_cast<size_t>(type);
171 __builtin_unreachable();
172}
Andrei Onea9445fc62019-06-27 18:11:59 +0100173
174AidlAnnotation* AidlAnnotation::Parse(
175 const AidlLocation& location, const string& name,
176 std::map<std::string, std::shared_ptr<AidlConstantValue>>* parameter_list) {
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700177 const Schema* schema = nullptr;
178 for (const Schema& a_schema : AllSchemas()) {
179 if (a_schema.name == name) {
180 schema = &a_schema;
181 }
182 }
183
184 if (schema == nullptr) {
Jiyong Park68bc77a2018-07-19 19:00:45 +0900185 std::ostringstream stream;
Steven Moreland46e9da82018-07-27 15:45:29 -0700186 stream << "'" << name << "' is not a recognized annotation. ";
Jiyong Park68bc77a2018-07-19 19:00:45 +0900187 stream << "It must be one of:";
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700188 for (const Schema& s : AllSchemas()) {
189 stream << " " << s.name;
Jiyong Park68bc77a2018-07-19 19:00:45 +0900190 }
191 stream << ".";
Steven Moreland46e9da82018-07-27 15:45:29 -0700192 AIDL_ERROR(location) << stream.str();
193 return nullptr;
Jiyong Park68bc77a2018-07-19 19:00:45 +0900194 }
Andrei Onea9445fc62019-06-27 18:11:59 +0100195 if (parameter_list == nullptr) {
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700196 return new AidlAnnotation(location, *schema, {});
Andrei Onea9445fc62019-06-27 18:11:59 +0100197 }
198
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700199 return new AidlAnnotation(location, *schema, std::move(*parameter_list));
Jiyong Park68bc77a2018-07-19 19:00:45 +0900200}
201
Andrei Onea9445fc62019-06-27 18:11:59 +0100202AidlAnnotation::AidlAnnotation(
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700203 const AidlLocation& location, const Schema& schema,
Andrei Onea9445fc62019-06-27 18:11:59 +0100204 std::map<std::string, std::shared_ptr<AidlConstantValue>>&& parameters)
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700205 : AidlNode(location), schema_(schema), parameters_(std::move(parameters)) {}
Andrei Onea9445fc62019-06-27 18:11:59 +0100206
Jooyung Han690f5842020-12-04 13:02:04 +0900207struct ConstReferenceFinder : AidlConstantValue::Visitor {
208 AidlConstantReference* found;
209 void Visit(AidlConstantValue&) override {}
210 void Visit(AidlUnaryConstExpression&) override {}
211 void Visit(AidlBinaryConstExpression&) override {}
212 void Visit(AidlConstantReference& ref) override {
213 if (!found) found = &ref;
214 }
215};
216
Andrei Onea9445fc62019-06-27 18:11:59 +0100217bool AidlAnnotation::CheckValid() const {
Andrei Onea9445fc62019-06-27 18:11:59 +0100218 for (const auto& name_and_param : parameters_) {
219 const std::string& param_name = name_and_param.first;
220 const std::shared_ptr<AidlConstantValue>& param = name_and_param.second;
Jooyung Han690f5842020-12-04 13:02:04 +0900221
Jooyung Han5c2fcae2020-12-26 00:04:39 +0900222 auto it = schema_.supported_parameters.find(param_name);
223 if (it == schema_.supported_parameters.end()) {
Andrei Onea9445fc62019-06-27 18:11:59 +0100224 std::ostringstream stream;
225 stream << "Parameter " << param_name << " not supported ";
Devin Mooredecaf292020-04-30 09:16:40 -0700226 stream << "for annotation " << GetName() << ". ";
Andrei Onea9445fc62019-06-27 18:11:59 +0100227 stream << "It must be one of:";
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700228 for (const auto& kv : schema_.supported_parameters) {
Andrei Onea9445fc62019-06-27 18:11:59 +0100229 stream << " " << kv.first;
230 }
231 AIDL_ERROR(this) << stream.str();
232 return false;
233 }
Jooyung Han690f5842020-12-04 13:02:04 +0900234
235 ConstReferenceFinder finder;
236 param->Accept(finder);
237 if (finder.found) {
238 AIDL_ERROR(finder.found) << "Value must be a constant expression but contains reference to "
239 << finder.found->GetFieldName() << ".";
240 return false;
241 }
242
243 if (!param->CheckValid()) {
244 AIDL_ERROR(this) << "Invalid value for parameter " << param_name << " on annotation "
245 << GetName() << ".";
246 return false;
247 }
248
Jooyung Han5c2fcae2020-12-26 00:04:39 +0900249 const std::string param_value = param->ValueString(it->second, AidlConstantValueDecorator);
Andrei Onea9445fc62019-06-27 18:11:59 +0100250 // Assume error on empty string.
251 if (param_value == "") {
252 AIDL_ERROR(this) << "Invalid value for parameter " << param_name << " on annotation "
253 << GetName() << ".";
254 return false;
255 }
256 }
Jooyung Han5721a232020-12-24 04:34:55 +0900257 bool success = true;
258 for (const auto& param : schema_.required_parameters) {
259 if (parameters_.count(param) == 0) {
260 AIDL_ERROR(this) << "Missing '" << param << "' on @" << GetName() << ".";
261 success = false;
262 }
263 }
264 return success;
Andrei Onea9445fc62019-06-27 18:11:59 +0100265}
266
267std::map<std::string, std::string> AidlAnnotation::AnnotationParams(
268 const ConstantValueDecorator& decorator) const {
269 std::map<std::string, std::string> raw_params;
Andrei Onea9445fc62019-06-27 18:11:59 +0100270 for (const auto& name_and_param : parameters_) {
271 const std::string& param_name = name_and_param.first;
272 const std::shared_ptr<AidlConstantValue>& param = name_and_param.second;
Devin Mooredecaf292020-04-30 09:16:40 -0700273 if (schema_.supported_parameters.find(param_name) == schema_.supported_parameters.end()) {
274 std::ostringstream stream;
275 stream << "Parameter " << param_name << " not supported ";
276 stream << "for annotation " << GetName() << ". ";
277 stream << "It must be one of:";
278 for (const auto& kv : schema_.supported_parameters) {
279 stream << " " << kv.first;
280 }
281 AIDL_ERROR(this) << stream.str();
282 continue;
283 }
Will McVickerd7d18df2019-09-12 13:40:50 -0700284 if (!param->CheckValid()) {
285 AIDL_ERROR(this) << "Invalid value for parameter " << param_name << " on annotation "
286 << GetName() << ".";
Devin Mooredecaf292020-04-30 09:16:40 -0700287 continue;
Will McVickerd7d18df2019-09-12 13:40:50 -0700288 }
Jooyung Han5c2fcae2020-12-26 00:04:39 +0900289 const auto& type = schema_.supported_parameters.at(param_name);
Will McVickerd7d18df2019-09-12 13:40:50 -0700290 raw_params.emplace(param_name, param->ValueString(type, decorator));
Andrei Onea9445fc62019-06-27 18:11:59 +0100291 }
292 return raw_params;
293}
Steven Moreland46e9da82018-07-27 15:45:29 -0700294
Jooyung Han965e31d2020-11-27 12:30:16 +0900295std::string AidlAnnotation::ToString() const {
Daniel Norman37d43dd2019-09-09 17:22:34 -0700296 if (parameters_.empty()) {
297 return "@" + GetName();
298 } else {
299 vector<string> param_strings;
Jooyung Han965e31d2020-11-27 12:30:16 +0900300 for (const auto& [name, value] : AnnotationParams(AidlConstantValueDecorator)) {
Daniel Norman37d43dd2019-09-09 17:22:34 -0700301 param_strings.emplace_back(name + "=" + value);
302 }
303 return "@" + GetName() + "(" + Join(param_strings, ", ") + ")";
304 }
305}
306
Andrei Onea9445fc62019-06-27 18:11:59 +0100307static const AidlAnnotation* GetAnnotation(const vector<AidlAnnotation>& annotations,
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700308 AidlAnnotation::Type type) {
Andrei Onea9445fc62019-06-27 18:11:59 +0100309 for (const auto& a : annotations) {
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700310 if (a.GetType() == type) {
Jooyung Hand902a972020-10-23 17:32:44 +0900311 AIDL_FATAL_IF(a.Repeatable(), a)
312 << "Trying to get a single annotation when it is repeatable.";
Andrei Onea9445fc62019-06-27 18:11:59 +0100313 return &a;
314 }
315 }
316 return nullptr;
317}
318
Steven Moreland46e9da82018-07-27 15:45:29 -0700319AidlAnnotatable::AidlAnnotatable(const AidlLocation& location) : AidlNode(location) {}
320
Jiyong Park68bc77a2018-07-19 19:00:45 +0900321bool AidlAnnotatable::IsNullable() const {
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700322 return GetAnnotation(annotations_, AidlAnnotation::Type::NULLABLE);
Jiyong Park68bc77a2018-07-19 19:00:45 +0900323}
324
Jiyong Park68bc77a2018-07-19 19:00:45 +0900325bool AidlAnnotatable::IsUtf8InCpp() const {
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700326 return GetAnnotation(annotations_, AidlAnnotation::Type::UTF8_IN_CPP);
Jiyong Park68bc77a2018-07-19 19:00:45 +0900327}
328
Steven Morelanda7764e52020-10-27 17:29:29 +0000329bool AidlAnnotatable::IsSensitiveData() const {
330 return GetAnnotation(annotations_, AidlAnnotation::Type::SENSITIVE_DATA);
331}
332
Steven Morelanda57d0a62019-07-30 09:41:14 -0700333bool AidlAnnotatable::IsVintfStability() const {
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700334 return GetAnnotation(annotations_, AidlAnnotation::Type::VINTF_STABILITY);
Steven Morelanda57d0a62019-07-30 09:41:14 -0700335}
336
Jeongik Chad0a10272020-08-06 16:33:36 +0900337bool AidlAnnotatable::IsJavaOnlyImmutable() const {
338 return GetAnnotation(annotations_, AidlAnnotation::Type::JAVA_ONLY_IMMUTABLE);
Jeongik Cha36f76c32020-07-28 00:25:52 +0900339}
340
Devin Moorec7e47a32020-08-07 10:55:25 -0700341bool AidlAnnotatable::IsFixedSize() const {
342 return GetAnnotation(annotations_, AidlAnnotation::Type::FIXED_SIZE);
343}
344
Andrei Onea9445fc62019-06-27 18:11:59 +0100345const AidlAnnotation* AidlAnnotatable::UnsupportedAppUsage() const {
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700346 return GetAnnotation(annotations_, AidlAnnotation::Type::UNSUPPORTED_APP_USAGE);
Jiyong Parka6605ab2018-11-11 14:30:21 +0900347}
348
Andrei Homescue61feb52020-08-18 15:44:24 -0700349const AidlAnnotation* AidlAnnotatable::RustDerive() const {
350 return GetAnnotation(annotations_, AidlAnnotation::Type::RUST_DERIVE);
351}
352
Jooyung Han672557b2020-12-24 05:18:00 +0900353const AidlAnnotation* AidlAnnotatable::BackingType() const {
354 return GetAnnotation(annotations_, AidlAnnotation::Type::BACKING);
Daniel Norman85aed542019-08-21 12:01:14 -0700355}
356
Jooyung Hanf8dbbcc2020-12-26 03:05:55 +0900357std::vector<std::string> AidlAnnotatable::SuppressWarnings() const {
358 auto annot = GetAnnotation(annotations_, AidlAnnotation::Type::SUPPRESS_WARNINGS);
359 if (annot) {
360 auto names = annot->ParamValue<std::vector<std::string>>("value");
361 AIDL_FATAL_IF(!names.has_value(), this);
362 return std::move(names.value());
363 }
364 return {};
365}
366
Jeongik Cha88f95a82020-01-15 13:02:16 +0900367bool AidlAnnotatable::IsStableApiParcelable(Options::Language lang) const {
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700368 return lang == Options::Language::JAVA &&
369 GetAnnotation(annotations_, AidlAnnotation::Type::JAVA_STABLE_PARCELABLE);
Jeongik Cha82317dd2019-02-27 20:26:11 +0900370}
371
Makoto Onuki78a1c1c2020-03-04 16:57:23 -0800372bool AidlAnnotatable::IsHide() const {
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700373 return GetAnnotation(annotations_, AidlAnnotation::Type::HIDE);
Makoto Onuki78a1c1c2020-03-04 16:57:23 -0800374}
375
Jooyung Han829ec7c2020-12-02 12:07:36 +0900376bool AidlAnnotatable::JavaDerive(const std::string& method) const {
377 auto annotation = GetAnnotation(annotations_, AidlAnnotation::Type::JAVA_DERIVE);
378 if (annotation != nullptr) {
Jooyung Hanb3c77ed2020-12-26 02:02:45 +0900379 return annotation->ParamValue<bool>(method).value_or(false);
Jooyung Han829ec7c2020-12-02 12:07:36 +0900380 }
381 return false;
Jiyong Park43113fb2020-07-20 16:26:19 +0900382}
383
Jiyong Park27fd7fd2020-08-27 16:25:09 +0900384std::string AidlAnnotatable::GetDescriptor() const {
385 auto annotation = GetAnnotation(annotations_, AidlAnnotation::Type::DESCRIPTOR);
386 if (annotation != nullptr) {
Jooyung Hanb3c77ed2020-12-26 02:02:45 +0900387 return annotation->ParamValue<std::string>("value").value();
Jiyong Park27fd7fd2020-08-27 16:25:09 +0900388 }
389 return "";
390}
391
Steven Moreland7e4b9502020-02-20 18:10:42 -0800392void AidlAnnotatable::DumpAnnotations(CodeWriter* writer) const {
393 if (annotations_.empty()) return;
394
395 writer->Write("%s\n", AidlAnnotatable::ToString().c_str());
396}
397
Devin Moore24f68572020-02-26 13:20:59 -0800398bool AidlAnnotatable::CheckValid(const AidlTypenames&) const {
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700399 std::set<AidlAnnotation::Type> supported_annotations = GetSupportedAnnotations();
Andrei Onea9445fc62019-06-27 18:11:59 +0100400 for (const auto& annotation : GetAnnotations()) {
Jooyung Hand902a972020-10-23 17:32:44 +0900401 // check if it is allowed for this node
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700402 if (supported_annotations.find(annotation.GetType()) == supported_annotations.end()) {
Jooyung Hand902a972020-10-23 17:32:44 +0900403 std::vector<std::string> supported_annot_strings;
404 for (AidlAnnotation::Type type : supported_annotations) {
405 supported_annot_strings.push_back(AidlAnnotation::TypeToString(type));
406 }
Devin Moore24f68572020-02-26 13:20:59 -0800407 AIDL_ERROR(this) << "'" << annotation.GetName()
408 << "' is not a supported annotation for this node. "
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700409 << "It must be one of: "
410 << android::base::Join(supported_annot_strings, ", ");
Devin Moore24f68572020-02-26 13:20:59 -0800411 return false;
412 }
Jooyung Hand902a972020-10-23 17:32:44 +0900413 // CheckValid() only if it is okay to be here
414 if (!annotation.CheckValid()) {
415 return false;
416 }
417 }
418
419 std::map<AidlAnnotation::Type, AidlLocation> declared;
420 for (const auto& annotation : GetAnnotations()) {
421 const auto& [iter, inserted] = declared.emplace(annotation.GetType(), annotation.GetLocation());
422 if (!inserted && !annotation.Repeatable()) {
423 AIDL_ERROR(this) << "'" << annotation.GetName()
424 << "' is repeated, but not allowed. Previous location: " << iter->second;
425 return false;
426 }
Andrei Onea9445fc62019-06-27 18:11:59 +0100427 }
Steven Morelanda57d0a62019-07-30 09:41:14 -0700428
Andrei Onea9445fc62019-06-27 18:11:59 +0100429 return true;
430}
431
Jiyong Park68bc77a2018-07-19 19:00:45 +0900432string AidlAnnotatable::ToString() const {
433 vector<string> ret;
434 for (const auto& a : annotations_) {
Jooyung Han965e31d2020-11-27 12:30:16 +0900435 ret.emplace_back(a.ToString());
Jiyong Park68bc77a2018-07-19 19:00:45 +0900436 }
437 std::sort(ret.begin(), ret.end());
438 return Join(ret, " ");
439}
440
Steven Moreland46e9da82018-07-27 15:45:29 -0700441AidlTypeSpecifier::AidlTypeSpecifier(const AidlLocation& location, const string& unresolved_name,
442 bool is_array,
Jiyong Park1deecc32018-07-17 01:14:41 +0900443 vector<unique_ptr<AidlTypeSpecifier>>* type_params,
Steven Moreland46e9da82018-07-27 15:45:29 -0700444 const string& comments)
445 : AidlAnnotatable(location),
Jeongik Chadf76dc72019-11-28 00:08:47 +0900446 AidlParameterizable<unique_ptr<AidlTypeSpecifier>>(type_params),
Steven Moreland46e9da82018-07-27 15:45:29 -0700447 unresolved_name_(unresolved_name),
Casey Dahlinf7a421c2015-10-05 17:24:28 -0700448 is_array_(is_array),
Jeongik Cha1a7ab642019-07-29 17:31:02 +0900449 comments_(comments),
450 split_name_(Split(unresolved_name, ".")) {}
Casey Dahlinf2d23f72015-10-02 16:19:19 -0700451
Jooyung Hand2fa0232020-10-19 02:51:41 +0900452const AidlTypeSpecifier& AidlTypeSpecifier::ArrayBase() const {
Steven Moreland3f658cf2018-08-20 13:40:54 -0700453 AIDL_FATAL_IF(!is_array_, this);
Jeongik Chadf76dc72019-11-28 00:08:47 +0900454 // Declaring array of generic type cannot happen, it is grammar error.
455 AIDL_FATAL_IF(IsGeneric(), this);
Steven Moreland3f658cf2018-08-20 13:40:54 -0700456
Jooyung Hand2fa0232020-10-19 02:51:41 +0900457 if (!array_base_) {
458 array_base_.reset(new AidlTypeSpecifier(*this));
459 array_base_->is_array_ = false;
460 }
461 return *array_base_;
Steven Moreland3f658cf2018-08-20 13:40:54 -0700462}
463
Jeongik Cha997281d2020-01-16 15:23:59 +0900464bool AidlTypeSpecifier::IsHidden() const {
465 return HasHideComment(GetComments());
466}
467
Jooyung Han965e31d2020-11-27 12:30:16 +0900468string AidlTypeSpecifier::Signature() const {
Jiyong Park1deecc32018-07-17 01:14:41 +0900469 string ret = GetName();
470 if (IsGeneric()) {
471 vector<string> arg_names;
472 for (const auto& ta : GetTypeParameters()) {
Jooyung Han965e31d2020-11-27 12:30:16 +0900473 arg_names.emplace_back(ta->Signature());
Jiyong Parkccf00f82018-07-17 01:39:23 +0900474 }
Jiyong Park1deecc32018-07-17 01:14:41 +0900475 ret += "<" + Join(arg_names, ",") + ">";
Jiyong Parkccf00f82018-07-17 01:39:23 +0900476 }
Jiyong Park1deecc32018-07-17 01:14:41 +0900477 if (IsArray()) {
478 ret += "[]";
479 }
480 return ret;
Jiyong Parkccf00f82018-07-17 01:39:23 +0900481}
482
Jooyung Han965e31d2020-11-27 12:30:16 +0900483string AidlTypeSpecifier::ToString() const {
484 string ret = Signature();
Jiyong Park02da7422018-07-16 16:00:26 +0900485 string annotations = AidlAnnotatable::ToString();
486 if (annotations != "") {
487 ret = annotations + " " + ret;
488 }
489 return ret;
490}
491
Daniel Norman716d3112019-09-10 13:11:56 -0700492bool AidlTypeSpecifier::Resolve(const AidlTypenames& typenames) {
Steven Moreland21780812020-09-11 01:29:45 +0000493 AIDL_FATAL_IF(IsResolved(), this);
Steven Morelandcb1bcd72020-04-29 16:30:35 -0700494 AidlTypenames::ResolvedTypename result = typenames.ResolveTypename(unresolved_name_);
495 if (result.is_resolved) {
496 fully_qualified_name_ = result.canonical_name;
Jeongik Cha1a7ab642019-07-29 17:31:02 +0900497 split_name_ = Split(fully_qualified_name_, ".");
Jooyung Hane9bb9de2020-11-01 22:16:57 +0900498 defined_type_ = result.defined_type;
Jiyong Parkccf00f82018-07-17 01:39:23 +0900499 }
Steven Morelandcb1bcd72020-04-29 16:30:35 -0700500 return result.is_resolved;
Casey Dahlin70078e62015-09-30 17:01:30 -0700501}
502
Jooyung Hane9bb9de2020-11-01 22:16:57 +0900503const AidlDefinedType* AidlTypeSpecifier::GetDefinedType() const {
504 return defined_type_;
505}
506
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700507std::set<AidlAnnotation::Type> AidlTypeSpecifier::GetSupportedAnnotations() const {
Jooyung Hanf8dbbcc2020-12-26 03:05:55 +0900508 // TODO(b/151102494) we don't distinguish field-level annotations from other type specifiers.
509 return {
510 AidlAnnotation::Type::NULLABLE,
511 AidlAnnotation::Type::UTF8_IN_CPP,
512 AidlAnnotation::Type::JAVA_PASSTHROUGH,
513 AidlAnnotation::Type::UNSUPPORTED_APP_USAGE, // field-level annotation
514 AidlAnnotation::Type::HIDE, // field-level annotation
515 AidlAnnotation::Type::SUPPRESS_WARNINGS, // field-level annotation
516 };
Devin Moore24f68572020-02-26 13:20:59 -0800517}
518
Jeongik Chadb0f59e2018-11-01 18:11:21 +0900519bool AidlTypeSpecifier::CheckValid(const AidlTypenames& typenames) const {
Devin Moore24f68572020-02-26 13:20:59 -0800520 if (!AidlAnnotatable::CheckValid(typenames)) {
Andrei Onea9445fc62019-06-27 18:11:59 +0100521 return false;
522 }
Jiyong Park1d2df7d2018-07-23 15:22:50 +0900523 if (IsGeneric()) {
524 const string& type_name = GetName();
Jeongik Chae74c86d2019-12-12 16:54:03 +0900525
526 auto& types = GetTypeParameters();
527 // TODO(b/136048684) Disallow to use primitive types only if it is List or Map.
528 if (type_name == "List" || type_name == "Map") {
Jooyung Hane87cdd02020-12-11 16:47:35 +0900529 if (std::any_of(types.begin(), types.end(), [&](auto& type_ptr) {
530 return (typenames.GetEnumDeclaration(*type_ptr)) ||
531 AidlTypenames::IsPrimitiveTypename(type_ptr->GetName());
Jeongik Chae74c86d2019-12-12 16:54:03 +0900532 })) {
Devin Moore7b8d5c92020-03-17 14:14:08 -0700533 AIDL_ERROR(this) << "A generic type cannot have any primitive type parameters.";
Jeongik Chae74c86d2019-12-12 16:54:03 +0900534 return false;
535 }
536 }
Steven Moreland0d9c26e2020-01-22 08:52:08 -0800537 const auto defined_type = typenames.TryGetDefinedType(type_name);
Jeongik Chadf76dc72019-11-28 00:08:47 +0900538 const auto parameterizable =
Steven Moreland0d9c26e2020-01-22 08:52:08 -0800539 defined_type != nullptr ? defined_type->AsParameterizable() : nullptr;
540 const bool is_user_defined_generic_type =
Jeongik Chadf76dc72019-11-28 00:08:47 +0900541 parameterizable != nullptr && parameterizable->IsGeneric();
Steven Moreland0d9c26e2020-01-22 08:52:08 -0800542 const size_t num_params = GetTypeParameters().size();
Jiyong Park1d2df7d2018-07-23 15:22:50 +0900543 if (type_name == "List") {
Steven Moreland0d9c26e2020-01-22 08:52:08 -0800544 if (num_params > 1) {
Jooyung Han965e31d2020-11-27 12:30:16 +0900545 AIDL_ERROR(this) << "List can only have one type parameter, but got: '" << Signature()
Steven Morelandebc3c5d2020-09-30 23:40:33 +0000546 << "'";
Jiyong Park1d2df7d2018-07-23 15:22:50 +0900547 return false;
548 }
Jooyung Han55f96ad2020-12-13 10:08:33 +0900549 const AidlTypeSpecifier& contained_type = *GetTypeParameters()[0];
550 const string& contained_type_name = contained_type.GetName();
551 if (AidlTypenames::IsBuiltinTypename(contained_type_name)) {
552 if (contained_type_name != "String" && contained_type_name != "IBinder" &&
553 contained_type_name != "ParcelFileDescriptor") {
554 AIDL_ERROR(this) << "List<" << contained_type_name
555 << "> is not supported. List<T> supports parcelable/union, String, "
556 "IBinder, and ParcelFileDescriptor.";
557 return false;
558 }
559 } else { // Defined types
560 if (typenames.GetInterface(contained_type)) {
561 AIDL_ERROR(this) << "List<" << contained_type_name
562 << "> is not supported. List<T> supports parcelable/union, String, "
563 "IBinder, and ParcelFileDescriptor.";
564 return false;
565 }
566 }
Jiyong Park1d2df7d2018-07-23 15:22:50 +0900567 } else if (type_name == "Map") {
Steven Moreland0d9c26e2020-01-22 08:52:08 -0800568 if (num_params != 0 && num_params != 2) {
Jeongik Chadb0f59e2018-11-01 18:11:21 +0900569 AIDL_ERROR(this) << "Map must have 0 or 2 type parameters, but got "
Jooyung Han965e31d2020-11-27 12:30:16 +0900570 << "'" << Signature() << "'";
Jiyong Park1d2df7d2018-07-23 15:22:50 +0900571 return false;
572 }
Steven Moreland0d9c26e2020-01-22 08:52:08 -0800573 if (num_params == 2) {
Jeongik Chae48d9942020-01-02 17:39:00 +0900574 const string& key_type = GetTypeParameters()[0]->GetName();
575 if (key_type != "String") {
576 AIDL_ERROR(this) << "The type of key in map must be String, but it is "
577 << "'" << key_type << "'";
578 return false;
579 }
580 }
Steven Moreland0d9c26e2020-01-22 08:52:08 -0800581 } else if (is_user_defined_generic_type) {
Jeongik Chadf76dc72019-11-28 00:08:47 +0900582 const size_t allowed = parameterizable->GetTypeParameters().size();
Steven Moreland0d9c26e2020-01-22 08:52:08 -0800583 if (num_params != allowed) {
Jeongik Chadf76dc72019-11-28 00:08:47 +0900584 AIDL_ERROR(this) << type_name << " must have " << allowed << " type parameters, but got "
Steven Moreland0d9c26e2020-01-22 08:52:08 -0800585 << num_params;
Jeongik Chadf76dc72019-11-28 00:08:47 +0900586 return false;
587 }
588 } else {
589 AIDL_ERROR(this) << type_name << " is not a generic type.";
590 return false;
Jiyong Park1d2df7d2018-07-23 15:22:50 +0900591 }
592 }
Jeongik Chadb0f59e2018-11-01 18:11:21 +0900593
Steven Moreland11cb9452020-01-21 16:56:58 -0800594 const bool is_generic_string_list = GetName() == "List" && IsGeneric() &&
595 GetTypeParameters().size() == 1 &&
596 GetTypeParameters()[0]->GetName() == "String";
597 if (IsUtf8InCpp() && (GetName() != "String" && !is_generic_string_list)) {
598 AIDL_ERROR(this) << "@utf8InCpp can only be used on String, String[], and List<String>.";
599 return false;
600 }
601
Jeongik Chadb0f59e2018-11-01 18:11:21 +0900602 if (GetName() == "void") {
603 if (IsArray() || IsNullable() || IsUtf8InCpp()) {
604 AIDL_ERROR(this) << "void type cannot be an array or nullable or utf8 string";
605 return false;
606 }
607 }
608
609 if (IsArray()) {
Steven Moreland0d9c26e2020-01-22 08:52:08 -0800610 const auto defined_type = typenames.TryGetDefinedType(GetName());
611 if (defined_type != nullptr && defined_type->AsInterface() != nullptr) {
Jeongik Chadb0f59e2018-11-01 18:11:21 +0900612 AIDL_ERROR(this) << "Binder type cannot be an array";
613 return false;
614 }
Steven Moreland8042d2d2020-09-30 23:31:32 +0000615 if (GetName() == "ParcelableHolder") {
616 AIDL_ERROR(this) << "Arrays of ParcelableHolder are not supported.";
617 return false;
618 }
Jeongik Chadb0f59e2018-11-01 18:11:21 +0900619 }
620
621 if (IsNullable()) {
622 if (AidlTypenames::IsPrimitiveTypename(GetName()) && !IsArray()) {
623 AIDL_ERROR(this) << "Primitive type cannot get nullable annotation";
624 return false;
625 }
Steven Moreland0d9c26e2020-01-22 08:52:08 -0800626 const auto defined_type = typenames.TryGetDefinedType(GetName());
627 if (defined_type != nullptr && defined_type->AsEnumDeclaration() != nullptr && !IsArray()) {
Daniel Normanee8674f2019-09-20 16:07:00 -0700628 AIDL_ERROR(this) << "Enum type cannot get nullable annotation";
629 return false;
630 }
Jeongik Chaf6ec8982020-10-15 00:10:30 +0900631 if (GetName() == "ParcelableHolder") {
632 AIDL_ERROR(this) << "ParcelableHolder cannot be nullable.";
633 return false;
634 }
Jeongik Chadb0f59e2018-11-01 18:11:21 +0900635 }
Jiyong Park1d2df7d2018-07-23 15:22:50 +0900636 return true;
637}
638
Jooyung Hanfdaae1d2020-12-14 13:16:15 +0900639std::string AidlConstantValueDecorator(const AidlTypeSpecifier& type,
Steven Moreland860b1942018-08-16 14:59:28 -0700640 const std::string& raw_value) {
Jooyung Hanfdaae1d2020-12-14 13:16:15 +0900641 if (type.IsArray()) {
642 return raw_value;
643 }
644
645 if (auto defined_type = type.GetDefinedType(); defined_type) {
646 auto enum_type = defined_type->AsEnumDeclaration();
647 AIDL_FATAL_IF(!enum_type, type) << "Invalid type for \"" << raw_value << "\"";
648 return type.GetName() + "." + raw_value.substr(raw_value.find_last_of('.') + 1);
649 }
Steven Moreland860b1942018-08-16 14:59:28 -0700650 return raw_value;
651}
652
Steven Moreland46e9da82018-07-27 15:45:29 -0700653AidlVariableDeclaration::AidlVariableDeclaration(const AidlLocation& location,
654 AidlTypeSpecifier* type, const std::string& name)
Steven Moreland541788d2020-05-21 22:05:52 +0000655 : AidlVariableDeclaration(location, type, name, AidlConstantValue::Default(*type)) {
656 default_user_specified_ = false;
657}
Steven Moreland9ea10e32018-07-19 15:26:09 -0700658
Steven Moreland46e9da82018-07-27 15:45:29 -0700659AidlVariableDeclaration::AidlVariableDeclaration(const AidlLocation& location,
660 AidlTypeSpecifier* type, const std::string& name,
661 AidlConstantValue* default_value)
Jooyung Han3f347ca2020-12-01 12:41:50 +0900662 : AidlMember(location),
Steven Moreland541788d2020-05-21 22:05:52 +0000663 type_(type),
664 name_(name),
665 default_user_specified_(true),
666 default_value_(default_value) {}
Steven Moreland9ea10e32018-07-19 15:26:09 -0700667
Jooyung Han53fb4242020-12-17 16:03:49 +0900668bool AidlVariableDeclaration::HasUsefulDefaultValue() const {
669 if (GetDefaultValue()) {
670 return true;
671 }
672 // null is accepted as a valid default value in all backends
673 if (GetType().IsNullable()) {
674 return true;
675 }
676 return false;
677}
678
Jeongik Chadb0f59e2018-11-01 18:11:21 +0900679bool AidlVariableDeclaration::CheckValid(const AidlTypenames& typenames) const {
Steven Moreland25294322018-08-07 18:13:55 -0700680 bool valid = true;
Jeongik Chadb0f59e2018-11-01 18:11:21 +0900681 valid &= type_->CheckValid(typenames);
Jiyong Park1d2df7d2018-07-23 15:22:50 +0900682
Steven Moreland54be7bd2019-12-05 11:17:53 -0800683 if (type_->GetName() == "void") {
684 AIDL_ERROR(this) << "Declaration " << name_
685 << " is void, but declarations cannot be of void type.";
686 valid = false;
687 }
688
Jeongik Chadb0f59e2018-11-01 18:11:21 +0900689 if (default_value_ == nullptr) return valid;
Steven Moreland25294322018-08-07 18:13:55 -0700690 valid &= default_value_->CheckValid();
Steven Moreland9ea10e32018-07-19 15:26:09 -0700691
Steven Moreland25294322018-08-07 18:13:55 -0700692 if (!valid) return false;
Steven Moreland9ea10e32018-07-19 15:26:09 -0700693
Steven Moreland860b1942018-08-16 14:59:28 -0700694 return !ValueString(AidlConstantValueDecorator).empty();
Steven Moreland9ea10e32018-07-19 15:26:09 -0700695}
Steven Moreland5557f1c2018-07-02 13:50:23 -0700696
Jooyung Hanacae85d2020-10-28 16:39:09 +0900697string AidlVariableDeclaration::GetCapitalizedName() const {
698 AIDL_FATAL_IF(name_.size() <= 0, *this) << "Name can't be empty.";
699 string str = name_;
700 str[0] = static_cast<char>(toupper(str[0]));
701 return str;
702}
703
Steven Moreland5557f1c2018-07-02 13:50:23 -0700704string AidlVariableDeclaration::ToString() const {
Jooyung Han965e31d2020-11-27 12:30:16 +0900705 string ret = type_->ToString() + " " + name_;
Steven Moreland541788d2020-05-21 22:05:52 +0000706 if (default_value_ != nullptr && default_user_specified_) {
Steven Moreland860b1942018-08-16 14:59:28 -0700707 ret += " = " + ValueString(AidlConstantValueDecorator);
Steven Moreland9ea10e32018-07-19 15:26:09 -0700708 }
709 return ret;
Steven Moreland5557f1c2018-07-02 13:50:23 -0700710}
711
Jiyong Park02da7422018-07-16 16:00:26 +0900712string AidlVariableDeclaration::Signature() const {
713 return type_->Signature() + " " + name_;
714}
715
Steven Moreland860b1942018-08-16 14:59:28 -0700716std::string AidlVariableDeclaration::ValueString(const ConstantValueDecorator& decorator) const {
Jiyong Parka468e2a2018-08-29 21:25:18 +0900717 if (default_value_ != nullptr) {
Will McVickerd7d18df2019-09-12 13:40:50 -0700718 return default_value_->ValueString(GetType(), decorator);
Jiyong Parka468e2a2018-08-29 21:25:18 +0900719 } else {
720 return "";
721 }
Steven Moreland25294322018-08-07 18:13:55 -0700722}
723
Steven Moreland46e9da82018-07-27 15:45:29 -0700724AidlArgument::AidlArgument(const AidlLocation& location, AidlArgument::Direction direction,
725 AidlTypeSpecifier* type, const std::string& name)
726 : AidlVariableDeclaration(location, type, name),
Casey Dahlinfd6fb482015-09-30 14:48:18 -0700727 direction_(direction),
Steven Moreland5557f1c2018-07-02 13:50:23 -0700728 direction_specified_(true) {}
Casey Dahlinc378c992015-09-29 16:50:40 -0700729
Steven Moreland46e9da82018-07-27 15:45:29 -0700730AidlArgument::AidlArgument(const AidlLocation& location, AidlTypeSpecifier* type,
731 const std::string& name)
732 : AidlVariableDeclaration(location, type, name),
Casey Dahlinfd6fb482015-09-30 14:48:18 -0700733 direction_(AidlArgument::IN_DIR),
Steven Moreland5557f1c2018-07-02 13:50:23 -0700734 direction_specified_(false) {}
Casey Dahlinc378c992015-09-29 16:50:40 -0700735
Jiyong Park02da7422018-07-16 16:00:26 +0900736string AidlArgument::GetDirectionSpecifier() const {
Casey Dahlinc378c992015-09-29 16:50:40 -0700737 string ret;
Casey Dahlinc378c992015-09-29 16:50:40 -0700738 if (direction_specified_) {
739 switch(direction_) {
740 case AidlArgument::IN_DIR:
Devin Mooreeccdb902020-03-24 16:22:40 -0700741 ret += "in";
Casey Dahlinc378c992015-09-29 16:50:40 -0700742 break;
743 case AidlArgument::OUT_DIR:
Devin Mooreeccdb902020-03-24 16:22:40 -0700744 ret += "out";
Casey Dahlinc378c992015-09-29 16:50:40 -0700745 break;
746 case AidlArgument::INOUT_DIR:
Devin Mooreeccdb902020-03-24 16:22:40 -0700747 ret += "inout";
Casey Dahlinc378c992015-09-29 16:50:40 -0700748 break;
749 }
750 }
Casey Dahlinc378c992015-09-29 16:50:40 -0700751 return ret;
752}
Casey Dahlinbc7a50a2015-09-28 19:20:50 -0700753
Jiyong Park02da7422018-07-16 16:00:26 +0900754string AidlArgument::ToString() const {
Devin Mooreeccdb902020-03-24 16:22:40 -0700755 if (direction_specified_) {
756 return GetDirectionSpecifier() + " " + AidlVariableDeclaration::ToString();
757 } else {
758 return AidlVariableDeclaration::ToString();
759 }
Jiyong Park02da7422018-07-16 16:00:26 +0900760}
761
Steven Moreland46e9da82018-07-27 15:45:29 -0700762AidlMember::AidlMember(const AidlLocation& location) : AidlNode(location) {}
763
Steven Moreland46e9da82018-07-27 15:45:29 -0700764AidlConstantDeclaration::AidlConstantDeclaration(const AidlLocation& location,
765 AidlTypeSpecifier* type, const std::string& name,
766 AidlConstantValue* value)
767 : AidlMember(location), type_(type), name_(name), value_(value) {}
Steven Moreland693640b2018-07-19 13:46:27 -0700768
Jeongik Chadb0f59e2018-11-01 18:11:21 +0900769bool AidlConstantDeclaration::CheckValid(const AidlTypenames& typenames) const {
Steven Moreland25294322018-08-07 18:13:55 -0700770 bool valid = true;
Jeongik Chadb0f59e2018-11-01 18:11:21 +0900771 valid &= type_->CheckValid(typenames);
Steven Moreland25294322018-08-07 18:13:55 -0700772 valid &= value_->CheckValid();
773 if (!valid) return false;
Steven Moreland693640b2018-07-19 13:46:27 -0700774
Steven Morelande689da22020-11-10 02:06:30 +0000775 const static set<string> kSupportedConstTypes = {"String", "byte", "int", "long"};
Jooyung Han965e31d2020-11-27 12:30:16 +0900776 if (kSupportedConstTypes.find(type_->Signature()) == kSupportedConstTypes.end()) {
777 AIDL_ERROR(this) << "Constant of type " << type_->Signature() << " is not supported.";
Steven Moreland693640b2018-07-19 13:46:27 -0700778 return false;
779 }
780
Will McVickerd7d18df2019-09-12 13:40:50 -0700781 return true;
Christopher Wileyd6bdd8d2016-05-03 11:23:13 -0700782}
783
Jiyong Parka428d212018-08-29 22:26:30 +0900784string AidlConstantDeclaration::ToString() const {
Jooyung Hanb3ca6302020-11-27 14:13:27 +0900785 return "const " + type_->ToString() + " " + name_ + " = " +
786 ValueString(AidlConstantValueDecorator);
Jiyong Parka428d212018-08-29 22:26:30 +0900787}
788
789string AidlConstantDeclaration::Signature() const {
790 return type_->Signature() + " " + name_;
791}
792
Steven Moreland46e9da82018-07-27 15:45:29 -0700793AidlMethod::AidlMethod(const AidlLocation& location, bool oneway, AidlTypeSpecifier* type,
794 const std::string& name, std::vector<std::unique_ptr<AidlArgument>>* args,
Jiyong Parkb034bf02018-07-30 17:44:33 +0900795 const std::string& comments)
796 : AidlMethod(location, oneway, type, name, args, comments, 0, true) {
797 has_id_ = false;
798}
799
800AidlMethod::AidlMethod(const AidlLocation& location, bool oneway, AidlTypeSpecifier* type,
801 const std::string& name, std::vector<std::unique_ptr<AidlArgument>>* args,
Jiyong Parkb034bf02018-07-30 17:44:33 +0900802 const std::string& comments, int id, bool is_user_defined)
Steven Moreland46e9da82018-07-27 15:45:29 -0700803 : AidlMember(location),
804 oneway_(oneway),
Casey Dahlinf4a93112015-10-05 16:58:09 -0700805 comments_(comments),
806 type_(type),
807 name_(name),
Casey Dahlinf4a93112015-10-05 16:58:09 -0700808 arguments_(std::move(*args)),
Jiyong Parkb034bf02018-07-30 17:44:33 +0900809 id_(id),
810 is_user_defined_(is_user_defined) {
Casey Dahlinf4a93112015-10-05 16:58:09 -0700811 has_id_ = true;
812 delete args;
Christopher Wileyad339272015-10-05 19:11:58 -0700813 for (const unique_ptr<AidlArgument>& a : arguments_) {
814 if (a->IsIn()) { in_arguments_.push_back(a.get()); }
815 if (a->IsOut()) { out_arguments_.push_back(a.get()); }
816 }
Casey Dahlinf4a93112015-10-05 16:58:09 -0700817}
818
Jeongik Cha997281d2020-01-16 15:23:59 +0900819bool AidlMethod::IsHidden() const {
820 return HasHideComment(GetComments());
821}
Casey Dahlinf2d23f72015-10-02 16:19:19 -0700822
Jiyong Park02da7422018-07-16 16:00:26 +0900823string AidlMethod::Signature() const {
824 vector<string> arg_signatures;
825 for (const auto& arg : GetArguments()) {
Jooyung Han965e31d2020-11-27 12:30:16 +0900826 arg_signatures.emplace_back(arg->GetType().Signature());
Jiyong Park02da7422018-07-16 16:00:26 +0900827 }
Jiyong Park309668e2018-07-28 16:55:44 +0900828 return GetName() + "(" + Join(arg_signatures, ", ") + ")";
829}
830
831string AidlMethod::ToString() const {
832 vector<string> arg_strings;
833 for (const auto& arg : GetArguments()) {
Jooyung Han965e31d2020-11-27 12:30:16 +0900834 arg_strings.emplace_back(arg->ToString());
Jiyong Park309668e2018-07-28 16:55:44 +0900835 }
Jooyung Han965e31d2020-11-27 12:30:16 +0900836 string ret = (IsOneway() ? "oneway " : "") + GetType().ToString() + " " + GetName() + "(" +
Steven Moreland4ee68632018-12-14 15:52:46 -0800837 Join(arg_strings, ", ") + ")";
Jiyong Parked65bf42018-08-28 15:43:27 +0900838 if (HasId()) {
839 ret += " = " + std::to_string(GetId());
840 }
841 return ret;
Jiyong Park02da7422018-07-16 16:00:26 +0900842}
843
Steven Moreland46e9da82018-07-27 15:45:29 -0700844AidlDefinedType::AidlDefinedType(const AidlLocation& location, const std::string& name,
Jooyung Han829ec7c2020-12-02 12:07:36 +0900845 const std::string& comments, const std::string& package,
846 std::vector<std::unique_ptr<AidlMember>>* members)
Jiyong Park18132182020-06-08 20:24:40 +0900847 : AidlAnnotatable(location),
848 name_(name),
849 comments_(comments),
850 package_(package),
851 split_package_(package.empty() ? std::vector<std::string>()
Jooyung Han829ec7c2020-12-02 12:07:36 +0900852 : android::base::Split(package, ".")) {
853 if (members) {
854 for (auto& m : *members) {
855 if (auto constant = m->AsConstantDeclaration(); constant) {
856 constants_.emplace_back(constant);
857 } else if (auto variable = m->AsVariableDeclaration(); variable) {
858 variables_.emplace_back(variable);
859 } else if (auto method = m->AsMethod(); method) {
860 methods_.emplace_back(method);
861 } else {
862 AIDL_FATAL(*m);
863 }
864 members_.push_back(m.release());
865 }
866 delete members;
867 }
868}
Steven Moreland787b0432018-07-03 09:00:58 -0700869
Jooyung Han888c5bc2020-12-22 17:28:47 +0900870bool AidlDefinedType::CheckValid(const AidlTypenames& typenames, DiagnosticsContext&) const {
Devin Moore24f68572020-02-26 13:20:59 -0800871 if (!AidlAnnotatable::CheckValid(typenames)) {
872 return false;
873 }
Jooyung Han829ec7c2020-12-02 12:07:36 +0900874 if (!CheckValidWithMembers(typenames)) {
875 return false;
876 }
Devin Moore24f68572020-02-26 13:20:59 -0800877 return true;
878}
879
Jeongik Cha997281d2020-01-16 15:23:59 +0900880bool AidlDefinedType::IsHidden() const {
881 return HasHideComment(GetComments());
882}
883
Steven Moreland787b0432018-07-03 09:00:58 -0700884std::string AidlDefinedType::GetCanonicalName() const {
885 if (package_.empty()) {
886 return GetName();
887 }
888 return GetPackage() + "." + GetName();
889}
890
Steven Morelanda5d9c5c2020-02-21 16:01:09 -0800891void AidlDefinedType::DumpHeader(CodeWriter* writer) const {
892 if (this->IsHidden()) {
893 AddHideComment(writer);
894 }
895 DumpAnnotations(writer);
896}
897
Jooyung Han829ec7c2020-12-02 12:07:36 +0900898bool AidlDefinedType::CheckValidWithMembers(const AidlTypenames& typenames) const {
899 bool success = true;
900
901 for (const auto& v : GetFields()) {
902 const bool field_valid = v->CheckValid(typenames);
903 success = success && field_valid;
904 }
905
906 // field names should be unique
907 std::set<std::string> fieldnames;
908 for (const auto& v : GetFields()) {
909 bool duplicated = !fieldnames.emplace(v->GetName()).second;
910 if (duplicated) {
911 AIDL_ERROR(v) << "'" << GetName() << "' has duplicate field name '" << v->GetName() << "'";
912 success = false;
913 }
914 }
915
916 // immutable parcelables should have immutable fields.
917 if (IsJavaOnlyImmutable()) {
918 for (const auto& v : GetFields()) {
919 if (!typenames.CanBeJavaOnlyImmutable(v->GetType())) {
920 AIDL_ERROR(v) << "The @JavaOnlyImmutable '" << GetName() << "' has a "
921 << "non-immutable field named '" << v->GetName() << "'.";
922 success = false;
923 }
924 }
925 }
926
927 set<string> constant_names;
928 for (const auto& constant : GetConstantDeclarations()) {
929 if (constant_names.count(constant->GetName()) > 0) {
930 AIDL_ERROR(constant) << "Found duplicate constant name '" << constant->GetName() << "'";
931 success = false;
932 }
933 constant_names.insert(constant->GetName());
934 success = success && constant->CheckValid(typenames);
935 }
936
937 return success;
938}
939
940bool AidlDefinedType::CheckValidForGetterNames() const {
941 bool success = true;
942 std::set<std::string> getters;
943 for (const auto& v : GetFields()) {
944 bool duplicated = !getters.emplace(v->GetCapitalizedName()).second;
945 if (duplicated) {
946 AIDL_ERROR(v) << "'" << GetName() << "' has duplicate field name '" << v->GetName()
947 << "' after capitalizing the first letter";
948 success = false;
949 }
950 }
951 return success;
952}
953
Jiyong Park18132182020-06-08 20:24:40 +0900954AidlParcelable::AidlParcelable(const AidlLocation& location, const std::string& name,
955 const std::string& package, const std::string& comments,
Jooyung Han829ec7c2020-12-02 12:07:36 +0900956 const std::string& cpp_header, std::vector<std::string>* type_params,
957 std::vector<std::unique_ptr<AidlMember>>* members)
958 : AidlDefinedType(location, name, comments, package, members),
Jeongik Chadf76dc72019-11-28 00:08:47 +0900959 AidlParameterizable<std::string>(type_params),
Christopher Wiley8aa4d9f2015-11-16 19:10:45 -0800960 cpp_header_(cpp_header) {
961 // Strip off quotation marks if we actually have a cpp header.
962 if (cpp_header_.length() >= 2) {
963 cpp_header_ = cpp_header_.substr(1, cpp_header_.length() - 2);
964 }
Casey Dahlin59401da2015-10-09 18:16:45 -0700965}
Jeongik Chadf76dc72019-11-28 00:08:47 +0900966template <typename T>
967AidlParameterizable<T>::AidlParameterizable(const AidlParameterizable& other) {
968 // Copying is not supported if it has type parameters.
969 // It doesn't make a problem because only ArrayBase() makes a copy,
970 // and it can be called only if a type is not generic.
Steven Moreland21780812020-09-11 01:29:45 +0000971 AIDL_FATAL_IF(other.IsGeneric(), AIDL_LOCATION_HERE);
Jeongik Chadf76dc72019-11-28 00:08:47 +0900972}
973
974template <typename T>
975bool AidlParameterizable<T>::CheckValid() const {
976 return true;
977};
978
979template <>
980bool AidlParameterizable<std::string>::CheckValid() const {
981 if (!IsGeneric()) {
982 return true;
983 }
984 std::unordered_set<std::string> set(GetTypeParameters().begin(), GetTypeParameters().end());
985 if (set.size() != GetTypeParameters().size()) {
986 AIDL_ERROR(this->AsAidlNode()) << "Every type parameter should be unique.";
987 return false;
988 }
989 return true;
990}
Casey Dahlin59401da2015-10-09 18:16:45 -0700991
Steven Moreland0cea4aa2020-04-20 21:06:02 -0700992std::set<AidlAnnotation::Type> AidlParcelable::GetSupportedAnnotations() const {
Jeongik Cha36f76c32020-07-28 00:25:52 +0900993 return {AidlAnnotation::Type::VINTF_STABILITY, AidlAnnotation::Type::UNSUPPORTED_APP_USAGE,
Jiyong Parkbf5fd5c2020-06-05 19:48:05 +0900994 AidlAnnotation::Type::JAVA_STABLE_PARCELABLE, AidlAnnotation::Type::HIDE,
Jeongik Chad0a10272020-08-06 16:33:36 +0900995 AidlAnnotation::Type::JAVA_PASSTHROUGH, AidlAnnotation::Type::JAVA_ONLY_IMMUTABLE};
Devin Moore24f68572020-02-26 13:20:59 -0800996}
997
Jooyung Han888c5bc2020-12-22 17:28:47 +0900998bool AidlParcelable::CheckValid(const AidlTypenames& typenames, DiagnosticsContext& diag) const {
999 if (!AidlDefinedType::CheckValid(typenames, diag)) {
Andrei Onea9445fc62019-06-27 18:11:59 +01001000 return false;
1001 }
Jeongik Chadf76dc72019-11-28 00:08:47 +09001002 if (!AidlParameterizable<std::string>::CheckValid()) {
1003 return false;
1004 }
Jeongik Cha82317dd2019-02-27 20:26:11 +09001005
1006 return true;
1007}
1008
Jeongik Cha997281d2020-01-16 15:23:59 +09001009void AidlParcelable::Dump(CodeWriter* writer) const {
Steven Morelanda5d9c5c2020-02-21 16:01:09 -08001010 DumpHeader(writer);
Jiyong Park02da7422018-07-16 16:00:26 +09001011 writer->Write("parcelable %s ;\n", GetName().c_str());
1012}
1013
Steven Moreland5557f1c2018-07-02 13:50:23 -07001014AidlStructuredParcelable::AidlStructuredParcelable(
Jiyong Park18132182020-06-08 20:24:40 +09001015 const AidlLocation& location, const std::string& name, const std::string& package,
Jooyung Han829ec7c2020-12-02 12:07:36 +09001016 const std::string& comments, std::vector<std::string>* type_params,
1017 std::vector<std::unique_ptr<AidlMember>>* members)
1018 : AidlParcelable(location, name, package, comments, "" /*cpp_header*/, type_params, members) {}
Steven Moreland5557f1c2018-07-02 13:50:23 -07001019
Jeongik Cha997281d2020-01-16 15:23:59 +09001020void AidlStructuredParcelable::Dump(CodeWriter* writer) const {
Steven Morelanda5d9c5c2020-02-21 16:01:09 -08001021 DumpHeader(writer);
Jiyong Park02da7422018-07-16 16:00:26 +09001022 writer->Write("parcelable %s {\n", GetName().c_str());
1023 writer->Indent();
1024 for (const auto& field : GetFields()) {
Jeongik Cha997281d2020-01-16 15:23:59 +09001025 if (field->GetType().IsHidden()) {
1026 AddHideComment(writer);
1027 }
Jiyong Parka468e2a2018-08-29 21:25:18 +09001028 writer->Write("%s;\n", field->ToString().c_str());
Jiyong Park02da7422018-07-16 16:00:26 +09001029 }
Jooyung Han3f347ca2020-12-01 12:41:50 +09001030 for (const auto& constdecl : GetConstantDeclarations()) {
1031 if (constdecl->GetType().IsHidden()) {
1032 AddHideComment(writer);
1033 }
1034 writer->Write("%s;\n", constdecl->ToString().c_str());
1035 }
Jiyong Park02da7422018-07-16 16:00:26 +09001036 writer->Dedent();
1037 writer->Write("}\n");
1038}
1039
Steven Moreland0cea4aa2020-04-20 21:06:02 -07001040std::set<AidlAnnotation::Type> AidlStructuredParcelable::GetSupportedAnnotations() const {
Jooyung Hanf8dbbcc2020-12-26 03:05:55 +09001041 return {
1042 AidlAnnotation::Type::VINTF_STABILITY,
1043 AidlAnnotation::Type::UNSUPPORTED_APP_USAGE,
1044 AidlAnnotation::Type::HIDE,
1045 AidlAnnotation::Type::JAVA_PASSTHROUGH,
1046 AidlAnnotation::Type::JAVA_DERIVE,
1047 AidlAnnotation::Type::JAVA_ONLY_IMMUTABLE,
1048 AidlAnnotation::Type::FIXED_SIZE,
1049 AidlAnnotation::Type::RUST_DERIVE,
1050 AidlAnnotation::Type::SUPPRESS_WARNINGS,
1051 };
Devin Moore24f68572020-02-26 13:20:59 -08001052}
1053
Jooyung Han888c5bc2020-12-22 17:28:47 +09001054bool AidlStructuredParcelable::CheckValid(const AidlTypenames& typenames,
1055 DiagnosticsContext& diag) const {
1056 if (!AidlParcelable::CheckValid(typenames, diag)) {
Devin Moore24f68572020-02-26 13:20:59 -08001057 return false;
1058 }
Jeongik Cha13066da2020-08-06 15:43:19 +09001059
Jooyung Han59af9cc2020-10-25 21:44:14 +09001060 bool success = true;
Jeongik Cha36f76c32020-07-28 00:25:52 +09001061
Jooyung Hand4057c42020-10-23 13:28:22 +09001062 if (IsFixedSize()) {
1063 for (const auto& v : GetFields()) {
1064 if (!typenames.CanBeFixedSize(v->GetType())) {
1065 AIDL_ERROR(v) << "The @FixedSize parcelable '" << this->GetName() << "' has a "
1066 << "non-fixed size field named " << v->GetName() << ".";
1067 success = false;
1068 }
1069 }
1070 }
1071
1072 if (IsJavaOnlyImmutable()) {
Jooyung Han59af9cc2020-10-25 21:44:14 +09001073 // Immutable parcelables provide getters
Jooyung Han829ec7c2020-12-02 12:07:36 +09001074 if (!CheckValidForGetterNames()) {
Jooyung Han59af9cc2020-10-25 21:44:14 +09001075 success = false;
Jooyung Hand4057c42020-10-23 13:28:22 +09001076 }
1077 }
1078
Daniel Norman85aed542019-08-21 12:01:14 -07001079 return success;
Jeongik Chadb0f59e2018-11-01 18:11:21 +09001080}
1081
Jeongik Cha047c5ee2019-08-07 23:16:49 +09001082// TODO: we should treat every backend all the same in future.
Steven Morelandd59e3172020-05-11 16:42:09 -07001083bool AidlTypeSpecifier::LanguageSpecificCheckValid(const AidlTypenames& typenames,
1084 Options::Language lang) const {
Andrei Homescub62afd92020-05-11 19:24:59 -07001085 if ((lang == Options::Language::NDK || lang == Options::Language::RUST) && IsArray() &&
1086 GetName() == "IBinder") {
1087 AIDL_ERROR(this) << "The " << Options::LanguageToString(lang)
1088 << " backend does not support array of IBinder";
Steven Moreland0185d9b2020-05-15 23:21:22 +00001089 return false;
1090 }
Jeongik Cha8f02a532020-10-14 00:16:28 +09001091 if (lang == Options::Language::RUST && GetName() == "ParcelableHolder") {
1092 // TODO(b/146611855): Remove it when Rust backend supports ParcelableHolder
1093 AIDL_ERROR(this) << "The Rust backend does not support ParcelableHolder yet.";
Jeongik Cha225519b2020-08-29 01:55:32 +09001094 return false;
1095 }
Andrei Homescub62afd92020-05-11 19:24:59 -07001096 if ((lang == Options::Language::NDK || lang == Options::Language::RUST) && IsArray() &&
1097 IsNullable()) {
Steven Moreland0185d9b2020-05-15 23:21:22 +00001098 if (GetName() == "ParcelFileDescriptor") {
Andrei Homescub62afd92020-05-11 19:24:59 -07001099 AIDL_ERROR(this) << "The " << Options::LanguageToString(lang)
1100 << " backend does not support nullable array of ParcelFileDescriptor";
Steven Moreland0185d9b2020-05-15 23:21:22 +00001101 return false;
1102 }
1103
Steven Morelandd59e3172020-05-11 16:42:09 -07001104 const auto defined_type = typenames.TryGetDefinedType(GetName());
1105 if (defined_type != nullptr && defined_type->AsParcelable() != nullptr) {
Andrei Homescub62afd92020-05-11 19:24:59 -07001106 AIDL_ERROR(this) << "The " << Options::LanguageToString(lang)
1107 << " backend does not support nullable array of parcelable";
Steven Morelandd59e3172020-05-11 16:42:09 -07001108 return false;
1109 }
1110 }
Andrei Homescub62afd92020-05-11 19:24:59 -07001111 if (this->GetName() == "FileDescriptor" &&
1112 (lang == Options::Language::NDK || lang == Options::Language::RUST)) {
1113 AIDL_ERROR(this) << "FileDescriptor isn't supported by the " << Options::LanguageToString(lang)
1114 << " backend.";
Steven Morelandc8a4ca82020-01-21 17:50:08 -08001115 return false;
1116 }
Jeongik Cha047c5ee2019-08-07 23:16:49 +09001117 if (this->IsGeneric()) {
1118 if (this->GetName() == "List") {
Jooyung Han55f96ad2020-12-13 10:08:33 +09001119 if (lang == Options::Language::NDK) {
1120 const AidlTypeSpecifier& contained_type = *GetTypeParameters()[0];
1121 const string& contained_type_name = contained_type.GetName();
Jooyung Hane87cdd02020-12-11 16:47:35 +09001122 if (typenames.GetInterface(contained_type)) {
1123 AIDL_ERROR(this) << "List<" << contained_type_name
1124 << "> is not supported. List in NDK doesn't support interface.";
1125 return false;
1126 }
1127 if (contained_type_name == "IBinder") {
1128 AIDL_ERROR(this) << "List<" << contained_type_name
1129 << "> is not supported. List in NDK doesn't support IBinder.";
1130 return false;
Jeongik Cha08ca2182019-11-21 14:01:13 +09001131 }
Jeongik Cha047c5ee2019-08-07 23:16:49 +09001132 }
Jeongik Chabb55b5e2020-01-07 23:11:26 +09001133 }
1134 }
Devin Moore6a01ca12020-08-28 10:24:19 -07001135
1136 if (this->IsArray()) {
1137 if (this->GetName() == "List" || this->GetName() == "Map" ||
1138 this->GetName() == "CharSequence") {
1139 AIDL_ERROR(this) << this->GetName() << "[] is not supported.";
Jeongik Chabb55b5e2020-01-07 23:11:26 +09001140 return false;
Jeongik Cha047c5ee2019-08-07 23:16:49 +09001141 }
1142 }
Devin Moore6a01ca12020-08-28 10:24:19 -07001143
1144 if (lang != Options::Language::JAVA) {
1145 if (this->GetName() == "List" && !this->IsGeneric()) {
1146 AIDL_ERROR(this) << "Currently, only the Java backend supports non-generic List.";
1147 return false;
1148 }
1149 if (this->GetName() == "Map" || this->GetName() == "CharSequence") {
1150 AIDL_ERROR(this) << "Currently, only Java backend supports " << this->GetName() << ".";
1151 return false;
Jeongik Cha08ca2182019-11-21 14:01:13 +09001152 }
1153 }
1154
Jeongik Cha047c5ee2019-08-07 23:16:49 +09001155 return true;
1156}
1157
1158// TODO: we should treat every backend all the same in future.
Steven Morelandd59e3172020-05-11 16:42:09 -07001159bool AidlParcelable::LanguageSpecificCheckValid(const AidlTypenames& /*typenames*/,
1160 Options::Language lang) const {
Andrei Homescub62afd92020-05-11 19:24:59 -07001161 if (lang == Options::Language::CPP || lang == Options::Language::NDK) {
Steven Moreland0d9c26e2020-01-22 08:52:08 -08001162 const AidlParcelable* unstructured_parcelable = this->AsUnstructuredParcelable();
1163 if (unstructured_parcelable != nullptr) {
1164 if (unstructured_parcelable->GetCppHeader().empty()) {
1165 AIDL_ERROR(unstructured_parcelable)
Jeongik Cha047c5ee2019-08-07 23:16:49 +09001166 << "Unstructured parcelable must have C++ header defined.";
1167 return false;
1168 }
1169 }
1170 }
1171 return true;
1172}
1173
1174// TODO: we should treat every backend all the same in future.
Steven Morelandd59e3172020-05-11 16:42:09 -07001175bool AidlStructuredParcelable::LanguageSpecificCheckValid(const AidlTypenames& typenames,
1176 Options::Language lang) const {
1177 if (!AidlParcelable::LanguageSpecificCheckValid(typenames, lang)) {
Jeongik Cha047c5ee2019-08-07 23:16:49 +09001178 return false;
1179 }
1180 for (const auto& v : this->GetFields()) {
Steven Morelandd59e3172020-05-11 16:42:09 -07001181 if (!v->GetType().LanguageSpecificCheckValid(typenames, lang)) {
Jeongik Cha047c5ee2019-08-07 23:16:49 +09001182 return false;
1183 }
1184 }
1185 return true;
1186}
1187
Daniel Norman85aed542019-08-21 12:01:14 -07001188AidlEnumerator::AidlEnumerator(const AidlLocation& location, const std::string& name,
Daniel Norman2e4112d2019-10-03 10:22:35 -07001189 AidlConstantValue* value, const std::string& comments)
Jooyung Han29813842020-12-08 01:28:03 +09001190 : AidlNode(location),
1191 name_(name),
1192 value_(value),
1193 comments_(comments),
1194 value_user_specified_(value != nullptr) {}
Daniel Norman85aed542019-08-21 12:01:14 -07001195
1196bool AidlEnumerator::CheckValid(const AidlTypeSpecifier& enum_backing_type) const {
1197 if (GetValue() == nullptr) {
1198 return false;
1199 }
1200 if (!GetValue()->CheckValid()) {
1201 return false;
1202 }
Will McVickerd7d18df2019-09-12 13:40:50 -07001203 if (GetValue()->ValueString(enum_backing_type, AidlConstantValueDecorator).empty()) {
Daniel Norman85aed542019-08-21 12:01:14 -07001204 AIDL_ERROR(this) << "Enumerator type differs from enum backing type.";
1205 return false;
1206 }
1207 return true;
1208}
1209
1210string AidlEnumerator::ValueString(const AidlTypeSpecifier& backing_type,
1211 const ConstantValueDecorator& decorator) const {
Will McVickerd7d18df2019-09-12 13:40:50 -07001212 return GetValue()->ValueString(backing_type, decorator);
Daniel Norman85aed542019-08-21 12:01:14 -07001213}
1214
1215AidlEnumDeclaration::AidlEnumDeclaration(const AidlLocation& location, const std::string& name,
1216 std::vector<std::unique_ptr<AidlEnumerator>>* enumerators,
Jiyong Park18132182020-06-08 20:24:40 +09001217 const std::string& package, const std::string& comments)
Jooyung Han829ec7c2020-12-02 12:07:36 +09001218 : AidlDefinedType(location, name, comments, package, nullptr),
Jooyung Han29813842020-12-08 01:28:03 +09001219 enumerators_(std::move(*enumerators)) {
Jooyung Han672557b2020-12-24 05:18:00 +09001220 // Fill missing enumerator values with <prev + 1>
1221 // This can't be done in Autofill() because type/ref resolution depends on this.
1222 // For example, with enum E { A, B = A }, B's value 'A' is a reference which can't be
1223 // resolved if A has no value set.
Daniel Normanb28684e2019-10-17 15:31:39 -07001224 const AidlEnumerator* previous = nullptr;
1225 for (const auto& enumerator : enumerators_) {
1226 if (enumerator->GetValue() == nullptr) {
Jooyung Han29813842020-12-08 01:28:03 +09001227 auto loc = enumerator->GetLocation();
Daniel Normanb28684e2019-10-17 15:31:39 -07001228 if (previous == nullptr) {
Devin Mooredf93ebb2020-03-25 14:03:35 -07001229 enumerator->SetValue(
Jooyung Han29813842020-12-08 01:28:03 +09001230 std::unique_ptr<AidlConstantValue>(AidlConstantValue::Integral(loc, "0")));
Daniel Normanb28684e2019-10-17 15:31:39 -07001231 } else {
Jooyung Han29813842020-12-08 01:28:03 +09001232 auto prev_value = std::make_unique<AidlConstantReference>(loc, previous->GetName(), "");
Daniel Normanb28684e2019-10-17 15:31:39 -07001233 enumerator->SetValue(std::make_unique<AidlBinaryConstExpression>(
Jooyung Han29813842020-12-08 01:28:03 +09001234 loc, std::move(prev_value), "+",
1235 std::unique_ptr<AidlConstantValue>(AidlConstantValue::Integral(loc, "1"))));
Daniel Normanb28684e2019-10-17 15:31:39 -07001236 }
1237 }
1238 previous = enumerator.get();
1239 }
1240}
1241
Jooyung Han672557b2020-12-24 05:18:00 +09001242bool AidlEnumDeclaration::Autofill(const AidlTypenames& typenames) {
1243 if (auto annot = BackingType(); annot != nullptr) {
Jooyung Hanb3c77ed2020-12-26 02:02:45 +09001244 // Autofill() is called before the grand CheckValid(). But AidlAnnotation::ParamValue()
1245 // calls AidlConstantValue::evaluate() which requires CheckValid() to be called before. So we
Jooyung Han672557b2020-12-24 05:18:00 +09001246 // need to call CheckValid().
1247 if (!annot->CheckValid()) {
1248 return false;
1249 }
Jooyung Hanb3c77ed2020-12-26 02:02:45 +09001250 auto type = annot->ParamValue<std::string>("type").value();
1251 backing_type_ =
1252 std::make_unique<AidlTypeSpecifier>(annot->GetLocation(), type, false, nullptr, "");
Jooyung Han672557b2020-12-24 05:18:00 +09001253 } else {
1254 // Default to byte type for enums.
1255 backing_type_ =
1256 std::make_unique<AidlTypeSpecifier>(AIDL_LOCATION_HERE, "byte", false, nullptr, "");
1257 }
1258 // Autofill() is called after type resolution, we resolve the backing type manually.
1259 if (!backing_type_->Resolve(typenames)) {
1260 AIDL_ERROR(this) << "Invalid backing type: " << backing_type_->GetName();
1261 }
1262 return true;
1263}
1264
Steven Moreland0cea4aa2020-04-20 21:06:02 -07001265std::set<AidlAnnotation::Type> AidlEnumDeclaration::GetSupportedAnnotations() const {
Jooyung Hanf8dbbcc2020-12-26 03:05:55 +09001266 return {
1267 AidlAnnotation::Type::VINTF_STABILITY,
1268 AidlAnnotation::Type::BACKING,
1269 AidlAnnotation::Type::HIDE,
1270 AidlAnnotation::Type::JAVA_PASSTHROUGH,
1271 AidlAnnotation::Type::SUPPRESS_WARNINGS,
1272 };
Devin Moore24f68572020-02-26 13:20:59 -08001273}
1274
Jooyung Han888c5bc2020-12-22 17:28:47 +09001275bool AidlEnumDeclaration::CheckValid(const AidlTypenames& typenames,
1276 DiagnosticsContext& diag) const {
1277 if (!AidlDefinedType::CheckValid(typenames, diag)) {
Devin Moore24f68572020-02-26 13:20:59 -08001278 return false;
1279 }
Jooyung Han829ec7c2020-12-02 12:07:36 +09001280 if (!GetMembers().empty()) {
1281 AIDL_ERROR(this) << "Enum doesn't support fields/constants/methods.";
1282 return false;
1283 }
Daniel Norman85aed542019-08-21 12:01:14 -07001284 if (backing_type_ == nullptr) {
1285 AIDL_ERROR(this) << "Enum declaration missing backing type.";
1286 return false;
1287 }
1288 bool success = true;
1289 for (const auto& enumerator : enumerators_) {
1290 success = success && enumerator->CheckValid(GetBackingType());
1291 }
Jooyung Han3b990182020-12-22 17:44:31 +09001292
Steven Moreland26318532020-12-23 20:08:36 +00001293 if (!success) return false; // ValueString requires valid type
1294
Jooyung Han3b990182020-12-22 17:44:31 +09001295 AIDL_FATAL_IF(GetEnumerators().empty(), this)
1296 << "The enum '" << GetName() << "' has no enumerators.";
1297
1298 const auto& first = GetEnumerators()[0];
1299 if (auto first_value = first->ValueString(GetBackingType(), AidlConstantValueDecorator);
1300 first_value != "0") {
1301 diag.Report(first->GetLocation(), DiagnosticID::enum_zero)
1302 << "The first enumerator '" << first->GetName() << "' should be 0, but it is "
1303 << first_value << ".";
1304 }
1305
Steven Moreland26318532020-12-23 20:08:36 +00001306 return true;
Daniel Norman85aed542019-08-21 12:01:14 -07001307}
1308
Jeongik Cha997281d2020-01-16 15:23:59 +09001309void AidlEnumDeclaration::Dump(CodeWriter* writer) const {
Steven Morelanda5d9c5c2020-02-21 16:01:09 -08001310 DumpHeader(writer);
Daniel Norman37d43dd2019-09-09 17:22:34 -07001311 writer->Write("enum %s {\n", GetName().c_str());
Daniel Norman85aed542019-08-21 12:01:14 -07001312 writer->Indent();
1313 for (const auto& enumerator : GetEnumerators()) {
Daniel Norman85aed542019-08-21 12:01:14 -07001314 writer->Write("%s = %s,\n", enumerator->GetName().c_str(),
1315 enumerator->ValueString(GetBackingType(), AidlConstantValueDecorator).c_str());
1316 }
1317 writer->Dedent();
1318 writer->Write("}\n");
1319}
1320
Jooyung Han2946afc2020-10-05 20:29:16 +09001321AidlUnionDecl::AidlUnionDecl(const AidlLocation& location, const std::string& name,
1322 const std::string& package, const std::string& comments,
Jooyung Han829ec7c2020-12-02 12:07:36 +09001323 std::vector<std::string>* type_params,
1324 std::vector<std::unique_ptr<AidlMember>>* members)
1325 : AidlParcelable(location, name, package, comments, "" /*cpp_header*/, type_params, members) {}
Jooyung Han2946afc2020-10-05 20:29:16 +09001326
1327std::set<AidlAnnotation::Type> AidlUnionDecl::GetSupportedAnnotations() const {
Jooyung Hanf8dbbcc2020-12-26 03:05:55 +09001328 return {
1329 AidlAnnotation::Type::VINTF_STABILITY, AidlAnnotation::Type::HIDE,
1330 AidlAnnotation::Type::JAVA_PASSTHROUGH, AidlAnnotation::Type::JAVA_DERIVE,
1331 AidlAnnotation::Type::JAVA_ONLY_IMMUTABLE, AidlAnnotation::Type::RUST_DERIVE,
1332 AidlAnnotation::Type::SUPPRESS_WARNINGS,
1333 };
Jooyung Han2946afc2020-10-05 20:29:16 +09001334}
1335
1336void AidlUnionDecl::Dump(CodeWriter* writer) const {
1337 DumpHeader(writer);
1338 writer->Write("union %s {\n", GetName().c_str());
1339 writer->Indent();
1340 for (const auto& field : GetFields()) {
1341 if (field->GetType().IsHidden()) {
1342 AddHideComment(writer);
1343 }
1344 writer->Write("%s;\n", field->ToString().c_str());
1345 }
Jooyung Han3f347ca2020-12-01 12:41:50 +09001346 for (const auto& constdecl : GetConstantDeclarations()) {
1347 if (constdecl->GetType().IsHidden()) {
1348 AddHideComment(writer);
1349 }
1350 writer->Write("%s;\n", constdecl->ToString().c_str());
1351 }
Jooyung Han2946afc2020-10-05 20:29:16 +09001352 writer->Dedent();
1353 writer->Write("}\n");
1354}
1355
Jooyung Han888c5bc2020-12-22 17:28:47 +09001356bool AidlUnionDecl::CheckValid(const AidlTypenames& typenames, DiagnosticsContext& diag) const {
Jooyung Han59af9cc2020-10-25 21:44:14 +09001357 // visit parents
Jooyung Han888c5bc2020-12-22 17:28:47 +09001358 if (!AidlParcelable::CheckValid(typenames, diag)) {
Jooyung Hanfe89f122020-10-14 03:49:18 +09001359 return false;
1360 }
Jooyung Han59af9cc2020-10-25 21:44:14 +09001361
1362 // unions provide getters always
Jooyung Han829ec7c2020-12-02 12:07:36 +09001363 if (!CheckValidForGetterNames()) {
Jooyung Han59af9cc2020-10-25 21:44:14 +09001364 return false;
Jooyung Hanfe89f122020-10-14 03:49:18 +09001365 }
1366
1367 // now, visit self!
1368 bool success = true;
1369
1370 // TODO(b/170807936) do we need to allow ParcelableHolder in union?
1371 for (const auto& v : GetFields()) {
1372 if (v->GetType().GetName() == "ParcelableHolder") {
1373 AIDL_ERROR(*v) << "A union can't have a member of ParcelableHolder '" << v->GetName() << "'";
1374 success = false;
1375 }
1376 }
1377
Jooyung Hanfe89f122020-10-14 03:49:18 +09001378 if (GetFields().empty()) {
1379 AIDL_ERROR(*this) << "The union '" << this->GetName() << "' has no fields.";
1380 return false;
1381 }
1382
Jooyung Han53fb4242020-12-17 16:03:49 +09001383 // first member should have useful default value (implicit or explicit)
1384 const auto& first = GetFields()[0];
1385 if (!first->HasUsefulDefaultValue()) {
1386 // Most types can be initialized without a default value. For example,
1387 // interface types are inherently nullable. But, enum types should have
1388 // an explicit default value.
1389 if (!first->GetType().IsArray() && typenames.GetEnumDeclaration(first->GetType())) {
1390 AIDL_ERROR(first)
1391 << "The union's first member should have a useful default value. Enum types can be "
1392 "initialized with a reference. (e.g. ... = MyEnum.FOO;)";
1393 return false;
1394 }
1395 // In Java, array types are initialized as null without a default value. To be sure that default
1396 // initialized unions are accepted by other backends we require arrays also have a default
1397 // value.
1398 if (first->GetType().IsArray()) {
1399 AIDL_ERROR(first)
1400 << "The union's first member should have a useful default value. Arrays can be "
1401 "initialized with values(e.g. ... = { values... };) or marked as @nullable.";
1402 return false;
1403 }
1404 }
1405
Jooyung Hanfe89f122020-10-14 03:49:18 +09001406 return success;
1407}
1408
1409// TODO: we should treat every backend all the same in future.
1410bool AidlUnionDecl::LanguageSpecificCheckValid(const AidlTypenames& typenames,
1411 Options::Language lang) const {
1412 if (!AidlParcelable::LanguageSpecificCheckValid(typenames, lang)) {
1413 return false;
1414 }
1415 for (const auto& v : this->GetFields()) {
1416 if (!v->GetType().LanguageSpecificCheckValid(typenames, lang)) {
1417 return false;
1418 }
1419 }
1420 return true;
1421}
1422
Jeongik Cha047c5ee2019-08-07 23:16:49 +09001423// TODO: we should treat every backend all the same in future.
Steven Morelandd59e3172020-05-11 16:42:09 -07001424bool AidlInterface::LanguageSpecificCheckValid(const AidlTypenames& typenames,
1425 Options::Language lang) const {
Jeongik Cha047c5ee2019-08-07 23:16:49 +09001426 for (const auto& m : this->GetMethods()) {
Steven Morelandd59e3172020-05-11 16:42:09 -07001427 if (!m->GetType().LanguageSpecificCheckValid(typenames, lang)) {
Jeongik Cha047c5ee2019-08-07 23:16:49 +09001428 return false;
1429 }
1430 for (const auto& arg : m->GetArguments()) {
Steven Morelandd59e3172020-05-11 16:42:09 -07001431 if (!arg->GetType().LanguageSpecificCheckValid(typenames, lang)) {
Jeongik Cha047c5ee2019-08-07 23:16:49 +09001432 return false;
1433 }
1434 }
1435 }
1436 return true;
1437}
1438
Steven Moreland46e9da82018-07-27 15:45:29 -07001439AidlInterface::AidlInterface(const AidlLocation& location, const std::string& name,
Jooyung Han829ec7c2020-12-02 12:07:36 +09001440 const std::string& comments, bool oneway, const std::string& package,
1441 std::vector<std::unique_ptr<AidlMember>>* members)
1442 : AidlDefinedType(location, name, comments, package, members) {
1443 for (auto& m : GetMethods()) {
1444 m.get()->ApplyInterfaceOneway(oneway);
Casey Dahlind40e2fe2015-11-24 14:06:52 -08001445 }
Casey Dahlinfb7da2e2015-10-08 17:26:09 -07001446}
1447
Jeongik Cha997281d2020-01-16 15:23:59 +09001448void AidlInterface::Dump(CodeWriter* writer) const {
Steven Morelanda5d9c5c2020-02-21 16:01:09 -08001449 DumpHeader(writer);
Jiyong Park02da7422018-07-16 16:00:26 +09001450 writer->Write("interface %s {\n", GetName().c_str());
1451 writer->Indent();
1452 for (const auto& method : GetMethods()) {
Jeongik Cha997281d2020-01-16 15:23:59 +09001453 if (method->IsHidden()) {
1454 AddHideComment(writer);
1455 }
Jiyong Park309668e2018-07-28 16:55:44 +09001456 writer->Write("%s;\n", method->ToString().c_str());
Jiyong Park02da7422018-07-16 16:00:26 +09001457 }
Jiyong Parka428d212018-08-29 22:26:30 +09001458 for (const auto& constdecl : GetConstantDeclarations()) {
Jeongik Cha997281d2020-01-16 15:23:59 +09001459 if (constdecl->GetType().IsHidden()) {
1460 AddHideComment(writer);
1461 }
Jiyong Parka428d212018-08-29 22:26:30 +09001462 writer->Write("%s;\n", constdecl->ToString().c_str());
1463 }
Jiyong Park02da7422018-07-16 16:00:26 +09001464 writer->Dedent();
1465 writer->Write("}\n");
1466}
1467
Steven Moreland0cea4aa2020-04-20 21:06:02 -07001468std::set<AidlAnnotation::Type> AidlInterface::GetSupportedAnnotations() const {
Jooyung Hanf8dbbcc2020-12-26 03:05:55 +09001469 return {
1470 AidlAnnotation::Type::SENSITIVE_DATA, AidlAnnotation::Type::VINTF_STABILITY,
1471 AidlAnnotation::Type::UNSUPPORTED_APP_USAGE, AidlAnnotation::Type::HIDE,
1472 AidlAnnotation::Type::JAVA_PASSTHROUGH, AidlAnnotation::Type::DESCRIPTOR,
1473 AidlAnnotation::Type::SUPPRESS_WARNINGS,
1474 };
Devin Moore24f68572020-02-26 13:20:59 -08001475}
1476
Jooyung Han888c5bc2020-12-22 17:28:47 +09001477bool AidlInterface::CheckValid(const AidlTypenames& typenames, DiagnosticsContext& diag) const {
1478 if (!AidlDefinedType::CheckValid(typenames, diag)) {
Andrei Onea9445fc62019-06-27 18:11:59 +01001479 return false;
1480 }
Jeongik Chadb0f59e2018-11-01 18:11:21 +09001481 // Has to be a pointer due to deleting copy constructor. No idea why.
1482 map<string, const AidlMethod*> method_names;
1483 for (const auto& m : GetMethods()) {
Jeongik Chadb0f59e2018-11-01 18:11:21 +09001484 if (!m->GetType().CheckValid(typenames)) {
1485 return false;
1486 }
1487
Jeongik Cha649e8a72020-03-27 17:47:40 +09001488 // TODO(b/156872582): Support it when ParcelableHolder supports every backend.
1489 if (m->GetType().GetName() == "ParcelableHolder") {
1490 AIDL_ERROR(m) << "ParcelableHolder cannot be a return type";
1491 return false;
1492 }
Steven Morelandacd53472018-12-14 10:17:26 -08001493 if (m->IsOneway() && m->GetType().GetName() != "void") {
Jeongik Chadb0f59e2018-11-01 18:11:21 +09001494 AIDL_ERROR(m) << "oneway method '" << m->GetName() << "' cannot return a value";
1495 return false;
1496 }
1497
1498 set<string> argument_names;
1499 for (const auto& arg : m->GetArguments()) {
1500 auto it = argument_names.find(arg->GetName());
1501 if (it != argument_names.end()) {
1502 AIDL_ERROR(m) << "method '" << m->GetName() << "' has duplicate argument name '"
1503 << arg->GetName() << "'";
1504 return false;
1505 }
1506 argument_names.insert(arg->GetName());
1507
1508 if (!arg->GetType().CheckValid(typenames)) {
1509 return false;
1510 }
1511
Jeongik Cha649e8a72020-03-27 17:47:40 +09001512 // TODO(b/156872582): Support it when ParcelableHolder supports every backend.
1513 if (arg->GetType().GetName() == "ParcelableHolder") {
1514 AIDL_ERROR(arg) << "ParcelableHolder cannot be an argument type";
1515 return false;
1516 }
Steven Morelandacd53472018-12-14 10:17:26 -08001517 if (m->IsOneway() && arg->IsOut()) {
Jeongik Chadb0f59e2018-11-01 18:11:21 +09001518 AIDL_ERROR(m) << "oneway method '" << m->GetName() << "' cannot have out parameters";
1519 return false;
1520 }
Jooyung Han15fd6c62020-10-23 13:54:46 +09001521
1522 const auto [can_be_out, type_aspect] = typenames.CanBeOutParameter(arg->GetType());
Jeongik Cha047c5ee2019-08-07 23:16:49 +09001523 if (!arg->DirectionWasSpecified() && can_be_out) {
Jooyung Han965e31d2020-11-27 12:30:16 +09001524 AIDL_ERROR(arg) << "'" << arg->GetType().Signature()
Jeongik Cha047c5ee2019-08-07 23:16:49 +09001525 << "' can be an out type, so you must declare it as in, out, or inout.";
1526 return false;
1527 }
1528
1529 if (arg->GetDirection() != AidlArgument::IN_DIR && !can_be_out) {
Jooyung Han15fd6c62020-10-23 13:54:46 +09001530 AIDL_ERROR(arg) << "'" << arg->GetName() << "' can't be an " << arg->GetDirectionSpecifier()
1531 << " parameter because " << type_aspect << " can only be an in parameter.";
Jeongik Cha047c5ee2019-08-07 23:16:49 +09001532 return false;
1533 }
1534
1535 // check that the name doesn't match a keyword
Jeongik Cha997281d2020-01-16 15:23:59 +09001536 if (IsJavaKeyword(arg->GetName().c_str())) {
Jeongik Cha047c5ee2019-08-07 23:16:49 +09001537 AIDL_ERROR(arg) << "Argument name is a Java or aidl keyword";
1538 return false;
1539 }
1540
1541 // Reserve a namespace for internal use
1542 if (android::base::StartsWith(arg->GetName(), "_aidl")) {
1543 AIDL_ERROR(arg) << "Argument name cannot begin with '_aidl'";
1544 return false;
1545 }
Jooyung Han3557e482020-12-24 05:11:15 +09001546
1547 if (arg->GetDirection() == AidlArgument::INOUT_DIR) {
1548 diag.Report(arg->GetLocation(), DiagnosticID::inout_parameter)
1549 << arg->GetName()
1550 << " is 'inout'. Avoid inout parameters. This is somewhat confusing for clients "
1551 "because although the parameters are 'in', they look out 'out' parameters.";
1552 }
Jeongik Chadb0f59e2018-11-01 18:11:21 +09001553 }
1554
1555 auto it = method_names.find(m->GetName());
1556 // prevent duplicate methods
1557 if (it == method_names.end()) {
1558 method_names[m->GetName()] = m.get();
1559 } else {
1560 AIDL_ERROR(m) << "attempt to redefine method " << m->GetName() << ":";
1561 AIDL_ERROR(it->second) << "previously defined here.";
1562 return false;
1563 }
1564
Paul Trautrimb77048c2020-01-21 16:39:32 +09001565 static set<string> reserved_methods{"asBinder()", "getInterfaceHash()", "getInterfaceVersion()",
Jeongik Chadb0f59e2018-11-01 18:11:21 +09001566 "getTransactionName(int)"};
1567
1568 if (reserved_methods.find(m->Signature()) != reserved_methods.end()) {
Devin Moore097a3ab2020-03-11 16:08:44 -07001569 AIDL_ERROR(m) << " method " << m->Signature() << " is reserved for internal use.";
Jeongik Chadb0f59e2018-11-01 18:11:21 +09001570 return false;
1571 }
1572 }
Steven Moreland4d12f9a2018-10-31 14:30:55 -07001573
1574 bool success = true;
1575 set<string> constant_names;
Jooyung Han3f347ca2020-12-01 12:41:50 +09001576 for (const auto& constant : GetConstantDeclarations()) {
Steven Moreland4d12f9a2018-10-31 14:30:55 -07001577 if (constant_names.count(constant->GetName()) > 0) {
Devin Moore097a3ab2020-03-11 16:08:44 -07001578 AIDL_ERROR(constant) << "Found duplicate constant name '" << constant->GetName() << "'";
Steven Moreland4d12f9a2018-10-31 14:30:55 -07001579 success = false;
1580 }
1581 constant_names.insert(constant->GetName());
1582 success = success && constant->CheckValid(typenames);
1583 }
1584
Jooyung Han888c5bc2020-12-22 17:28:47 +09001585 if (auto name = GetName(); name.size() < 1 || name[0] != 'I') {
1586 diag.Report(GetLocation(), DiagnosticID::interface_name)
1587 << "Interface names should start with I.";
1588 }
1589
Steven Moreland4d12f9a2018-10-31 14:30:55 -07001590 return success;
Jeongik Chadb0f59e2018-11-01 18:11:21 +09001591}
1592
Jiyong Park27fd7fd2020-08-27 16:25:09 +09001593std::string AidlInterface::GetDescriptor() const {
1594 std::string annotatedDescriptor = AidlAnnotatable::GetDescriptor();
1595 if (annotatedDescriptor != "") {
1596 return annotatedDescriptor;
1597 }
1598 return GetCanonicalName();
1599}
1600
Steven Moreland46e9da82018-07-27 15:45:29 -07001601AidlImport::AidlImport(const AidlLocation& location, const std::string& needed_class)
1602 : AidlNode(location), needed_class_(needed_class) {}
Jooyung Han29813842020-12-08 01:28:03 +09001603
Jooyung Han3557e482020-12-24 05:11:15 +09001604bool AidlDocument::CheckValid(const AidlTypenames& typenames, DiagnosticsContext& diag) const {
1605 for (const auto& t : defined_types_) {
1606 if (!t->CheckValid(typenames, diag)) {
1607 return false;
1608 }
1609 }
1610 return true;
1611}
1612
Jooyung Han29813842020-12-08 01:28:03 +09001613// Resolves unresolved type name to fully qualified typename to import
1614// case #1: SimpleName --> import p.SimpleName
1615// case #2: Outer.Inner --> import p.Outer
1616// case #3: p.SimpleName --> (as is)
1617std::optional<std::string> AidlDocument::ResolveName(const std::string& unresolved_name) const {
1618 std::string canonical_name;
1619 const auto first_dot = unresolved_name.find_first_of('.');
1620 const std::string class_name =
1621 (first_dot == std::string::npos) ? unresolved_name : unresolved_name.substr(0, first_dot);
1622 for (const auto& import : Imports()) {
1623 const auto& fq_name = import->GetNeededClass();
1624 const auto last_dot = fq_name.find_last_of('.');
1625 const std::string imported_type_name =
1626 (last_dot == std::string::npos) ? fq_name : fq_name.substr(last_dot + 1);
1627 if (imported_type_name == class_name) {
1628 if (canonical_name != "" && canonical_name != fq_name) {
1629 AIDL_ERROR(import) << "Ambiguous type: " << canonical_name << " vs. " << fq_name;
1630 return {};
1631 }
1632 canonical_name = fq_name;
1633 }
1634 }
1635 // if not found, use unresolved_name as it is
1636 if (canonical_name == "") {
1637 return unresolved_name;
1638 }
1639 return canonical_name;
Steven Moreland26318532020-12-23 20:08:36 +00001640}