blob: 8a37ae3d5100bb97fcb827e11a96b3d12ef9bbaf [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";
Yifan Hong90ea87f2016-11-01 14:25:47 -070056 out << "component_type_version: " << mPackage.version()
Zhuoyao Zhang8f492942016-09-28 14:27:56 -070057 << "\n";
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070058 out << "component_name: \""
Steven Moreland19f11b52017-05-12 18:22:21 -070059 << (iface ? iface->localName() : "types")
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070060 << "\"\n\n";
61
62 out << "package: \"" << mPackage.package() << "\"\n\n";
63
Zhuoyao Zhangc4e10602017-01-27 16:48:05 -080064 // Generate import statement for all imported interface/types.
65 std::set<FQName> allImportedNames;
66 getAllImportedNames(&allImportedNames);
67 for (const auto &name : allImportedNames) {
Zhuoyao Zhang5deccac2016-12-16 10:07:34 -080068 // ignore IBase.
Zhuoyao Zhangc4e10602017-01-27 16:48:05 -080069 if (name != gIBaseFqName) {
70 out << "import: \"" << name.string() << "\"\n";
Zhuoyao Zhang5deccac2016-12-16 10:07:34 -080071 }
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070072 }
73
74 out << "\n";
75
Steven Moreland19f11b52017-05-12 18:22:21 -070076 if (isInterface()) {
Timur Iskhakovcb0ba522017-07-17 20:01:37 -070077 const Interface* iface = mRootScope.getInterface();
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070078 out << "interface: {\n";
79 out.indent();
80
Yifan Hong10fe0b52016-10-19 14:20:17 -070081 std::vector<const Interface *> chain = iface->typeChain();
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070082
Zhuoyao Zhang864c7712016-08-16 15:35:28 -070083 // Generate all the attribute declarations first.
Steven Moreland6ec9eb92018-02-16 14:21:49 -080084 emitVtsTypeDeclarations(out);
85
Zhuoyao Zhang864c7712016-08-16 15:35:28 -070086 // Generate all the method declarations.
87 for (auto it = chain.rbegin(); it != chain.rend(); ++it) {
88 const Interface *superInterface = *it;
Steven Moreland6ec9eb92018-02-16 14:21:49 -080089 superInterface->emitVtsMethodDeclaration(out);
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070090 }
91
92 out.unindent();
93 out << "}\n";
94 } else {
Steven Moreland6ec9eb92018-02-16 14:21:49 -080095 emitVtsTypeDeclarations(out);
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070096 }
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070097}
98
99} // namespace android