blob: 3515e9ade87abc686eab4ed93d21a443b830e68c [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
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070017#include "AST.h"
18
19#include "Annotation.h"
20#include "Coordinator.h"
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070021#include "Interface.h"
22#include "Method.h"
23#include "Scope.h"
24
Iliyan Malcheva72e0d22016-09-09 11:03:08 -070025#include <hidl-util/Formatter.h>
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070026#include <android-base/logging.h>
27#include <string>
28#include <vector>
29
30namespace android {
31
Steven Moreland6ec9eb92018-02-16 14:21:49 -080032void AST::emitVtsTypeDeclarations(Formatter& out) const {
Steven Moreland19f11b52017-05-12 18:22:21 -070033 if (AST::isInterface()) {
Timur Iskhakovcb0ba522017-07-17 20:01:37 -070034 const Interface* iface = mRootScope.getInterface();
35 return iface->emitVtsAttributeDeclaration(out);
Zhuoyao Zhang864c7712016-08-16 15:35:28 -070036 }
Steven Moreland19f11b52017-05-12 18:22:21 -070037
Timur Iskhakovcb0ba522017-07-17 20:01:37 -070038 for (const auto& type : mRootScope.getSubTypes()) {
Steven Moreland19f11b52017-05-12 18:22:21 -070039 // Skip for TypeDef as it is just an alias of a defined type.
40 if (type->isTypeDef()) {
41 continue;
42 }
43 out << "attribute: {\n";
44 out.indent();
Steven Moreland6ec9eb92018-02-16 14:21:49 -080045 type->emitVtsTypeDeclarations(out);
Steven Moreland19f11b52017-05-12 18:22:21 -070046 out.unindent();
47 out << "}\n\n";
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070048 }
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070049}
50
Steven Moreland6ec9eb92018-02-16 14:21:49 -080051void AST::generateVts(Formatter& out) const {
Steven Moreland19f11b52017-05-12 18:22:21 -070052 std::string baseName = AST::getBaseName();
53 const Interface *iface = AST::getInterface();
54
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070055 out << "component_class: HAL_HIDL\n";
Neel Mehta257cce02019-07-19 13:24:57 -070056 out << "component_name: \"" << (iface ? iface->definedName() : "types") << "\"\n\n";
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070057
Hans Chen7ede3042018-06-05 15:18:15 -070058 out << "component_type_version_major: " << mPackage.getPackageMajorVersion() << "\n";
59 out << "component_type_version_minor: " << mPackage.getPackageMinorVersion() << "\n";
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070060 out << "package: \"" << mPackage.package() << "\"\n\n";
61
Zhuoyao Zhangc4e10602017-01-27 16:48:05 -080062 // Generate import statement for all imported interface/types.
63 std::set<FQName> allImportedNames;
64 getAllImportedNames(&allImportedNames);
65 for (const auto &name : allImportedNames) {
Zhuoyao Zhang5deccac2016-12-16 10:07:34 -080066 // ignore IBase.
Zhuoyao Zhangc4e10602017-01-27 16:48:05 -080067 if (name != gIBaseFqName) {
68 out << "import: \"" << name.string() << "\"\n";
Zhuoyao Zhang5deccac2016-12-16 10:07:34 -080069 }
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070070 }
71
72 out << "\n";
73
Steven Moreland19f11b52017-05-12 18:22:21 -070074 if (isInterface()) {
Timur Iskhakovcb0ba522017-07-17 20:01:37 -070075 const Interface* iface = mRootScope.getInterface();
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070076 out << "interface: {\n";
77 out.indent();
78
Zhuoyao Zhang864c7712016-08-16 15:35:28 -070079 // Generate all the attribute declarations first.
Steven Moreland6ec9eb92018-02-16 14:21:49 -080080 emitVtsTypeDeclarations(out);
81
Zhuoyao Zhang864c7712016-08-16 15:35:28 -070082 // Generate all the method declarations.
Zhuoyao Zhange59c9332018-07-20 14:16:04 -070083 for (const Interface* superInterface : iface->superTypeChain()) {
84 superInterface->emitVtsMethodDeclaration(out, true /*isInhereted*/);
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070085 }
86
Zhuoyao Zhange59c9332018-07-20 14:16:04 -070087 iface->emitVtsMethodDeclaration(out, false /*isInhereted*/);
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070088 out.unindent();
89 out << "}\n";
90 } else {
Steven Moreland6ec9eb92018-02-16 14:21:49 -080091 emitVtsTypeDeclarations(out);
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070092 }
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070093}
94
95} // namespace android