blob: c686be2e0e4fd72c4c0f74ed36a233af92783fff [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
Andreas Huber881227d2016-08-02 14:20:21 -070017#include "AST.h"
18
19#include "Coordinator.h"
Iliyan Malchev40d474a2016-08-16 06:20:17 -070020#include "EnumType.h"
Andreas Huber881227d2016-08-02 14:20:21 -070021#include "Interface.h"
Andreas Huber6755e9d2017-04-06 11:09:07 -070022#include "HidlTypeAssertion.h"
Andreas Huber881227d2016-08-02 14:20:21 -070023#include "Method.h"
Iliyan Malchev40d474a2016-08-16 06:20:17 -070024#include "ScalarType.h"
Andreas Huber881227d2016-08-02 14:20:21 -070025#include "Scope.h"
26
Andreas Huberdca261f2016-08-04 13:47:51 -070027#include <algorithm>
Iliyan Malcheva72e0d22016-09-09 11:03:08 -070028#include <hidl-util/Formatter.h>
Steven Moreland5708edf2016-11-04 15:33:31 +000029#include <hidl-util/StringHelper.h>
Andreas Huber881227d2016-08-02 14:20:21 -070030#include <android-base/logging.h>
Andreas Huberdca261f2016-08-04 13:47:51 -070031#include <string>
Andreas Huber881227d2016-08-02 14:20:21 -070032#include <vector>
33
34namespace android {
35
Andreas Huberb82318c2016-08-02 14:45:54 -070036status_t AST::generateCpp(const std::string &outputPath) const {
37 status_t err = generateInterfaceHeader(outputPath);
Andreas Huber881227d2016-08-02 14:20:21 -070038
39 if (err == OK) {
Andreas Huberb82318c2016-08-02 14:45:54 -070040 err = generateStubHeader(outputPath);
Andreas Huber881227d2016-08-02 14:20:21 -070041 }
42
43 if (err == OK) {
Steven Moreland40786312016-08-16 10:29:40 -070044 err = generateHwBinderHeader(outputPath);
45 }
46
47 if (err == OK) {
Andreas Huberb82318c2016-08-02 14:45:54 -070048 err = generateProxyHeader(outputPath);
Andreas Huber881227d2016-08-02 14:20:21 -070049 }
50
51 if (err == OK) {
Andreas Huberb82318c2016-08-02 14:45:54 -070052 err = generateAllSource(outputPath);
Andreas Huber881227d2016-08-02 14:20:21 -070053 }
54
Steven Moreland69e7c702016-09-09 11:16:32 -070055 if (err == OK) {
Yifan Hong7a118f52016-12-07 11:21:15 -080056 err = generatePassthroughHeader(outputPath);
Steven Moreland69e7c702016-09-09 11:16:32 -070057 }
58
Andreas Huber881227d2016-08-02 14:20:21 -070059 return err;
60}
61
Andreas Huber737080b2016-08-02 15:38:04 -070062void AST::getPackageComponents(
63 std::vector<std::string> *components) const {
Andreas Huber0e00de42016-08-03 09:56:02 -070064 mPackage.getPackageComponents(components);
Andreas Huber737080b2016-08-02 15:38:04 -070065}
66
67void AST::getPackageAndVersionComponents(
68 std::vector<std::string> *components, bool cpp_compatible) const {
Andreas Huber0e00de42016-08-03 09:56:02 -070069 mPackage.getPackageAndVersionComponents(components, cpp_compatible);
Andreas Huber737080b2016-08-02 15:38:04 -070070}
71
Steven Moreland5708edf2016-11-04 15:33:31 +000072std::string AST::makeHeaderGuard(const std::string &baseName,
73 bool indicateGenerated) const {
74 std::string guard;
Andreas Huber881227d2016-08-02 14:20:21 -070075
Steven Moreland5708edf2016-11-04 15:33:31 +000076 if (indicateGenerated) {
77 guard += "HIDL_GENERATED_";
78 }
79
80 guard += StringHelper::Uppercase(mPackage.tokenName());
Andreas Huber881227d2016-08-02 14:20:21 -070081 guard += "_";
Steven Moreland5708edf2016-11-04 15:33:31 +000082 guard += StringHelper::Uppercase(baseName);
83 guard += "_H";
Andreas Huber881227d2016-08-02 14:20:21 -070084
85 return guard;
86}
87
Steven Morelandee88eed2016-10-31 17:49:00 -070088// static
89void AST::generateCppPackageInclude(
90 Formatter &out,
91 const FQName &package,
92 const std::string &klass) {
93
94 out << "#include <";
95
96 std::vector<std::string> components;
97 package.getPackageAndVersionComponents(&components, false /* cpp_compatible */);
98
99 for (const auto &component : components) {
100 out << component << "/";
101 }
102
103 out << klass
104 << ".h>\n";
105}
106
Andreas Huber881227d2016-08-02 14:20:21 -0700107void AST::enterLeaveNamespace(Formatter &out, bool enter) const {
108 std::vector<std::string> packageComponents;
109 getPackageAndVersionComponents(
110 &packageComponents, true /* cpp_compatible */);
111
112 if (enter) {
113 for (const auto &component : packageComponents) {
114 out << "namespace " << component << " {\n";
115 }
Andreas Huber0e00de42016-08-03 09:56:02 -0700116
Andreas Huber2831d512016-08-15 09:33:47 -0700117 out.setNamespace(mPackage.cppNamespace() + "::");
Andreas Huber881227d2016-08-02 14:20:21 -0700118 } else {
Andreas Huber0e00de42016-08-03 09:56:02 -0700119 out.setNamespace(std::string());
120
Andreas Huber881227d2016-08-02 14:20:21 -0700121 for (auto it = packageComponents.rbegin();
122 it != packageComponents.rend();
123 ++it) {
124 out << "} // namespace " << *it << "\n";
125 }
126 }
127}
128
Steven Moreland038903b2017-03-30 12:11:24 -0700129static void declareGetService(Formatter &out, const std::string &interfaceName, bool isTry) {
130 const std::string functionName = isTry ? "tryGetService" : "getService";
131
132 out << "static ::android::sp<" << interfaceName << "> " << functionName << "("
Chris Phoenixdb0d6342017-01-11 16:10:00 -0800133 << "const std::string &serviceName=\"default\", bool getStub=false);\n";
Steven Moreland038903b2017-03-30 12:11:24 -0700134 out << "static ::android::sp<" << interfaceName << "> " << functionName << "("
Chris Phoenixdb0d6342017-01-11 16:10:00 -0800135 << "const char serviceName[], bool getStub=false)"
136 << " { std::string str(serviceName ? serviceName : \"\");"
Steven Moreland038903b2017-03-30 12:11:24 -0700137 << " return " << functionName << "(str, getStub); }\n";
138 out << "static ::android::sp<" << interfaceName << "> " << functionName << "("
Chris Phoenixdb0d6342017-01-11 16:10:00 -0800139 << "const ::android::hardware::hidl_string& serviceName, bool getStub=false)"
140 // without c_str the std::string constructor is ambiguous
141 << " { std::string str(serviceName.c_str());"
Steven Moreland038903b2017-03-30 12:11:24 -0700142 << " return " << functionName << "(str, getStub); }\n";
143 out << "static ::android::sp<" << interfaceName << "> " << functionName << "("
144 << "bool getStub) { return " << functionName << "(\"default\", getStub); }\n";
145}
146
147static void declareServiceManagerInteractions(Formatter &out, const std::string &interfaceName) {
148 declareGetService(out, interfaceName, true /* isTry */);
149 declareGetService(out, interfaceName, false /* isTry */);
150
Chris Phoenixdb0d6342017-01-11 16:10:00 -0800151 out << "::android::status_t registerAsService(const std::string &serviceName=\"default\");\n";
Yifan Hong83c8e5f2016-12-13 14:33:53 -0800152 out << "static bool registerForNotifications(\n";
153 out.indent(2, [&] {
154 out << "const std::string &serviceName,\n"
155 << "const ::android::sp<::android::hidl::manager::V1_0::IServiceNotification> "
156 << "&notification);\n";
157 });
158
159}
160
Steven Moreland038903b2017-03-30 12:11:24 -0700161static void implementGetService(Formatter &out,
162 const FQName &fqName,
163 bool isTry) {
Yifan Hongeefe4f22017-01-04 15:32:42 -0800164
165 const std::string interfaceName = fqName.getInterfaceName();
Steven Moreland038903b2017-03-30 12:11:24 -0700166 const std::string functionName = isTry ? "tryGetService" : "getService";
Yifan Hong83c8e5f2016-12-13 14:33:53 -0800167
168 out << "// static\n"
Steven Moreland038903b2017-03-30 12:11:24 -0700169 << "::android::sp<" << interfaceName << "> " << interfaceName << "::" << functionName << "("
Yifan Hong31f07ff2017-03-21 18:56:35 +0000170 << "const std::string &serviceName, const bool getStub) ";
Yifan Hong83c8e5f2016-12-13 14:33:53 -0800171 out.block([&] {
Steven Morelandbcf51802017-04-06 09:17:44 -0700172 out << "using ::android::hardware::defaultServiceManager;\n";
173 out << "using ::android::hardware::details::waitForHwService;\n";
174 out << "using ::android::hardware::getPassthroughServiceManager;\n";
175 out << "using ::android::hardware::Return;\n";
176 out << "using ::android::sp;\n";
177 out << "using Transport = ::android::hidl::manager::V1_0::IServiceManager::Transport;\n\n";
Steven Morelandf10af872017-01-25 16:01:56 +0000178
Steven Morelandbcf51802017-04-06 09:17:44 -0700179 out << "sp<" << interfaceName << "> iface = nullptr;\n";
180
181 out.endl();
182
183 out << "const sp<::android::hidl::manager::V1_0::IServiceManager> sm"
184 << " = defaultServiceManager();\n";
185
186 out.sIf("sm == nullptr", [&] {
187 // hwbinder is not available on this device, so future tries
188 // would also be null. I can only return nullptr.
189 out << "ALOGE(\"getService: defaultServiceManager() is null\");\n"
190 << "return nullptr;\n";
191 }).endl().endl();
192
193 out << "Return<Transport> transportRet = sm->getTransport("
194 << interfaceName << "::descriptor, serviceName);\n\n";
195
196 out.sIf("!transportRet.isOk()", [&] {
197 out << "ALOGE(\"getService: defaultServiceManager()->getTransport returns %s\", "
198 << "transportRet.description().c_str());\n";
199 out << "return nullptr;\n";
200 });
201
202 out.endl();
203
204 out << "Transport transport = transportRet;\n";
205 out << "const bool vintfHwbinder = (transport == Transport::HWBINDER);\n"
206 << "const bool vintfPassthru = (transport == Transport::PASSTHROUGH);\n"
207 << "const bool vintfEmpty = (transport == Transport::EMPTY);\n\n";
Yifan Hong31f07ff2017-03-21 18:56:35 +0000208
209 // if (getStub) {
210 // getPassthroughServiceManager()->get only once.
211 // } else {
212 // if (vintfHwbinder) {
213 // while (no alive service) {
214 // waitForHwService
215 // defaultServiceManager()->get
216 // }
217 // } else if (vintfEmpty) {
218 // defaultServiceManager()->get only once.
219 // getPassthroughServiceManager()->get only once.
220 // } else if (vintfPassthru) {
221 // getPassthroughServiceManager()->get only once.
222 // }
223 // }
224
Yifan Hong223fd472017-03-23 17:17:57 +0000225 out << "bool tried = false;\n";
226 out.sWhile("!getStub && (vintfHwbinder || (vintfEmpty && !tried))", [&] {
Yifan Hong31f07ff2017-03-21 18:56:35 +0000227
228 out.sIf("tried", [&] {
229 // sleep only after the first trial.
230 out << "ALOGI(\"getService: retrying in 1s...\");\n"
231 << "sleep(1);\n";
232 }).endl();
233
Yifan Hong223fd472017-03-23 17:17:57 +0000234 out << "tried = true;\n";
235
Yifan Hong31f07ff2017-03-21 18:56:35 +0000236
Steven Moreland038903b2017-03-30 12:11:24 -0700237 if (!isTry) {
238 out.sIf("vintfHwbinder", [&] {
Steven Morelandbcf51802017-04-06 09:17:44 -0700239 out << "waitForHwService("
240 << interfaceName << "::descriptor, serviceName);\n";
Steven Moreland038903b2017-03-30 12:11:24 -0700241 }).endl();
242 }
Yifan Hong31f07ff2017-03-21 18:56:35 +0000243
Steven Morelandbcf51802017-04-06 09:17:44 -0700244 out << "Return<sp<" << gIBaseFqName.cppName() << ">> ret = \n";
Yifan Hong31f07ff2017-03-21 18:56:35 +0000245 out.indent(2, [&] {
246 out << "sm->get(" << interfaceName << "::descriptor, serviceName);\n";
247 });
248
249 out.sIf("!ret.isOk()", [&] {
Steven Moreland42394ce2017-03-27 17:03:04 -0700250 // hwservicemanager fails, may be security issue
Yifan Hong31f07ff2017-03-21 18:56:35 +0000251 out << "ALOGE(\"getService: defaultServiceManager()->get returns %s\", "
252 << "ret.description().c_str());\n"
Steven Moreland42394ce2017-03-27 17:03:04 -0700253 << "break;\n";
Yifan Hong31f07ff2017-03-21 18:56:35 +0000254 }).endl();
255
Steven Morelandbcf51802017-04-06 09:17:44 -0700256 out << "sp<" << gIBaseFqName.cppName() << "> base = ret;\n";
Yifan Hong200209c2017-03-29 03:39:09 -0700257 out.sIf("base == nullptr", [&] {
258 // race condition. hwservicemanager drops the service
259 // from waitForHwService to here
Steven Morelanddff644c2017-03-24 10:59:01 -0700260 out << "ALOGW(\"getService: found null hwbinder interface\");\n"
Yifan Hong9c74a5b2017-04-04 13:27:25 -0700261 << (isTry ? "break" : "continue")
262 << ";\n";
Yifan Hong31f07ff2017-03-21 18:56:35 +0000263 }).endl();
Steven Morelandbcf51802017-04-06 09:17:44 -0700264 out << "Return<sp<" << interfaceName
Yifan Hong200209c2017-03-29 03:39:09 -0700265 << ">> castRet = " << interfaceName << "::castFrom(base, true /* emitError */);\n";
266 out.sIf("!castRet.isOk()", [&] {
267 out.sIf("castRet.isDeadObject()", [&] {
268 // service is dead (castFrom cannot call interfaceChain)
269 out << "ALOGW(\"getService: found dead hwbinder service\");\n"
Yifan Hong9c74a5b2017-04-04 13:27:25 -0700270 << (isTry ? "break" : "continue")
271 << ";\n";
Yifan Hong200209c2017-03-29 03:39:09 -0700272 }).sElse([&] {
273 out << "ALOGW(\"getService: cannot call into hwbinder service: %s"
274 << "; No permission? Check for selinux denials.\", "
275 << "castRet.description().c_str());\n"
276 << "break;\n";
277 }).endl();
278 }).endl();
279 out << "iface = castRet;\n";
280 out.sIf("iface == nullptr", [&] {
281 // returned service isn't of correct type; this is a bug
282 // to hwservicemanager or to the service itself (interfaceChain
283 // is not consistent).
284 out << "ALOGW(\"getService: received incompatible service; bug in hwservicemanager?\");\n"
285 << "break;\n";
286 }).endl();
Yifan Hong31f07ff2017-03-21 18:56:35 +0000287
288 out << "return iface;\n";
Yifan Hong83c8e5f2016-12-13 14:33:53 -0800289 }).endl();
Steven Moreland2c2dea82017-01-18 17:24:17 -0800290
Yifan Hong31f07ff2017-03-21 18:56:35 +0000291 out.sIf("getStub || vintfPassthru || vintfEmpty", [&] {
Steven Morelandbcf51802017-04-06 09:17:44 -0700292 out << "const sp<::android::hidl::manager::V1_0::IServiceManager> pm"
293 << " = getPassthroughServiceManager();\n";
Steven Morelandf10af872017-01-25 16:01:56 +0000294
295 out.sIf("pm != nullptr", [&] () {
Steven Morelandbcf51802017-04-06 09:17:44 -0700296 out << "Return<sp<" << gIBaseFqName.cppName() << ">> ret = \n";
Steven Morelandf10af872017-01-25 16:01:56 +0000297 out.indent(2, [&] {
298 out << "pm->get(" << interfaceName << "::descriptor" << ", serviceName);\n";
Steven Moreland2c2dea82017-01-18 17:24:17 -0800299 });
Steven Morelandf10af872017-01-25 16:01:56 +0000300 out.sIf("ret.isOk()", [&] {
Steven Morelandbcf51802017-04-06 09:17:44 -0700301 out << "sp<" << gIBaseFqName.cppName()
Steven Morelandf10af872017-01-25 16:01:56 +0000302 << "> baseInterface = ret;\n";
303 out.sIf("baseInterface != nullptr", [&]() {
304 out << "iface = new " << fqName.getInterfacePassthroughName()
305 << "(" << interfaceName << "::castFrom(baseInterface));\n";
Yifan Hong31f07ff2017-03-21 18:56:35 +0000306 }).endl();
Steven Morelandf10af872017-01-25 16:01:56 +0000307 }).endl();
Yifan Hong83c8e5f2016-12-13 14:33:53 -0800308 }).endl();
309 }).endl();
Steven Moreland2c2dea82017-01-18 17:24:17 -0800310
Yifan Hong83c8e5f2016-12-13 14:33:53 -0800311 out << "return iface;\n";
312 }).endl().endl();
Steven Moreland038903b2017-03-30 12:11:24 -0700313}
314
315static void implementServiceManagerInteractions(Formatter &out,
316 const FQName &fqName, const std::string &package) {
317
318 const std::string interfaceName = fqName.getInterfaceName();
319
320 implementGetService(out, fqName, true /* isTry */);
321 implementGetService(out, fqName, false /* isTry */);
Yifan Hong83c8e5f2016-12-13 14:33:53 -0800322
Yifan Hongeefe4f22017-01-04 15:32:42 -0800323 out << "::android::status_t " << interfaceName << "::registerAsService("
Yifan Hong83c8e5f2016-12-13 14:33:53 -0800324 << "const std::string &serviceName) ";
325 out.block([&] {
Steven Moreland58b478b2017-04-09 10:54:50 -0700326 out << "::android::hardware::details::onRegistration(\""
327 << fqName.getPackageAndVersion().string() << "\", \""
328 << interfaceName
329 << "\", serviceName);\n\n";
Yifan Hong83c8e5f2016-12-13 14:33:53 -0800330 out << "const ::android::sp<::android::hidl::manager::V1_0::IServiceManager> sm\n";
331 out.indent(2, [&] {
332 out << "= ::android::hardware::defaultServiceManager();\n";
333 });
334 out.sIf("sm == nullptr", [&] {
335 out << "return ::android::INVALID_OPERATION;\n";
336 }).endl();
Martijn Coenenbc9f5c92017-03-06 13:04:05 +0100337 out << "::android::hardware::Return<bool> ret = "
338 << "sm->add(serviceName.c_str(), this);\n"
339 << "return ret.isOk() && ret ? ::android::OK : ::android::UNKNOWN_ERROR;\n";
Yifan Hong83c8e5f2016-12-13 14:33:53 -0800340 }).endl().endl();
341
Yifan Hongeefe4f22017-01-04 15:32:42 -0800342 out << "bool " << interfaceName << "::registerForNotifications(\n";
Yifan Hong83c8e5f2016-12-13 14:33:53 -0800343 out.indent(2, [&] {
344 out << "const std::string &serviceName,\n"
345 << "const ::android::sp<::android::hidl::manager::V1_0::IServiceNotification> "
346 << "&notification) ";
347 });
348 out.block([&] {
349 out << "const ::android::sp<::android::hidl::manager::V1_0::IServiceManager> sm\n";
350 out.indent(2, [&] {
351 out << "= ::android::hardware::defaultServiceManager();\n";
352 });
353 out.sIf("sm == nullptr", [&] {
354 out << "return false;\n";
355 }).endl();
356 out << "::android::hardware::Return<bool> success =\n";
357 out.indent(2, [&] {
Yifan Hongeefe4f22017-01-04 15:32:42 -0800358 out << "sm->registerForNotifications(\"" << package << "::" << interfaceName << "\",\n";
Yifan Hong83c8e5f2016-12-13 14:33:53 -0800359 out.indent(2, [&] {
360 out << "serviceName, notification);\n";
361 });
362 });
363 out << "return success.isOk() && success;\n";
364 }).endl().endl();
365}
366
Andreas Huberb82318c2016-08-02 14:45:54 -0700367status_t AST::generateInterfaceHeader(const std::string &outputPath) const {
Andreas Huber881227d2016-08-02 14:20:21 -0700368
Andreas Huberb82318c2016-08-02 14:45:54 -0700369 std::string path = outputPath;
Andreas Huberd2943e12016-08-05 11:59:31 -0700370 path.append(mCoordinator->convertPackageRootToPath(mPackage));
Andreas Huberdca261f2016-08-04 13:47:51 -0700371 path.append(mCoordinator->getPackagePath(mPackage, true /* relative */));
Andreas Huber881227d2016-08-02 14:20:21 -0700372
373 std::string ifaceName;
374 bool isInterface = true;
375 if (!AST::isInterface(&ifaceName)) {
376 ifaceName = "types";
377 isInterface = false;
378 }
379 path.append(ifaceName);
380 path.append(".h");
381
Andreas Huberd2943e12016-08-05 11:59:31 -0700382 CHECK(Coordinator::MakeParentHierarchy(path));
Andreas Huber881227d2016-08-02 14:20:21 -0700383 FILE *file = fopen(path.c_str(), "w");
384
385 if (file == NULL) {
386 return -errno;
387 }
388
389 Formatter out(file);
390
391 const std::string guard = makeHeaderGuard(ifaceName);
392
393 out << "#ifndef " << guard << "\n";
394 out << "#define " << guard << "\n\n";
395
Andreas Huber737080b2016-08-02 15:38:04 -0700396 for (const auto &item : mImportedNames) {
Steven Morelandee88eed2016-10-31 17:49:00 -0700397 generateCppPackageInclude(out, item, item.name());
Andreas Huber737080b2016-08-02 15:38:04 -0700398 }
399
400 if (!mImportedNames.empty()) {
401 out << "\n";
402 }
403
Steven Moreland0693f312016-11-09 15:06:14 -0800404 if (isInterface) {
Yifan Hongc8934042016-11-17 17:10:52 -0800405 if (isIBase()) {
406 out << "// skipped #include IServiceNotification.h\n\n";
407 } else {
408 out << "#include <android/hidl/manager/1.0/IServiceNotification.h>\n\n";
409 }
Steven Moreland0693f312016-11-09 15:06:14 -0800410 }
411
Yifan Hongc8934042016-11-17 17:10:52 -0800412 out << "#include <hidl/HidlSupport.h>\n";
Andreas Huber4bcf97d2016-08-30 11:27:49 -0700413 out << "#include <hidl/MQDescriptor.h>\n";
Andreas Huber881227d2016-08-02 14:20:21 -0700414
415 if (isInterface) {
Martijn Coenen93915102016-09-01 01:35:52 +0200416 out << "#include <hidl/Status.h>\n";
Andreas Huber881227d2016-08-02 14:20:21 -0700417 }
418
Martijn Coenenaf712c02016-11-16 15:26:27 +0100419 out << "#include <utils/NativeHandle.h>\n";
420 out << "#include <utils/misc.h>\n\n"; /* for report_sysprop_change() */
Andreas Huber881227d2016-08-02 14:20:21 -0700421
422 enterLeaveNamespace(out, true /* enter */);
423 out << "\n";
424
425 if (isInterface) {
426 out << "struct "
Steven Moreland40786312016-08-16 10:29:40 -0700427 << ifaceName;
Andreas Huber6cb08cf2016-08-03 15:44:51 -0700428
429 const Interface *iface = mRootScope->getInterface();
430 const Interface *superType = iface->superType();
431
Steven Moreland40786312016-08-16 10:29:40 -0700432 if (superType == NULL) {
Yifan Hongc8934042016-11-17 17:10:52 -0800433 out << " : virtual public ::android::RefBase";
Andreas Huber6cb08cf2016-08-03 15:44:51 -0700434 } else {
Steven Morelandd916a702016-10-26 22:23:09 +0000435 out << " : public "
Steven Moreland40786312016-08-16 10:29:40 -0700436 << superType->fullName();
Andreas Huber6cb08cf2016-08-03 15:44:51 -0700437 }
438
439 out << " {\n";
Andreas Huber881227d2016-08-02 14:20:21 -0700440
441 out.indent();
442
Andreas Huber881227d2016-08-02 14:20:21 -0700443 }
444
445 status_t err = emitTypeDeclarations(out);
446
447 if (err != OK) {
448 return err;
449 }
450
451 if (isInterface) {
452 const Interface *iface = mRootScope->getInterface();
Yifan Hongeefe4f22017-01-04 15:32:42 -0800453
Yifan Hongc8934042016-11-17 17:10:52 -0800454 out << "virtual bool isRemote() const ";
455 if (!isIBase()) {
456 out << "override ";
457 }
458 out << "{ return false; }\n\n";
Steven Morelandd732ea12016-11-08 17:12:06 -0800459
Andreas Huber881227d2016-08-02 14:20:21 -0700460 for (const auto &method : iface->methods()) {
Andreas Huber881227d2016-08-02 14:20:21 -0700461 out << "\n";
Andreas Huber881227d2016-08-02 14:20:21 -0700462
Andreas Huber881227d2016-08-02 14:20:21 -0700463 const bool returnsValue = !method->results().empty();
Steven Morelandd732ea12016-11-08 17:12:06 -0800464 const TypedVar *elidedReturn = method->canElideCallback();
465
466 if (elidedReturn == nullptr && returnsValue) {
467 out << "using "
468 << method->name()
Yifan Hong932464e2017-03-30 15:40:22 -0700469 << "_cb = std::function<void(";
470 method->emitCppResultSignature(out, true /* specify namespaces */);
471 out << ")>;\n";
Steven Morelandd732ea12016-11-08 17:12:06 -0800472 }
Andreas Huber881227d2016-08-02 14:20:21 -0700473
Andreas Huber3599d922016-08-09 10:42:57 -0700474 method->dumpAnnotations(out);
475
Iliyan Malchev40d474a2016-08-16 06:20:17 -0700476 if (elidedReturn) {
Iliyan Malchev2b6591b2016-08-18 19:15:19 -0700477 out << "virtual ::android::hardware::Return<";
Yifan Hong3b320f82016-11-01 15:15:54 -0700478 out << elidedReturn->type().getCppResultType() << "> ";
Iliyan Malchev40d474a2016-08-16 06:20:17 -0700479 } else {
Iliyan Malchevd57066f2016-09-08 13:59:38 -0700480 out << "virtual ::android::hardware::Return<void> ";
Iliyan Malchev40d474a2016-08-16 06:20:17 -0700481 }
482
483 out << method->name()
Yifan Hong932464e2017-03-30 15:40:22 -0700484 << "(";
485 method->emitCppArgSignature(out, true /* specify namespaces */);
Andreas Huber881227d2016-08-02 14:20:21 -0700486
Iliyan Malchev40d474a2016-08-16 06:20:17 -0700487 if (returnsValue && elidedReturn == nullptr) {
Andreas Huber881227d2016-08-02 14:20:21 -0700488 if (!method->args().empty()) {
489 out << ", ";
490 }
491
Steven Moreland67f67b42016-09-29 08:59:02 -0700492 out << method->name() << "_cb _hidl_cb";
Andreas Huber881227d2016-08-02 14:20:21 -0700493 }
494
Yifan Hong10fe0b52016-10-19 14:20:17 -0700495 out << ")";
496 if (method->isHidlReserved()) {
Yifan Hongc8934042016-11-17 17:10:52 -0800497 if (!isIBase()) {
498 out << " override";
499 }
Yifan Hong10fe0b52016-10-19 14:20:17 -0700500 } else {
Steven Morelandd4b068a2017-03-20 06:30:51 -0700501 out << " = 0";
Yifan Hong10fe0b52016-10-19 14:20:17 -0700502 }
Steven Morelandd4b068a2017-03-20 06:30:51 -0700503 out << ";\n";
Andreas Huber881227d2016-08-02 14:20:21 -0700504 }
Steven Moreland40786312016-08-16 10:29:40 -0700505
Yifan Hong3d746092016-12-07 14:26:33 -0800506 out << "// cast static functions\n";
507 std::string childTypeResult = iface->getCppResultType();
Yifan Hongfe95aa22016-10-19 17:26:45 -0700508
Yifan Hong3d746092016-12-07 14:26:33 -0800509 for (const Interface *superType : iface->typeChain()) {
Yifan Hong200209c2017-03-29 03:39:09 -0700510 out << "static ::android::hardware::Return<"
Yifan Hong3d746092016-12-07 14:26:33 -0800511 << childTypeResult
Yifan Hong200209c2017-03-29 03:39:09 -0700512 << "> castFrom("
Yifan Hong3d746092016-12-07 14:26:33 -0800513 << superType->getCppArgumentType()
514 << " parent"
Yifan Hong200209c2017-03-29 03:39:09 -0700515 << ", bool emitError = false);\n";
Yifan Hongfe95aa22016-10-19 17:26:45 -0700516 }
517
Steven Morelandd39133b2016-11-11 12:30:08 -0800518 out << "\nstatic const char* descriptor;\n\n";
Yifan Hong10fe0b52016-10-19 14:20:17 -0700519
Yifan Hongc8934042016-11-17 17:10:52 -0800520 if (isIBase()) {
Yifan Hong83c8e5f2016-12-13 14:33:53 -0800521 out << "// skipped getService, registerAsService, registerForNotifications\n\n";
Yifan Hongc8934042016-11-17 17:10:52 -0800522 } else {
Yifan Hongeefe4f22017-01-04 15:32:42 -0800523 declareServiceManagerInteractions(out, iface->localName());
Yifan Hongc8934042016-11-17 17:10:52 -0800524 }
Andreas Huber881227d2016-08-02 14:20:21 -0700525 }
526
527 if (isInterface) {
528 out.unindent();
529
Andreas Hubere3f769a2016-10-10 10:54:44 -0700530 out << "};\n\n";
531 }
532
533 err = mRootScope->emitGlobalTypeDeclarations(out);
534
535 if (err != OK) {
536 return err;
Andreas Huber881227d2016-08-02 14:20:21 -0700537 }
538
539 out << "\n";
540 enterLeaveNamespace(out, false /* enter */);
541
542 out << "\n#endif // " << guard << "\n";
543
544 return OK;
545}
546
Steven Moreland40786312016-08-16 10:29:40 -0700547status_t AST::generateHwBinderHeader(const std::string &outputPath) const {
548 std::string ifaceName;
Yifan Hong244e82d2016-11-11 11:13:57 -0800549 bool isInterface = AST::isInterface(&ifaceName);
550 const Interface *iface = nullptr;
Yifan Hong244e82d2016-11-11 11:13:57 -0800551 std::string klassName{};
552
553 if(isInterface) {
554 iface = mRootScope->getInterface();
Yifan Hongeefe4f22017-01-04 15:32:42 -0800555 klassName = iface->getHwName();
Yifan Hong244e82d2016-11-11 11:13:57 -0800556 } else {
557 klassName = "hwtypes";
Steven Moreland40786312016-08-16 10:29:40 -0700558 }
559
Steven Moreland40786312016-08-16 10:29:40 -0700560 std::string path = outputPath;
561 path.append(mCoordinator->convertPackageRootToPath(mPackage));
562 path.append(mCoordinator->getPackagePath(mPackage, true /* relative */));
563 path.append(klassName + ".h");
564
Yifan Hong244e82d2016-11-11 11:13:57 -0800565 FILE *file = fopen(path.c_str(), "w");
Steven Moreland40786312016-08-16 10:29:40 -0700566
567 if (file == NULL) {
568 return -errno;
569 }
570
571 Formatter out(file);
572
573 const std::string guard = makeHeaderGuard(klassName);
574
575 out << "#ifndef " << guard << "\n";
576 out << "#define " << guard << "\n\n";
577
Yifan Hong244e82d2016-11-11 11:13:57 -0800578 if (isInterface) {
579 generateCppPackageInclude(out, mPackage, ifaceName);
580 } else {
581 generateCppPackageInclude(out, mPackage, "types");
582 }
Steven Moreland40786312016-08-16 10:29:40 -0700583
Steven Morelandee88eed2016-10-31 17:49:00 -0700584 out << "\n";
Steven Moreland40786312016-08-16 10:29:40 -0700585
586 for (const auto &item : mImportedNames) {
587 if (item.name() == "types") {
Yifan Hong244e82d2016-11-11 11:13:57 -0800588 generateCppPackageInclude(out, item, "hwtypes");
589 } else {
Yifan Hongeefe4f22017-01-04 15:32:42 -0800590 generateCppPackageInclude(out, item, item.getInterfaceStubName());
591 generateCppPackageInclude(out, item, item.getInterfaceProxyName());
Steven Moreland40786312016-08-16 10:29:40 -0700592 }
Steven Moreland40786312016-08-16 10:29:40 -0700593 }
594
595 out << "\n";
596
Martijn Coenen93915102016-09-01 01:35:52 +0200597 out << "#include <hidl/Status.h>\n";
Steven Moreland40786312016-08-16 10:29:40 -0700598 out << "#include <hwbinder/IBinder.h>\n";
Martijn Coenen6ec2f0b2016-12-11 01:04:55 +0100599 out << "#include <hwbinder/Parcel.h>\n";
Steven Moreland40786312016-08-16 10:29:40 -0700600
601 out << "\n";
602
603 enterLeaveNamespace(out, true /* enter */);
Steven Moreland40786312016-08-16 10:29:40 -0700604
Yifan Hong244e82d2016-11-11 11:13:57 -0800605 status_t err = mRootScope->emitGlobalHwDeclarations(out);
606 if (err != OK) {
607 return err;
608 }
Steven Moreland40786312016-08-16 10:29:40 -0700609
610 enterLeaveNamespace(out, false /* enter */);
611
612 out << "\n#endif // " << guard << "\n";
613
614 return OK;
615}
616
Andreas Huber881227d2016-08-02 14:20:21 -0700617status_t AST::emitTypeDeclarations(Formatter &out) const {
618 return mRootScope->emitTypeDeclarations(out);
619}
620
Yifan Hong7a118f52016-12-07 11:21:15 -0800621static void wrapPassthroughArg(Formatter &out,
622 const TypedVar *arg, bool addPrefixToName,
623 std::function<void(void)> handleError) {
624 if (!arg->type().isInterface()) {
625 return;
626 }
627 std::string name = (addPrefixToName ? "_hidl_out_" : "") + arg->name();
628 std::string wrappedName = (addPrefixToName ? "_hidl_out_wrapped_" : "_hidl_wrapped_")
629 + arg->name();
630 const Interface &iface = static_cast<const Interface &>(arg->type());
631 out << iface.getCppStackType() << " " << wrappedName << ";\n";
632 // TODO(elsk): b/33754152 Should not wrap this if object is Bs*
633 out.sIf(name + " != nullptr && !" + name + "->isRemote()", [&] {
634 out << wrappedName
635 << " = "
636 << iface.fqName().cppName()
Yifan Hong052425a2017-03-13 17:06:13 -0700637 << "::castFrom(::android::hardware::details::wrapPassthrough("
Yifan Hong7a118f52016-12-07 11:21:15 -0800638 << name << "));\n";
639 out.sIf(wrappedName + " == nullptr", [&] {
640 // Fatal error. Happens when the BsFoo class is not found in the binary
641 // or any dynamic libraries.
642 handleError();
643 }).endl();
644 }).sElse([&] {
645 out << wrappedName << " = " << name << ";\n";
646 }).endl().endl();
647}
648
Steven Moreland69e7c702016-09-09 11:16:32 -0700649status_t AST::generatePassthroughMethod(Formatter &out,
Yifan Hong068c5522016-10-31 14:07:25 -0700650 const Method *method) const {
651 method->generateCppSignature(out);
Steven Moreland69e7c702016-09-09 11:16:32 -0700652
653 out << " {\n";
654 out.indent();
655
Zhuoyao Zhangdd85c5c2017-01-03 17:30:24 -0800656 if (method->isHidlReserved()
657 && method->overridesCppImpl(IMPL_PASSTHROUGH)) {
658 method->cppImpl(IMPL_PASSTHROUGH, out);
659 out.unindent();
660 out << "}\n\n";
661 return OK;
662 }
663
Steven Moreland69e7c702016-09-09 11:16:32 -0700664 const bool returnsValue = !method->results().empty();
665 const TypedVar *elidedReturn = method->canElideCallback();
666
Steven Moreland67f67b42016-09-29 08:59:02 -0700667 if (returnsValue && elidedReturn == nullptr) {
668 generateCheckNonNull(out, "_hidl_cb");
669 }
670
Steven Moreland9b1cbdf2016-11-01 12:23:27 -0700671 generateCppInstrumentationCall(
672 out,
673 InstrumentationEvent::PASSTHROUGH_ENTRY,
674 method);
675
Yifan Hong7a118f52016-12-07 11:21:15 -0800676
677 for (const auto &arg : method->args()) {
678 wrapPassthroughArg(out, arg, false /* addPrefixToName */, [&] {
679 out << "return ::android::hardware::Status::fromExceptionCode(\n";
680 out.indent(2, [&] {
681 out << "::android::hardware::Status::EX_TRANSACTION_FAILED,\n"
Yifan Hong0abd7392016-12-20 16:43:26 -0800682 << "\"Cannot wrap passthrough interface.\");\n";
Yifan Hong7a118f52016-12-07 11:21:15 -0800683 });
684 });
685 }
686
687 out << "auto _hidl_error = ::android::hardware::Void();\n";
Steven Moreland9b1cbdf2016-11-01 12:23:27 -0700688 out << "auto _hidl_return = ";
Steven Moreland69e7c702016-09-09 11:16:32 -0700689
690 if (method->isOneway()) {
Yifan Hong7a118f52016-12-07 11:21:15 -0800691 out << "addOnewayTask([this, &_hidl_error";
Steven Moreland69e7c702016-09-09 11:16:32 -0700692 for (const auto &arg : method->args()) {
Yifan Hong7a118f52016-12-07 11:21:15 -0800693 out << ", "
694 << (arg->type().isInterface() ? "_hidl_wrapped_" : "")
695 << arg->name();
Steven Moreland69e7c702016-09-09 11:16:32 -0700696 }
Steven Moreland9b1cbdf2016-11-01 12:23:27 -0700697 out << "] {\n";
698 out.indent();
699 out << "this->";
Steven Moreland69e7c702016-09-09 11:16:32 -0700700 }
701
702 out << "mImpl->"
703 << method->name()
704 << "(";
705
Yifan Hong932464e2017-03-30 15:40:22 -0700706 out.join(method->args().begin(), method->args().end(), ", ", [&](const auto &arg) {
Yifan Hong7a118f52016-12-07 11:21:15 -0800707 out << (arg->type().isInterface() ? "_hidl_wrapped_" : "") << arg->name();
Yifan Hong932464e2017-03-30 15:40:22 -0700708 });
Steven Moreland69e7c702016-09-09 11:16:32 -0700709 if (returnsValue && elidedReturn == nullptr) {
710 if (!method->args().empty()) {
711 out << ", ";
712 }
Zhuoyao Zhang085a8c32016-11-17 15:35:49 -0800713 out << "[&](";
Yifan Hong932464e2017-03-30 15:40:22 -0700714 out.join(method->results().begin(), method->results().end(), ", ", [&](const auto &arg) {
Yifan Hong7a118f52016-12-07 11:21:15 -0800715 out << "const auto &_hidl_out_"
716 << arg->name();
Yifan Hong932464e2017-03-30 15:40:22 -0700717 });
Zhuoyao Zhang085a8c32016-11-17 15:35:49 -0800718
719 out << ") {\n";
720 out.indent();
721 status_t status = generateCppInstrumentationCall(
722 out,
723 InstrumentationEvent::PASSTHROUGH_EXIT,
724 method);
725 if (status != OK) {
726 return status;
727 }
728
Yifan Hong7a118f52016-12-07 11:21:15 -0800729 for (const auto &arg : method->results()) {
730 wrapPassthroughArg(out, arg, true /* addPrefixToName */, [&] {
731 out << "_hidl_error = ::android::hardware::Status::fromExceptionCode(\n";
732 out.indent(2, [&] {
733 out << "::android::hardware::Status::EX_TRANSACTION_FAILED,\n"
Yifan Hong0abd7392016-12-20 16:43:26 -0800734 << "\"Cannot wrap passthrough interface.\");\n";
Yifan Hong7a118f52016-12-07 11:21:15 -0800735 });
736 out << "return;\n";
737 });
738 }
739
Zhuoyao Zhang085a8c32016-11-17 15:35:49 -0800740 out << "_hidl_cb(";
Yifan Hong932464e2017-03-30 15:40:22 -0700741 out.join(method->results().begin(), method->results().end(), ", ", [&](const auto &arg) {
Yifan Hong7a118f52016-12-07 11:21:15 -0800742 out << (arg->type().isInterface() ? "_hidl_out_wrapped_" : "_hidl_out_")
743 << arg->name();
Yifan Hong932464e2017-03-30 15:40:22 -0700744 });
Zhuoyao Zhang085a8c32016-11-17 15:35:49 -0800745 out << ");\n";
746 out.unindent();
747 out << "});\n\n";
748 } else {
749 out << ");\n\n";
750 if (elidedReturn != nullptr) {
751 out << elidedReturn->type().getCppResultType()
Yifan Honga47eef32016-12-12 10:38:54 -0800752 << " _hidl_out_"
Zhuoyao Zhang085a8c32016-11-17 15:35:49 -0800753 << elidedReturn->name()
Steven Moreland2ae5bca2016-12-01 05:56:49 +0000754 << " = _hidl_return;\n";
Zhuoyao Zhang085a8c32016-11-17 15:35:49 -0800755 }
756 status_t status = generateCppInstrumentationCall(
757 out,
758 InstrumentationEvent::PASSTHROUGH_EXIT,
759 method);
760 if (status != OK) {
761 return status;
762 }
Steven Moreland69e7c702016-09-09 11:16:32 -0700763 }
Steven Moreland69e7c702016-09-09 11:16:32 -0700764
765 if (method->isOneway()) {
Steven Moreland9b1cbdf2016-11-01 12:23:27 -0700766 out.unindent();
767 out << "});\n";
Steven Moreland69e7c702016-09-09 11:16:32 -0700768 }
Steven Moreland9b1cbdf2016-11-01 12:23:27 -0700769
770 out << "return _hidl_return;\n";
Steven Moreland69e7c702016-09-09 11:16:32 -0700771
772 out.unindent();
773 out << "}\n";
774
775 return OK;
776}
777
Yifan Hong068c5522016-10-31 14:07:25 -0700778status_t AST::generateMethods(Formatter &out, MethodGenerator gen) const {
Steven Morelanda7a421a2016-09-07 08:35:18 -0700779
Iliyan Malchev62c3d182016-08-16 20:33:39 -0700780 const Interface *iface = mRootScope->getInterface();
781
Yifan Hong10fe0b52016-10-19 14:20:17 -0700782 const Interface *prevIterface = nullptr;
783 for (const auto &tuple : iface->allMethodsFromRoot()) {
784 const Method *method = tuple.method();
785 const Interface *superInterface = tuple.interface();
Iliyan Malchev62c3d182016-08-16 20:33:39 -0700786
Yifan Hong10fe0b52016-10-19 14:20:17 -0700787 if(prevIterface != superInterface) {
788 if (prevIterface != nullptr) {
789 out << "\n";
790 }
791 out << "// Methods from "
792 << superInterface->fullName()
793 << " follow.\n";
794 prevIterface = superInterface;
795 }
Yifan Hong068c5522016-10-31 14:07:25 -0700796 status_t err = gen(method, superInterface);
Iliyan Malchev62c3d182016-08-16 20:33:39 -0700797
Yifan Hong10fe0b52016-10-19 14:20:17 -0700798 if (err != OK) {
799 return err;
800 }
Iliyan Malchev62c3d182016-08-16 20:33:39 -0700801 }
802
Yifan Hong10fe0b52016-10-19 14:20:17 -0700803 out << "\n";
804
Iliyan Malchev62c3d182016-08-16 20:33:39 -0700805 return OK;
806}
807
Andreas Huberb82318c2016-08-02 14:45:54 -0700808status_t AST::generateStubHeader(const std::string &outputPath) const {
Andreas Huber881227d2016-08-02 14:20:21 -0700809 std::string ifaceName;
810 if (!AST::isInterface(&ifaceName)) {
811 // types.hal does not get a stub header.
812 return OK;
813 }
814
Jayant Chowdhary3f32c1f2016-09-15 16:53:56 -0700815 const Interface *iface = mRootScope->getInterface();
Yifan Hongeefe4f22017-01-04 15:32:42 -0800816 const std::string klassName = iface->getStubName();
Andreas Huber881227d2016-08-02 14:20:21 -0700817
Andreas Huberb82318c2016-08-02 14:45:54 -0700818 std::string path = outputPath;
Andreas Huberd2943e12016-08-05 11:59:31 -0700819 path.append(mCoordinator->convertPackageRootToPath(mPackage));
Andreas Huberdca261f2016-08-04 13:47:51 -0700820 path.append(mCoordinator->getPackagePath(mPackage, true /* relative */));
Steven Moreland40786312016-08-16 10:29:40 -0700821 path.append(klassName);
Andreas Huber881227d2016-08-02 14:20:21 -0700822 path.append(".h");
823
Andreas Huberd2943e12016-08-05 11:59:31 -0700824 CHECK(Coordinator::MakeParentHierarchy(path));
Andreas Huber881227d2016-08-02 14:20:21 -0700825 FILE *file = fopen(path.c_str(), "w");
826
827 if (file == NULL) {
828 return -errno;
829 }
830
831 Formatter out(file);
832
Steven Moreland40786312016-08-16 10:29:40 -0700833 const std::string guard = makeHeaderGuard(klassName);
Andreas Huber881227d2016-08-02 14:20:21 -0700834
835 out << "#ifndef " << guard << "\n";
836 out << "#define " << guard << "\n\n";
837
Yifan Hongeefe4f22017-01-04 15:32:42 -0800838 generateCppPackageInclude(out, mPackage, iface->getHwName());
Steven Morelandee88eed2016-10-31 17:49:00 -0700839 out << "\n";
Andreas Huber881227d2016-08-02 14:20:21 -0700840
841 enterLeaveNamespace(out, true /* enter */);
842 out << "\n";
843
844 out << "struct "
Yifan Hongeefe4f22017-01-04 15:32:42 -0800845 << klassName;
Martijn Coenen6ec2f0b2016-12-11 01:04:55 +0100846 if (iface->isIBase()) {
Yifan Hong96a79e22017-01-12 14:22:05 -0800847 out << " : public ::android::hardware::BHwBinder";
Zhuoyao Zhang7d3ac802017-02-15 21:05:49 +0000848 out << ", public ::android::hardware::details::HidlInstrumentor {\n";
Martijn Coenen6ec2f0b2016-12-11 01:04:55 +0100849 } else {
Yifan Hongeefe4f22017-01-04 15:32:42 -0800850 out << " : public "
851 << gIBaseFqName.getInterfaceStubFqName().cppName()
852 << " {\n";
Martijn Coenen6ec2f0b2016-12-11 01:04:55 +0100853 }
Andreas Huber881227d2016-08-02 14:20:21 -0700854
855 out.indent();
Yifan Hongeefe4f22017-01-04 15:32:42 -0800856 out << "explicit "
857 << klassName
Steven Moreland40786312016-08-16 10:29:40 -0700858 << "(const ::android::sp<" << ifaceName << "> &_hidl_impl);"
Martijn Coenen6ec2f0b2016-12-11 01:04:55 +0100859 << "\n";
Yifan Hongeefe4f22017-01-04 15:32:42 -0800860 out << "explicit "
861 << klassName
Martijn Coenen6ec2f0b2016-12-11 01:04:55 +0100862 << "(const ::android::sp<" << ifaceName << "> &_hidl_impl,"
Zhuoyao Zhangd10feea2017-01-23 17:29:58 -0800863 << " const std::string& HidlInstrumentor_package,"
864 << " const std::string& HidlInstrumentor_interface);"
Steven Moreland40786312016-08-16 10:29:40 -0700865 << "\n\n";
Andreas Huber881227d2016-08-02 14:20:21 -0700866 out << "::android::status_t onTransact(\n";
867 out.indent();
868 out.indent();
Iliyan Malchev549e2592016-08-10 08:59:12 -0700869 out << "uint32_t _hidl_code,\n";
870 out << "const ::android::hardware::Parcel &_hidl_data,\n";
871 out << "::android::hardware::Parcel *_hidl_reply,\n";
872 out << "uint32_t _hidl_flags = 0,\n";
Iliyan Malchev62c3d182016-08-16 20:33:39 -0700873 out << "TransactCallback _hidl_cb = nullptr) override;\n\n";
Andreas Huber881227d2016-08-02 14:20:21 -0700874 out.unindent();
875 out.unindent();
876
Martijn Coenen6ec2f0b2016-12-11 01:04:55 +0100877 out << "::android::sp<" << ifaceName << "> getImpl() { return _hidl_mImpl; };\n";
878 out.unindent();
879 out << "private:\n";
880 out.indent();
Yifan Hongcd2ae452017-01-31 14:33:40 -0800881
882 status_t err = generateMethods(out, [&](const Method *method, const Interface *iface) {
883 if (!method->isHidlReserved() || !method->overridesCppImpl(IMPL_STUB_IMPL)) {
884 return OK;
885 }
886 const bool returnsValue = !method->results().empty();
887 const TypedVar *elidedReturn = method->canElideCallback();
888
889 if (elidedReturn == nullptr && returnsValue) {
890 out << "using " << method->name() << "_cb = "
891 << iface->fqName().cppName()
892 << "::" << method->name() << "_cb;\n";
893 }
894 method->generateCppSignature(out);
Yifan Hongbcffce22017-02-01 15:52:06 -0800895 out << ";\n";
Yifan Hongcd2ae452017-01-31 14:33:40 -0800896 return OK;
897 });
898 if (err != OK) {
899 return err;
900 }
901
Martijn Coenen6ec2f0b2016-12-11 01:04:55 +0100902 out << "::android::sp<" << ifaceName << "> _hidl_mImpl;\n";
Andreas Huber881227d2016-08-02 14:20:21 -0700903 out.unindent();
Andreas Huber881227d2016-08-02 14:20:21 -0700904 out << "};\n\n";
905
906 enterLeaveNamespace(out, false /* enter */);
907
908 out << "\n#endif // " << guard << "\n";
909
910 return OK;
911}
912
Andreas Huberb82318c2016-08-02 14:45:54 -0700913status_t AST::generateProxyHeader(const std::string &outputPath) const {
Andreas Huber881227d2016-08-02 14:20:21 -0700914 std::string ifaceName;
915 if (!AST::isInterface(&ifaceName)) {
916 // types.hal does not get a proxy header.
917 return OK;
918 }
919
Jayant Chowdhary3f32c1f2016-09-15 16:53:56 -0700920 const Interface *iface = mRootScope->getInterface();
Yifan Hongeefe4f22017-01-04 15:32:42 -0800921 const std::string proxyName = iface->getProxyName();
Andreas Huber881227d2016-08-02 14:20:21 -0700922
Andreas Huberb82318c2016-08-02 14:45:54 -0700923 std::string path = outputPath;
Andreas Huberd2943e12016-08-05 11:59:31 -0700924 path.append(mCoordinator->convertPackageRootToPath(mPackage));
Andreas Huberdca261f2016-08-04 13:47:51 -0700925 path.append(mCoordinator->getPackagePath(mPackage, true /* relative */));
Yifan Hongeefe4f22017-01-04 15:32:42 -0800926 path.append(proxyName);
Andreas Huber881227d2016-08-02 14:20:21 -0700927 path.append(".h");
928
Andreas Huberd2943e12016-08-05 11:59:31 -0700929 CHECK(Coordinator::MakeParentHierarchy(path));
Andreas Huber881227d2016-08-02 14:20:21 -0700930 FILE *file = fopen(path.c_str(), "w");
931
932 if (file == NULL) {
933 return -errno;
934 }
935
936 Formatter out(file);
937
Yifan Hongeefe4f22017-01-04 15:32:42 -0800938 const std::string guard = makeHeaderGuard(proxyName);
Andreas Huber881227d2016-08-02 14:20:21 -0700939
940 out << "#ifndef " << guard << "\n";
941 out << "#define " << guard << "\n\n";
942
Martijn Coenen115d4282016-12-19 05:14:04 +0100943 out << "#include <hidl/HidlTransportSupport.h>\n\n";
944
Andreas Huber881227d2016-08-02 14:20:21 -0700945 std::vector<std::string> packageComponents;
946 getPackageAndVersionComponents(
947 &packageComponents, false /* cpp_compatible */);
948
Yifan Hongeefe4f22017-01-04 15:32:42 -0800949 generateCppPackageInclude(out, mPackage, iface->getHwName());
Steven Morelandee88eed2016-10-31 17:49:00 -0700950 out << "\n";
Andreas Huber881227d2016-08-02 14:20:21 -0700951
952 enterLeaveNamespace(out, true /* enter */);
953 out << "\n";
954
955 out << "struct "
Yifan Hongeefe4f22017-01-04 15:32:42 -0800956 << proxyName
957 << " : public ::android::hardware::BpInterface<"
958 << iface->localName()
Zhuoyao Zhang7d3ac802017-02-15 21:05:49 +0000959 << ">, public ::android::hardware::details::HidlInstrumentor {\n";
Andreas Huber881227d2016-08-02 14:20:21 -0700960
961 out.indent();
962
Yifan Hongeefe4f22017-01-04 15:32:42 -0800963 out << "explicit "
964 << proxyName
Iliyan Malchev549e2592016-08-10 08:59:12 -0700965 << "(const ::android::sp<::android::hardware::IBinder> &_hidl_impl);"
Andreas Huber881227d2016-08-02 14:20:21 -0700966 << "\n\n";
967
Yifan Hong10fe0b52016-10-19 14:20:17 -0700968 out << "virtual bool isRemote() const override { return true; }\n\n";
Steven Moreland40786312016-08-16 10:29:40 -0700969
Yifan Hong068c5522016-10-31 14:07:25 -0700970 status_t err = generateMethods(out, [&](const Method *method, const Interface *) {
971 method->generateCppSignature(out);
972 out << " override;\n";
973 return OK;
974 });
Steven Moreland9c387612016-09-07 09:54:26 -0700975
976 if (err != OK) {
977 return err;
978 }
Andreas Huber881227d2016-08-02 14:20:21 -0700979
980 out.unindent();
Martijn Coenen115d4282016-12-19 05:14:04 +0100981 out << "private:\n";
982 out.indent();
983 out << "std::mutex _hidl_mMutex;\n"
984 << "std::vector<::android::sp<::android::hardware::hidl_binder_death_recipient>>"
985 << " _hidl_mDeathRecipients;\n";
986 out.unindent();
Andreas Huber881227d2016-08-02 14:20:21 -0700987 out << "};\n\n";
988
989 enterLeaveNamespace(out, false /* enter */);
990
991 out << "\n#endif // " << guard << "\n";
992
993 return OK;
994}
995
Andreas Huberb82318c2016-08-02 14:45:54 -0700996status_t AST::generateAllSource(const std::string &outputPath) const {
Andreas Huber881227d2016-08-02 14:20:21 -0700997
Andreas Huberb82318c2016-08-02 14:45:54 -0700998 std::string path = outputPath;
Andreas Huberd2943e12016-08-05 11:59:31 -0700999 path.append(mCoordinator->convertPackageRootToPath(mPackage));
Andreas Huberdca261f2016-08-04 13:47:51 -07001000 path.append(mCoordinator->getPackagePath(mPackage, true /* relative */));
Andreas Huber881227d2016-08-02 14:20:21 -07001001
1002 std::string ifaceName;
1003 std::string baseName;
1004
Yifan Hongfe95aa22016-10-19 17:26:45 -07001005 const Interface *iface = nullptr;
1006 bool isInterface;
Andreas Huber881227d2016-08-02 14:20:21 -07001007 if (!AST::isInterface(&ifaceName)) {
1008 baseName = "types";
1009 isInterface = false;
1010 } else {
Yifan Hongfe95aa22016-10-19 17:26:45 -07001011 iface = mRootScope->getInterface();
Jayant Chowdhary3f32c1f2016-09-15 16:53:56 -07001012 baseName = iface->getBaseName();
Yifan Hongfe95aa22016-10-19 17:26:45 -07001013 isInterface = true;
Andreas Huber881227d2016-08-02 14:20:21 -07001014 }
1015
1016 path.append(baseName);
1017
1018 if (baseName != "types") {
1019 path.append("All");
1020 }
1021
1022 path.append(".cpp");
1023
Andreas Huberd2943e12016-08-05 11:59:31 -07001024 CHECK(Coordinator::MakeParentHierarchy(path));
Andreas Huber881227d2016-08-02 14:20:21 -07001025 FILE *file = fopen(path.c_str(), "w");
1026
1027 if (file == NULL) {
1028 return -errno;
1029 }
1030
1031 Formatter out(file);
1032
Steven Moreland623c0042017-01-13 14:42:29 -08001033 out << "#define LOG_TAG \""
1034 << mPackage.string() << "::" << baseName
1035 << "\"\n\n";
1036
Steven Moreland05cd4232016-11-21 16:01:12 -08001037 out << "#include <android/log.h>\n";
Martijn Coenen6ec2f0b2016-12-11 01:04:55 +01001038 out << "#include <cutils/trace.h>\n";
1039 out << "#include <hidl/HidlTransportSupport.h>\n\n";
Andreas Huber881227d2016-08-02 14:20:21 -07001040 if (isInterface) {
Steven Moreland19d5c172016-10-20 19:20:25 -07001041 // This is a no-op for IServiceManager itself.
1042 out << "#include <android/hidl/manager/1.0/IServiceManager.h>\n";
1043
Steven Morelandbec74ed2017-01-25 17:42:35 -08001044 // TODO(b/34274385) remove this
1045 out << "#include <hidl/LegacySupport.h>\n";
1046
Yifan Hongeefe4f22017-01-04 15:32:42 -08001047 generateCppPackageInclude(out, mPackage, iface->getProxyName());
1048 generateCppPackageInclude(out, mPackage, iface->getStubName());
1049 generateCppPackageInclude(out, mPackage, iface->getPassthroughName());
Yifan Hongfe95aa22016-10-19 17:26:45 -07001050
1051 for (const Interface *superType : iface->superTypeChain()) {
Steven Morelandee88eed2016-10-31 17:49:00 -07001052 generateCppPackageInclude(out,
1053 superType->fqName(),
Yifan Hongeefe4f22017-01-04 15:32:42 -08001054 superType->fqName().getInterfaceProxyName());
Yifan Hongfe95aa22016-10-19 17:26:45 -07001055 }
Yifan Hong2cbbdf92016-12-05 15:20:50 -08001056
1057 out << "#include <hidl/ServiceManagement.h>\n";
Andreas Huber881227d2016-08-02 14:20:21 -07001058 } else {
Steven Morelandee88eed2016-10-31 17:49:00 -07001059 generateCppPackageInclude(out, mPackage, "types");
Yifan Hong244e82d2016-11-11 11:13:57 -08001060 generateCppPackageInclude(out, mPackage, "hwtypes");
Andreas Huber881227d2016-08-02 14:20:21 -07001061 }
1062
1063 out << "\n";
1064
1065 enterLeaveNamespace(out, true /* enter */);
1066 out << "\n";
1067
1068 status_t err = generateTypeSource(out, ifaceName);
1069
1070 if (err == OK && isInterface) {
Yifan Hong10fe0b52016-10-19 14:20:17 -07001071 const Interface *iface = mRootScope->getInterface();
Yifan Hong10fe0b52016-10-19 14:20:17 -07001072
1073 // need to be put here, generateStubSource is using this.
Yifan Hongeefe4f22017-01-04 15:32:42 -08001074 out << "const char* "
1075 << iface->localName()
Yifan Hong10fe0b52016-10-19 14:20:17 -07001076 << "::descriptor(\""
1077 << iface->fqName().string()
1078 << "\");\n\n";
Martijn Coenen8adcb652017-02-03 17:37:36 +01001079 out << "__attribute__((constructor))";
1080 out << "static void static_constructor() {\n";
Yifan Hong33223ca2016-12-13 15:07:35 -08001081 out.indent([&] {
Yifan Honga159f3b2017-03-16 14:53:51 -07001082 out << "::android::hardware::details::gBnConstructorMap.set("
Yifan Hongeefe4f22017-01-04 15:32:42 -08001083 << iface->localName()
Yifan Hongb04de382017-02-06 15:31:52 -08001084 << "::descriptor,\n";
Yifan Hong33223ca2016-12-13 15:07:35 -08001085 out.indent(2, [&] {
Yifan Hongb04de382017-02-06 15:31:52 -08001086 out << "[](void *iIntf) -> ::android::sp<::android::hardware::IBinder> {\n";
Yifan Hong33223ca2016-12-13 15:07:35 -08001087 out.indent([&] {
Yifan Hongeefe4f22017-01-04 15:32:42 -08001088 out << "return new "
1089 << iface->getStubName()
1090 << "(reinterpret_cast<"
1091 << iface->localName()
Yifan Hong158655a2016-11-08 12:34:07 -08001092 << " *>(iIntf));\n";
1093 });
Yifan Hongb04de382017-02-06 15:31:52 -08001094 out << "});\n";
Yifan Hong158655a2016-11-08 12:34:07 -08001095 });
Yifan Honga159f3b2017-03-16 14:53:51 -07001096 out << "::android::hardware::details::gBsConstructorMap.set("
Yifan Hongeefe4f22017-01-04 15:32:42 -08001097 << iface->localName()
Yifan Hongb04de382017-02-06 15:31:52 -08001098 << "::descriptor,\n";
Yifan Hong7a118f52016-12-07 11:21:15 -08001099 out.indent(2, [&] {
Yifan Hongb04de382017-02-06 15:31:52 -08001100 out << "[](void *iIntf) -> ::android::sp<"
Yifan Hong7a118f52016-12-07 11:21:15 -08001101 << gIBaseFqName.cppName()
1102 << "> {\n";
1103 out.indent([&] {
Yifan Hongeefe4f22017-01-04 15:32:42 -08001104 out << "return new "
1105 << iface->getPassthroughName()
1106 << "(reinterpret_cast<"
1107 << iface->localName()
Yifan Hong7a118f52016-12-07 11:21:15 -08001108 << " *>(iIntf));\n";
1109 });
Yifan Hongb04de382017-02-06 15:31:52 -08001110 out << "});\n";
Yifan Hong7a118f52016-12-07 11:21:15 -08001111 });
Yifan Hong158655a2016-11-08 12:34:07 -08001112 });
Martijn Coenen8adcb652017-02-03 17:37:36 +01001113 out << "};\n\n";
1114 out << "__attribute__((destructor))";
1115 out << "static void static_destructor() {\n";
1116 out.indent([&] {
Yifan Honga159f3b2017-03-16 14:53:51 -07001117 out << "::android::hardware::details::gBnConstructorMap.erase("
Martijn Coenen8adcb652017-02-03 17:37:36 +01001118 << iface->localName()
1119 << "::descriptor);\n";
Yifan Honga159f3b2017-03-16 14:53:51 -07001120 out << "::android::hardware::details::gBsConstructorMap.erase("
Martijn Coenen8adcb652017-02-03 17:37:36 +01001121 << iface->localName()
1122 << "::descriptor);\n";
1123 });
1124 out << "};\n\n";
Yifan Hong158655a2016-11-08 12:34:07 -08001125
Yifan Hongfe95aa22016-10-19 17:26:45 -07001126 err = generateInterfaceSource(out);
1127 }
1128
1129 if (err == OK && isInterface) {
Yifan Hongeefe4f22017-01-04 15:32:42 -08001130 err = generateProxySource(out, iface->fqName());
Andreas Huber881227d2016-08-02 14:20:21 -07001131 }
1132
1133 if (err == OK && isInterface) {
Yifan Hongeefe4f22017-01-04 15:32:42 -08001134 err = generateStubSource(out, iface);
Andreas Huber881227d2016-08-02 14:20:21 -07001135 }
1136
Steven Moreland40786312016-08-16 10:29:40 -07001137 if (err == OK && isInterface) {
Steven Moreland69e7c702016-09-09 11:16:32 -07001138 err = generatePassthroughSource(out);
1139 }
1140
1141 if (err == OK && isInterface) {
Steven Moreland9c387612016-09-07 09:54:26 -07001142 const Interface *iface = mRootScope->getInterface();
1143
Yifan Hongc8934042016-11-17 17:10:52 -08001144 if (isIBase()) {
Yifan Hong83c8e5f2016-12-13 14:33:53 -08001145 out << "// skipped getService, registerAsService, registerForNotifications\n";
Yifan Hongc8934042016-11-17 17:10:52 -08001146 } else {
Yifan Hong83c8e5f2016-12-13 14:33:53 -08001147 std::string package = iface->fqName().package()
1148 + iface->fqName().atVersion();
1149
Yifan Hongeefe4f22017-01-04 15:32:42 -08001150 implementServiceManagerInteractions(out, iface->fqName(), package);
Yifan Hongc8934042016-11-17 17:10:52 -08001151 }
Steven Moreland40786312016-08-16 10:29:40 -07001152 }
1153
Andreas Huber6755e9d2017-04-06 11:09:07 -07001154 HidlTypeAssertion::EmitAll(out);
1155 out << "\n";
1156
Andreas Huber881227d2016-08-02 14:20:21 -07001157 enterLeaveNamespace(out, false /* enter */);
1158
1159 return err;
1160}
1161
Steven Moreland67f67b42016-09-29 08:59:02 -07001162// static
1163void AST::generateCheckNonNull(Formatter &out, const std::string &nonNull) {
Yifan Honga018ed52016-12-13 16:35:08 -08001164 out.sIf(nonNull + " == nullptr", [&] {
1165 out << "return ::android::hardware::Status::fromExceptionCode(\n";
1166 out.indent(2, [&] {
1167 out << "::android::hardware::Status::EX_ILLEGAL_ARGUMENT);\n";
1168 });
1169 }).endl().endl();
Steven Moreland67f67b42016-09-29 08:59:02 -07001170}
1171
Andreas Huber881227d2016-08-02 14:20:21 -07001172status_t AST::generateTypeSource(
1173 Formatter &out, const std::string &ifaceName) const {
1174 return mRootScope->emitTypeDefinitions(out, ifaceName);
1175}
1176
Andreas Hubere7ff2282016-08-16 13:50:03 -07001177void AST::declareCppReaderLocals(
Andreas Huber5e44a292016-09-27 14:52:39 -07001178 Formatter &out,
1179 const std::vector<TypedVar *> &args,
1180 bool forResults) const {
Andreas Hubere7ff2282016-08-16 13:50:03 -07001181 if (args.empty()) {
1182 return;
1183 }
1184
1185 for (const auto &arg : args) {
1186 const Type &type = arg->type();
1187
Yifan Hong3b320f82016-11-01 15:15:54 -07001188 out << type.getCppResultType()
Andreas Hubere7ff2282016-08-16 13:50:03 -07001189 << " "
Yifan Hong3b320f82016-11-01 15:15:54 -07001190 << (forResults ? "_hidl_out_" : "") + arg->name()
Andreas Hubere7ff2282016-08-16 13:50:03 -07001191 << ";\n";
1192 }
1193
1194 out << "\n";
1195}
1196
Andreas Huber881227d2016-08-02 14:20:21 -07001197void AST::emitCppReaderWriter(
1198 Formatter &out,
1199 const std::string &parcelObj,
1200 bool parcelObjIsPointer,
1201 const TypedVar *arg,
1202 bool isReader,
Andreas Huber5e44a292016-09-27 14:52:39 -07001203 Type::ErrorMode mode,
1204 bool addPrefixToName) const {
Andreas Huber881227d2016-08-02 14:20:21 -07001205 const Type &type = arg->type();
1206
Andreas Huber881227d2016-08-02 14:20:21 -07001207 type.emitReaderWriter(
1208 out,
Andreas Huber5e44a292016-09-27 14:52:39 -07001209 addPrefixToName ? ("_hidl_out_" + arg->name()) : arg->name(),
Andreas Huber881227d2016-08-02 14:20:21 -07001210 parcelObj,
1211 parcelObjIsPointer,
1212 isReader,
1213 mode);
1214}
1215
Yifan Hongbf459bc2016-08-23 16:50:37 -07001216void AST::emitCppResolveReferences(
1217 Formatter &out,
1218 const std::string &parcelObj,
1219 bool parcelObjIsPointer,
1220 const TypedVar *arg,
1221 bool isReader,
1222 Type::ErrorMode mode,
1223 bool addPrefixToName) const {
1224 const Type &type = arg->type();
1225 if(type.needsResolveReferences()) {
1226 type.emitResolveReferences(
1227 out,
1228 addPrefixToName ? ("_hidl_out_" + arg->name()) : arg->name(),
1229 isReader, // nameIsPointer
1230 parcelObj,
1231 parcelObjIsPointer,
1232 isReader,
1233 mode);
1234 }
1235}
1236
Yifan Hong068c5522016-10-31 14:07:25 -07001237status_t AST::generateProxyMethodSource(Formatter &out,
1238 const std::string &klassName,
1239 const Method *method,
1240 const Interface *superInterface) const {
1241
1242 method->generateCppSignature(out,
1243 klassName,
1244 true /* specify namespaces */);
1245
1246 const bool returnsValue = !method->results().empty();
1247 const TypedVar *elidedReturn = method->canElideCallback();
1248
Steven Moreland41c6d2e2016-11-07 12:26:54 -08001249 out << " {\n";
Yifan Hong068c5522016-10-31 14:07:25 -07001250
1251 out.indent();
1252
Martijn Coenen115d4282016-12-19 05:14:04 +01001253 if (method->isHidlReserved() && method->overridesCppImpl(IMPL_PROXY)) {
1254 method->cppImpl(IMPL_PROXY, out);
1255 out.unindent();
1256 out << "}\n\n";
1257 return OK;
1258 }
1259
Yifan Hong068c5522016-10-31 14:07:25 -07001260 if (returnsValue && elidedReturn == nullptr) {
1261 generateCheckNonNull(out, "_hidl_cb");
1262 }
1263
1264 status_t status = generateCppInstrumentationCall(
1265 out,
1266 InstrumentationEvent::CLIENT_API_ENTRY,
Yifan Hong068c5522016-10-31 14:07:25 -07001267 method);
1268 if (status != OK) {
1269 return status;
1270 }
1271
1272 out << "::android::hardware::Parcel _hidl_data;\n";
1273 out << "::android::hardware::Parcel _hidl_reply;\n";
1274 out << "::android::status_t _hidl_err;\n";
1275 out << "::android::hardware::Status _hidl_status;\n\n";
1276
1277 declareCppReaderLocals(
1278 out, method->results(), true /* forResults */);
1279
1280 out << "_hidl_err = _hidl_data.writeInterfaceToken(";
Yifan Hongeefe4f22017-01-04 15:32:42 -08001281 out << superInterface->fqName().cppName();
Yifan Hong068c5522016-10-31 14:07:25 -07001282 out << "::descriptor);\n";
Yifan Hong068c5522016-10-31 14:07:25 -07001283 out << "if (_hidl_err != ::android::OK) { goto _hidl_error; }\n\n";
1284
Martijn Coenenfff73352017-01-04 16:36:31 +01001285 bool hasInterfaceArgument = false;
Yifan Hong068c5522016-10-31 14:07:25 -07001286 // First DFS: write all buffers and resolve pointers for parent
1287 for (const auto &arg : method->args()) {
Martijn Coenenfa55d6e2016-12-20 06:08:31 +01001288 if (arg->type().isInterface()) {
1289 hasInterfaceArgument = true;
1290 }
Yifan Hong068c5522016-10-31 14:07:25 -07001291 emitCppReaderWriter(
1292 out,
1293 "_hidl_data",
1294 false /* parcelObjIsPointer */,
1295 arg,
1296 false /* reader */,
1297 Type::ErrorMode_Goto,
1298 false /* addPrefixToName */);
1299 }
1300
1301 // Second DFS: resolve references.
1302 for (const auto &arg : method->args()) {
1303 emitCppResolveReferences(
1304 out,
1305 "_hidl_data",
1306 false /* parcelObjIsPointer */,
1307 arg,
1308 false /* reader */,
1309 Type::ErrorMode_Goto,
1310 false /* addPrefixToName */);
1311 }
1312
Martijn Coenenfa55d6e2016-12-20 06:08:31 +01001313 if (hasInterfaceArgument) {
1314 // Start binder threadpool to handle incoming transactions
1315 out << "::android::hardware::ProcessState::self()->startThreadPool();\n";
1316 }
Yifan Hong068c5522016-10-31 14:07:25 -07001317 out << "_hidl_err = remote()->transact("
1318 << method->getSerialId()
1319 << " /* "
1320 << method->name()
1321 << " */, _hidl_data, &_hidl_reply";
1322
1323 if (method->isOneway()) {
1324 out << ", ::android::hardware::IBinder::FLAG_ONEWAY";
1325 }
1326 out << ");\n";
1327
1328 out << "if (_hidl_err != ::android::OK) { goto _hidl_error; }\n\n";
1329
1330 if (!method->isOneway()) {
Yifan Hong859e53f2016-11-14 19:08:24 -08001331 out << "_hidl_err = ::android::hardware::readFromParcel(&_hidl_status, _hidl_reply);\n";
Yifan Hong068c5522016-10-31 14:07:25 -07001332 out << "if (_hidl_err != ::android::OK) { goto _hidl_error; }\n\n";
1333 out << "if (!_hidl_status.isOk()) { return _hidl_status; }\n\n";
1334
1335
1336 // First DFS: write all buffers and resolve pointers for parent
1337 for (const auto &arg : method->results()) {
1338 emitCppReaderWriter(
1339 out,
1340 "_hidl_reply",
1341 false /* parcelObjIsPointer */,
1342 arg,
1343 true /* reader */,
1344 Type::ErrorMode_Goto,
1345 true /* addPrefixToName */);
1346 }
1347
1348 // Second DFS: resolve references.
1349 for (const auto &arg : method->results()) {
1350 emitCppResolveReferences(
1351 out,
1352 "_hidl_reply",
1353 false /* parcelObjIsPointer */,
1354 arg,
1355 true /* reader */,
1356 Type::ErrorMode_Goto,
1357 true /* addPrefixToName */);
1358 }
1359
1360 if (returnsValue && elidedReturn == nullptr) {
1361 out << "_hidl_cb(";
1362
Yifan Hong932464e2017-03-30 15:40:22 -07001363 out.join(method->results().begin(), method->results().end(), ", ", [&] (const auto &arg) {
Yifan Hong068c5522016-10-31 14:07:25 -07001364 if (arg->type().resultNeedsDeref()) {
1365 out << "*";
1366 }
1367 out << "_hidl_out_" << arg->name();
Yifan Hong932464e2017-03-30 15:40:22 -07001368 });
Yifan Hong068c5522016-10-31 14:07:25 -07001369
1370 out << ");\n\n";
1371 }
Martijn Coenen7b295242016-11-04 16:52:56 +01001372 }
1373 status = generateCppInstrumentationCall(
1374 out,
1375 InstrumentationEvent::CLIENT_API_EXIT,
1376 method);
1377 if (status != OK) {
1378 return status;
Yifan Hong068c5522016-10-31 14:07:25 -07001379 }
1380
1381 if (elidedReturn != nullptr) {
Yifan Hong068c5522016-10-31 14:07:25 -07001382 out << "_hidl_status.setFromStatusT(_hidl_err);\n";
1383 out << "return ::android::hardware::Return<";
Yifan Hong3b320f82016-11-01 15:15:54 -07001384 out << elidedReturn->type().getCppResultType()
Yifan Hong068c5522016-10-31 14:07:25 -07001385 << ">(_hidl_out_" << elidedReturn->name() << ");\n\n";
1386 } else {
1387 out << "_hidl_status.setFromStatusT(_hidl_err);\n";
1388 out << "return ::android::hardware::Return<void>();\n\n";
1389 }
1390
1391 out.unindent();
1392 out << "_hidl_error:\n";
1393 out.indent();
1394 out << "_hidl_status.setFromStatusT(_hidl_err);\n";
1395 out << "return ::android::hardware::Return<";
1396 if (elidedReturn != nullptr) {
Yifan Hong3b320f82016-11-01 15:15:54 -07001397 out << method->results().at(0)->type().getCppResultType();
Yifan Hong068c5522016-10-31 14:07:25 -07001398 } else {
1399 out << "void";
1400 }
1401 out << ">(_hidl_status);\n";
1402
1403 out.unindent();
1404 out << "}\n\n";
1405 return OK;
1406}
1407
Andreas Huber881227d2016-08-02 14:20:21 -07001408status_t AST::generateProxySource(
Yifan Hongeefe4f22017-01-04 15:32:42 -08001409 Formatter &out, const FQName &fqName) const {
1410 const std::string klassName = fqName.getInterfaceProxyName();
Andreas Huber881227d2016-08-02 14:20:21 -07001411
1412 out << klassName
1413 << "::"
1414 << klassName
Iliyan Malchev549e2592016-08-10 08:59:12 -07001415 << "(const ::android::sp<::android::hardware::IBinder> &_hidl_impl)\n";
Andreas Huber881227d2016-08-02 14:20:21 -07001416
1417 out.indent();
1418 out.indent();
1419
1420 out << ": BpInterface"
Yifan Hongeefe4f22017-01-04 15:32:42 -08001421 << "<"
1422 << fqName.getInterfaceName()
Zhuoyao Zhang964f72f2016-10-21 11:12:03 -07001423 << ">(_hidl_impl),\n"
Zhuoyao Zhang7d3ac802017-02-15 21:05:49 +00001424 << " ::android::hardware::details::HidlInstrumentor(\""
Zhuoyao Zhang964f72f2016-10-21 11:12:03 -07001425 << mPackage.string()
Zhuoyao Zhangd10feea2017-01-23 17:29:58 -08001426 << "\", \""
Yifan Hongeefe4f22017-01-04 15:32:42 -08001427 << fqName.getInterfaceName()
Zhuoyao Zhang964f72f2016-10-21 11:12:03 -07001428 << "\") {\n";
Zhuoyao Zhang8f492942016-09-28 14:27:56 -07001429
Andreas Huber881227d2016-08-02 14:20:21 -07001430 out.unindent();
1431 out.unindent();
1432 out << "}\n\n";
1433
Yifan Hong068c5522016-10-31 14:07:25 -07001434 status_t err = generateMethods(out, [&](const Method *method, const Interface *superInterface) {
1435 return generateProxyMethodSource(out, klassName, method, superInterface);
1436 });
Andreas Huber881227d2016-08-02 14:20:21 -07001437
Yifan Hong068c5522016-10-31 14:07:25 -07001438 return err;
Andreas Huber881227d2016-08-02 14:20:21 -07001439}
1440
1441status_t AST::generateStubSource(
Martijn Coenen6ec2f0b2016-12-11 01:04:55 +01001442 Formatter &out,
Yifan Hongeefe4f22017-01-04 15:32:42 -08001443 const Interface *iface) const {
1444 const std::string interfaceName = iface->localName();
1445 const std::string klassName = iface->getStubName();
Andreas Huber881227d2016-08-02 14:20:21 -07001446
Steven Moreland40786312016-08-16 10:29:40 -07001447 out << klassName
1448 << "::"
1449 << klassName
Yifan Hongeefe4f22017-01-04 15:32:42 -08001450 << "(const ::android::sp<" << interfaceName <<"> &_hidl_impl)\n";
Steven Moreland40786312016-08-16 10:29:40 -07001451
1452 out.indent();
1453 out.indent();
1454
Martijn Coenen6ec2f0b2016-12-11 01:04:55 +01001455 if (iface->isIBase()) {
Zhuoyao Zhang7d3ac802017-02-15 21:05:49 +00001456 out << ": ::android::hardware::details::HidlInstrumentor(\"";
Martijn Coenen6ec2f0b2016-12-11 01:04:55 +01001457 } else {
Yifan Hongeefe4f22017-01-04 15:32:42 -08001458 out << ": "
1459 << gIBaseFqName.getInterfaceStubFqName().cppName()
1460 << "(_hidl_impl, \"";
Martijn Coenen6ec2f0b2016-12-11 01:04:55 +01001461 }
1462
1463 out << mPackage.string()
Zhuoyao Zhangd10feea2017-01-23 17:29:58 -08001464 << "\", \""
Yifan Hongeefe4f22017-01-04 15:32:42 -08001465 << interfaceName
Martijn Coenen6ec2f0b2016-12-11 01:04:55 +01001466 << "\") { \n";
1467 out.indent();
1468 out << "_hidl_mImpl = _hidl_impl;\n";
1469 out.unindent();
Steven Moreland40786312016-08-16 10:29:40 -07001470
1471 out.unindent();
1472 out.unindent();
1473 out << "}\n\n";
1474
Martijn Coenen6ec2f0b2016-12-11 01:04:55 +01001475 if (iface->isIBase()) {
Yifan Hong01e7cde2017-01-09 17:45:45 -08001476 // BnHwBase has a constructor to initialize the HidlInstrumentor
Martijn Coenen6ec2f0b2016-12-11 01:04:55 +01001477 // class properly.
1478 out << klassName
1479 << "::"
1480 << klassName
Zhuoyao Zhangd10feea2017-01-23 17:29:58 -08001481 << "(const ::android::sp<" << interfaceName << "> &_hidl_impl,"
1482 << " const std::string &HidlInstrumentor_package,"
1483 << " const std::string &HidlInstrumentor_interface)\n";
Martijn Coenen6ec2f0b2016-12-11 01:04:55 +01001484
1485 out.indent();
1486 out.indent();
1487
Zhuoyao Zhang7d3ac802017-02-15 21:05:49 +00001488 out << ": ::android::hardware::details::HidlInstrumentor("
Zhuoyao Zhangd10feea2017-01-23 17:29:58 -08001489 << "HidlInstrumentor_package, HidlInstrumentor_interface) {\n";
Martijn Coenen6ec2f0b2016-12-11 01:04:55 +01001490 out.indent();
1491 out << "_hidl_mImpl = _hidl_impl;\n";
1492 out.unindent();
1493
1494 out.unindent();
1495 out.unindent();
1496 out << "}\n\n";
1497 }
1498
Yifan Hongbcffce22017-02-01 15:52:06 -08001499 status_t err = generateMethods(out, [&](const Method *method, const Interface *) {
1500 if (!method->isHidlReserved() || !method->overridesCppImpl(IMPL_STUB_IMPL)) {
1501 return OK;
1502 }
1503 method->generateCppSignature(out, iface->getStubName());
1504 out << " ";
1505 out.block([&] {
1506 method->cppImpl(IMPL_STUB_IMPL, out);
1507 }).endl();
1508 return OK;
1509 });
Steven Moreland60818632017-02-04 00:33:42 -08001510 if (err != OK) {
1511 return err;
1512 }
Martijn Coenen6ec2f0b2016-12-11 01:04:55 +01001513
Andreas Huber881227d2016-08-02 14:20:21 -07001514 out << "::android::status_t " << klassName << "::onTransact(\n";
1515
1516 out.indent();
1517 out.indent();
1518
Iliyan Malchev549e2592016-08-10 08:59:12 -07001519 out << "uint32_t _hidl_code,\n"
1520 << "const ::android::hardware::Parcel &_hidl_data,\n"
1521 << "::android::hardware::Parcel *_hidl_reply,\n"
1522 << "uint32_t _hidl_flags,\n"
1523 << "TransactCallback _hidl_cb) {\n";
Andreas Huber881227d2016-08-02 14:20:21 -07001524
1525 out.unindent();
1526
Iliyan Malchev549e2592016-08-10 08:59:12 -07001527 out << "::android::status_t _hidl_err = ::android::OK;\n\n";
Iliyan Malchev549e2592016-08-10 08:59:12 -07001528 out << "switch (_hidl_code) {\n";
Andreas Huber881227d2016-08-02 14:20:21 -07001529 out.indent();
1530
Yifan Hong10fe0b52016-10-19 14:20:17 -07001531 for (const auto &tuple : iface->allMethodsFromRoot()) {
1532 const Method *method = tuple.method();
1533 const Interface *superInterface = tuple.interface();
1534 out << "case "
1535 << method->getSerialId()
1536 << " /* "
1537 << method->name()
1538 << " */:\n{\n";
Andreas Huber881227d2016-08-02 14:20:21 -07001539
Yifan Hong10fe0b52016-10-19 14:20:17 -07001540 out.indent();
Andreas Huber881227d2016-08-02 14:20:21 -07001541
Yifan Hong10fe0b52016-10-19 14:20:17 -07001542 status_t err =
1543 generateStubSourceForMethod(out, superInterface, method);
Andreas Huber6cb08cf2016-08-03 15:44:51 -07001544
Yifan Hong10fe0b52016-10-19 14:20:17 -07001545 if (err != OK) {
1546 return err;
Andreas Huber881227d2016-08-02 14:20:21 -07001547 }
Yifan Hong10fe0b52016-10-19 14:20:17 -07001548
1549 out.unindent();
1550 out << "}\n\n";
Andreas Huber881227d2016-08-02 14:20:21 -07001551 }
1552
1553 out << "default:\n{\n";
1554 out.indent();
1555
Martijn Coenen6ec2f0b2016-12-11 01:04:55 +01001556 out << "return onTransact(\n";
Andreas Huber881227d2016-08-02 14:20:21 -07001557
1558 out.indent();
1559 out.indent();
1560
Iliyan Malchev549e2592016-08-10 08:59:12 -07001561 out << "_hidl_code, _hidl_data, _hidl_reply, "
1562 << "_hidl_flags, _hidl_cb);\n";
Andreas Huber881227d2016-08-02 14:20:21 -07001563
1564 out.unindent();
1565 out.unindent();
1566
1567 out.unindent();
1568 out << "}\n";
1569
1570 out.unindent();
1571 out << "}\n\n";
1572
Yifan Honga018ed52016-12-13 16:35:08 -08001573 out.sIf("_hidl_err == ::android::UNEXPECTED_NULL", [&] {
1574 out << "_hidl_err = ::android::hardware::writeToParcel(\n";
1575 out.indent(2, [&] {
1576 out << "::android::hardware::Status::fromExceptionCode(::android::hardware::Status::EX_NULL_POINTER),\n";
1577 out << "_hidl_reply);\n";
1578 });
1579 });
Andreas Huber881227d2016-08-02 14:20:21 -07001580
Iliyan Malchev549e2592016-08-10 08:59:12 -07001581 out << "return _hidl_err;\n";
Andreas Huber881227d2016-08-02 14:20:21 -07001582
1583 out.unindent();
1584 out << "}\n\n";
1585
1586 return OK;
1587}
1588
1589status_t AST::generateStubSourceForMethod(
Andreas Huber6cb08cf2016-08-03 15:44:51 -07001590 Formatter &out, const Interface *iface, const Method *method) const {
Martijn Coenen115d4282016-12-19 05:14:04 +01001591 if (method->isHidlReserved() && method->overridesCppImpl(IMPL_STUB)) {
1592 method->cppImpl(IMPL_STUB, out);
1593 out << "break;\n";
1594 return OK;
1595 }
1596
Yifan Hongeefe4f22017-01-04 15:32:42 -08001597 out << "if (!_hidl_data.enforceInterface("
1598 << iface->fullName()
1599 << "::descriptor)) {\n";
Andreas Huber6cb08cf2016-08-03 15:44:51 -07001600
Andreas Huber881227d2016-08-02 14:20:21 -07001601 out.indent();
Iliyan Malchev549e2592016-08-10 08:59:12 -07001602 out << "_hidl_err = ::android::BAD_TYPE;\n";
Andreas Huber881227d2016-08-02 14:20:21 -07001603 out << "break;\n";
1604 out.unindent();
1605 out << "}\n\n";
1606
Andreas Huber5e44a292016-09-27 14:52:39 -07001607 declareCppReaderLocals(out, method->args(), false /* forResults */);
Andreas Hubere7ff2282016-08-16 13:50:03 -07001608
Yifan Hongbf459bc2016-08-23 16:50:37 -07001609 // First DFS: write buffers
Andreas Huber881227d2016-08-02 14:20:21 -07001610 for (const auto &arg : method->args()) {
1611 emitCppReaderWriter(
1612 out,
Iliyan Malchev549e2592016-08-10 08:59:12 -07001613 "_hidl_data",
Andreas Huber881227d2016-08-02 14:20:21 -07001614 false /* parcelObjIsPointer */,
1615 arg,
1616 true /* reader */,
Andreas Huber5e44a292016-09-27 14:52:39 -07001617 Type::ErrorMode_Break,
1618 false /* addPrefixToName */);
Andreas Huber881227d2016-08-02 14:20:21 -07001619 }
1620
Yifan Hongbf459bc2016-08-23 16:50:37 -07001621 // Second DFS: resolve references
1622 for (const auto &arg : method->args()) {
1623 emitCppResolveReferences(
1624 out,
1625 "_hidl_data",
1626 false /* parcelObjIsPointer */,
1627 arg,
1628 true /* reader */,
1629 Type::ErrorMode_Break,
1630 false /* addPrefixToName */);
1631 }
1632
Zhuoyao Zhang8f492942016-09-28 14:27:56 -07001633 status_t status = generateCppInstrumentationCall(
1634 out,
1635 InstrumentationEvent::SERVER_API_ENTRY,
Zhuoyao Zhang8f492942016-09-28 14:27:56 -07001636 method);
1637 if (status != OK) {
1638 return status;
Zhuoyao Zhangde578002016-09-07 18:24:17 -07001639 }
1640
Andreas Huber881227d2016-08-02 14:20:21 -07001641 const bool returnsValue = !method->results().empty();
Iliyan Malchev40d474a2016-08-16 06:20:17 -07001642 const TypedVar *elidedReturn = method->canElideCallback();
Yifan Hongcd2ae452017-01-31 14:33:40 -08001643 const std::string callee =
1644 (method->isHidlReserved() && method->overridesCppImpl(IMPL_STUB_IMPL))
1645 ? "this" : "_hidl_mImpl";
Andreas Huber881227d2016-08-02 14:20:21 -07001646
Iliyan Malchev40d474a2016-08-16 06:20:17 -07001647 if (elidedReturn != nullptr) {
Yifan Hong3b320f82016-11-01 15:15:54 -07001648 out << elidedReturn->type().getCppResultType()
Yifan Honga47eef32016-12-12 10:38:54 -08001649 << " _hidl_out_"
Yifan Hong3b320f82016-11-01 15:15:54 -07001650 << elidedReturn->name()
Martijn Coenen6ec2f0b2016-12-11 01:04:55 +01001651 << " = "
Yifan Hongcd2ae452017-01-31 14:33:40 -08001652 << callee << "->" << method->name()
Yifan Hong3b320f82016-11-01 15:15:54 -07001653 << "(";
Andreas Huber881227d2016-08-02 14:20:21 -07001654
Yifan Hong932464e2017-03-30 15:40:22 -07001655 out.join(method->args().begin(), method->args().end(), ", ", [&] (const auto &arg) {
Iliyan Malchev40d474a2016-08-16 06:20:17 -07001656 if (arg->type().resultNeedsDeref()) {
1657 out << "*";
1658 }
Iliyan Malchev40d474a2016-08-16 06:20:17 -07001659 out << arg->name();
Yifan Hong932464e2017-03-30 15:40:22 -07001660 });
Andreas Huber881227d2016-08-02 14:20:21 -07001661
Steven Moreland2ae5bca2016-12-01 05:56:49 +00001662 out << ");\n\n";
Yifan Hong859e53f2016-11-14 19:08:24 -08001663 out << "::android::hardware::writeToParcel(::android::hardware::Status::ok(), "
1664 << "_hidl_reply);\n\n";
Andreas Huber881227d2016-08-02 14:20:21 -07001665
Iliyan Malchev40d474a2016-08-16 06:20:17 -07001666 elidedReturn->type().emitReaderWriter(
1667 out,
Yifan Honga47eef32016-12-12 10:38:54 -08001668 "_hidl_out_" + elidedReturn->name(),
Iliyan Malchev40d474a2016-08-16 06:20:17 -07001669 "_hidl_reply",
1670 true, /* parcelObjIsPointer */
1671 false, /* isReader */
1672 Type::ErrorMode_Ignore);
Andreas Huber881227d2016-08-02 14:20:21 -07001673
Yifan Hongbf459bc2016-08-23 16:50:37 -07001674 emitCppResolveReferences(
1675 out,
1676 "_hidl_reply",
1677 true /* parcelObjIsPointer */,
1678 elidedReturn,
1679 false /* reader */,
1680 Type::ErrorMode_Ignore,
Yifan Honga47eef32016-12-12 10:38:54 -08001681 true /* addPrefixToName */);
Yifan Hongbf459bc2016-08-23 16:50:37 -07001682
Zhuoyao Zhang8f492942016-09-28 14:27:56 -07001683 status_t status = generateCppInstrumentationCall(
1684 out,
1685 InstrumentationEvent::SERVER_API_EXIT,
Zhuoyao Zhang8f492942016-09-28 14:27:56 -07001686 method);
1687 if (status != OK) {
1688 return status;
1689 }
Zhuoyao Zhangde578002016-09-07 18:24:17 -07001690
Iliyan Malchev549e2592016-08-10 08:59:12 -07001691 out << "_hidl_cb(*_hidl_reply);\n";
Iliyan Malchev40d474a2016-08-16 06:20:17 -07001692 } else {
1693 if (returnsValue) {
1694 out << "bool _hidl_callbackCalled = false;\n\n";
1695 }
Andreas Huber881227d2016-08-02 14:20:21 -07001696
Yifan Hongcd2ae452017-01-31 14:33:40 -08001697 out << callee << "->" << method->name() << "(";
Andreas Huber881227d2016-08-02 14:20:21 -07001698
Yifan Hong932464e2017-03-30 15:40:22 -07001699 out.join(method->args().begin(), method->args().end(), ", ", [&] (const auto &arg) {
Iliyan Malchev40d474a2016-08-16 06:20:17 -07001700 if (arg->type().resultNeedsDeref()) {
1701 out << "*";
1702 }
1703
1704 out << arg->name();
Yifan Hong932464e2017-03-30 15:40:22 -07001705 });
Iliyan Malchev40d474a2016-08-16 06:20:17 -07001706
1707 if (returnsValue) {
Yifan Hong932464e2017-03-30 15:40:22 -07001708 if (!method->args().empty()) {
Iliyan Malchev40d474a2016-08-16 06:20:17 -07001709 out << ", ";
1710 }
1711
1712 out << "[&](";
1713
Yifan Hong932464e2017-03-30 15:40:22 -07001714 out.join(method->results().begin(), method->results().end(), ", ", [&](const auto &arg) {
Yifan Honga47eef32016-12-12 10:38:54 -08001715 out << "const auto &_hidl_out_" << arg->name();
Yifan Hong932464e2017-03-30 15:40:22 -07001716 });
Iliyan Malchev40d474a2016-08-16 06:20:17 -07001717
1718 out << ") {\n";
1719 out.indent();
Steven Moreland05cd4232016-11-21 16:01:12 -08001720 out << "if (_hidl_callbackCalled) {\n";
1721 out.indent();
1722 out << "LOG_ALWAYS_FATAL(\""
1723 << method->name()
1724 << ": _hidl_cb called a second time, but must be called once.\");\n";
1725 out.unindent();
1726 out << "}\n";
Iliyan Malchev40d474a2016-08-16 06:20:17 -07001727 out << "_hidl_callbackCalled = true;\n\n";
1728
Yifan Hong859e53f2016-11-14 19:08:24 -08001729 out << "::android::hardware::writeToParcel(::android::hardware::Status::ok(), "
1730 << "_hidl_reply);\n\n";
Iliyan Malchev40d474a2016-08-16 06:20:17 -07001731
Yifan Hongbf459bc2016-08-23 16:50:37 -07001732 // First DFS: buffers
Iliyan Malchev40d474a2016-08-16 06:20:17 -07001733 for (const auto &arg : method->results()) {
1734 emitCppReaderWriter(
1735 out,
1736 "_hidl_reply",
1737 true /* parcelObjIsPointer */,
1738 arg,
1739 false /* reader */,
Andreas Huber5e44a292016-09-27 14:52:39 -07001740 Type::ErrorMode_Ignore,
Yifan Honga47eef32016-12-12 10:38:54 -08001741 true /* addPrefixToName */);
Iliyan Malchev40d474a2016-08-16 06:20:17 -07001742 }
1743
Yifan Hongbf459bc2016-08-23 16:50:37 -07001744 // Second DFS: resolve references
1745 for (const auto &arg : method->results()) {
1746 emitCppResolveReferences(
1747 out,
1748 "_hidl_reply",
1749 true /* parcelObjIsPointer */,
1750 arg,
1751 false /* reader */,
1752 Type::ErrorMode_Ignore,
Yifan Honga47eef32016-12-12 10:38:54 -08001753 true /* addPrefixToName */);
Yifan Hongbf459bc2016-08-23 16:50:37 -07001754 }
1755
Zhuoyao Zhang8f492942016-09-28 14:27:56 -07001756 status_t status = generateCppInstrumentationCall(
1757 out,
1758 InstrumentationEvent::SERVER_API_EXIT,
Zhuoyao Zhang8f492942016-09-28 14:27:56 -07001759 method);
1760 if (status != OK) {
1761 return status;
Zhuoyao Zhangde578002016-09-07 18:24:17 -07001762 }
1763
Iliyan Malchev40d474a2016-08-16 06:20:17 -07001764 out << "_hidl_cb(*_hidl_reply);\n";
1765
1766 out.unindent();
Martijn Coenen8e4fc842017-01-09 16:28:59 +01001767 out << "});\n\n";
1768 } else {
1769 out << ");\n\n";
1770 status_t status = generateCppInstrumentationCall(
1771 out,
1772 InstrumentationEvent::SERVER_API_EXIT,
1773 method);
1774 if (status != OK) {
1775 return status;
1776 }
Iliyan Malchev40d474a2016-08-16 06:20:17 -07001777 }
Iliyan Malchevd57066f2016-09-08 13:59:38 -07001778
Iliyan Malchev40d474a2016-08-16 06:20:17 -07001779 if (returnsValue) {
1780 out << "if (!_hidl_callbackCalled) {\n";
1781 out.indent();
Steven Moreland05cd4232016-11-21 16:01:12 -08001782 out << "LOG_ALWAYS_FATAL(\""
1783 << method->name()
1784 << ": _hidl_cb not called, but must be called once.\");\n";
Iliyan Malchev40d474a2016-08-16 06:20:17 -07001785 out.unindent();
1786 out << "}\n\n";
Steven Moreland05cd4232016-11-21 16:01:12 -08001787 } else {
1788 out << "::android::hardware::writeToParcel("
1789 << "::android::hardware::Status::ok(), "
1790 << "_hidl_reply);\n\n";
Iliyan Malchev40d474a2016-08-16 06:20:17 -07001791 }
Andreas Huber881227d2016-08-02 14:20:21 -07001792 }
1793
1794 out << "break;\n";
1795
1796 return OK;
1797}
1798
Steven Moreland69e7c702016-09-09 11:16:32 -07001799status_t AST::generatePassthroughHeader(const std::string &outputPath) const {
1800 std::string ifaceName;
1801 if (!AST::isInterface(&ifaceName)) {
1802 // types.hal does not get a stub header.
1803 return OK;
1804 }
1805
1806 const Interface *iface = mRootScope->getInterface();
1807
Yifan Hongeefe4f22017-01-04 15:32:42 -08001808 const std::string klassName = iface->getPassthroughName();
Steven Moreland69e7c702016-09-09 11:16:32 -07001809
1810 bool supportOneway = iface->hasOnewayMethods();
1811
1812 std::string path = outputPath;
1813 path.append(mCoordinator->convertPackageRootToPath(mPackage));
1814 path.append(mCoordinator->getPackagePath(mPackage, true /* relative */));
1815 path.append(klassName);
1816 path.append(".h");
1817
1818 CHECK(Coordinator::MakeParentHierarchy(path));
1819 FILE *file = fopen(path.c_str(), "w");
1820
1821 if (file == NULL) {
1822 return -errno;
1823 }
1824
1825 Formatter out(file);
1826
1827 const std::string guard = makeHeaderGuard(klassName);
1828
1829 out << "#ifndef " << guard << "\n";
1830 out << "#define " << guard << "\n\n";
1831
1832 std::vector<std::string> packageComponents;
1833 getPackageAndVersionComponents(
1834 &packageComponents, false /* cpp_compatible */);
1835
Yifan Hongb0949432016-12-15 15:32:24 -08001836 out << "#include <cutils/trace.h>\n";
Steven Moreland69e7c702016-09-09 11:16:32 -07001837 out << "#include <future>\n";
Steven Morelandee88eed2016-10-31 17:49:00 -07001838
1839 generateCppPackageInclude(out, mPackage, ifaceName);
1840 out << "\n";
Steven Moreland69e7c702016-09-09 11:16:32 -07001841
Yifan Hong7a118f52016-12-07 11:21:15 -08001842 out << "#include <hidl/HidlPassthroughSupport.h>\n";
Steven Moreland69e7c702016-09-09 11:16:32 -07001843 if (supportOneway) {
Yifan Hong2cbc1472016-10-25 19:02:40 -07001844 out << "#include <hidl/TaskRunner.h>\n";
Steven Moreland69e7c702016-09-09 11:16:32 -07001845 }
1846
1847 enterLeaveNamespace(out, true /* enter */);
1848 out << "\n";
1849
1850 out << "struct "
1851 << klassName
1852 << " : " << ifaceName
Zhuoyao Zhang7d3ac802017-02-15 21:05:49 +00001853 << ", ::android::hardware::details::HidlInstrumentor {\n";
Steven Moreland69e7c702016-09-09 11:16:32 -07001854
1855 out.indent();
1856 out << "explicit "
1857 << klassName
Steven Morelandc46e9842016-11-02 13:21:26 -07001858 << "(const ::android::sp<"
Steven Moreland69e7c702016-09-09 11:16:32 -07001859 << ifaceName
1860 << "> impl);\n";
1861
Yifan Hong068c5522016-10-31 14:07:25 -07001862 status_t err = generateMethods(out, [&](const Method *method, const Interface *) {
1863 return generatePassthroughMethod(out, method);
1864 });
Steven Moreland69e7c702016-09-09 11:16:32 -07001865
1866 if (err != OK) {
1867 return err;
1868 }
1869
1870 out.unindent();
1871 out << "private:\n";
1872 out.indent();
Steven Morelandc46e9842016-11-02 13:21:26 -07001873 out << "const ::android::sp<" << ifaceName << "> mImpl;\n";
Steven Moreland69e7c702016-09-09 11:16:32 -07001874
1875 if (supportOneway) {
Yifan Hongef91d362017-03-20 17:18:13 -07001876 out << "::android::hardware::details::TaskRunner mOnewayQueue;\n";
Steven Moreland69e7c702016-09-09 11:16:32 -07001877
1878 out << "\n";
1879
1880 out << "::android::hardware::Return<void> addOnewayTask("
1881 "std::function<void(void)>);\n\n";
Steven Moreland69e7c702016-09-09 11:16:32 -07001882 }
1883
1884 out.unindent();
1885
1886 out << "};\n\n";
1887
1888 enterLeaveNamespace(out, false /* enter */);
1889
1890 out << "\n#endif // " << guard << "\n";
1891
1892 return OK;
1893}
1894
Yifan Hongfe95aa22016-10-19 17:26:45 -07001895status_t AST::generateInterfaceSource(Formatter &out) const {
1896 const Interface *iface = mRootScope->getInterface();
1897
Yifan Hong2d7126b2016-10-20 15:12:57 -07001898 // generate castFrom functions
Yifan Hong3d746092016-12-07 14:26:33 -08001899 std::string childTypeResult = iface->getCppResultType();
Yifan Hongfe95aa22016-10-19 17:26:45 -07001900
Steven Morelandd4b068a2017-03-20 06:30:51 -07001901 status_t err = generateMethods(out, [&](const Method *method, const Interface *) {
1902 bool reserved = method->isHidlReserved();
1903
1904 if (!reserved) {
1905 out << "// no default implementation for: ";
1906 }
1907 method->generateCppSignature(out, iface->localName());
1908 if (reserved) {
1909 out.block([&]() {
Steven Moreland937408a2017-03-20 09:54:18 -07001910 method->cppImpl(IMPL_INTERFACE, out);
Steven Morelandd4b068a2017-03-20 06:30:51 -07001911 }).endl();
1912 }
1913
1914 out << "\n";
1915
1916 return OK;
1917 });
1918 if (err != OK) {
1919 return err;
1920 }
1921
Yifan Hong3d746092016-12-07 14:26:33 -08001922 for (const Interface *superType : iface->typeChain()) {
Yifan Hong200209c2017-03-29 03:39:09 -07001923 out << "// static \n::android::hardware::Return<"
Yifan Hong3d746092016-12-07 14:26:33 -08001924 << childTypeResult
Yifan Hong200209c2017-03-29 03:39:09 -07001925 << "> "
Yifan Hongeefe4f22017-01-04 15:32:42 -08001926 << iface->localName()
Yifan Hong3d746092016-12-07 14:26:33 -08001927 << "::castFrom("
1928 << superType->getCppArgumentType()
Yifan Hong200209c2017-03-29 03:39:09 -07001929 << " parent, bool "
1930 << (iface == superType ? "/* emitError */" : "emitError")
1931 << ") {\n";
Yifan Hong3d746092016-12-07 14:26:33 -08001932 out.indent();
1933 if (iface == superType) {
1934 out << "return parent;\n";
1935 } else {
Yifan Hong33e78012017-03-13 17:46:33 -07001936 out << "return ::android::hardware::details::castInterface<";
Yifan Hongeefe4f22017-01-04 15:32:42 -08001937 out << iface->localName() << ", "
Yifan Hongfe95aa22016-10-19 17:26:45 -07001938 << superType->fqName().cppName() << ", "
Yifan Hongeefe4f22017-01-04 15:32:42 -08001939 << iface->getProxyName() << ", "
Yifan Hong51a65092017-01-04 15:41:44 -08001940 << superType->getProxyFqName().cppName()
Yifan Hongfe95aa22016-10-19 17:26:45 -07001941 << ">(\n";
1942 out.indent();
1943 out.indent();
1944 out << "parent, \""
1945 << iface->fqName().string()
Yifan Hong200209c2017-03-29 03:39:09 -07001946 << "\", emitError);\n";
Yifan Hongfe95aa22016-10-19 17:26:45 -07001947 out.unindent();
1948 out.unindent();
Yifan Hongfe95aa22016-10-19 17:26:45 -07001949 }
Yifan Hong3d746092016-12-07 14:26:33 -08001950 out.unindent();
1951 out << "}\n\n";
Yifan Hongfe95aa22016-10-19 17:26:45 -07001952 }
1953
1954 return OK;
1955}
1956
Steven Moreland69e7c702016-09-09 11:16:32 -07001957status_t AST::generatePassthroughSource(Formatter &out) const {
1958 const Interface *iface = mRootScope->getInterface();
1959
Yifan Hongeefe4f22017-01-04 15:32:42 -08001960 const std::string klassName = iface->getPassthroughName();
Steven Moreland69e7c702016-09-09 11:16:32 -07001961
1962 out << klassName
1963 << "::"
1964 << klassName
Steven Morelandc46e9842016-11-02 13:21:26 -07001965 << "(const ::android::sp<"
Steven Moreland69e7c702016-09-09 11:16:32 -07001966 << iface->fullName()
Zhuoyao Zhang7d3ac802017-02-15 21:05:49 +00001967 << "> impl) : ::android::hardware::details::HidlInstrumentor(\""
Zhuoyao Zhangd10feea2017-01-23 17:29:58 -08001968 << mPackage.string()
1969 << "\", \""
1970 << iface->localName()
Steven Moreland9b1cbdf2016-11-01 12:23:27 -07001971 << "\"), mImpl(impl) {";
Yifan Hong2cbc1472016-10-25 19:02:40 -07001972 if (iface->hasOnewayMethods()) {
1973 out << "\n";
Yifan Hong33223ca2016-12-13 15:07:35 -08001974 out.indent([&] {
Yifan Hongf01dad42017-03-20 19:03:11 -07001975 out << "mOnewayQueue.start(3000 /* similar limit to binderized */);\n";
Yifan Hong2cbc1472016-10-25 19:02:40 -07001976 });
1977 }
1978 out << "}\n\n";
Steven Moreland69e7c702016-09-09 11:16:32 -07001979
1980 if (iface->hasOnewayMethods()) {
1981 out << "::android::hardware::Return<void> "
1982 << klassName
1983 << "::addOnewayTask(std::function<void(void)> fun) {\n";
1984 out.indent();
Yifan Hong2cbc1472016-10-25 19:02:40 -07001985 out << "if (!mOnewayQueue.push(fun)) {\n";
Steven Moreland69e7c702016-09-09 11:16:32 -07001986 out.indent();
Steven Moreland67f67b42016-09-29 08:59:02 -07001987 out << "return ::android::hardware::Status::fromExceptionCode(\n";
1988 out.indent();
1989 out.indent();
1990 out << "::android::hardware::Status::EX_TRANSACTION_FAILED);\n";
1991 out.unindent();
1992 out.unindent();
Steven Moreland69e7c702016-09-09 11:16:32 -07001993 out.unindent();
Steven Moreland69e7c702016-09-09 11:16:32 -07001994 out << "}\n";
1995
Steven Morelandd366c262016-10-11 15:29:10 -07001996 out << "return ::android::hardware::Status();\n";
Steven Moreland69e7c702016-09-09 11:16:32 -07001997
1998 out.unindent();
1999 out << "}\n\n";
2000
2001
2002 }
2003
2004 return OK;
2005}
2006
Martijn Coenen7b295242016-11-04 16:52:56 +01002007status_t AST::generateCppAtraceCall(Formatter &out,
2008 InstrumentationEvent event,
2009 const Method *method) const {
2010 const Interface *iface = mRootScope->getInterface();
Yifan Hongeefe4f22017-01-04 15:32:42 -08002011 std::string baseString = "HIDL::" + iface->localName() + "::" + method->name();
Martijn Coenen7b295242016-11-04 16:52:56 +01002012 switch (event) {
2013 case SERVER_API_ENTRY:
2014 {
2015 out << "atrace_begin(ATRACE_TAG_HAL, \""
2016 << baseString + "::server\");\n";
2017 break;
2018 }
2019 case CLIENT_API_ENTRY:
2020 {
2021 out << "atrace_begin(ATRACE_TAG_HAL, \""
2022 << baseString + "::client\");\n";
2023 break;
2024 }
2025 case PASSTHROUGH_ENTRY:
2026 {
2027 out << "atrace_begin(ATRACE_TAG_HAL, \""
2028 << baseString + "::passthrough\");\n";
2029 break;
2030 }
2031 case SERVER_API_EXIT:
2032 case CLIENT_API_EXIT:
2033 case PASSTHROUGH_EXIT:
2034 {
2035 out << "atrace_end(ATRACE_TAG_HAL);\n";
2036 break;
2037 }
2038 default:
2039 {
2040 LOG(ERROR) << "Unsupported instrumentation event: " << event;
2041 return UNKNOWN_ERROR;
2042 }
2043 }
2044
2045 return OK;
2046}
2047
Zhuoyao Zhang8f492942016-09-28 14:27:56 -07002048status_t AST::generateCppInstrumentationCall(
2049 Formatter &out,
2050 InstrumentationEvent event,
Steven Moreland031ccf12016-10-31 15:54:38 -07002051 const Method *method) const {
Martijn Coenen7b295242016-11-04 16:52:56 +01002052 status_t err = generateCppAtraceCall(out, event, method);
2053 if (err != OK) {
2054 return err;
2055 }
2056
Zhuoyao Zhang8f492942016-09-28 14:27:56 -07002057 out << "if (UNLIKELY(mEnableInstrumentation)) {\n";
2058 out.indent();
Zhuoyao Zhang964f72f2016-10-21 11:12:03 -07002059 out << "std::vector<void *> _hidl_args;\n";
Zhuoyao Zhang8f492942016-09-28 14:27:56 -07002060 std::string event_str = "";
2061 switch (event) {
2062 case SERVER_API_ENTRY:
2063 {
2064 event_str = "InstrumentationEvent::SERVER_API_ENTRY";
2065 for (const auto &arg : method->args()) {
Zhuoyao Zhang964f72f2016-10-21 11:12:03 -07002066 out << "_hidl_args.push_back((void *)"
Zhuoyao Zhang8f492942016-09-28 14:27:56 -07002067 << (arg->type().resultNeedsDeref() ? "" : "&")
2068 << arg->name()
2069 << ");\n";
2070 }
2071 break;
2072 }
2073 case SERVER_API_EXIT:
2074 {
2075 event_str = "InstrumentationEvent::SERVER_API_EXIT";
Steven Moreland031ccf12016-10-31 15:54:38 -07002076 for (const auto &arg : method->results()) {
Yifan Honga47eef32016-12-12 10:38:54 -08002077 out << "_hidl_args.push_back((void *)&_hidl_out_"
Steven Moreland031ccf12016-10-31 15:54:38 -07002078 << arg->name()
Zhuoyao Zhang8f492942016-09-28 14:27:56 -07002079 << ");\n";
Zhuoyao Zhang8f492942016-09-28 14:27:56 -07002080 }
2081 break;
2082 }
2083 case CLIENT_API_ENTRY:
2084 {
2085 event_str = "InstrumentationEvent::CLIENT_API_ENTRY";
2086 for (const auto &arg : method->args()) {
Zhuoyao Zhang964f72f2016-10-21 11:12:03 -07002087 out << "_hidl_args.push_back((void *)&"
2088 << arg->name()
2089 << ");\n";
Zhuoyao Zhang8f492942016-09-28 14:27:56 -07002090 }
2091 break;
2092 }
2093 case CLIENT_API_EXIT:
2094 {
2095 event_str = "InstrumentationEvent::CLIENT_API_EXIT";
2096 for (const auto &arg : method->results()) {
Zhuoyao Zhang964f72f2016-10-21 11:12:03 -07002097 out << "_hidl_args.push_back((void *)"
Zhuoyao Zhang8f492942016-09-28 14:27:56 -07002098 << (arg->type().resultNeedsDeref() ? "" : "&")
Zhuoyao Zhang964f72f2016-10-21 11:12:03 -07002099 << "_hidl_out_"
2100 << arg->name()
Zhuoyao Zhang8f492942016-09-28 14:27:56 -07002101 << ");\n";
2102 }
2103 break;
2104 }
Steven Moreland9b1cbdf2016-11-01 12:23:27 -07002105 case PASSTHROUGH_ENTRY:
2106 {
2107 event_str = "InstrumentationEvent::PASSTHROUGH_ENTRY";
2108 for (const auto &arg : method->args()) {
2109 out << "_hidl_args.push_back((void *)&"
2110 << arg->name()
2111 << ");\n";
2112 }
2113 break;
2114 }
2115 case PASSTHROUGH_EXIT:
2116 {
2117 event_str = "InstrumentationEvent::PASSTHROUGH_EXIT";
Zhuoyao Zhang085a8c32016-11-17 15:35:49 -08002118 for (const auto &arg : method->results()) {
Yifan Honga47eef32016-12-12 10:38:54 -08002119 out << "_hidl_args.push_back((void *)&_hidl_out_"
Zhuoyao Zhang085a8c32016-11-17 15:35:49 -08002120 << arg->name()
2121 << ");\n";
2122 }
Steven Moreland9b1cbdf2016-11-01 12:23:27 -07002123 break;
2124 }
Steven Moreland031ccf12016-10-31 15:54:38 -07002125 default:
Zhuoyao Zhang8f492942016-09-28 14:27:56 -07002126 {
Steven Moreland031ccf12016-10-31 15:54:38 -07002127 LOG(ERROR) << "Unsupported instrumentation event: " << event;
Zhuoyao Zhang8f492942016-09-28 14:27:56 -07002128 return UNKNOWN_ERROR;
2129 }
2130 }
2131
Steven Moreland031ccf12016-10-31 15:54:38 -07002132 const Interface *iface = mRootScope->getInterface();
2133
Steven Moreland1ab31442016-11-03 18:37:51 -07002134 out << "for (const auto &callback: mInstrumentationCallbacks) {\n";
Zhuoyao Zhang8f492942016-09-28 14:27:56 -07002135 out.indent();
2136 out << "callback("
2137 << event_str
2138 << ", \""
2139 << mPackage.package()
2140 << "\", \""
Yifan Hong90ea87f2016-11-01 14:25:47 -07002141 << mPackage.version()
Zhuoyao Zhang8f492942016-09-28 14:27:56 -07002142 << "\", \""
2143 << iface->localName()
2144 << "\", \""
2145 << method->name()
Zhuoyao Zhang964f72f2016-10-21 11:12:03 -07002146 << "\", &_hidl_args);\n";
Zhuoyao Zhang8f492942016-09-28 14:27:56 -07002147 out.unindent();
2148 out << "}\n";
2149 out.unindent();
2150 out << "}\n\n";
2151
2152 return OK;
2153}
2154
Andreas Huber881227d2016-08-02 14:20:21 -07002155} // namespace android