blob: 7025a87d74f325827209eb8579da2fa01dbe6ef0 [file] [log] [blame]
Steven Moreland9c387612016-09-07 09:54:26 -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
17#include "AST.h"
18
19#include "Coordinator.h"
20#include "EnumType.h"
Steven Moreland9c387612016-09-07 09:54:26 -070021#include "Interface.h"
22#include "Method.h"
23#include "ScalarType.h"
24#include "Scope.h"
25
26#include <algorithm>
Iliyan Malcheva72e0d22016-09-09 11:03:08 -070027#include <hidl-util/Formatter.h>
Steven Moreland9c387612016-09-07 09:54:26 -070028#include <android-base/logging.h>
29#include <string>
30#include <vector>
31#include <set>
32
Steven Moreland9c387612016-09-07 09:54:26 -070033namespace android {
34
Steven Moreland9c387612016-09-07 09:54:26 -070035status_t AST::generateCppImpl(const std::string &outputPath) const {
36 status_t err = generateStubImplHeader(outputPath);
37
38 if (err == OK) {
39 err = generateStubImplSource(outputPath);
40 }
41
42 return err;
43}
44
45void AST::generateFetchSymbol(Formatter &out, const std::string& ifaceName) const {
46 out << "HIDL_FETCH_" << ifaceName;
47}
48
49status_t AST::generateStubImplMethod(Formatter &out,
50 const std::string &className,
Yifan Hong068c5522016-10-31 14:07:25 -070051 const Method *method) const {
Steven Moreland9c387612016-09-07 09:54:26 -070052
Yifan Hong1254b552016-10-27 15:03:29 -070053 // ignore HIDL reserved methods -- implemented in IFoo already.
54 if (method->isHidlReserved()) {
55 return OK;
56 }
57
Yifan Hong068c5522016-10-31 14:07:25 -070058 method->generateCppSignature(out, className, false /* specifyNamespaces */);
Steven Moreland9c387612016-09-07 09:54:26 -070059
60 out << " {\n";
61
62 out.indent();
63 out << "// TODO implement\n";
64
65 const TypedVar *elidedReturn = method->canElideCallback();
66
67 if (elidedReturn == nullptr) {
68 out << "return Void();\n";
69 } else {
Steven Moreland9c387612016-09-07 09:54:26 -070070 out << "return "
Yifan Hong3b320f82016-11-01 15:15:54 -070071 << elidedReturn->type().getCppResultType()
Steven Moreland9c387612016-09-07 09:54:26 -070072 << " {};\n";
73 }
74
75 out.unindent();
76
77 out << "}\n\n";
78
79 return OK;
80}
81
Steven Moreland9c387612016-09-07 09:54:26 -070082status_t AST::generateStubImplHeader(const std::string &outputPath) const {
Steven Moreland19f11b52017-05-12 18:22:21 -070083 if (!AST::isInterface()) {
Steven Moreland9c387612016-09-07 09:54:26 -070084 // types.hal does not get a stub header.
85 return OK;
86 }
87
88 const Interface *iface = mRootScope->getInterface();
Jayant Chowdhary3f32c1f2016-09-15 16:53:56 -070089 const std::string baseName = iface->getBaseName();
Steven Moreland9c387612016-09-07 09:54:26 -070090
91 std::string path = outputPath;
92 path.append(baseName);
93 path.append(".h");
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
Steven Moreland5708edf2016-11-04 15:33:31 +0000104 const std::string guard = makeHeaderGuard(baseName, false /* indicateGenerated */);
Steven Moreland9c387612016-09-07 09:54:26 -0700105
106 out << "#ifndef " << guard << "\n";
107 out << "#define " << guard << "\n\n";
108
Yifan Hongeefe4f22017-01-04 15:32:42 -0800109 generateCppPackageInclude(out, mPackage, iface->localName());
Steven Moreland9c387612016-09-07 09:54:26 -0700110
Andreas Huber4bcf97d2016-08-30 11:27:49 -0700111 out << "#include <hidl/MQDescriptor.h>\n";
Steven Moreland41c6d2e2016-11-07 12:26:54 -0800112 out << "#include <hidl/Status.h>\n\n";
Steven Moreland9c387612016-09-07 09:54:26 -0700113
114 enterLeaveNamespace(out, true /* enter */);
115 out << "namespace implementation {\n\n";
116
Steven Morelande429a262016-11-15 09:54:32 -0800117 out << "using ::android::hardware::hidl_array;\n";
Martijn Coenen99e6beb2016-12-01 15:48:42 +0100118 out << "using ::android::hardware::hidl_memory;\n";
Steven Morelande429a262016-11-15 09:54:32 -0800119 out << "using ::android::hardware::hidl_string;\n";
120 out << "using ::android::hardware::hidl_vec;\n";
Steven Moreland9c387612016-09-07 09:54:26 -0700121 out << "using ::android::hardware::Return;\n";
122 out << "using ::android::hardware::Void;\n";
Steven Moreland9c387612016-09-07 09:54:26 -0700123 out << "using ::android::sp;\n";
124
125 out << "\n";
126
127 out << "struct "
128 << baseName
129 << " : public "
Steven Moreland19f11b52017-05-12 18:22:21 -0700130 << iface->localName()
Steven Moreland9c387612016-09-07 09:54:26 -0700131 << " {\n";
132
133 out.indent();
134
Yifan Hong068c5522016-10-31 14:07:25 -0700135 status_t err = generateMethods(out, [&](const Method *method, const Interface *) {
136 // ignore HIDL reserved methods -- implemented in IFoo already.
137 if (method->isHidlReserved()) {
138 return OK;
139 }
140 method->generateCppSignature(out, "" /* className */,
141 false /* specifyNamespaces */);
142 out << " override;\n";
143 return OK;
144 });
Steven Moreland9c387612016-09-07 09:54:26 -0700145
146 if (err != OK) {
147 return err;
148 }
149
150 out.unindent();
151
152 out << "};\n\n";
153
Steven Moreland3918fcc2017-04-21 10:54:27 -0700154 out << "// FIXME: most likely delete, this is only for passthrough implementations\n"
155 << "// extern \"C\" "
Steven Moreland19f11b52017-05-12 18:22:21 -0700156 << iface->localName()
Steven Moreland9c387612016-09-07 09:54:26 -0700157 << "* ";
Steven Moreland19f11b52017-05-12 18:22:21 -0700158 generateFetchSymbol(out, iface->localName());
Steven Moreland9c387612016-09-07 09:54:26 -0700159 out << "(const char* name);\n\n";
160
161 out << "} // namespace implementation\n";
162 enterLeaveNamespace(out, false /* leave */);
163
164 out << "\n#endif // " << guard << "\n";
165
166 return OK;
167}
168
169status_t AST::generateStubImplSource(const std::string &outputPath) const {
Steven Moreland19f11b52017-05-12 18:22:21 -0700170 if (!AST::isInterface()) {
Steven Moreland9c387612016-09-07 09:54:26 -0700171 // types.hal does not get a stub header.
172 return OK;
173 }
174
Jayant Chowdhary3f32c1f2016-09-15 16:53:56 -0700175 const Interface *iface = mRootScope->getInterface();
176 const std::string baseName = iface->getBaseName();
Steven Moreland9c387612016-09-07 09:54:26 -0700177
178 std::string path = outputPath;
179 path.append(baseName);
180 path.append(".cpp");
181
182 CHECK(Coordinator::MakeParentHierarchy(path));
183 FILE *file = fopen(path.c_str(), "w");
184
185 if (file == NULL) {
186 return -errno;
187 }
188
189 Formatter out(file);
190
191 out << "#include \"" << baseName << ".h\"\n\n";
192
193 enterLeaveNamespace(out, true /* enter */);
194 out << "namespace implementation {\n\n";
195
Yifan Hong068c5522016-10-31 14:07:25 -0700196 status_t err = generateMethods(out, [&](const Method *method, const Interface *) {
197 return generateStubImplMethod(out, baseName, method);
198 });
Steven Moreland9c387612016-09-07 09:54:26 -0700199
Steven Moreland60818632017-02-04 00:33:42 -0800200 if (err != OK) {
201 return err;
202 }
203
Steven Moreland3918fcc2017-04-21 10:54:27 -0700204 out.setLinePrefix("//");
Steven Moreland19f11b52017-05-12 18:22:21 -0700205 out << iface->localName()
Steven Moreland9c387612016-09-07 09:54:26 -0700206 << "* ";
Steven Moreland19f11b52017-05-12 18:22:21 -0700207 generateFetchSymbol(out, iface->localName());
Steven Moreland9c387612016-09-07 09:54:26 -0700208 out << "(const char* /* name */) {\n";
209 out.indent();
210 out << "return new " << baseName << "();\n";
211 out.unindent();
212 out << "}\n\n";
Steven Moreland3918fcc2017-04-21 10:54:27 -0700213 out.unsetLinePrefix();
Steven Moreland9c387612016-09-07 09:54:26 -0700214
Yifan Hongdfc4b9c2016-12-02 16:31:31 -0800215 out << "} // namespace implementation\n";
Steven Moreland9c387612016-09-07 09:54:26 -0700216 enterLeaveNamespace(out, false /* leave */);
217
218 return OK;
219}
220
221} // namespace android