blob: f55be18798d6e5fb7fe92f227e7f61733cc5ba0c [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 Huberc9410c72016-07-28 12:18:40 -070017#include "Interface.h"
18
Zhuoyao Zhangba7e6e92016-08-10 12:19:02 -070019#include "Annotation.h"
Yifan Hong30b5d1f2017-04-03 12:19:25 -070020#include "ArrayType.h"
21#include "ConstantExpression.h"
Martijn Coenen115d4282016-12-19 05:14:04 +010022#include "DeathRecipientType.h"
Andreas Huberc9410c72016-07-28 12:18:40 -070023#include "Method.h"
Martijn Coenen115d4282016-12-19 05:14:04 +010024#include "ScalarType.h"
Yifan Hong10fe0b52016-10-19 14:20:17 -070025#include "StringType.h"
26#include "VectorType.h"
Andreas Huberc9410c72016-07-28 12:18:40 -070027
Yifan Hong30b5d1f2017-04-03 12:19:25 -070028#include <unistd.h>
29
Yifan Hong30b5d1f2017-04-03 12:19:25 -070030#include <iostream>
Timur Iskhakov7296af12017-08-09 21:52:48 +000031#include <memory>
Yifan Hong30b5d1f2017-04-03 12:19:25 -070032#include <sstream>
Timur Iskhakovcec46c42017-08-09 00:22:02 -070033#include <unordered_map>
Yifan Hong30b5d1f2017-04-03 12:19:25 -070034
Steven Moreland14ee6742016-10-18 12:58:28 -070035#include <android-base/logging.h>
Steven Moreland5bdfa702017-04-18 23:20:39 -070036#include <hidl-hash/Hash.h>
Iliyan Malcheva72e0d22016-09-09 11:03:08 -070037#include <hidl-util/Formatter.h>
Yifan Hong10fe0b52016-10-19 14:20:17 -070038#include <hidl-util/StringHelper.h>
Zhuoyao Zhang864c7712016-08-16 15:35:28 -070039
Andreas Huberc9410c72016-07-28 12:18:40 -070040namespace android {
41
Steven Morelandb8e15a52017-02-13 19:35:40 -080042#define B_PACK_CHARS(c1, c2, c3, c4) \
43 ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
44
Yifan Hong10fe0b52016-10-19 14:20:17 -070045/* It is very important that these values NEVER change. These values
46 * must remain unchanged over the lifetime of android. This is
47 * because the framework on a device will be updated independently of
48 * the hals on a device. If the hals are compiled with one set of
49 * transaction values, and the framework with another, then the
50 * interface between them will be destroyed, and the device will not
51 * work.
52 */
53enum {
Yifan Hong10fe0b52016-10-19 14:20:17 -070054 /////////////////// User defined transactions
55 FIRST_CALL_TRANSACTION = 0x00000001,
Steven Morelandb8e15a52017-02-13 19:35:40 -080056 LAST_CALL_TRANSACTION = 0x0effffff,
Yifan Hong10fe0b52016-10-19 14:20:17 -070057 /////////////////// HIDL reserved
Steven Morelandb8e15a52017-02-13 19:35:40 -080058 FIRST_HIDL_TRANSACTION = 0x0f000000,
59 HIDL_PING_TRANSACTION = B_PACK_CHARS(0x0f, 'P', 'N', 'G'),
60 HIDL_DESCRIPTOR_CHAIN_TRANSACTION = B_PACK_CHARS(0x0f, 'C', 'H', 'N'),
61 HIDL_GET_DESCRIPTOR_TRANSACTION = B_PACK_CHARS(0x0f, 'D', 'S', 'C'),
62 HIDL_SYSPROPS_CHANGED_TRANSACTION = B_PACK_CHARS(0x0f, 'S', 'Y', 'S'),
63 HIDL_LINK_TO_DEATH_TRANSACTION = B_PACK_CHARS(0x0f, 'L', 'T', 'D'),
64 HIDL_UNLINK_TO_DEATH_TRANSACTION = B_PACK_CHARS(0x0f, 'U', 'T', 'D'),
65 HIDL_SET_HAL_INSTRUMENTATION_TRANSACTION = B_PACK_CHARS(0x0f, 'I', 'N', 'T'),
66 HIDL_GET_REF_INFO_TRANSACTION = B_PACK_CHARS(0x0f, 'R', 'E', 'F'),
67 HIDL_DEBUG_TRANSACTION = B_PACK_CHARS(0x0f, 'D', 'B', 'G'),
Yifan Hong30b5d1f2017-04-03 12:19:25 -070068 HIDL_HASH_CHAIN_TRANSACTION = B_PACK_CHARS(0x0f, 'H', 'S', 'H'),
Steven Morelandb8e15a52017-02-13 19:35:40 -080069 LAST_HIDL_TRANSACTION = 0x0fffffff,
Yifan Hong10fe0b52016-10-19 14:20:17 -070070};
71
Timur Iskhakovcb0ba522017-07-17 20:01:37 -070072Interface::Interface(const char* localName, const Location& location, Scope* parent,
Timur Iskhakov505316c2017-08-05 03:38:59 +000073 const Reference<Interface>& superType)
74 : Scope(localName, location, parent),
75 mSuperType(superType),
76 mIsJavaCompatibleInProgress(false) {}
Martijn Coenenaf712c02016-11-16 15:26:27 +010077
Steven Moreland30bb6a82016-11-30 09:18:34 -080078std::string Interface::typeName() const {
79 return "interface " + localName();
80}
81
Steven Moreland424a9482017-02-13 19:20:40 -080082bool Interface::fillPingMethod(Method *method) const {
83 if (method->name() != "ping") {
84 return false;
85 }
86
87 method->fillImplementation(
88 HIDL_PING_TRANSACTION,
89 {
Steven Moreland937408a2017-03-20 09:54:18 -070090 {IMPL_INTERFACE,
Steven Moreland424a9482017-02-13 19:20:40 -080091 [](auto &out) {
92 out << "return ::android::hardware::Void();\n";
93 }
94 },
95 {IMPL_STUB_IMPL,
96 [](auto &out) {
97 out << "return ::android::hardware::Void();\n";
98 }
99 }
100 }, /*cppImpl*/
101 {
Steven Moreland937408a2017-03-20 09:54:18 -0700102 {IMPL_INTERFACE,
Yi Kongc8ff4672017-04-30 23:46:56 -0700103 [](auto &out) {
Steven Moreland424a9482017-02-13 19:20:40 -0800104 out << "return;\n";
105 }
106 },
107 {IMPL_STUB, nullptr /* don't generate code */}
108 } /*javaImpl*/
109 );
110
111 return true;
112}
113
Yifan Hongffa91392017-01-31 13:41:23 -0800114bool Interface::fillLinkToDeathMethod(Method *method) const {
115 if (method->name() != "linkToDeath") {
116 return false;
117 }
Martijn Coenen115d4282016-12-19 05:14:04 +0100118
Yifan Hongffa91392017-01-31 13:41:23 -0800119 method->fillImplementation(
Martijn Coenen115d4282016-12-19 05:14:04 +0100120 HIDL_LINK_TO_DEATH_TRANSACTION,
121 {
Steven Moreland937408a2017-03-20 09:54:18 -0700122 {IMPL_INTERFACE,
Martijn Coenen115d4282016-12-19 05:14:04 +0100123 [](auto &out) {
124 out << "(void)cookie;\n"
125 << "return (recipient != nullptr);\n";
126 }
127 },
128 {IMPL_PROXY,
129 [](auto &out) {
Martijn Coenenfa55d6e2016-12-20 06:08:31 +0100130 out << "::android::hardware::ProcessState::self()->startThreadPool();\n";
Martijn Coenen115d4282016-12-19 05:14:04 +0100131 out << "::android::hardware::hidl_binder_death_recipient *binder_recipient"
132 << " = new ::android::hardware::hidl_binder_death_recipient(recipient, cookie, this);\n"
133 << "std::unique_lock<std::mutex> lock(_hidl_mMutex);\n"
134 << "_hidl_mDeathRecipients.push_back(binder_recipient);\n"
135 << "return (remote()->linkToDeath(binder_recipient)"
136 << " == ::android::OK);\n";
137 }
138 },
Martijn Coenen8d12b502016-12-27 14:30:27 +0100139 {IMPL_STUB, nullptr}
Martijn Coenen115d4282016-12-19 05:14:04 +0100140 }, /*cppImpl*/
141 {
Steven Moreland937408a2017-03-20 09:54:18 -0700142 {IMPL_INTERFACE,
Yi Kongc8ff4672017-04-30 23:46:56 -0700143 [](auto &out) {
Martijn Coenen115d4282016-12-19 05:14:04 +0100144 out << "return true;";
145 }
146 },
147 {IMPL_PROXY,
Yi Kongc8ff4672017-04-30 23:46:56 -0700148 [](auto &out) {
Martijn Coenen8d12b502016-12-27 14:30:27 +0100149 out << "return mRemote.linkToDeath(recipient, cookie);\n";
Martijn Coenen115d4282016-12-19 05:14:04 +0100150 }
151 },
Martijn Coenen8d12b502016-12-27 14:30:27 +0100152 {IMPL_STUB, nullptr}
Martijn Coenen115d4282016-12-19 05:14:04 +0100153 } /*javaImpl*/
154 );
Yifan Hongffa91392017-01-31 13:41:23 -0800155 return true;
Martijn Coenen115d4282016-12-19 05:14:04 +0100156}
157
Yifan Hongffa91392017-01-31 13:41:23 -0800158bool Interface::fillUnlinkToDeathMethod(Method *method) const {
159 if (method->name() != "unlinkToDeath") {
160 return false;
161 }
Martijn Coenen115d4282016-12-19 05:14:04 +0100162
Yifan Hongffa91392017-01-31 13:41:23 -0800163 method->fillImplementation(
Martijn Coenen115d4282016-12-19 05:14:04 +0100164 HIDL_UNLINK_TO_DEATH_TRANSACTION,
165 {
Steven Moreland937408a2017-03-20 09:54:18 -0700166 {IMPL_INTERFACE,
Martijn Coenen115d4282016-12-19 05:14:04 +0100167 [](auto &out) {
168 out << "return (recipient != nullptr);\n";
169 }
170 },
171 {IMPL_PROXY,
172 [](auto &out) {
173 out << "std::unique_lock<std::mutex> lock(_hidl_mMutex);\n"
174 << "for (auto it = _hidl_mDeathRecipients.begin();"
175 << "it != _hidl_mDeathRecipients.end();"
176 << "++it) {\n";
177 out.indent([&] {
178 out.sIf("(*it)->getRecipient() == recipient", [&] {
179 out << "::android::status_t status = remote()->unlinkToDeath(*it);\n"
180 << "_hidl_mDeathRecipients.erase(it);\n"
181 << "return status == ::android::OK;\n";
182 });
183 });
184 out << "}\n";
185 out << "return false;\n";
186 }
187 },
Martijn Coenen8d12b502016-12-27 14:30:27 +0100188 {IMPL_STUB, nullptr /* don't generate code */}
Martijn Coenen115d4282016-12-19 05:14:04 +0100189 }, /*cppImpl*/
190 {
Steven Moreland937408a2017-03-20 09:54:18 -0700191 {IMPL_INTERFACE,
Yi Kongc8ff4672017-04-30 23:46:56 -0700192 [](auto &out) {
Martijn Coenen8d12b502016-12-27 14:30:27 +0100193 out << "return true;\n";
Martijn Coenen115d4282016-12-19 05:14:04 +0100194 }
195 },
196 {IMPL_PROXY,
Yi Kongc8ff4672017-04-30 23:46:56 -0700197 [](auto &out) {
Martijn Coenen8d12b502016-12-27 14:30:27 +0100198 out << "return mRemote.unlinkToDeath(recipient);\n";
Martijn Coenen115d4282016-12-19 05:14:04 +0100199 }
200 },
Martijn Coenen8d12b502016-12-27 14:30:27 +0100201 {IMPL_STUB, nullptr /* don't generate code */}
Martijn Coenen115d4282016-12-19 05:14:04 +0100202 } /*javaImpl*/
203 );
Yifan Hongffa91392017-01-31 13:41:23 -0800204 return true;
Martijn Coenen115d4282016-12-19 05:14:04 +0100205}
Yifan Hongffa91392017-01-31 13:41:23 -0800206bool Interface::fillSyspropsChangedMethod(Method *method) const {
207 if (method->name() != "notifySyspropsChanged") {
208 return false;
209 }
210
211 method->fillImplementation(
Martijn Coenenaf712c02016-11-16 15:26:27 +0100212 HIDL_SYSPROPS_CHANGED_TRANSACTION,
Yi Kongc8ff4672017-04-30 23:46:56 -0700213 { { IMPL_INTERFACE, [](auto &out) {
Martijn Coenenaf712c02016-11-16 15:26:27 +0100214 out << "::android::report_sysprop_change();\n";
215 out << "return ::android::hardware::Void();";
Martijn Coenen115d4282016-12-19 05:14:04 +0100216 } } }, /*cppImpl */
Steven Moreland937408a2017-03-20 09:54:18 -0700217 { { IMPL_INTERFACE, [](auto &out) { /* javaImpl */
Sundong Ahnc1432c92017-07-13 23:58:27 +0900218 out << "android.os.HwBinder.reportSyspropChanged();";
Martijn Coenen115d4282016-12-19 05:14:04 +0100219 } } } /*javaImpl */
Martijn Coenenaf712c02016-11-16 15:26:27 +0100220 );
Yifan Hongffa91392017-01-31 13:41:23 -0800221 return true;
Andreas Huberc9410c72016-07-28 12:18:40 -0700222}
223
Yifan Hongffa91392017-01-31 13:41:23 -0800224bool Interface::fillSetHALInstrumentationMethod(Method *method) const {
225 if (method->name() != "setHALInstrumentation") {
226 return false;
227 }
228
229 method->fillImplementation(
Zhuoyao Zhangdd85c5c2017-01-03 17:30:24 -0800230 HIDL_SET_HAL_INSTRUMENTATION_TRANSACTION,
231 {
Steven Moreland937408a2017-03-20 09:54:18 -0700232 {IMPL_INTERFACE,
Yi Kongc8ff4672017-04-30 23:46:56 -0700233 [](auto &out) {
Zhuoyao Zhangdd85c5c2017-01-03 17:30:24 -0800234 // do nothing for base class.
235 out << "return ::android::hardware::Void();\n";
236 }
237 },
Zhuoyao Zhangdd85c5c2017-01-03 17:30:24 -0800238 {IMPL_STUB,
239 [](auto &out) {
240 out << "configureInstrumentation();\n";
241 }
242 },
243 {IMPL_PASSTHROUGH,
244 [](auto &out) {
245 out << "configureInstrumentation();\n";
246 out << "return ::android::hardware::Void();\n";
247 }
248 },
249 }, /*cppImpl */
Steven Moreland937408a2017-03-20 09:54:18 -0700250 { { IMPL_INTERFACE, [](auto & /*out*/) { /* javaImpl */
Zhuoyao Zhangdd85c5c2017-01-03 17:30:24 -0800251 // Not support for Java Impl for now.
252 } } } /*javaImpl */
253 );
Yifan Hongffa91392017-01-31 13:41:23 -0800254 return true;
Zhuoyao Zhangdd85c5c2017-01-03 17:30:24 -0800255}
256
Yifan Hongffa91392017-01-31 13:41:23 -0800257bool Interface::fillDescriptorChainMethod(Method *method) const {
258 if (method->name() != "interfaceChain") {
259 return false;
260 }
Yifan Hong10fe0b52016-10-19 14:20:17 -0700261
Yifan Hongffa91392017-01-31 13:41:23 -0800262 method->fillImplementation(
Yifan Hong10fe0b52016-10-19 14:20:17 -0700263 HIDL_DESCRIPTOR_CHAIN_TRANSACTION,
Steven Moreland937408a2017-03-20 09:54:18 -0700264 { { IMPL_INTERFACE, [this](auto &out) {
Yifan Hong10fe0b52016-10-19 14:20:17 -0700265 std::vector<const Interface *> chain = typeChain();
Yifan Hong03935122016-12-19 11:10:40 -0800266 out << "_hidl_cb(";
267 out.block([&] {
268 for (const Interface *iface : chain) {
269 out << iface->fullName() << "::descriptor,\n";
270 }
271 });
272 out << ");\n";
Yifan Hong10fe0b52016-10-19 14:20:17 -0700273 out << "return ::android::hardware::Void();";
Martijn Coenen115d4282016-12-19 05:14:04 +0100274 } } }, /* cppImpl */
Steven Moreland937408a2017-03-20 09:54:18 -0700275 { { IMPL_INTERFACE, [this](auto &out) {
Yifan Hong10fe0b52016-10-19 14:20:17 -0700276 std::vector<const Interface *> chain = typeChain();
Yifan Hong1af73532016-11-09 14:32:58 -0800277 out << "return new java.util.ArrayList<String>(java.util.Arrays.asList(\n";
Yifan Hong10fe0b52016-10-19 14:20:17 -0700278 out.indent(); out.indent();
279 for (size_t i = 0; i < chain.size(); ++i) {
280 if (i != 0)
281 out << ",\n";
Steven Morelandd39133b2016-11-11 12:30:08 -0800282 out << chain[i]->fullJavaName() << ".kInterfaceName";
Yifan Hong10fe0b52016-10-19 14:20:17 -0700283 }
284 out << "));";
285 out.unindent(); out.unindent();
Yifan Hongffa91392017-01-31 13:41:23 -0800286 } } } /* javaImpl */
Martijn Coenen115d4282016-12-19 05:14:04 +0100287 );
Yifan Hongffa91392017-01-31 13:41:23 -0800288 return true;
Yifan Hong10fe0b52016-10-19 14:20:17 -0700289}
290
Yifan Hong30b5d1f2017-04-03 12:19:25 -0700291static void emitDigestChain(
Timur Iskhakov7296af12017-08-09 21:52:48 +0000292 Formatter& out, const std::string& prefix, const std::vector<const Interface*>& chain,
293 std::function<std::string(std::unique_ptr<ConstantExpression>)> byteToString) {
Yifan Hong30b5d1f2017-04-03 12:19:25 -0700294 out.join(chain.begin(), chain.end(), ",\n", [&] (const auto &iface) {
Steven Moreland0e4be1e2017-04-18 19:50:29 -0700295 const Hash &hash = Hash::getHash(iface->location().begin().filename());
Yifan Hong30b5d1f2017-04-03 12:19:25 -0700296 out << prefix;
297 out << "{";
Steven Moreland0e4be1e2017-04-18 19:50:29 -0700298 out.join(hash.raw().begin(), hash.raw().end(), ",", [&](const auto &e) {
Yifan Hong30b5d1f2017-04-03 12:19:25 -0700299 // Use ConstantExpression::cppValue / javaValue
300 // because Java used signed byte for uint8_t.
301 out << byteToString(ConstantExpression::ValueOf(ScalarType::Kind::KIND_UINT8, e));
302 });
303 out << "} /* ";
Steven Moreland0e4be1e2017-04-18 19:50:29 -0700304 out << hash.hexString();
Yifan Hong30b5d1f2017-04-03 12:19:25 -0700305 out << " */";
306 });
307}
308
309bool Interface::fillHashChainMethod(Method *method) const {
310 if (method->name() != "getHashChain") {
311 return false;
312 }
313 const VectorType *chainType = static_cast<const VectorType *>(&method->results()[0]->type());
314 const ArrayType *digestType = static_cast<const ArrayType *>(chainType->getElementType());
315
316 method->fillImplementation(
317 HIDL_HASH_CHAIN_TRANSACTION,
318 { { IMPL_INTERFACE, [this, digestType](auto &out) {
319 std::vector<const Interface *> chain = typeChain();
320 out << "_hidl_cb(";
321 out.block([&] {
Timur Iskhakov7296af12017-08-09 21:52:48 +0000322 emitDigestChain(out, "(" + digestType->getInternalDataCppType() + ")", chain,
323 [](const auto& e) { return e->cppValue(); });
Yifan Hong30b5d1f2017-04-03 12:19:25 -0700324 });
325 out << ");\n";
326 out << "return ::android::hardware::Void();\n";
327 } } }, /* cppImpl */
328 { { IMPL_INTERFACE, [this, digestType, chainType](auto &out) {
329 std::vector<const Interface *> chain = typeChain();
330 out << "return new "
331 << chainType->getJavaType(false /* forInitializer */)
332 << "(java.util.Arrays.asList(\n";
333 out.indent(2, [&] {
334 // No need for dimensions when elements are explicitly provided.
335 emitDigestChain(out, "new " + digestType->getJavaType(false /* forInitializer */),
Timur Iskhakov7296af12017-08-09 21:52:48 +0000336 chain, [](const auto& e) { return e->javaValue(); });
Yifan Hong30b5d1f2017-04-03 12:19:25 -0700337 });
338 out << "));\n";
339 } } } /* javaImpl */
340 );
341 return true;
342}
343
Yifan Hongffa91392017-01-31 13:41:23 -0800344bool Interface::fillGetDescriptorMethod(Method *method) const {
345 if (method->name() != "interfaceDescriptor") {
346 return false;
347 }
Yifan Hongc75fd472017-01-11 12:37:31 -0800348
Yifan Hongffa91392017-01-31 13:41:23 -0800349 method->fillImplementation(
Yifan Hongc75fd472017-01-11 12:37:31 -0800350 HIDL_GET_DESCRIPTOR_TRANSACTION,
Steven Moreland937408a2017-03-20 09:54:18 -0700351 { { IMPL_INTERFACE, [this](auto &out) {
Yifan Hongc75fd472017-01-11 12:37:31 -0800352 out << "_hidl_cb("
353 << fullName()
354 << "::descriptor);\n"
355 << "return ::android::hardware::Void();";
356 } } }, /* cppImpl */
Steven Moreland937408a2017-03-20 09:54:18 -0700357 { { IMPL_INTERFACE, [this](auto &out) {
Yifan Hongc75fd472017-01-11 12:37:31 -0800358 out << "return "
359 << fullJavaName()
360 << ".kInterfaceName;\n";
Yifan Hongffa91392017-01-31 13:41:23 -0800361 } } } /* javaImpl */
Yifan Hongc75fd472017-01-11 12:37:31 -0800362 );
Yifan Hongffa91392017-01-31 13:41:23 -0800363 return true;
Yifan Hongc75fd472017-01-11 12:37:31 -0800364}
Yifan Hong10fe0b52016-10-19 14:20:17 -0700365
Yifan Hongbcffce22017-02-01 15:52:06 -0800366bool Interface::fillGetDebugInfoMethod(Method *method) const {
367 if (method->name() != "getDebugInfo") {
Yifan Hongcd2ae452017-01-31 14:33:40 -0800368 return false;
369 }
370
Yifan Hongdf1ea3f2017-03-02 17:02:10 -0800371 static const std::string sArch =
372 "#if defined(__LP64__)\n"
373 "::android::hidl::base::V1_0::DebugInfo::Architecture::IS_64BIT\n"
374 "#else\n"
375 "::android::hidl::base::V1_0::DebugInfo::Architecture::IS_32BIT\n"
376 "#endif\n";
377
Yifan Hongcd2ae452017-01-31 14:33:40 -0800378 method->fillImplementation(
379 HIDL_GET_REF_INFO_TRANSACTION,
380 {
Steven Moreland937408a2017-03-20 09:54:18 -0700381 {IMPL_INTERFACE,
Yi Kongc8ff4672017-04-30 23:46:56 -0700382 [](auto &out) {
Yifan Hongbcffce22017-02-01 15:52:06 -0800383 // getDebugInfo returns N/A for local objects.
Yifan Hongdf1ea3f2017-03-02 17:02:10 -0800384 out << "_hidl_cb({ -1 /* pid */, 0 /* ptr */, \n"
385 << sArch
386 << "});\n"
Yifan Hongcd2ae452017-01-31 14:33:40 -0800387 << "return ::android::hardware::Void();";
388 }
389 },
390 {IMPL_STUB_IMPL,
Yi Kongc8ff4672017-04-30 23:46:56 -0700391 [](auto &out) {
Yifan Hong2e036c92017-03-07 13:18:12 -0800392 out << "_hidl_cb(";
393 out.block([&] {
394 out << "::android::hardware::details::debuggable()"
395 << "? getpid() : -1 /* pid */,\n"
396 << "::android::hardware::details::debuggable()"
397 << "? reinterpret_cast<uint64_t>(this) : 0 /* ptr */,\n"
398 << sArch << "\n";
399 });
400 out << ");\n"
Yifan Hongcd2ae452017-01-31 14:33:40 -0800401 << "return ::android::hardware::Void();";
402 }
403 }
404 }, /* cppImpl */
Yi Kongc8ff4672017-04-30 23:46:56 -0700405 { { IMPL_INTERFACE, [method](auto &out) {
Yifan Hongcd2ae452017-01-31 14:33:40 -0800406 const Type &refInfo = method->results().front()->type();
407 out << refInfo.getJavaType(false /* forInitializer */) << " info = new "
408 << refInfo.getJavaType(true /* forInitializer */) << "();\n"
Yifan Hongbcffce22017-02-01 15:52:06 -0800409 // TODO(b/34777099): PID for java.
410 << "info.pid = -1;\n"
411 << "info.ptr = 0;\n"
Yifan Hongdf1ea3f2017-03-02 17:02:10 -0800412 << "info.arch = android.hidl.base.V1_0.DebugInfo.Architecture.UNKNOWN;"
Yifan Hongcd2ae452017-01-31 14:33:40 -0800413 << "return info;";
414 } } } /* javaImpl */
415 );
416
417 return true;
418}
419
Andreas Huber37065d62017-02-07 14:36:54 -0800420bool Interface::fillDebugMethod(Method *method) const {
421 if (method->name() != "debug") {
422 return false;
423 }
424
425 method->fillImplementation(
426 HIDL_DEBUG_TRANSACTION,
427 {
Steven Moreland937408a2017-03-20 09:54:18 -0700428 {IMPL_INTERFACE,
Yi Kongc8ff4672017-04-30 23:46:56 -0700429 [](auto &out) {
Andreas Huber37065d62017-02-07 14:36:54 -0800430 out << "(void)fd;\n"
431 << "(void)options;\n"
432 << "return ::android::hardware::Void();";
433 }
434 },
435 }, /* cppImpl */
436 {
437 /* unused, as the debug method is hidden from Java */
438 } /* javaImpl */
439 );
440
441 return true;
442}
443
Yifan Hongffa91392017-01-31 13:41:23 -0800444static std::map<std::string, Method *> gAllReservedMethods;
445
Steven Moreland14ee6742016-10-18 12:58:28 -0700446bool Interface::addMethod(Method *method) {
Yifan Hongc8934042016-11-17 17:10:52 -0800447 if (isIBase()) {
Yifan Hongffa91392017-01-31 13:41:23 -0800448 if (!gAllReservedMethods.emplace(method->name(), method).second) {
449 LOG(ERROR) << "ERROR: hidl-gen encountered duplicated reserved method "
450 << method->name();
451 return false;
452 }
453 // will add it in addAllReservedMethods
Yifan Hongc8934042016-11-17 17:10:52 -0800454 return true;
455 }
456
Yifan Hong10fe0b52016-10-19 14:20:17 -0700457 CHECK(!method->isHidlReserved());
Yifan Hong10fe0b52016-10-19 14:20:17 -0700458 mUserMethods.push_back(method);
Steven Moreland14ee6742016-10-18 12:58:28 -0700459
460 return true;
Andreas Huberc9410c72016-07-28 12:18:40 -0700461}
462
Timur Iskhakovcec46c42017-08-09 00:22:02 -0700463status_t Interface::resolveInheritance() {
464 size_t serial = FIRST_CALL_TRANSACTION;
465 for (const auto* ancestor : superTypeChain()) {
466 serial += ancestor->mUserMethods.size();
467 }
468
469 for (Method* method : mUserMethods) {
470 if (serial > LAST_CALL_TRANSACTION) {
471 std::cerr << "ERROR: More than " << LAST_CALL_TRANSACTION
472 << " methods (including super and reserved) are not allowed at " << location()
473 << "\n";
474 return UNKNOWN_ERROR;
475 }
476
477 method->setSerialId(serial);
478 serial++;
479 }
480
481 return Scope::resolveInheritance();
482}
483
484status_t Interface::evaluate() {
485 for (auto* method : methods()) {
486 status_t err = method->evaluate();
487 if (err != OK) return err;
488 }
489
490 return Scope::evaluate();
491}
492
493status_t Interface::validate() const {
494 CHECK(isIBase() == mSuperType.isEmptyReference());
495
496 for (const auto* method : methods()) {
497 status_t err = method->validate();
498 if (err != OK) return err;
499 }
500
501 status_t err = validateUniqueNames();
502 if (err != OK) return err;
503
504 return Scope::validate();
505}
506
507status_t Interface::validateUniqueNames() const {
508 std::unordered_map<std::string, const Interface*> registeredMethodNames;
509 for (auto const& tuple : allSuperMethodsFromRoot()) {
510 // No need to check super method uniqueness
511 registeredMethodNames[tuple.method()->name()] = tuple.interface();
512 }
513
514 for (const Method* method : mUserMethods) {
515 auto registered = registeredMethodNames.find(method->name());
516
517 if (registered != registeredMethodNames.end()) {
518 const Interface* definedInType = registered->second;
519
520 if (definedInType == this) {
521 // Defined in this interface
522 std::cerr << "ERROR: Redefinition of method '" << method->name() << "'";
523 } else if (definedInType->isIBase()) {
524 // Defined in IBase
525 std::cerr << "ERROR: Redefinition of reserved method '" << method->name() << "'";
526 } else {
527 // Defined in super not IBase
528 std::cerr << "ERROR: Redefinition of method '" << method->name()
529 << "'' defined in interface '" << definedInType->fullName() << "'";
530 }
531 std::cerr << " at " << method->location() << "\n";
532 return UNKNOWN_ERROR;
533 }
534
535 registeredMethodNames[method->name()] = this;
536 }
537
538 return OK;
539}
540
Yifan Hongffa91392017-01-31 13:41:23 -0800541bool Interface::addAllReservedMethods() {
542 // use a sorted map to insert them in serial ID order.
543 std::map<int32_t, Method *> reservedMethodsById;
544 for (const auto &pair : gAllReservedMethods) {
545 Method *method = pair.second->copySignature();
Steven Moreland424a9482017-02-13 19:20:40 -0800546 bool fillSuccess = fillPingMethod(method)
547 || fillDescriptorChainMethod(method)
Yifan Hongffa91392017-01-31 13:41:23 -0800548 || fillGetDescriptorMethod(method)
Yifan Hong30b5d1f2017-04-03 12:19:25 -0700549 || fillHashChainMethod(method)
Yifan Hongffa91392017-01-31 13:41:23 -0800550 || fillSyspropsChangedMethod(method)
551 || fillLinkToDeathMethod(method)
552 || fillUnlinkToDeathMethod(method)
Yifan Hongcd2ae452017-01-31 14:33:40 -0800553 || fillSetHALInstrumentationMethod(method)
Andreas Huber37065d62017-02-07 14:36:54 -0800554 || fillGetDebugInfoMethod(method)
555 || fillDebugMethod(method);
556
Yifan Hongffa91392017-01-31 13:41:23 -0800557 if (!fillSuccess) {
558 LOG(ERROR) << "ERROR: hidl-gen does not recognize a reserved method "
559 << method->name();
560 return false;
561 }
562 if (!reservedMethodsById.emplace(method->getSerialId(), method).second) {
563 LOG(ERROR) << "ERROR: hidl-gen uses duplicated serial id for "
564 << method->name() << " and "
565 << reservedMethodsById[method->getSerialId()]->name()
566 << ", serialId = " << method->getSerialId();
567 return false;
568 }
569 }
570 for (const auto &pair : reservedMethodsById) {
571 this->mReservedMethods.push_back(pair.second);
572 }
573 return true;
574}
Yifan Hong10fe0b52016-10-19 14:20:17 -0700575
Timur Iskhakov505316c2017-08-05 03:38:59 +0000576const Interface* Interface::superType() const {
577 return isIBase() ? nullptr : mSuperType;
Andreas Huberc9410c72016-07-28 12:18:40 -0700578}
579
Yifan Hong10fe0b52016-10-19 14:20:17 -0700580std::vector<const Interface *> Interface::typeChain() const {
581 std::vector<const Interface *> v;
582 const Interface *iface = this;
583 while (iface != nullptr) {
584 v.push_back(iface);
Timur Iskhakov505316c2017-08-05 03:38:59 +0000585 iface = iface->superType();
Yifan Hong10fe0b52016-10-19 14:20:17 -0700586 }
587 return v;
588}
589
Yifan Hongfe95aa22016-10-19 17:26:45 -0700590std::vector<const Interface *> Interface::superTypeChain() const {
Timur Iskhakov505316c2017-08-05 03:38:59 +0000591 return isIBase() ? std::vector<const Interface*>() : superType()->typeChain();
Yifan Hongfe95aa22016-10-19 17:26:45 -0700592}
593
Martijn Coenenb40ef022017-01-02 15:21:46 +0100594bool Interface::isElidableType() const {
595 return true;
596}
597
Andreas Hubera2723d22016-07-29 15:36:07 -0700598bool Interface::isInterface() const {
599 return true;
600}
601
Andreas Huber295ad302016-08-16 11:35:00 -0700602bool Interface::isBinder() const {
603 return true;
604}
605
Yifan Hong10fe0b52016-10-19 14:20:17 -0700606const std::vector<Method *> &Interface::userDefinedMethods() const {
607 return mUserMethods;
608}
609
610const std::vector<Method *> &Interface::hidlReservedMethods() const {
611 return mReservedMethods;
612}
613
614std::vector<Method *> Interface::methods() const {
615 std::vector<Method *> v(mUserMethods);
616 v.insert(v.end(), mReservedMethods.begin(), mReservedMethods.end());
617 return v;
618}
619
620std::vector<InterfaceAndMethod> Interface::allMethodsFromRoot() const {
621 std::vector<InterfaceAndMethod> v;
622 std::vector<const Interface *> chain = typeChain();
623 for (auto it = chain.rbegin(); it != chain.rend(); ++it) {
624 const Interface *iface = *it;
625 for (Method *userMethod : iface->userDefinedMethods()) {
626 v.push_back(InterfaceAndMethod(iface, userMethod));
627 }
628 }
629 for (Method *reservedMethod : hidlReservedMethods()) {
Yifan Hongc8934042016-11-17 17:10:52 -0800630 v.push_back(InterfaceAndMethod(
631 *chain.rbegin(), // IBase
632 reservedMethod));
Yifan Hong10fe0b52016-10-19 14:20:17 -0700633 }
634 return v;
Andreas Huber881227d2016-08-02 14:20:21 -0700635}
636
Timur Iskhakovf1b902d2017-08-13 20:14:31 -0700637std::vector<InterfaceAndMethod> Interface::allSuperMethodsFromRoot() const {
638 return isIBase() ? std::vector<InterfaceAndMethod>() : superType()->allMethodsFromRoot();
639}
640
Chih-Hung Hsieh8c90cc52017-08-03 14:51:13 -0700641Method *Interface::lookupMethod(const std::string& name) const {
Yifan Hong10fe0b52016-10-19 14:20:17 -0700642 for (const auto &tuple : allMethodsFromRoot()) {
643 Method *method = tuple.method();
644 if (method->name() == name) {
645 return method;
Steven Moreland14ee6742016-10-18 12:58:28 -0700646 }
Steven Moreland14ee6742016-10-18 12:58:28 -0700647 }
648
649 return nullptr;
650}
651
Steven Moreland40786312016-08-16 10:29:40 -0700652std::string Interface::getBaseName() const {
Jayant Chowdhary3f32c1f2016-09-15 16:53:56 -0700653 return fqName().getInterfaceBaseName();
Steven Moreland40786312016-08-16 10:29:40 -0700654}
655
Yifan Hongeefe4f22017-01-04 15:32:42 -0800656std::string Interface::getProxyName() const {
657 return fqName().getInterfaceProxyName();
658}
659
660std::string Interface::getStubName() const {
661 return fqName().getInterfaceStubName();
662}
663
664std::string Interface::getHwName() const {
665 return fqName().getInterfaceHwName();
666}
667
668std::string Interface::getPassthroughName() const {
669 return fqName().getInterfacePassthroughName();
670}
671
Yifan Hong51a65092017-01-04 15:41:44 -0800672FQName Interface::getProxyFqName() const {
Yifan Hongeefe4f22017-01-04 15:32:42 -0800673 return fqName().getInterfaceProxyFqName();
Yifan Hong158655a2016-11-08 12:34:07 -0800674}
675
Yifan Hong51a65092017-01-04 15:41:44 -0800676FQName Interface::getStubFqName() const {
Yifan Hongeefe4f22017-01-04 15:32:42 -0800677 return fqName().getInterfaceStubFqName();
Yifan Hong158655a2016-11-08 12:34:07 -0800678}
679
Yifan Hong51a65092017-01-04 15:41:44 -0800680FQName Interface::getPassthroughFqName() const {
Yifan Hongeefe4f22017-01-04 15:32:42 -0800681 return fqName().getInterfacePassthroughFqName();
Yifan Hong158655a2016-11-08 12:34:07 -0800682}
683
Steven Moreland979e0992016-09-07 09:18:08 -0700684std::string Interface::getCppType(StorageMode mode,
Steven Moreland979e0992016-09-07 09:18:08 -0700685 bool specifyNamespaces) const {
Steven Moreland979e0992016-09-07 09:18:08 -0700686 const std::string base =
687 std::string(specifyNamespaces ? "::android::" : "")
688 + "sp<"
Steven Morelande30ee9b2017-05-09 13:31:01 -0700689 + fullName()
Steven Moreland979e0992016-09-07 09:18:08 -0700690 + ">";
Andreas Huber881227d2016-08-02 14:20:21 -0700691
692 switch (mode) {
693 case StorageMode_Stack:
694 case StorageMode_Result:
695 return base;
696
697 case StorageMode_Argument:
698 return "const " + base + "&";
699 }
700}
701
Yifan Hong4ed13472016-11-02 10:44:11 -0700702std::string Interface::getJavaType(bool /* forInitializer */) const {
Andreas Huber2831d512016-08-15 09:33:47 -0700703 return fullJavaName();
704}
705
Zhuoyao Zhanga588b232016-11-10 14:37:35 -0800706std::string Interface::getVtsType() const {
707 if (StringHelper::EndsWith(localName(), "Callback")) {
708 return "TYPE_HIDL_CALLBACK";
709 } else {
710 return "TYPE_HIDL_INTERFACE";
711 }
712}
713
Andreas Huber881227d2016-08-02 14:20:21 -0700714void Interface::emitReaderWriter(
715 Formatter &out,
716 const std::string &name,
717 const std::string &parcelObj,
718 bool parcelObjIsPointer,
719 bool isReader,
720 ErrorMode mode) const {
721 const std::string parcelObjDeref =
722 parcelObj + (parcelObjIsPointer ? "->" : ".");
723
724 if (isReader) {
Andreas Hubere7ff2282016-08-16 13:50:03 -0700725 out << "{\n";
726 out.indent();
727
Iliyan Malchev549e2592016-08-10 08:59:12 -0700728 const std::string binderName = "_hidl_" + name + "_binder";
Andreas Huber881227d2016-08-02 14:20:21 -0700729
Andreas Huber8a82ff72016-08-04 10:29:39 -0700730 out << "::android::sp<::android::hardware::IBinder> "
Andreas Huber881227d2016-08-02 14:20:21 -0700731 << binderName << ";\n";
732
Iliyan Malchev549e2592016-08-10 08:59:12 -0700733 out << "_hidl_err = ";
Andreas Huber881227d2016-08-02 14:20:21 -0700734 out << parcelObjDeref
735 << "readNullableStrongBinder(&"
736 << binderName
737 << ");\n";
738
739 handleError(out, mode);
740
741 out << name
742 << " = "
Martijn Coenena63e0ad2016-12-07 17:29:00 +0100743 << "::android::hardware::fromBinder<"
744 << fqName().cppName()
745 << ","
Yifan Hong51a65092017-01-04 15:41:44 -0800746 << getProxyFqName().cppName()
Martijn Coenena63e0ad2016-12-07 17:29:00 +0100747 << ","
Yifan Hong51a65092017-01-04 15:41:44 -0800748 << getStubFqName().cppName()
Martijn Coenena63e0ad2016-12-07 17:29:00 +0100749 << ">("
Andreas Huber881227d2016-08-02 14:20:21 -0700750 << binderName
751 << ");\n";
Andreas Hubere7ff2282016-08-16 13:50:03 -0700752
753 out.unindent();
754 out << "}\n\n";
Andreas Huber881227d2016-08-02 14:20:21 -0700755 } else {
Martijn Coenene1638232016-10-26 12:51:34 +0200756 out << "if (" << name << " == nullptr) {\n";
757 out.indent();
758 out << "_hidl_err = ";
759 out << parcelObjDeref
760 << "writeStrongBinder(nullptr);\n";
761 out.unindent();
762 out << "} else {\n";
763 out.indent();
Yifan Hong158655a2016-11-08 12:34:07 -0800764 out << "::android::sp<::android::hardware::IBinder> _hidl_binder = "
765 << "::android::hardware::toBinder<\n";
Yifan Hong33223ca2016-12-13 15:07:35 -0800766 out.indent(2, [&] {
Martijn Coenena63e0ad2016-12-07 17:29:00 +0100767 out << fqName().cppName()
Yifan Hong158655a2016-11-08 12:34:07 -0800768 << ">("
769 << name
770 << ");\n";
771 });
772 out << "if (_hidl_binder.get() != nullptr) {\n";
Yifan Hong33223ca2016-12-13 15:07:35 -0800773 out.indent([&] {
Yifan Hong158655a2016-11-08 12:34:07 -0800774 out << "_hidl_err = "
775 << parcelObjDeref
776 << "writeStrongBinder(_hidl_binder);\n";
777 });
778 out << "} else {\n";
Yifan Hong33223ca2016-12-13 15:07:35 -0800779 out.indent([&] {
Yifan Hong158655a2016-11-08 12:34:07 -0800780 out << "_hidl_err = ::android::UNKNOWN_ERROR;\n";
781 });
782 out << "}\n";
Martijn Coenene1638232016-10-26 12:51:34 +0200783 out.unindent();
784 out << "}\n";
Steven Moreland40786312016-08-16 10:29:40 -0700785
Andreas Huber881227d2016-08-02 14:20:21 -0700786 handleError(out, mode);
787 }
788}
789
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800790status_t Interface::emitGlobalTypeDeclarations(Formatter &out) const {
791 status_t status = Scope::emitGlobalTypeDeclarations(out);
792 if (status != OK) {
793 return status;
794 }
Steven Moreland3d98bc42017-06-23 21:36:41 +0000795 out << "std::string toString("
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800796 << getCppArgumentType()
Steven Moreland3d98bc42017-06-23 21:36:41 +0000797 << ");\n";
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800798 return OK;
799}
800
Chih-Hung Hsieh8c90cc52017-08-03 14:51:13 -0700801status_t Interface::emitTypeDefinitions(Formatter& out, const std::string& prefix) const {
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800802 std::string space = prefix.empty() ? "" : (prefix + "::");
803 status_t err = Scope::emitTypeDefinitions(out, space + localName());
804 if (err != OK) {
805 return err;
806 }
807
Steven Moreland3d98bc42017-06-23 21:36:41 +0000808 out << "std::string toString("
809 << getCppArgumentType()
810 << " o) ";
811
812 out.block([&] {
813 out << "std::string os = \"[class or subclass of \";\n"
814 << "os += " << fullName() << "::descriptor;\n"
815 << "os += \"]\";\n"
816 << "os += o->isRemote() ? \"@remote\" : \"@local\";\n"
817 << "return os;\n";
818 }).endl().endl();
819
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800820 return OK;
821}
822
Andreas Huber2831d512016-08-15 09:33:47 -0700823void Interface::emitJavaReaderWriter(
824 Formatter &out,
825 const std::string &parcelObj,
826 const std::string &argName,
827 bool isReader) const {
828 if (isReader) {
829 out << fullJavaName()
830 << ".asInterface("
831 << parcelObj
832 << ".readStrongBinder());\n";
833 } else {
834 out << parcelObj
835 << ".writeStrongBinder("
836 << argName
837 << " == null ? null : "
838 << argName
839 << ".asBinder());\n";
840 }
841}
842
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700843status_t Interface::emitVtsAttributeDeclaration(Formatter &out) const {
844 for (const auto &type : getSubTypes()) {
Zhuoyao Zhangc5ea9f52016-10-06 15:05:39 -0700845 // Skip for TypeDef as it is just an alias of a defined type.
846 if (type->isTypeDef()) {
847 continue;
848 }
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700849 out << "attribute: {\n";
850 out.indent();
851 status_t status = type->emitVtsTypeDeclarations(out);
852 if (status != OK) {
853 return status;
854 }
855 out.unindent();
856 out << "}\n\n";
857 }
858 return OK;
859}
860
861status_t Interface::emitVtsMethodDeclaration(Formatter &out) const {
Yifan Hong10fe0b52016-10-19 14:20:17 -0700862 for (const auto &method : methods()) {
Steven Morelandcea24782016-11-07 11:40:48 -0800863 if (method->isHidlReserved()) {
864 continue;
865 }
866
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700867 out << "api: {\n";
868 out.indent();
869 out << "name: \"" << method->name() << "\"\n";
870 // Generate declaration for each return value.
871 for (const auto &result : method->results()) {
872 out << "return_type_hidl: {\n";
873 out.indent();
874 status_t status = result->type().emitVtsAttributeType(out);
875 if (status != OK) {
876 return status;
877 }
878 out.unindent();
879 out << "}\n";
880 }
881 // Generate declaration for each input argument
882 for (const auto &arg : method->args()) {
883 out << "arg: {\n";
884 out.indent();
885 status_t status = arg->type().emitVtsAttributeType(out);
886 if (status != OK) {
887 return status;
888 }
889 out.unindent();
890 out << "}\n";
891 }
892 // Generate declaration for each annotation.
Steven Morelandd537ab02016-09-12 10:32:01 -0700893 for (const auto &annotation : method->annotations()) {
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700894 out << "callflow: {\n";
895 out.indent();
Steven Morelandd537ab02016-09-12 10:32:01 -0700896 std::string name = annotation->name();
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700897 if (name == "entry") {
898 out << "entry: true\n";
899 } else if (name == "exit") {
900 out << "exit: true\n";
901 } else if (name == "callflow") {
Steven Morelandd537ab02016-09-12 10:32:01 -0700902 const AnnotationParam *param =
903 annotation->getParam("next");
904 if (param != nullptr) {
Timur Iskhakov7a85dc22017-08-10 19:06:41 -0700905 for (const auto& value : param->getValues()) {
Steven Morelandd537ab02016-09-12 10:32:01 -0700906 out << "next: " << value << "\n";
907 }
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700908 }
909 } else {
Keun Soo Yima5a57e92017-02-04 11:32:06 -0800910 std::cerr << "Unrecognized annotation '"
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700911 << name << "' for method: " << method->name()
Keun Soo Yima5a57e92017-02-04 11:32:06 -0800912 << ". A VTS annotation should be one of: "
913 << "entry, exit, callflow. \n";
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700914 }
915 out.unindent();
916 out << "}\n";
917 }
918 out.unindent();
919 out << "}\n\n";
920 }
921 return OK;
922}
923
924status_t Interface::emitVtsAttributeType(Formatter &out) const {
Zhuoyao Zhanga588b232016-11-10 14:37:35 -0800925 out << "type: " << getVtsType() << "\n"
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700926 << "predefined_type: \""
Zhuoyao Zhangc4e10602017-01-27 16:48:05 -0800927 << fullName()
928 << "\"\n";
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700929 return OK;
930}
931
Steven Moreland69e7c702016-09-09 11:16:32 -0700932bool Interface::hasOnewayMethods() const {
Yifan Hong10fe0b52016-10-19 14:20:17 -0700933 for (auto const &method : methods()) {
Steven Moreland69e7c702016-09-09 11:16:32 -0700934 if (method->isOneway()) {
935 return true;
936 }
937 }
938
939 const Interface* superClass = superType();
940
941 if (superClass != nullptr) {
942 return superClass->hasOnewayMethods();
943 }
944
945 return false;
946}
947
Andreas Huber70a59e12016-08-16 12:57:01 -0700948bool Interface::isJavaCompatible() const {
Andreas Huberea081b32016-08-17 15:57:47 -0700949 if (mIsJavaCompatibleInProgress) {
950 // We're currently trying to determine if this Interface is
951 // java-compatible and something is referencing this interface through
952 // one of its methods. Assume we'll ultimately succeed, if we were wrong
953 // the original invocation of Interface::isJavaCompatible() will then
954 // return the correct "false" result.
955 return true;
956 }
957
Timur Iskhakov505316c2017-08-05 03:38:59 +0000958 if (superType() != nullptr && !superType()->isJavaCompatible()) {
Andreas Huber0fa9e392016-08-31 09:05:44 -0700959 mIsJavaCompatibleInProgress = false;
960 return false;
961 }
962
Andreas Huberea081b32016-08-17 15:57:47 -0700963 mIsJavaCompatibleInProgress = true;
964
Andreas Huber70a59e12016-08-16 12:57:01 -0700965 if (!Scope::isJavaCompatible()) {
Andreas Huberea081b32016-08-17 15:57:47 -0700966 mIsJavaCompatibleInProgress = false;
Andreas Huber70a59e12016-08-16 12:57:01 -0700967 return false;
968 }
969
Yifan Hong10fe0b52016-10-19 14:20:17 -0700970 for (const auto &method : methods()) {
Andreas Huber70a59e12016-08-16 12:57:01 -0700971 if (!method->isJavaCompatible()) {
Andreas Huberea081b32016-08-17 15:57:47 -0700972 mIsJavaCompatibleInProgress = false;
Andreas Huber70a59e12016-08-16 12:57:01 -0700973 return false;
974 }
975 }
976
Andreas Huberea081b32016-08-17 15:57:47 -0700977 mIsJavaCompatibleInProgress = false;
978
Andreas Huber70a59e12016-08-16 12:57:01 -0700979 return true;
980}
981
Andreas Huberc9410c72016-07-28 12:18:40 -0700982} // namespace android
983