blob: 874743b75adeabddba78f090548f4d9b4078638f [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 {
83 std::string ifaceName;
84 if (!AST::isInterface(&ifaceName)) {
85 // types.hal does not get a stub header.
86 return OK;
87 }
88
89 const Interface *iface = mRootScope->getInterface();
90
Jayant Chowdhary3f32c1f2016-09-15 16:53:56 -070091 const std::string baseName = iface->getBaseName();
Steven Moreland9c387612016-09-07 09:54:26 -070092
93 std::string path = outputPath;
94 path.append(baseName);
95 path.append(".h");
96
97 CHECK(Coordinator::MakeParentHierarchy(path));
98 FILE *file = fopen(path.c_str(), "w");
99
100 if (file == NULL) {
101 return -errno;
102 }
103
104 Formatter out(file);
105
Steven Moreland5708edf2016-11-04 15:33:31 +0000106 const std::string guard = makeHeaderGuard(baseName, false /* indicateGenerated */);
Steven Moreland9c387612016-09-07 09:54:26 -0700107
108 out << "#ifndef " << guard << "\n";
109 out << "#define " << guard << "\n\n";
110
Yifan Hongeefe4f22017-01-04 15:32:42 -0800111 generateCppPackageInclude(out, mPackage, iface->localName());
Steven Moreland9c387612016-09-07 09:54:26 -0700112
Andreas Huber4bcf97d2016-08-30 11:27:49 -0700113 out << "#include <hidl/MQDescriptor.h>\n";
Steven Moreland41c6d2e2016-11-07 12:26:54 -0800114 out << "#include <hidl/Status.h>\n\n";
Steven Moreland9c387612016-09-07 09:54:26 -0700115
116 enterLeaveNamespace(out, true /* enter */);
117 out << "namespace implementation {\n\n";
118
Steven Morelande429a262016-11-15 09:54:32 -0800119 out << "using ::android::hardware::hidl_array;\n";
Martijn Coenen99e6beb2016-12-01 15:48:42 +0100120 out << "using ::android::hardware::hidl_memory;\n";
Steven Morelande429a262016-11-15 09:54:32 -0800121 out << "using ::android::hardware::hidl_string;\n";
122 out << "using ::android::hardware::hidl_vec;\n";
Steven Moreland9c387612016-09-07 09:54:26 -0700123 out << "using ::android::hardware::Return;\n";
124 out << "using ::android::hardware::Void;\n";
Steven Moreland9c387612016-09-07 09:54:26 -0700125 out << "using ::android::sp;\n";
126
127 out << "\n";
128
129 out << "struct "
130 << baseName
131 << " : public "
132 << ifaceName
133 << " {\n";
134
135 out.indent();
136
Yifan Hong068c5522016-10-31 14:07:25 -0700137 status_t err = generateMethods(out, [&](const Method *method, const Interface *) {
138 // ignore HIDL reserved methods -- implemented in IFoo already.
139 if (method->isHidlReserved()) {
140 return OK;
141 }
142 method->generateCppSignature(out, "" /* className */,
143 false /* specifyNamespaces */);
144 out << " override;\n";
145 return OK;
146 });
Steven Moreland9c387612016-09-07 09:54:26 -0700147
148 if (err != OK) {
149 return err;
150 }
151
152 out.unindent();
153
154 out << "};\n\n";
155
Steven Moreland3918fcc2017-04-21 10:54:27 -0700156 out << "// FIXME: most likely delete, this is only for passthrough implementations\n"
157 << "// extern \"C\" "
Steven Moreland9c387612016-09-07 09:54:26 -0700158 << ifaceName
159 << "* ";
160 generateFetchSymbol(out, ifaceName);
161 out << "(const char* name);\n\n";
162
163 out << "} // namespace implementation\n";
164 enterLeaveNamespace(out, false /* leave */);
165
166 out << "\n#endif // " << guard << "\n";
167
168 return OK;
169}
170
171status_t AST::generateStubImplSource(const std::string &outputPath) const {
172 std::string ifaceName;
173 if (!AST::isInterface(&ifaceName)) {
174 // types.hal does not get a stub header.
175 return OK;
176 }
177
Jayant Chowdhary3f32c1f2016-09-15 16:53:56 -0700178 const Interface *iface = mRootScope->getInterface();
179 const std::string baseName = iface->getBaseName();
Steven Moreland9c387612016-09-07 09:54:26 -0700180
181 std::string path = outputPath;
182 path.append(baseName);
183 path.append(".cpp");
184
185 CHECK(Coordinator::MakeParentHierarchy(path));
186 FILE *file = fopen(path.c_str(), "w");
187
188 if (file == NULL) {
189 return -errno;
190 }
191
192 Formatter out(file);
193
194 out << "#include \"" << baseName << ".h\"\n\n";
195
196 enterLeaveNamespace(out, true /* enter */);
197 out << "namespace implementation {\n\n";
198
Yifan Hong068c5522016-10-31 14:07:25 -0700199 status_t err = generateMethods(out, [&](const Method *method, const Interface *) {
200 return generateStubImplMethod(out, baseName, method);
201 });
Steven Moreland9c387612016-09-07 09:54:26 -0700202
Steven Moreland60818632017-02-04 00:33:42 -0800203 if (err != OK) {
204 return err;
205 }
206
Steven Moreland3918fcc2017-04-21 10:54:27 -0700207 out.setLinePrefix("//");
Steven Moreland9c387612016-09-07 09:54:26 -0700208 out << ifaceName
209 << "* ";
210 generateFetchSymbol(out, ifaceName);
211 out << "(const char* /* name */) {\n";
212 out.indent();
213 out << "return new " << baseName << "();\n";
214 out.unindent();
215 out << "}\n\n";
Steven Moreland3918fcc2017-04-21 10:54:27 -0700216 out.unsetLinePrefix();
Steven Moreland9c387612016-09-07 09:54:26 -0700217
Yifan Hongdfc4b9c2016-12-02 16:31:31 -0800218 out << "} // namespace implementation\n";
Steven Moreland9c387612016-09-07 09:54:26 -0700219 enterLeaveNamespace(out, false /* leave */);
220
221 return OK;
222}
223
224} // namespace android