blob: b7e2e2b441a51e40a556dd6a171897df1534e13c [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 {
Zhuoyao Zhang40404fe2017-02-11 19:50:33 -080033 std::string ifaceName;
34 if (AST::isInterface(&ifaceName)) {
35 const Interface *iface = mRootScope->getInterface();
36 status_t status = iface->emitVtsAttributeDeclaration(out);
37 if (status != OK) {
38 return status;
Zhuoyao Zhang864c7712016-08-16 15:35:28 -070039 }
Zhuoyao Zhang40404fe2017-02-11 19:50:33 -080040 } else {
41 for (const auto &type : mRootScope->getSubTypes()) {
42 // Skip for TypeDef as it is just an alias of a defined type.
43 if (type->isTypeDef()) {
44 continue;
45 }
46 out << "attribute: {\n";
47 out.indent();
48 status_t status = type->emitVtsTypeDeclarations(out);
49 if (status != OK) {
50 return status;
51 }
52 out.unindent();
53 out << "}\n\n";
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070054 }
Zhuoyao Zhang40404fe2017-02-11 19:50:33 -080055 }
56 return OK;
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070057}
58
59status_t AST::generateVts(const std::string &outputPath) const {
60 std::string path = outputPath;
61 path.append(mCoordinator->convertPackageRootToPath(mPackage));
62 path.append(mCoordinator->getPackagePath(mPackage, true /* relative */));
63
64 std::string ifaceName;
65 std::string baseName;
66
67 bool isInterface = true;
68 if (!AST::isInterface(&ifaceName)) {
69 baseName = "types";
70 isInterface = false;
71 } else {
Jayant Chowdhary3f32c1f2016-09-15 16:53:56 -070072 const Interface *iface = mRootScope->getInterface();
73 baseName = iface->getBaseName();
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070074 }
75
76 path.append(baseName);
77 path.append(".vts");
78
79 CHECK(Coordinator::MakeParentHierarchy(path));
80 FILE *file = fopen(path.c_str(), "w");
81
82 if (file == NULL) {
83 return -errno;
84 }
85
86 Formatter out(file);
87
88 out << "component_class: HAL_HIDL\n";
Yifan Hong90ea87f2016-11-01 14:25:47 -070089 out << "component_type_version: " << mPackage.version()
Zhuoyao Zhang8f492942016-09-28 14:27:56 -070090 << "\n";
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070091 out << "component_name: \""
92 << (isInterface ? ifaceName : "types")
93 << "\"\n\n";
94
95 out << "package: \"" << mPackage.package() << "\"\n\n";
96
Zhuoyao Zhangc4e10602017-01-27 16:48:05 -080097 // Generate import statement for all imported interface/types.
98 std::set<FQName> allImportedNames;
99 getAllImportedNames(&allImportedNames);
100 for (const auto &name : allImportedNames) {
Zhuoyao Zhang5deccac2016-12-16 10:07:34 -0800101 // ignore IBase.
Zhuoyao Zhangc4e10602017-01-27 16:48:05 -0800102 if (name != gIBaseFqName) {
103 out << "import: \"" << name.string() << "\"\n";
Zhuoyao Zhang5deccac2016-12-16 10:07:34 -0800104 }
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700105 }
106
107 out << "\n";
108
109 if (isInterface) {
110 const Interface *iface = mRootScope->getInterface();
111 out << "interface: {\n";
112 out.indent();
113
Yifan Hong10fe0b52016-10-19 14:20:17 -0700114 std::vector<const Interface *> chain = iface->typeChain();
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700115
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700116 // Generate all the attribute declarations first.
Zhuoyao Zhanga6239b32017-01-11 12:48:58 -0800117 status_t status = emitVtsTypeDeclarations(out);
118 if (status != OK) {
119 return status;
120 }
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700121 // Generate all the method declarations.
122 for (auto it = chain.rbegin(); it != chain.rend(); ++it) {
123 const Interface *superInterface = *it;
124 status_t status = superInterface->emitVtsMethodDeclaration(out);
125 if (status != OK) {
126 return status;
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700127 }
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700128 }
129
130 out.unindent();
131 out << "}\n";
132 } else {
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700133 status_t status = emitVtsTypeDeclarations(out);
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700134 if (status != OK) {
135 return status;
136 }
137 }
138 return OK;
139}
140
141} // namespace android