blob: 4eba7681424d99f0845c6c644fb84c942b7b2aea [file] [log] [blame]
Andreas Huber1aec3972016-08-26 09:26:32 -07001/*
2 * Copyright (C) 2016 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
Andreas Huberc9410c72016-07-28 12:18:40 -070017#include "AST.h"
18
Andreas Huber5345ec22016-07-29 13:33:27 -070019#include "Coordinator.h"
Yifan Hongf24fa852016-09-23 11:03:15 -070020#include "EnumType.h"
Timur Iskhakov33431e62017-08-21 17:31:23 -070021#include "FmqType.h"
Andreas Hubereb1081f2016-07-28 13:13:24 -070022#include "HandleType.h"
Andreas Huberbfd76212016-08-09 11:12:16 -070023#include "Interface.h"
Yifan Honga4b53d02016-10-31 17:29:10 -070024#include "Location.h"
Neel Mehta0ee353f2019-05-30 17:40:29 -070025#include "Method.h"
Andreas Huberc9410c72016-07-28 12:18:40 -070026#include "Scope.h"
Andreas Huber8d3ac0c2016-08-04 14:49:23 -070027#include "TypeDef.h"
Andreas Huberc9410c72016-07-28 12:18:40 -070028
Andreas Hubereb1081f2016-07-28 13:13:24 -070029#include <android-base/logging.h>
Timur Iskhakovcb0ba522017-07-17 20:01:37 -070030#include <hidl-util/FQName.h>
31#include <hidl-util/Formatter.h>
32#include <hidl-util/StringHelper.h>
Andreas Huberc9410c72016-07-28 12:18:40 -070033#include <stdlib.h>
Neel Mehta0ee353f2019-05-30 17:40:29 -070034
Timur Iskhakovcb0ba522017-07-17 20:01:37 -070035#include <algorithm>
36#include <iostream>
Neel Mehta0ee353f2019-05-30 17:40:29 -070037#include <map>
38#include <string>
Andreas Huberc9410c72016-07-28 12:18:40 -070039
Andreas Huberc9410c72016-07-28 12:18:40 -070040namespace android {
41
Steven Moreland04dea8d2018-02-06 13:11:24 -080042AST::AST(const Coordinator* coordinator, const Hash* fileHash)
Andreas Huber5345ec22016-07-29 13:33:27 -070043 : mCoordinator(coordinator),
Steven Moreland04dea8d2018-02-06 13:11:24 -080044 mFileHash(fileHash),
Neel Mehtaf6293d32019-06-12 17:16:38 -070045 mRootScope("(root scope)", FQName(),
46 Location::startOf(coordinator->makeRelative(fileHash->getPath())),
Steven Moreland04dea8d2018-02-06 13:11:24 -080047 nullptr /* parent */) {}
Andreas Huberc9410c72016-07-28 12:18:40 -070048
Neel Mehta693169b2019-05-29 18:45:25 -070049Scope* AST::getMutableRootScope() {
Timur Iskhakovcb0ba522017-07-17 20:01:37 -070050 return &mRootScope;
Andreas Huberc9410c72016-07-28 12:18:40 -070051}
52
Neel Mehta693169b2019-05-29 18:45:25 -070053const Scope& AST::getRootScope() const {
54 return mRootScope;
55}
56
Yifan Hongbe627b32016-10-28 18:38:56 -070057// used by the parser.
58void AST::addSyntaxError() {
59 mSyntaxErrors++;
60}
61
62size_t AST::syntaxErrors() const {
63 return mSyntaxErrors;
64}
65
Steven Moreland04dea8d2018-02-06 13:11:24 -080066const std::string& AST::getFilename() const {
67 return mFileHash->getPath();
68}
69const Hash* AST::getFileHash() const {
70 return mFileHash;
Andreas Huber0d0f9a22016-08-17 10:26:11 -070071}
72
Neel Mehtaf6293d32019-06-12 17:16:38 -070073const Coordinator& AST::getCoordinator() const {
74 return *mCoordinator;
75}
76
Andreas Huber84f89de2016-07-28 15:39:51 -070077bool AST::setPackage(const char *package) {
Steven Morelande1b157e2018-03-06 14:18:32 -080078 if (!mPackage.setTo(package)) {
79 return false;
80 }
Andreas Huber84f89de2016-07-28 15:39:51 -070081
Andreas Huberda51b8e2016-07-28 16:00:57 -070082 if (mPackage.package().empty()
83 || mPackage.version().empty()
84 || !mPackage.name().empty()) {
Andreas Huber84f89de2016-07-28 15:39:51 -070085 return false;
86 }
87
Andreas Huber84f89de2016-07-28 15:39:51 -070088 return true;
Andreas Hubereb1081f2016-07-28 13:13:24 -070089}
90
Andreas Hubera2723d22016-07-29 15:36:07 -070091FQName AST::package() const {
92 return mPackage;
93}
94
Steven Moreland19f11b52017-05-12 18:22:21 -070095bool AST::isInterface() const {
Timur Iskhakovcb0ba522017-07-17 20:01:37 -070096 return mRootScope.getInterface() != nullptr;
Andreas Hubera2723d22016-07-29 15:36:07 -070097}
98
Steven Morelandb47a2622018-07-11 09:04:25 -070099bool AST::definesInterfaces() const {
100 return mRootScope.definesInterfaces();
Andreas Huber7c5ddfb2016-09-29 13:45:22 -0700101}
102
Timur Iskhakov33431e62017-08-21 17:31:23 -0700103status_t AST::postParse() {
Timur Iskhakov77dd65c2017-08-31 22:46:56 -0700104 status_t err;
Timur Iskhakov82c048e2017-09-09 01:20:53 -0700105
Yifan Hong0e192c42018-10-23 15:32:19 -0700106 // lookupTypes is the first pass for references to be resolved.
Timur Iskhakov82c048e2017-09-09 01:20:53 -0700107 err = lookupTypes();
108 if (err != OK) return err;
Yifan Hong0e192c42018-10-23 15:32:19 -0700109
110 // Indicate that all types are now in "postParse" stage.
111 err = setParseStage(Type::ParseStage::PARSE, Type::ParseStage::POST_PARSE);
112 if (err != OK) return err;
113
Timur Iskhakov82c048e2017-09-09 01:20:53 -0700114 // validateDefinedTypesUniqueNames is the first call
115 // after lookup, as other errors could appear because
116 // user meant different type than we assumed.
Timur Iskhakov565b0132017-09-06 18:07:11 -0700117 err = validateDefinedTypesUniqueNames();
118 if (err != OK) return err;
Timur Iskhakov458ca362017-09-12 23:16:03 -0700119 // topologicalReorder is before resolveInheritance, as we
Timur Iskhakov77dd65c2017-08-31 22:46:56 -0700120 // need to have no cycle while getting parent class.
Timur Iskhakov458ca362017-09-12 23:16:03 -0700121 err = topologicalReorder();
Timur Iskhakov77dd65c2017-08-31 22:46:56 -0700122 if (err != OK) return err;
123 err = resolveInheritance();
124 if (err != OK) return err;
Steven Moreland12f0ab12018-11-02 17:27:37 -0700125 err = lookupConstantExpressions();
Timur Iskhakov82c048e2017-09-09 01:20:53 -0700126 if (err != OK) return err;
Timur Iskhakov77dd65c2017-08-31 22:46:56 -0700127 // checkAcyclicConstantExpressions is after resolveInheritance,
128 // as resolveInheritance autofills enum values.
129 err = checkAcyclicConstantExpressions();
Timur Iskhakov33431e62017-08-21 17:31:23 -0700130 if (err != OK) return err;
Steven Moreland12f0ab12018-11-02 17:27:37 -0700131 err = validateConstantExpressions();
132 if (err != OK) return err;
133 err = evaluateConstantExpressions();
Timur Iskhakov33431e62017-08-21 17:31:23 -0700134 if (err != OK) return err;
135 err = validate();
136 if (err != OK) return err;
Timur Iskhakov041fdfe2017-09-06 15:56:01 -0700137 err = checkForwardReferenceRestrictions();
138 if (err != OK) return err;
Andreas Huber308d8a22017-11-06 14:46:52 -0800139 err = gatherReferencedTypes();
140 if (err != OK) return err;
Timur Iskhakov33431e62017-08-21 17:31:23 -0700141
Timur Iskhakov35930c42017-08-28 18:49:54 -0700142 // Make future packages not to call passes
143 // for processed types and expressions
Timur Iskhakov82c048e2017-09-09 01:20:53 -0700144 constantExpressionRecursivePass(
145 [](ConstantExpression* ce) {
146 ce->setPostParseCompleted();
147 return OK;
148 },
149 true /* processBeforeDependencies */);
Yifan Hong0e192c42018-10-23 15:32:19 -0700150
151 err = setParseStage(Type::ParseStage::POST_PARSE, Type::ParseStage::COMPLETED);
152 if (err != OK) return err;
Timur Iskhakov35930c42017-08-28 18:49:54 -0700153
Timur Iskhakov33431e62017-08-21 17:31:23 -0700154 return OK;
155}
156
Timur Iskhakov891a8662017-08-25 21:53:48 -0700157status_t AST::constantExpressionRecursivePass(
Timur Iskhakov82c048e2017-09-09 01:20:53 -0700158 const std::function<status_t(ConstantExpression*)>& func, bool processBeforeDependencies) {
Timur Iskhakov891a8662017-08-25 21:53:48 -0700159 std::unordered_set<const Type*> visitedTypes;
160 std::unordered_set<const ConstantExpression*> visitedCE;
Yifan Hong0e192c42018-10-23 15:32:19 -0700161 return mRootScope.recursivePass(Type::ParseStage::POST_PARSE,
162 [&](Type* type) -> status_t {
163 for (auto* ce : type->getConstantExpressions()) {
164 status_t err = ce->recursivePass(
165 func, &visitedCE, processBeforeDependencies);
166 if (err != OK) return err;
167 }
168 return OK;
169 },
170 &visitedTypes);
171}
172
Steven Moreland12f0ab12018-11-02 17:27:37 -0700173status_t AST::constantExpressionRecursivePass(
174 const std::function<status_t(const ConstantExpression*)>& func,
175 bool processBeforeDependencies) const {
176 std::unordered_set<const Type*> visitedTypes;
177 std::unordered_set<const ConstantExpression*> visitedCE;
178 return mRootScope.recursivePass(Type::ParseStage::POST_PARSE,
179 [&](const Type* type) -> status_t {
180 for (auto* ce : type->getConstantExpressions()) {
181 status_t err = ce->recursivePass(
182 func, &visitedCE, processBeforeDependencies);
183 if (err != OK) return err;
184 }
185 return OK;
186 },
187 &visitedTypes);
188}
189
Yifan Hong0e192c42018-10-23 15:32:19 -0700190status_t AST::setParseStage(Type::ParseStage oldStage, Type::ParseStage newStage) {
191 std::unordered_set<const Type*> visited;
192 return mRootScope.recursivePass(oldStage,
193 [oldStage, newStage](Type* type) {
194 CHECK(type->getParseStage() == oldStage);
195 type->setParseStage(newStage);
196 return OK;
197 },
198 &visited);
Timur Iskhakov891a8662017-08-25 21:53:48 -0700199}
200
Timur Iskhakov82c048e2017-09-09 01:20:53 -0700201status_t AST::lookupTypes() {
202 std::unordered_set<const Type*> visited;
203 return mRootScope.recursivePass(
Yifan Hong0e192c42018-10-23 15:32:19 -0700204 Type::ParseStage::PARSE,
Timur Iskhakov82c048e2017-09-09 01:20:53 -0700205 [&](Type* type) -> status_t {
206 Scope* scope = type->isScope() ? static_cast<Scope*>(type) : type->parent();
207
208 for (auto* nextRef : type->getReferences()) {
Andreas Huber308d8a22017-11-06 14:46:52 -0800209 if (nextRef->isResolved()) {
210 continue;
211 }
Timur Iskhakov82c048e2017-09-09 01:20:53 -0700212
213 Type* nextType = lookupType(nextRef->getLookupFqName(), scope);
214 if (nextType == nullptr) {
215 std::cerr << "ERROR: Failed to lookup type '"
216 << nextRef->getLookupFqName().string() << "' at "
217 << nextRef->location() << "\n";
218 return UNKNOWN_ERROR;
219 }
220 nextRef->set(nextType);
221 }
222
223 return OK;
224 },
225 &visited);
226}
227
Andreas Huber308d8a22017-11-06 14:46:52 -0800228status_t AST::gatherReferencedTypes() {
229 std::unordered_set<const Type*> visited;
230 return mRootScope.recursivePass(
Yifan Hong0e192c42018-10-23 15:32:19 -0700231 Type::ParseStage::POST_PARSE,
Andreas Huber308d8a22017-11-06 14:46:52 -0800232 [&](Type* type) -> status_t {
233 for (auto* nextRef : type->getReferences()) {
234 const Type *targetType = nextRef->get();
235 if (targetType->isNamedType()) {
236 mReferencedTypeNames.insert(
237 static_cast<const NamedType *>(targetType)->fqName());
238 }
239 }
240
241 return OK;
242 },
243 &visited);
244}
245
Steven Moreland12f0ab12018-11-02 17:27:37 -0700246status_t AST::lookupConstantExpressions() {
Timur Iskhakov82c048e2017-09-09 01:20:53 -0700247 std::unordered_set<const Type*> visitedTypes;
248 std::unordered_set<const ConstantExpression*> visitedCE;
249
250 return mRootScope.recursivePass(
Yifan Hong0e192c42018-10-23 15:32:19 -0700251 Type::ParseStage::POST_PARSE,
Timur Iskhakov82c048e2017-09-09 01:20:53 -0700252 [&](Type* type) -> status_t {
253 Scope* scope = type->isScope() ? static_cast<Scope*>(type) : type->parent();
254
255 for (auto* ce : type->getConstantExpressions()) {
256 status_t err = ce->recursivePass(
257 [&](ConstantExpression* ce) {
258 for (auto* nextRef : ce->getReferences()) {
259 if (nextRef->isResolved()) continue;
260
261 LocalIdentifier* iden = lookupLocalIdentifier(*nextRef, scope);
262 if (iden == nullptr) return UNKNOWN_ERROR;
263 nextRef->set(iden);
264 }
Steven Moreland12f0ab12018-11-02 17:27:37 -0700265 for (auto* nextRef : ce->getTypeReferences()) {
266 if (nextRef->isResolved()) continue;
267
268 Type* nextType = lookupType(nextRef->getLookupFqName(), scope);
269 if (nextType == nullptr) {
270 std::cerr << "ERROR: Failed to lookup type '"
271 << nextRef->getLookupFqName().string() << "' at "
272 << nextRef->location() << "\n";
273 return UNKNOWN_ERROR;
274 }
275 nextRef->set(nextType);
276 }
Timur Iskhakov82c048e2017-09-09 01:20:53 -0700277 return OK;
278 },
279 &visitedCE, true /* processBeforeDependencies */);
280 if (err != OK) return err;
281 }
282
283 return OK;
284 },
285 &visitedTypes);
286}
287
Timur Iskhakov565b0132017-09-06 18:07:11 -0700288status_t AST::validateDefinedTypesUniqueNames() const {
289 std::unordered_set<const Type*> visited;
290 return mRootScope.recursivePass(
Yifan Hong0e192c42018-10-23 15:32:19 -0700291 Type::ParseStage::POST_PARSE,
Timur Iskhakov565b0132017-09-06 18:07:11 -0700292 [&](const Type* type) -> status_t {
293 // We only want to validate type definition names in this place.
294 if (type->isScope()) {
295 return static_cast<const Scope*>(type)->validateUniqueNames();
296 }
297 return OK;
298 },
299 &visited);
300}
301
Timur Iskhakovcec46c42017-08-09 00:22:02 -0700302status_t AST::resolveInheritance() {
Timur Iskhakov33431e62017-08-21 17:31:23 -0700303 std::unordered_set<const Type*> visited;
Yifan Hong0e192c42018-10-23 15:32:19 -0700304 return mRootScope.recursivePass(Type::ParseStage::POST_PARSE, &Type::resolveInheritance,
305 &visited);
Timur Iskhakovcec46c42017-08-09 00:22:02 -0700306}
307
Steven Moreland12f0ab12018-11-02 17:27:37 -0700308status_t AST::validateConstantExpressions() const {
309 return constantExpressionRecursivePass(
310 [](const ConstantExpression* ce) { return ce->validate(); },
311 true /* processBeforeDependencies */);
312}
313
314status_t AST::evaluateConstantExpressions() {
Timur Iskhakov82c048e2017-09-09 01:20:53 -0700315 return constantExpressionRecursivePass(
316 [](ConstantExpression* ce) {
317 ce->evaluate();
318 return OK;
319 },
320 false /* processBeforeDependencies */);
Timur Iskhakovcec46c42017-08-09 00:22:02 -0700321}
322
323status_t AST::validate() const {
Timur Iskhakov33431e62017-08-21 17:31:23 -0700324 std::unordered_set<const Type*> visited;
Yifan Hong0e192c42018-10-23 15:32:19 -0700325 return mRootScope.recursivePass(Type::ParseStage::POST_PARSE, &Type::validate, &visited);
Timur Iskhakovcec46c42017-08-09 00:22:02 -0700326}
327
Timur Iskhakov458ca362017-09-12 23:16:03 -0700328status_t AST::topologicalReorder() {
329 std::unordered_map<const Type*, size_t> reversedOrder;
Timur Iskhakov40731af2017-08-24 14:18:35 -0700330 std::unordered_set<const Type*> stack;
Timur Iskhakov458ca362017-09-12 23:16:03 -0700331 status_t err = mRootScope.topologicalOrder(&reversedOrder, &stack).status;
332 if (err != OK) return err;
333
334 std::unordered_set<const Type*> visited;
Yifan Hong0e192c42018-10-23 15:32:19 -0700335 mRootScope.recursivePass(Type::ParseStage::POST_PARSE,
336 [&](Type* type) {
337 if (type->isScope()) {
338 static_cast<Scope*>(type)->topologicalReorder(reversedOrder);
339 }
340 return OK;
341 },
342 &visited);
Timur Iskhakov458ca362017-09-12 23:16:03 -0700343 return OK;
Timur Iskhakov40731af2017-08-24 14:18:35 -0700344}
345
Timur Iskhakov77dd65c2017-08-31 22:46:56 -0700346status_t AST::checkAcyclicConstantExpressions() const {
347 std::unordered_set<const Type*> visitedTypes;
348 std::unordered_set<const ConstantExpression*> visitedCE;
349 std::unordered_set<const ConstantExpression*> stack;
Yifan Hong0e192c42018-10-23 15:32:19 -0700350 return mRootScope.recursivePass(Type::ParseStage::POST_PARSE,
351 [&](const Type* type) -> status_t {
352 for (auto* ce : type->getConstantExpressions()) {
353 status_t err =
354 ce->checkAcyclic(&visitedCE, &stack).status;
355 CHECK(err != OK || stack.empty());
356 if (err != OK) return err;
357 }
358 return OK;
359 },
360 &visitedTypes);
Timur Iskhakov77dd65c2017-08-31 22:46:56 -0700361}
362
Timur Iskhakov041fdfe2017-09-06 15:56:01 -0700363status_t AST::checkForwardReferenceRestrictions() const {
364 std::unordered_set<const Type*> visited;
Yifan Hong0e192c42018-10-23 15:32:19 -0700365 return mRootScope.recursivePass(Type::ParseStage::POST_PARSE,
366 [](const Type* type) -> status_t {
367 for (const Reference<Type>* ref : type->getReferences()) {
368 status_t err =
369 type->checkForwardReferenceRestrictions(*ref);
370 if (err != OK) return err;
371 }
372 return OK;
373 },
374 &visited);
Timur Iskhakov041fdfe2017-09-06 15:56:01 -0700375}
376
Neel Mehta8b0f06a2019-07-11 18:13:21 -0700377bool AST::importFQName(const FQName& fqName) {
Andreas Huber5345ec22016-07-29 13:33:27 -0700378 if (fqName.name().empty()) {
Yifan Hong1977ea32016-10-05 12:49:08 -0700379 // import a package
Andreas Huber4ba5c972017-11-29 11:06:25 -0800380
Andreas Huberd2943e12016-08-05 11:59:31 -0700381 std::vector<FQName> packageInterfaces;
Andreas Huber68f24592016-07-29 14:53:48 -0700382
Neel Mehta8b0f06a2019-07-11 18:13:21 -0700383 status_t err = mCoordinator->appendPackageInterfacesToVector(fqName, &packageInterfaces);
Andreas Huberd2943e12016-08-05 11:59:31 -0700384
385 if (err != OK) {
Andreas Huber68f24592016-07-29 14:53:48 -0700386 return false;
387 }
388
Neel Mehta8b0f06a2019-07-11 18:13:21 -0700389 for (const auto& subFQName : packageInterfaces) {
Yifan Hongf619fc72017-04-07 15:40:06 -0700390 // Do not enforce restrictions on imports.
Steven Morelandc59326e2017-06-20 15:19:30 -0700391 AST* ast = mCoordinator->parse(subFQName, &mImportedASTs, Coordinator::Enforce::NONE);
Yifan Hong1977ea32016-10-05 12:49:08 -0700392 if (ast == nullptr) {
Andreas Huber68f24592016-07-29 14:53:48 -0700393 return false;
394 }
Steven Morelandb7c47472019-11-20 10:52:40 -0800395 addToImportedNamesGranular(subFQName);
396
Yifan Hong1977ea32016-10-05 12:49:08 -0700397 // all previous single type imports are ignored.
398 mImportedTypes.erase(ast);
Andreas Huber68f24592016-07-29 14:53:48 -0700399 }
400
401 return true;
Andreas Huber5345ec22016-07-29 13:33:27 -0700402 }
403
Yifan Hong1977ea32016-10-05 12:49:08 -0700404 // cases like android.hardware.foo@1.0::IFoo.Internal
405 // android.hardware.foo@1.0::Abc.Internal
406
407 // assume it is an interface, and try to import it.
408 const FQName interfaceName = fqName.getTopLevelType();
Yifan Hongf619fc72017-04-07 15:40:06 -0700409 // Do not enforce restrictions on imports.
Steven Moreland71f09132018-02-20 12:24:30 -0800410 AST* importAST;
411 status_t err = mCoordinator->parseOptional(interfaceName, &importAST, &mImportedASTs,
412 Coordinator::Enforce::NONE);
413 if (err != OK) return false;
414 // importAST nullptr == file doesn't exist
Yifan Hong1977ea32016-10-05 12:49:08 -0700415
416 if (importAST != nullptr) {
417 // cases like android.hardware.foo@1.0::IFoo.Internal
418 // and android.hardware.foo@1.0::IFoo
419 if (fqName == interfaceName) {
420 // import a single file.
421 // all previous single type imports are ignored.
422 // cases like android.hardware.foo@1.0::IFoo
423 // and android.hardware.foo@1.0::types
424 mImportedTypes.erase(importAST);
Steven Morelandb7c47472019-11-20 10:52:40 -0800425 addToImportedNamesGranular(fqName);
Yifan Hong1977ea32016-10-05 12:49:08 -0700426 return true;
427 }
428
429 // import a single type from this file
430 // cases like android.hardware.foo@1.0::IFoo.Internal
431 FQName matchingName;
Neel Mehta8b0f06a2019-07-11 18:13:21 -0700432 Type* match = importAST->findDefinedType(fqName, &matchingName);
Yifan Hong1977ea32016-10-05 12:49:08 -0700433 if (match == nullptr) {
434 return false;
435 }
436 // will automatically create a set if it does not exist
437 mImportedTypes[importAST].insert(match);
Steven Morelandb7c47472019-11-20 10:52:40 -0800438 addToImportedNamesGranular(fqName);
Yifan Hong1977ea32016-10-05 12:49:08 -0700439 return true;
Andreas Huber68f24592016-07-29 14:53:48 -0700440 }
Andreas Huber84f89de2016-07-28 15:39:51 -0700441
Yifan Hong1977ea32016-10-05 12:49:08 -0700442 // probably a type in types.hal, like android.hardware.foo@1.0::Abc.Internal
443 FQName typesFQName = fqName.getTypesForPackage();
Yifan Hongf619fc72017-04-07 15:40:06 -0700444
445 // Do not enforce restrictions on imports.
Steven Morelandc59326e2017-06-20 15:19:30 -0700446 importAST = mCoordinator->parse(typesFQName, &mImportedASTs, Coordinator::Enforce::NONE);
Yifan Hong1977ea32016-10-05 12:49:08 -0700447
448 if (importAST != nullptr) {
449 // Attempt to find Abc.Internal in types.
450 FQName matchingName;
Neel Mehta8b0f06a2019-07-11 18:13:21 -0700451 Type* match = importAST->findDefinedType(fqName, &matchingName);
Yifan Hong1977ea32016-10-05 12:49:08 -0700452 if (match == nullptr) {
453 return false;
454 }
455 // will automatically create a set if not exist
456 mImportedTypes[importAST].insert(match);
Steven Morelandb7c47472019-11-20 10:52:40 -0800457 addToImportedNamesGranular(fqName);
Yifan Hong1977ea32016-10-05 12:49:08 -0700458 return true;
459 }
460
461 // can't find an appropriate AST for fqName.
462 return false;
Andreas Hubereb1081f2016-07-28 13:13:24 -0700463}
464
Neel Mehta8b0f06a2019-07-11 18:13:21 -0700465bool AST::addImplicitImport(const FQName& fqName) {
466 CHECK(fqName.isFullyQualified());
467
468 if (importFQName(fqName)) {
469 mImplicitImports.push_back(fqName);
470 return true;
471 }
472
473 return false;
474}
475
476bool AST::addImport(const char* import, const Location& location) {
477 FQName fqName;
478 if (!FQName::parse(import, &fqName)) {
479 std::cerr << "ERROR: '" << import << "' is an invalid fully-qualified name." << std::endl;
480 return false;
481 }
482
483 fqName.applyDefaults(mPackage.package(), mPackage.version());
484
485 if (importFQName(fqName)) {
486 mImportStatements.push_back({fqName, location});
487 return true;
488 }
489
490 return false;
491}
492
Andreas Huber39fa7182016-08-19 14:27:33 -0700493void AST::addImportedAST(AST *ast) {
494 mImportedASTs.insert(ast);
495}
496
Timur Iskhakov565b0132017-09-06 18:07:11 -0700497FQName AST::makeFullName(const char* localName, Scope* scope) const {
498 std::vector<std::string> pathComponents{{localName}};
Timur Iskhakovcb0ba522017-07-17 20:01:37 -0700499 for (; scope != &mRootScope; scope = scope->parent()) {
Neel Mehta9200af02019-07-19 13:24:57 -0700500 pathComponents.push_back(scope->definedName());
Andreas Huber31629bc2016-08-03 09:06:40 -0700501 }
Timur Iskhakovcb0ba522017-07-17 20:01:37 -0700502
503 std::reverse(pathComponents.begin(), pathComponents.end());
504 std::string path = StringHelper::JoinStrings(pathComponents, ".");
Andreas Huber31629bc2016-08-03 09:06:40 -0700505
Timur Iskhakov565b0132017-09-06 18:07:11 -0700506 return FQName(mPackage.package(), mPackage.version(), path);
507}
Andreas Huber39fa7182016-08-19 14:27:33 -0700508
Timur Iskhakov565b0132017-09-06 18:07:11 -0700509void AST::addScopedType(NamedType* type, Scope* scope) {
510 scope->addType(type);
511 mDefinedTypesByFullName[type->fqName()] = type;
Andreas Huber31629bc2016-08-03 09:06:40 -0700512}
513
Steven Moreland8f8e8622019-11-04 12:38:38 -0800514LocalIdentifier* AST::lookupLocalIdentifier(const Reference<LocalIdentifier>& ref,
515 const Scope* scope) {
Timur Iskhakov82c048e2017-09-09 01:20:53 -0700516 const FQName& fqName = ref.getLookupFqName();
517
518 if (fqName.isIdentifier()) {
519 LocalIdentifier* iden = scope->lookupIdentifier(fqName.name());
520 if (iden == nullptr) {
521 std::cerr << "ERROR: identifier " << fqName.string() << " could not be found at "
522 << ref.location() << "\n";
523 return nullptr;
524 }
525 return iden;
526 } else {
527 std::string errorMsg;
528 EnumValue* enumValue = lookupEnumValue(fqName, &errorMsg, scope);
529 if (enumValue == nullptr) {
530 std::cerr << "ERROR: " << errorMsg << " at " << ref.location() << "\n";
531 return nullptr;
532 }
533 return enumValue;
534 }
535}
536
Steven Moreland8f8e8622019-11-04 12:38:38 -0800537EnumValue* AST::lookupEnumValue(const FQName& fqName, std::string* errorMsg, const Scope* scope) {
Yifan Hongf24fa852016-09-23 11:03:15 -0700538 FQName enumTypeName = fqName.typeName();
539 std::string enumValueName = fqName.valueName();
540
Yifan Hongf24fa852016-09-23 11:03:15 -0700541 CHECK(!enumValueName.empty());
542
Timur Iskhakovcb0ba522017-07-17 20:01:37 -0700543 Type* type = lookupType(enumTypeName, scope);
Yifan Hongf24fa852016-09-23 11:03:15 -0700544 if(type == nullptr) {
545 *errorMsg = "Cannot find type " + enumTypeName.string();
546 return nullptr;
547 }
Steven Morelandd965ce92017-11-27 16:05:34 -0800548 type = type->resolve();
Yifan Hongf24fa852016-09-23 11:03:15 -0700549 if(!type->isEnum()) {
550 *errorMsg = "Type " + enumTypeName.string() + " is not an enum type";
551 return nullptr;
552 }
553
554 EnumType *enumType = static_cast<EnumType *>(type);
555 EnumValue *v = static_cast<EnumValue *>(enumType->lookupIdentifier(enumValueName));
556 if(v == nullptr) {
557 *errorMsg = "Enum type " + enumTypeName.string() + " does not have " + enumValueName;
558 return nullptr;
559 }
Andreas Huber4ba5c972017-11-29 11:06:25 -0800560
561 mReferencedTypeNames.insert(enumType->fqName());
562
Yifan Hongf24fa852016-09-23 11:03:15 -0700563 return v;
564}
565
Steven Moreland8f8e8622019-11-04 12:38:38 -0800566Type* AST::lookupType(const FQName& fqName, const Scope* scope) {
Andreas Huberda51b8e2016-07-28 16:00:57 -0700567 if (fqName.name().empty()) {
568 // Given a package and version???
Yifan Hong1977ea32016-10-05 12:49:08 -0700569 return nullptr;
Andreas Huberda51b8e2016-07-28 16:00:57 -0700570 }
571
Yifan Hong87ff8232017-01-09 12:07:05 -0800572 Type *returnedType = nullptr;
573
Andreas Huber84f89de2016-07-28 15:39:51 -0700574 if (fqName.package().empty() && fqName.version().empty()) {
Yifan Hong87ff8232017-01-09 12:07:05 -0800575 // resolve locally first if possible.
Timur Iskhakovcb0ba522017-07-17 20:01:37 -0700576 returnedType = lookupTypeLocally(fqName, scope);
Yifan Hong87ff8232017-01-09 12:07:05 -0800577 if (returnedType != nullptr) {
578 return returnedType;
Andreas Huberc9410c72016-07-28 12:18:40 -0700579 }
580 }
581
Steven Moreland87e69dc2017-09-12 18:14:28 -0700582 status_t status = lookupAutofilledType(fqName, &returnedType);
583 if (status != OK) {
584 return nullptr;
585 }
586 if (returnedType != nullptr) {
587 return returnedType;
Yifan Hong87ff8232017-01-09 12:07:05 -0800588 }
589
590 return lookupTypeFromImports(fqName);
591}
592
593// Rule 0: try resolve locally
Steven Moreland8f8e8622019-11-04 12:38:38 -0800594Type* AST::lookupTypeLocally(const FQName& fqName, const Scope* scope) {
Yifan Hong87ff8232017-01-09 12:07:05 -0800595 CHECK(fqName.package().empty() && fqName.version().empty()
596 && !fqName.name().empty() && fqName.valueName().empty());
597
Timur Iskhakovcb0ba522017-07-17 20:01:37 -0700598 for (; scope != nullptr; scope = scope->parent()) {
599 Type* type = scope->lookupType(fqName);
Yifan Hong87ff8232017-01-09 12:07:05 -0800600 if (type != nullptr) {
Yifan Hong87ff8232017-01-09 12:07:05 -0800601 return type;
602 }
603 }
604
605 return nullptr;
606}
607
608// Rule 1: auto-fill with current package
609status_t AST::lookupAutofilledType(const FQName &fqName, Type **returnedType) {
Steven Moreland87e69dc2017-09-12 18:14:28 -0700610 CHECK(!fqName.name().empty() && fqName.valueName().empty());
Yifan Hong87ff8232017-01-09 12:07:05 -0800611
612 FQName autofilled = fqName;
613 autofilled.applyDefaults(mPackage.package(), mPackage.version());
614 FQName matchingName;
615 // Given this fully-qualified name, the type may be defined in this AST, or other files
616 // in import.
617 Type *local = findDefinedType(autofilled, &matchingName);
618 CHECK(local == nullptr || autofilled == matchingName);
Steven Moreland87e69dc2017-09-12 18:14:28 -0700619 Type* fromImport = lookupTypeFromImports(autofilled);
Yifan Hong87ff8232017-01-09 12:07:05 -0800620
621 if (local != nullptr && fromImport != nullptr && local != fromImport) {
622 // Something bad happen; two types have the same FQName.
623 std::cerr << "ERROR: Unable to resolve type name '"
624 << fqName.string()
625 << "' (i.e. '"
626 << autofilled.string()
627 << "'), multiple definitions found.\n";
628
629 return UNKNOWN_ERROR;
630 }
631 if (local != nullptr) {
632 *returnedType = local;
633 return OK;
634 }
635 // If fromImport is nullptr as well, return nullptr to fall through to next rule.
636 *returnedType = fromImport;
637 return OK;
638}
639
640// Rule 2: look at imports
641Type *AST::lookupTypeFromImports(const FQName &fqName) {
642
Andreas Huber39fa7182016-08-19 14:27:33 -0700643 Type *resolvedType = nullptr;
Iliyan Malchev800273d2016-09-02 15:25:07 -0700644 Type *returnedType = nullptr;
Andreas Huber39fa7182016-08-19 14:27:33 -0700645 FQName resolvedName;
Andreas Huber84f89de2016-07-28 15:39:51 -0700646
Andreas Huber39fa7182016-08-19 14:27:33 -0700647 for (const auto &importedAST : mImportedASTs) {
Yifan Hong1977ea32016-10-05 12:49:08 -0700648 if (mImportedTypes.find(importedAST) != mImportedTypes.end()) {
649 // ignore single type imports
650 continue;
651 }
Andreas Huber39fa7182016-08-19 14:27:33 -0700652 FQName matchingName;
653 Type *match = importedAST->findDefinedType(fqName, &matchingName);
Andreas Huber84f89de2016-07-28 15:39:51 -0700654
Andreas Huber39fa7182016-08-19 14:27:33 -0700655 if (match != nullptr) {
656 if (resolvedType != nullptr) {
657 std::cerr << "ERROR: Unable to resolve type name '"
658 << fqName.string()
659 << "', multiple matches found:\n";
Andreas Huber737080b2016-08-02 15:38:04 -0700660
Andreas Huber39fa7182016-08-19 14:27:33 -0700661 std::cerr << " " << resolvedName.string() << "\n";
662 std::cerr << " " << matchingName.string() << "\n";
663
Yifan Hong1977ea32016-10-05 12:49:08 -0700664 return nullptr;
665 }
666
667 resolvedType = match;
668 returnedType = resolvedType;
669 resolvedName = matchingName;
670
671 // Keep going even after finding a match.
672 }
673 }
674
675 for (const auto &pair : mImportedTypes) {
676 AST *importedAST = pair.first;
677 std::set<Type *> importedTypes = pair.second;
678
679 FQName matchingName;
680 Type *match = importedAST->findDefinedType(fqName, &matchingName);
681 if (match != nullptr &&
682 importedTypes.find(match) != importedTypes.end()) {
683 if (resolvedType != nullptr) {
684 std::cerr << "ERROR: Unable to resolve type name '"
685 << fqName.string()
686 << "', multiple matches found:\n";
687
688 std::cerr << " " << resolvedName.string() << "\n";
689 std::cerr << " " << matchingName.string() << "\n";
690
691 return nullptr;
Andreas Huber39fa7182016-08-19 14:27:33 -0700692 }
693
694 resolvedType = match;
Iliyan Malchev800273d2016-09-02 15:25:07 -0700695 returnedType = resolvedType;
Andreas Huber39fa7182016-08-19 14:27:33 -0700696 resolvedName = matchingName;
697
698 // Keep going even after finding a match.
699 }
700 }
701
702 if (resolvedType) {
Iliyan Malchev800273d2016-09-02 15:25:07 -0700703 returnedType = resolvedType;
704
705 // If the resolved type is not an interface, we need to determine
706 // whether it is defined in types.hal, or in some other interface. In
707 // the latter case, we need to emit a dependency for the interface in
708 // which the type is defined.
709 //
710 // Consider the following:
711 // android.hardware.tests.foo@1.0::Record
712 // android.hardware.tests.foo@1.0::IFoo.Folder
713 // android.hardware.tests.foo@1.0::Folder
714 //
715 // If Record is an interface, then we keep track of it for the purpose
716 // of emitting dependencies in the target language (for example #include
717 // in C++). If Record is a UDT, then we assume it is defined in
718 // types.hal in android.hardware.tests.foo@1.0.
719 //
720 // In the case of IFoo.Folder, the same applies. If IFoo is an
721 // interface, we need to track this for the purpose of emitting
722 // dependencies. If not, then it must have been defined in types.hal.
723 //
724 // In the case of just specifying Folder, the resolved type is
Yifan Hongfece6ec2017-01-12 17:04:04 -0800725 // android.hardware.tests.foo@1.0::Folder, and the same logic as
Iliyan Malchev800273d2016-09-02 15:25:07 -0700726 // above applies.
727
728 if (!resolvedType->isInterface()) {
Yifan Hongfece6ec2017-01-12 17:04:04 -0800729 FQName ifc = resolvedName.getTopLevelType();
Iliyan Malchev800273d2016-09-02 15:25:07 -0700730 for (const auto &importedAST : mImportedASTs) {
731 FQName matchingName;
732 Type *match = importedAST->findDefinedType(ifc, &matchingName);
733 if (match != nullptr && match->isInterface()) {
734 resolvedType = match;
735 }
736 }
737 }
738
Andreas Huber39fa7182016-08-19 14:27:33 -0700739 if (!resolvedType->isInterface()) {
Andreas Huber0e00de42016-08-03 09:56:02 -0700740 // Non-interface types are declared in the associated types header.
Yifan Hongfece6ec2017-01-12 17:04:04 -0800741 FQName typesName = resolvedName.getTypesForPackage();
Andreas Huber39fa7182016-08-19 14:27:33 -0700742
Andreas Huber0e00de42016-08-03 09:56:02 -0700743 mImportedNames.insert(typesName);
744 } else {
Andreas Huberbfd76212016-08-09 11:12:16 -0700745 // Do _not_ use fqName, i.e. the name we used to look up the type,
746 // but instead use the name of the interface we found.
747 // This is necessary because if fqName pointed to a typedef which
748 // in turn referenced the found interface we'd mistakenly use the
749 // name of the typedef instead of the proper name of the interface.
750
Andreas Huber4ba5c972017-11-29 11:06:25 -0800751 const FQName &typeName =
752 static_cast<Interface *>(resolvedType)->fqName();
753
754 mImportedNames.insert(typeName);
Andreas Huber0e00de42016-08-03 09:56:02 -0700755 }
Andreas Huber737080b2016-08-02 15:38:04 -0700756 }
757
Steven Morelandbb5c80b2016-10-05 11:07:36 -0700758 return returnedType;
Andreas Huber5345ec22016-07-29 13:33:27 -0700759}
760
Andreas Huber4ba5c972017-11-29 11:06:25 -0800761void AST::addToImportedNamesGranular(const FQName &fqName) {
762 if (fqName.package() == package().package()
763 && fqName.version() == package().version()) {
764 // Our own names are _defined_ here, not imported.
765 return;
766 }
767
768 mImportedNamesGranular.insert(fqName);
769}
770
Andreas Huber39fa7182016-08-19 14:27:33 -0700771Type *AST::findDefinedType(const FQName &fqName, FQName *matchingName) const {
Steven Morelandd537ab02016-09-12 10:32:01 -0700772 for (const auto &pair : mDefinedTypesByFullName) {
773 const FQName &key = pair.first;
774 Type* type = pair.second;
Andreas Huber5345ec22016-07-29 13:33:27 -0700775
Andreas Huber39fa7182016-08-19 14:27:33 -0700776 if (key.endsWith(fqName)) {
777 *matchingName = key;
Steven Morelandd537ab02016-09-12 10:32:01 -0700778 return type;
Andreas Huber5345ec22016-07-29 13:33:27 -0700779 }
Andreas Huber5345ec22016-07-29 13:33:27 -0700780 }
Andreas Huber39fa7182016-08-19 14:27:33 -0700781
782 return nullptr;
Andreas Huberc9410c72016-07-28 12:18:40 -0700783}
784
Neel Mehta55c065e2019-05-31 13:30:12 -0700785const std::vector<ImportStatement>& AST::getImportStatements() const {
786 return mImportStatements;
787}
788
Iliyan Malchev5bb14022016-08-09 15:04:39 -0700789void AST::getImportedPackages(std::set<FQName> *importSet) const {
Steven Moreland06a81cf2018-01-17 11:13:46 -0800790 for (const auto& fqName : mImportedNamesGranular) {
Yifan Hongfece6ec2017-01-12 17:04:04 -0800791 FQName packageName = fqName.getPackageAndVersion();
Andreas Huberd2943e12016-08-05 11:59:31 -0700792
793 if (packageName == mPackage) {
794 // We only care about external imports, not our own package.
795 continue;
796 }
797
798 importSet->insert(packageName);
799 }
800}
801
Yifan Hong40a373d2016-11-30 15:16:47 -0800802void AST::getImportedPackagesHierarchy(std::set<FQName> *importSet) const {
803 getImportedPackages(importSet);
Steven Moreland06a81cf2018-01-17 11:13:46 -0800804
Yifan Hong40a373d2016-11-30 15:16:47 -0800805 std::set<FQName> newSet;
806 for (const auto &ast : mImportedASTs) {
807 if (importSet->find(ast->package()) != importSet->end()) {
808 ast->getImportedPackagesHierarchy(&newSet);
809 }
810 }
811 importSet->insert(newSet.begin(), newSet.end());
812}
813
Zhuoyao Zhangc4e10602017-01-27 16:48:05 -0800814void AST::getAllImportedNames(std::set<FQName> *allImportNames) const {
815 for (const auto& name : mImportedNames) {
816 allImportNames->insert(name);
Steven Morelandc59326e2017-06-20 15:19:30 -0700817 AST* ast = mCoordinator->parse(name, nullptr /* imported */, Coordinator::Enforce::NONE);
Zhuoyao Zhangc4e10602017-01-27 16:48:05 -0800818 ast->getAllImportedNames(allImportNames);
819 }
820}
821
Andreas Huber4ba5c972017-11-29 11:06:25 -0800822void AST::getAllImportedNamesGranular(std::set<FQName> *allImportNames) const {
823 for (const auto& fqName : mImportedNamesGranular) {
824 if (fqName.name() == "types") {
825 // A package will export everything _defined_ but will not
826 // re-export anything it itself imported.
827 AST* ast = mCoordinator->parse(
828 fqName, nullptr /* imported */, Coordinator::Enforce::NONE);
829
Steven Morelandb7c47472019-11-20 10:52:40 -0800830 // imported names must have already been validated
831 CHECK(ast != nullptr) << fqName.string();
832
Andreas Huber4ba5c972017-11-29 11:06:25 -0800833 ast->addDefinedTypes(allImportNames);
834 } else {
835 allImportNames->insert(fqName);
836 }
837 }
838}
839
Andreas Huber0fa9e392016-08-31 09:05:44 -0700840bool AST::isJavaCompatible() const {
Timur Iskhakov5dc72fe2017-09-07 23:13:44 -0700841 return mRootScope.isJavaCompatible();
Andreas Huber0fa9e392016-08-31 09:05:44 -0700842}
843
Andreas Huber019d21d2016-10-03 12:59:47 -0700844void AST::appendToExportedTypesVector(
845 std::vector<const Type *> *exportedTypes) const {
Timur Iskhakovcb0ba522017-07-17 20:01:37 -0700846 mRootScope.appendToExportedTypesVector(exportedTypes);
Andreas Huber019d21d2016-10-03 12:59:47 -0700847}
848
Yifan Hongc8934042016-11-17 17:10:52 -0800849bool AST::isIBase() const {
Timur Iskhakovcb0ba522017-07-17 20:01:37 -0700850 Interface* iface = mRootScope.getInterface();
Yifan Hongc8934042016-11-17 17:10:52 -0800851 return iface != nullptr && iface->isIBase();
852}
853
Yifan Hong78b38d12017-02-13 18:14:46 +0000854const Interface *AST::getInterface() const {
Timur Iskhakovcb0ba522017-07-17 20:01:37 -0700855 return mRootScope.getInterface();
Yifan Hong78b38d12017-02-13 18:14:46 +0000856}
857
Steven Moreland19f11b52017-05-12 18:22:21 -0700858std::string AST::getBaseName() const {
Timur Iskhakovcb0ba522017-07-17 20:01:37 -0700859 const Interface* iface = mRootScope.getInterface();
Steven Moreland19f11b52017-05-12 18:22:21 -0700860
861 return iface ? iface->getBaseName() : "types";
862}
863
Andreas Huber308d8a22017-11-06 14:46:52 -0800864void AST::addDefinedTypes(std::set<FQName> *definedTypes) const {
865 std::for_each(
866 mDefinedTypesByFullName.begin(),
867 mDefinedTypesByFullName.end(),
868 [definedTypes](const auto &elem) {
869 if (!elem.second->isTypeDef()) {
870 definedTypes->insert(elem.first);
871 }
872 });
873}
874
875void AST::addReferencedTypes(std::set<FQName> *referencedTypes) const {
876 std::for_each(
877 mReferencedTypeNames.begin(),
878 mReferencedTypeNames.end(),
879 [referencedTypes](const auto &fqName) {
880 referencedTypes->insert(fqName);
881 });
882}
883
Neel Mehta0ee353f2019-05-30 17:40:29 -0700884bool AST::addMethod(Method* method, Interface* iface) {
885 if (iface->isIBase()) {
886 if (!mAllReservedMethods.emplace(method->name(), method).second) {
887 std::cerr << "ERROR: hidl-gen encountered duplicated reserved method " << method->name()
888 << std::endl;
889 return false;
890 }
891
892 // methods will be added to iface in addAllReservedMethodsToInterface
893 return true;
894 }
895
896 iface->addUserDefinedMethod(method);
897
898 return true;
899}
900
901bool AST::addAllReservedMethodsToInterface(Interface* iface) {
902 std::map<std::string, Method*> allReservedMethods(mAllReservedMethods);
903 // Looking for the IBase AST which is imported for all interfaces that are not IBase
904 for (const AST* importedAST : mImportedASTs) {
905 allReservedMethods.insert(importedAST->mAllReservedMethods.begin(),
906 importedAST->mAllReservedMethods.end());
907 }
908
909 return iface->addAllReservedMethods(allReservedMethods);
910}
911
Steven Moreland4d89ee22019-03-08 13:25:32 -0800912void AST::setHeader(const DocComment* header) {
913 mHeader = header;
914}
915
916const DocComment* AST::getHeader() const {
917 return mHeader;
918}
919
920void AST::addUnhandledComment(const DocComment* docComment) {
921 if (docComment != nullptr) mUnhandledComments.push_back(docComment);
922}
923
924const std::vector<const DocComment*> AST::getUnhandledComments() const {
925 return mUnhandledComments;
926}
927
Andreas Huberc9410c72016-07-28 12:18:40 -0700928} // namespace android;