blob: 1f60fdfafc66dcf845154191cb8445efdf3a8d31 [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 Iskhakov33431e62017-08-21 17:31:23 -0700463std::vector<Reference<Type>> Interface::getReferences() const {
464 std::vector<Reference<Type>> ret;
465
466 if (superType() != nullptr) {
467 ret.push_back(mSuperType);
468 }
469
470 for (const auto* method : methods()) {
471 const auto& references = method->getReferences();
472 ret.insert(ret.end(), references.begin(), references.end());
473 }
474
475 return ret;
476}
477
Timur Iskhakovcec46c42017-08-09 00:22:02 -0700478status_t Interface::resolveInheritance() {
479 size_t serial = FIRST_CALL_TRANSACTION;
480 for (const auto* ancestor : superTypeChain()) {
481 serial += ancestor->mUserMethods.size();
482 }
483
484 for (Method* method : mUserMethods) {
485 if (serial > LAST_CALL_TRANSACTION) {
486 std::cerr << "ERROR: More than " << LAST_CALL_TRANSACTION
487 << " methods (including super and reserved) are not allowed at " << location()
488 << "\n";
489 return UNKNOWN_ERROR;
490 }
491
492 method->setSerialId(serial);
493 serial++;
494 }
495
496 return Scope::resolveInheritance();
497}
498
499status_t Interface::evaluate() {
500 for (auto* method : methods()) {
501 status_t err = method->evaluate();
502 if (err != OK) return err;
503 }
504
505 return Scope::evaluate();
506}
507
508status_t Interface::validate() const {
509 CHECK(isIBase() == mSuperType.isEmptyReference());
510
511 for (const auto* method : methods()) {
512 status_t err = method->validate();
513 if (err != OK) return err;
514 }
515
516 status_t err = validateUniqueNames();
517 if (err != OK) return err;
518
519 return Scope::validate();
520}
521
522status_t Interface::validateUniqueNames() const {
523 std::unordered_map<std::string, const Interface*> registeredMethodNames;
524 for (auto const& tuple : allSuperMethodsFromRoot()) {
525 // No need to check super method uniqueness
526 registeredMethodNames[tuple.method()->name()] = tuple.interface();
527 }
528
529 for (const Method* method : mUserMethods) {
530 auto registered = registeredMethodNames.find(method->name());
531
532 if (registered != registeredMethodNames.end()) {
533 const Interface* definedInType = registered->second;
534
535 if (definedInType == this) {
536 // Defined in this interface
537 std::cerr << "ERROR: Redefinition of method '" << method->name() << "'";
538 } else if (definedInType->isIBase()) {
539 // Defined in IBase
540 std::cerr << "ERROR: Redefinition of reserved method '" << method->name() << "'";
541 } else {
542 // Defined in super not IBase
543 std::cerr << "ERROR: Redefinition of method '" << method->name()
544 << "'' defined in interface '" << definedInType->fullName() << "'";
545 }
546 std::cerr << " at " << method->location() << "\n";
547 return UNKNOWN_ERROR;
548 }
549
550 registeredMethodNames[method->name()] = this;
551 }
552
553 return OK;
554}
555
Yifan Hongffa91392017-01-31 13:41:23 -0800556bool Interface::addAllReservedMethods() {
557 // use a sorted map to insert them in serial ID order.
558 std::map<int32_t, Method *> reservedMethodsById;
559 for (const auto &pair : gAllReservedMethods) {
560 Method *method = pair.second->copySignature();
Steven Moreland424a9482017-02-13 19:20:40 -0800561 bool fillSuccess = fillPingMethod(method)
562 || fillDescriptorChainMethod(method)
Yifan Hongffa91392017-01-31 13:41:23 -0800563 || fillGetDescriptorMethod(method)
Yifan Hong30b5d1f2017-04-03 12:19:25 -0700564 || fillHashChainMethod(method)
Yifan Hongffa91392017-01-31 13:41:23 -0800565 || fillSyspropsChangedMethod(method)
566 || fillLinkToDeathMethod(method)
567 || fillUnlinkToDeathMethod(method)
Yifan Hongcd2ae452017-01-31 14:33:40 -0800568 || fillSetHALInstrumentationMethod(method)
Andreas Huber37065d62017-02-07 14:36:54 -0800569 || fillGetDebugInfoMethod(method)
570 || fillDebugMethod(method);
571
Yifan Hongffa91392017-01-31 13:41:23 -0800572 if (!fillSuccess) {
573 LOG(ERROR) << "ERROR: hidl-gen does not recognize a reserved method "
574 << method->name();
575 return false;
576 }
577 if (!reservedMethodsById.emplace(method->getSerialId(), method).second) {
578 LOG(ERROR) << "ERROR: hidl-gen uses duplicated serial id for "
579 << method->name() << " and "
580 << reservedMethodsById[method->getSerialId()]->name()
581 << ", serialId = " << method->getSerialId();
582 return false;
583 }
584 }
585 for (const auto &pair : reservedMethodsById) {
586 this->mReservedMethods.push_back(pair.second);
587 }
588 return true;
589}
Yifan Hong10fe0b52016-10-19 14:20:17 -0700590
Timur Iskhakov505316c2017-08-05 03:38:59 +0000591const Interface* Interface::superType() const {
592 return isIBase() ? nullptr : mSuperType;
Andreas Huberc9410c72016-07-28 12:18:40 -0700593}
594
Yifan Hong10fe0b52016-10-19 14:20:17 -0700595std::vector<const Interface *> Interface::typeChain() const {
596 std::vector<const Interface *> v;
597 const Interface *iface = this;
598 while (iface != nullptr) {
599 v.push_back(iface);
Timur Iskhakov505316c2017-08-05 03:38:59 +0000600 iface = iface->superType();
Yifan Hong10fe0b52016-10-19 14:20:17 -0700601 }
602 return v;
603}
604
Yifan Hongfe95aa22016-10-19 17:26:45 -0700605std::vector<const Interface *> Interface::superTypeChain() const {
Timur Iskhakov505316c2017-08-05 03:38:59 +0000606 return isIBase() ? std::vector<const Interface*>() : superType()->typeChain();
Yifan Hongfe95aa22016-10-19 17:26:45 -0700607}
608
Martijn Coenenb40ef022017-01-02 15:21:46 +0100609bool Interface::isElidableType() const {
610 return true;
611}
612
Andreas Hubera2723d22016-07-29 15:36:07 -0700613bool Interface::isInterface() const {
614 return true;
615}
616
Andreas Huber295ad302016-08-16 11:35:00 -0700617bool Interface::isBinder() const {
618 return true;
619}
620
Yifan Hong10fe0b52016-10-19 14:20:17 -0700621const std::vector<Method *> &Interface::userDefinedMethods() const {
622 return mUserMethods;
623}
624
625const std::vector<Method *> &Interface::hidlReservedMethods() const {
626 return mReservedMethods;
627}
628
629std::vector<Method *> Interface::methods() const {
630 std::vector<Method *> v(mUserMethods);
631 v.insert(v.end(), mReservedMethods.begin(), mReservedMethods.end());
632 return v;
633}
634
635std::vector<InterfaceAndMethod> Interface::allMethodsFromRoot() const {
636 std::vector<InterfaceAndMethod> v;
637 std::vector<const Interface *> chain = typeChain();
638 for (auto it = chain.rbegin(); it != chain.rend(); ++it) {
639 const Interface *iface = *it;
640 for (Method *userMethod : iface->userDefinedMethods()) {
641 v.push_back(InterfaceAndMethod(iface, userMethod));
642 }
643 }
644 for (Method *reservedMethod : hidlReservedMethods()) {
Yifan Hongc8934042016-11-17 17:10:52 -0800645 v.push_back(InterfaceAndMethod(
646 *chain.rbegin(), // IBase
647 reservedMethod));
Yifan Hong10fe0b52016-10-19 14:20:17 -0700648 }
649 return v;
Andreas Huber881227d2016-08-02 14:20:21 -0700650}
651
Timur Iskhakovf1b902d2017-08-13 20:14:31 -0700652std::vector<InterfaceAndMethod> Interface::allSuperMethodsFromRoot() const {
653 return isIBase() ? std::vector<InterfaceAndMethod>() : superType()->allMethodsFromRoot();
654}
655
Chih-Hung Hsieh8c90cc52017-08-03 14:51:13 -0700656Method *Interface::lookupMethod(const std::string& name) const {
Yifan Hong10fe0b52016-10-19 14:20:17 -0700657 for (const auto &tuple : allMethodsFromRoot()) {
658 Method *method = tuple.method();
659 if (method->name() == name) {
660 return method;
Steven Moreland14ee6742016-10-18 12:58:28 -0700661 }
Steven Moreland14ee6742016-10-18 12:58:28 -0700662 }
663
664 return nullptr;
665}
666
Steven Moreland40786312016-08-16 10:29:40 -0700667std::string Interface::getBaseName() const {
Jayant Chowdhary3f32c1f2016-09-15 16:53:56 -0700668 return fqName().getInterfaceBaseName();
Steven Moreland40786312016-08-16 10:29:40 -0700669}
670
Yifan Hongeefe4f22017-01-04 15:32:42 -0800671std::string Interface::getProxyName() const {
672 return fqName().getInterfaceProxyName();
673}
674
675std::string Interface::getStubName() const {
676 return fqName().getInterfaceStubName();
677}
678
679std::string Interface::getHwName() const {
680 return fqName().getInterfaceHwName();
681}
682
683std::string Interface::getPassthroughName() const {
684 return fqName().getInterfacePassthroughName();
685}
686
Yifan Hong51a65092017-01-04 15:41:44 -0800687FQName Interface::getProxyFqName() const {
Yifan Hongeefe4f22017-01-04 15:32:42 -0800688 return fqName().getInterfaceProxyFqName();
Yifan Hong158655a2016-11-08 12:34:07 -0800689}
690
Yifan Hong51a65092017-01-04 15:41:44 -0800691FQName Interface::getStubFqName() const {
Yifan Hongeefe4f22017-01-04 15:32:42 -0800692 return fqName().getInterfaceStubFqName();
Yifan Hong158655a2016-11-08 12:34:07 -0800693}
694
Yifan Hong51a65092017-01-04 15:41:44 -0800695FQName Interface::getPassthroughFqName() const {
Yifan Hongeefe4f22017-01-04 15:32:42 -0800696 return fqName().getInterfacePassthroughFqName();
Yifan Hong158655a2016-11-08 12:34:07 -0800697}
698
Steven Moreland979e0992016-09-07 09:18:08 -0700699std::string Interface::getCppType(StorageMode mode,
Steven Moreland979e0992016-09-07 09:18:08 -0700700 bool specifyNamespaces) const {
Steven Moreland979e0992016-09-07 09:18:08 -0700701 const std::string base =
702 std::string(specifyNamespaces ? "::android::" : "")
703 + "sp<"
Steven Morelande30ee9b2017-05-09 13:31:01 -0700704 + fullName()
Steven Moreland979e0992016-09-07 09:18:08 -0700705 + ">";
Andreas Huber881227d2016-08-02 14:20:21 -0700706
707 switch (mode) {
708 case StorageMode_Stack:
709 case StorageMode_Result:
710 return base;
711
712 case StorageMode_Argument:
713 return "const " + base + "&";
714 }
715}
716
Yifan Hong4ed13472016-11-02 10:44:11 -0700717std::string Interface::getJavaType(bool /* forInitializer */) const {
Andreas Huber2831d512016-08-15 09:33:47 -0700718 return fullJavaName();
719}
720
Zhuoyao Zhanga588b232016-11-10 14:37:35 -0800721std::string Interface::getVtsType() const {
722 if (StringHelper::EndsWith(localName(), "Callback")) {
723 return "TYPE_HIDL_CALLBACK";
724 } else {
725 return "TYPE_HIDL_INTERFACE";
726 }
727}
728
Andreas Huber881227d2016-08-02 14:20:21 -0700729void Interface::emitReaderWriter(
730 Formatter &out,
731 const std::string &name,
732 const std::string &parcelObj,
733 bool parcelObjIsPointer,
734 bool isReader,
735 ErrorMode mode) const {
736 const std::string parcelObjDeref =
737 parcelObj + (parcelObjIsPointer ? "->" : ".");
738
739 if (isReader) {
Andreas Hubere7ff2282016-08-16 13:50:03 -0700740 out << "{\n";
741 out.indent();
742
Iliyan Malchev549e2592016-08-10 08:59:12 -0700743 const std::string binderName = "_hidl_" + name + "_binder";
Andreas Huber881227d2016-08-02 14:20:21 -0700744
Andreas Huber8a82ff72016-08-04 10:29:39 -0700745 out << "::android::sp<::android::hardware::IBinder> "
Andreas Huber881227d2016-08-02 14:20:21 -0700746 << binderName << ";\n";
747
Iliyan Malchev549e2592016-08-10 08:59:12 -0700748 out << "_hidl_err = ";
Andreas Huber881227d2016-08-02 14:20:21 -0700749 out << parcelObjDeref
750 << "readNullableStrongBinder(&"
751 << binderName
752 << ");\n";
753
754 handleError(out, mode);
755
756 out << name
757 << " = "
Martijn Coenena63e0ad2016-12-07 17:29:00 +0100758 << "::android::hardware::fromBinder<"
759 << fqName().cppName()
760 << ","
Yifan Hong51a65092017-01-04 15:41:44 -0800761 << getProxyFqName().cppName()
Martijn Coenena63e0ad2016-12-07 17:29:00 +0100762 << ","
Yifan Hong51a65092017-01-04 15:41:44 -0800763 << getStubFqName().cppName()
Martijn Coenena63e0ad2016-12-07 17:29:00 +0100764 << ">("
Andreas Huber881227d2016-08-02 14:20:21 -0700765 << binderName
766 << ");\n";
Andreas Hubere7ff2282016-08-16 13:50:03 -0700767
768 out.unindent();
769 out << "}\n\n";
Andreas Huber881227d2016-08-02 14:20:21 -0700770 } else {
Martijn Coenene1638232016-10-26 12:51:34 +0200771 out << "if (" << name << " == nullptr) {\n";
772 out.indent();
773 out << "_hidl_err = ";
774 out << parcelObjDeref
775 << "writeStrongBinder(nullptr);\n";
776 out.unindent();
777 out << "} else {\n";
778 out.indent();
Yifan Hong158655a2016-11-08 12:34:07 -0800779 out << "::android::sp<::android::hardware::IBinder> _hidl_binder = "
780 << "::android::hardware::toBinder<\n";
Yifan Hong33223ca2016-12-13 15:07:35 -0800781 out.indent(2, [&] {
Martijn Coenena63e0ad2016-12-07 17:29:00 +0100782 out << fqName().cppName()
Yifan Hong158655a2016-11-08 12:34:07 -0800783 << ">("
784 << name
785 << ");\n";
786 });
787 out << "if (_hidl_binder.get() != nullptr) {\n";
Yifan Hong33223ca2016-12-13 15:07:35 -0800788 out.indent([&] {
Yifan Hong158655a2016-11-08 12:34:07 -0800789 out << "_hidl_err = "
790 << parcelObjDeref
791 << "writeStrongBinder(_hidl_binder);\n";
792 });
793 out << "} else {\n";
Yifan Hong33223ca2016-12-13 15:07:35 -0800794 out.indent([&] {
Yifan Hong158655a2016-11-08 12:34:07 -0800795 out << "_hidl_err = ::android::UNKNOWN_ERROR;\n";
796 });
797 out << "}\n";
Martijn Coenene1638232016-10-26 12:51:34 +0200798 out.unindent();
799 out << "}\n";
Steven Moreland40786312016-08-16 10:29:40 -0700800
Andreas Huber881227d2016-08-02 14:20:21 -0700801 handleError(out, mode);
802 }
803}
804
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800805status_t Interface::emitGlobalTypeDeclarations(Formatter &out) const {
806 status_t status = Scope::emitGlobalTypeDeclarations(out);
807 if (status != OK) {
808 return status;
809 }
Steven Moreland3d98bc42017-06-23 21:36:41 +0000810 out << "std::string toString("
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800811 << getCppArgumentType()
Steven Moreland3d98bc42017-06-23 21:36:41 +0000812 << ");\n";
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800813 return OK;
814}
815
Chih-Hung Hsieh8c90cc52017-08-03 14:51:13 -0700816status_t Interface::emitTypeDefinitions(Formatter& out, const std::string& prefix) const {
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800817 std::string space = prefix.empty() ? "" : (prefix + "::");
818 status_t err = Scope::emitTypeDefinitions(out, space + localName());
819 if (err != OK) {
820 return err;
821 }
822
Steven Moreland3d98bc42017-06-23 21:36:41 +0000823 out << "std::string toString("
824 << getCppArgumentType()
825 << " o) ";
826
827 out.block([&] {
828 out << "std::string os = \"[class or subclass of \";\n"
829 << "os += " << fullName() << "::descriptor;\n"
830 << "os += \"]\";\n"
831 << "os += o->isRemote() ? \"@remote\" : \"@local\";\n"
832 << "return os;\n";
833 }).endl().endl();
834
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800835 return OK;
836}
837
Andreas Huber2831d512016-08-15 09:33:47 -0700838void Interface::emitJavaReaderWriter(
839 Formatter &out,
840 const std::string &parcelObj,
841 const std::string &argName,
842 bool isReader) const {
843 if (isReader) {
844 out << fullJavaName()
845 << ".asInterface("
846 << parcelObj
847 << ".readStrongBinder());\n";
848 } else {
849 out << parcelObj
850 << ".writeStrongBinder("
851 << argName
852 << " == null ? null : "
853 << argName
854 << ".asBinder());\n";
855 }
856}
857
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700858status_t Interface::emitVtsAttributeDeclaration(Formatter &out) const {
859 for (const auto &type : getSubTypes()) {
Zhuoyao Zhangc5ea9f52016-10-06 15:05:39 -0700860 // Skip for TypeDef as it is just an alias of a defined type.
861 if (type->isTypeDef()) {
862 continue;
863 }
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700864 out << "attribute: {\n";
865 out.indent();
866 status_t status = type->emitVtsTypeDeclarations(out);
867 if (status != OK) {
868 return status;
869 }
870 out.unindent();
871 out << "}\n\n";
872 }
873 return OK;
874}
875
876status_t Interface::emitVtsMethodDeclaration(Formatter &out) const {
Yifan Hong10fe0b52016-10-19 14:20:17 -0700877 for (const auto &method : methods()) {
Steven Morelandcea24782016-11-07 11:40:48 -0800878 if (method->isHidlReserved()) {
879 continue;
880 }
881
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700882 out << "api: {\n";
883 out.indent();
884 out << "name: \"" << method->name() << "\"\n";
885 // Generate declaration for each return value.
886 for (const auto &result : method->results()) {
887 out << "return_type_hidl: {\n";
888 out.indent();
889 status_t status = result->type().emitVtsAttributeType(out);
890 if (status != OK) {
891 return status;
892 }
893 out.unindent();
894 out << "}\n";
895 }
896 // Generate declaration for each input argument
897 for (const auto &arg : method->args()) {
898 out << "arg: {\n";
899 out.indent();
900 status_t status = arg->type().emitVtsAttributeType(out);
901 if (status != OK) {
902 return status;
903 }
904 out.unindent();
905 out << "}\n";
906 }
907 // Generate declaration for each annotation.
Steven Morelandd537ab02016-09-12 10:32:01 -0700908 for (const auto &annotation : method->annotations()) {
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700909 out << "callflow: {\n";
910 out.indent();
Steven Morelandd537ab02016-09-12 10:32:01 -0700911 std::string name = annotation->name();
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700912 if (name == "entry") {
913 out << "entry: true\n";
914 } else if (name == "exit") {
915 out << "exit: true\n";
916 } else if (name == "callflow") {
Steven Morelandd537ab02016-09-12 10:32:01 -0700917 const AnnotationParam *param =
918 annotation->getParam("next");
919 if (param != nullptr) {
Timur Iskhakov7a85dc22017-08-10 19:06:41 -0700920 for (const auto& value : param->getValues()) {
Steven Morelandd537ab02016-09-12 10:32:01 -0700921 out << "next: " << value << "\n";
922 }
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700923 }
924 } else {
Keun Soo Yima5a57e92017-02-04 11:32:06 -0800925 std::cerr << "Unrecognized annotation '"
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700926 << name << "' for method: " << method->name()
Keun Soo Yima5a57e92017-02-04 11:32:06 -0800927 << ". A VTS annotation should be one of: "
928 << "entry, exit, callflow. \n";
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700929 }
930 out.unindent();
931 out << "}\n";
932 }
933 out.unindent();
934 out << "}\n\n";
935 }
936 return OK;
937}
938
939status_t Interface::emitVtsAttributeType(Formatter &out) const {
Zhuoyao Zhanga588b232016-11-10 14:37:35 -0800940 out << "type: " << getVtsType() << "\n"
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700941 << "predefined_type: \""
Zhuoyao Zhangc4e10602017-01-27 16:48:05 -0800942 << fullName()
943 << "\"\n";
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700944 return OK;
945}
946
Steven Moreland69e7c702016-09-09 11:16:32 -0700947bool Interface::hasOnewayMethods() const {
Yifan Hong10fe0b52016-10-19 14:20:17 -0700948 for (auto const &method : methods()) {
Steven Moreland69e7c702016-09-09 11:16:32 -0700949 if (method->isOneway()) {
950 return true;
951 }
952 }
953
954 const Interface* superClass = superType();
955
956 if (superClass != nullptr) {
957 return superClass->hasOnewayMethods();
958 }
959
960 return false;
961}
962
Andreas Huber70a59e12016-08-16 12:57:01 -0700963bool Interface::isJavaCompatible() const {
Andreas Huberea081b32016-08-17 15:57:47 -0700964 if (mIsJavaCompatibleInProgress) {
965 // We're currently trying to determine if this Interface is
966 // java-compatible and something is referencing this interface through
967 // one of its methods. Assume we'll ultimately succeed, if we were wrong
968 // the original invocation of Interface::isJavaCompatible() will then
969 // return the correct "false" result.
970 return true;
971 }
972
Timur Iskhakov505316c2017-08-05 03:38:59 +0000973 if (superType() != nullptr && !superType()->isJavaCompatible()) {
Andreas Huber0fa9e392016-08-31 09:05:44 -0700974 mIsJavaCompatibleInProgress = false;
975 return false;
976 }
977
Andreas Huberea081b32016-08-17 15:57:47 -0700978 mIsJavaCompatibleInProgress = true;
979
Andreas Huber70a59e12016-08-16 12:57:01 -0700980 if (!Scope::isJavaCompatible()) {
Andreas Huberea081b32016-08-17 15:57:47 -0700981 mIsJavaCompatibleInProgress = false;
Andreas Huber70a59e12016-08-16 12:57:01 -0700982 return false;
983 }
984
Yifan Hong10fe0b52016-10-19 14:20:17 -0700985 for (const auto &method : methods()) {
Andreas Huber70a59e12016-08-16 12:57:01 -0700986 if (!method->isJavaCompatible()) {
Andreas Huberea081b32016-08-17 15:57:47 -0700987 mIsJavaCompatibleInProgress = false;
Andreas Huber70a59e12016-08-16 12:57:01 -0700988 return false;
989 }
990 }
991
Andreas Huberea081b32016-08-17 15:57:47 -0700992 mIsJavaCompatibleInProgress = false;
993
Andreas Huber70a59e12016-08-16 12:57:01 -0700994 return true;
995}
996
Andreas Huberc9410c72016-07-28 12:18:40 -0700997} // namespace android
998