blob: 5224d1767b68d3cb906dc07dc94d40a6f41413ec [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
Zhuoyao Zhang864c7712016-08-16 15:35:28 -070032status_t AST::emitVtsTypeDeclarations(Formatter &out) const {
33 std::set<AST *> allImportedASTs;
34 return emitVtsTypeDeclarationsHelper(out, &allImportedASTs);
35}
36
37status_t AST::emitVtsTypeDeclarationsHelper(
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070038 Formatter &out,
Zhuoyao Zhang864c7712016-08-16 15:35:28 -070039 std::set<AST *> *allImportSet) const {
40 // First, generate vts type declaration for all imported AST.
41 for (const auto &ast : mImportedASTs) {
42 // Already processed, skip.
43 if (allImportSet->find(ast) != allImportSet->end()) {
44 continue;
45 }
46 allImportSet->insert(ast);
47 std::string ifaceName;
48 // We only care about types.hal.
49 if (!ast->isInterface(&ifaceName)) {
50 status_t status = ast->emitVtsTypeDeclarationsHelper(
51 out, allImportSet);
52 if (status != OK) {
53 return status;
54 }
55 }
56 }
57 // Next, generate vts type declaration for the current AST.
58 for (const auto &type : mRootScope->getSubTypes()) {
Zhuoyao Zhang36849132016-08-25 17:18:44 -070059 // Skip for TypeDef as it is just an alias of a defined type.
60 if (type->isTypeDef()) {
61 continue;
62 }
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070063 out << "attribute: {\n";
64 out.indent();
65 status_t status = type->emitVtsTypeDeclarations(out);
66 if (status != OK) {
67 return status;
68 }
69 out.unindent();
70 out << "}\n\n";
71 }
72 return OK;
73}
74
75status_t AST::generateVts(const std::string &outputPath) const {
76 std::string path = outputPath;
77 path.append(mCoordinator->convertPackageRootToPath(mPackage));
78 path.append(mCoordinator->getPackagePath(mPackage, true /* relative */));
79
80 std::string ifaceName;
81 std::string baseName;
82
83 bool isInterface = true;
84 if (!AST::isInterface(&ifaceName)) {
85 baseName = "types";
86 isInterface = false;
87 } else {
Jayant Chowdhary3f32c1f2016-09-15 16:53:56 -070088 const Interface *iface = mRootScope->getInterface();
89 baseName = iface->getBaseName();
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070090 }
91
92 path.append(baseName);
93 path.append(".vts");
94
95 CHECK(Coordinator::MakeParentHierarchy(path));
96 FILE *file = fopen(path.c_str(), "w");
97
98 if (file == NULL) {
99 return -errno;
100 }
101
102 Formatter out(file);
103
104 out << "component_class: HAL_HIDL\n";
Yifan Hong90ea87f2016-11-01 14:25:47 -0700105 out << "component_type_version: " << mPackage.version()
Zhuoyao Zhang8f492942016-09-28 14:27:56 -0700106 << "\n";
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700107 out << "component_name: \""
108 << (isInterface ? ifaceName : "types")
109 << "\"\n\n";
110
111 out << "package: \"" << mPackage.package() << "\"\n\n";
112
113 for (const auto &item : mImportedNames) {
Zhuoyao Zhang5deccac2016-12-16 10:07:34 -0800114 // ignore IBase.
115 if (item != gIBaseFqName) {
116 out << "import: \"" << item.string() << "\"\n";
117 }
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700118 }
119
120 out << "\n";
121
122 if (isInterface) {
123 const Interface *iface = mRootScope->getInterface();
124 out << "interface: {\n";
125 out.indent();
126
Yifan Hong10fe0b52016-10-19 14:20:17 -0700127 std::vector<const Interface *> chain = iface->typeChain();
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700128
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700129 // Generate all the attribute declarations first.
130 for (auto it = chain.rbegin(); it != chain.rend(); ++it) {
131 const Interface *superInterface = *it;
132 status_t status = superInterface->emitVtsAttributeDeclaration(out);
133 if (status != OK) {
134 return status;
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700135 }
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700136 }
137
138 // Generate all the method declarations.
139 for (auto it = chain.rbegin(); it != chain.rend(); ++it) {
140 const Interface *superInterface = *it;
141 status_t status = superInterface->emitVtsMethodDeclaration(out);
142 if (status != OK) {
143 return status;
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700144 }
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700145 }
146
147 out.unindent();
148 out << "}\n";
149 } else {
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700150 status_t status = emitVtsTypeDeclarations(out);
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700151 if (status != OK) {
152 return status;
153 }
154 }
155 return OK;
156}
157
158} // namespace android
159
160
161
162