blob: 0fd702cd35d1f69ae8ed5b360d154db0bad21401 [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 Iskhakov565b0132017-09-06 18:07:11 -070072Interface::Interface(const char* localName, const FQName& fullName, const Location& location,
73 Scope* parent, const Reference<Type>& superType)
Timur Iskhakov5dc72fe2017-09-07 23:13:44 -070074 : Scope(localName, fullName, location, parent), mSuperType(superType) {}
Martijn Coenenaf712c02016-11-16 15:26:27 +010075
Steven Moreland30bb6a82016-11-30 09:18:34 -080076std::string Interface::typeName() const {
77 return "interface " + localName();
78}
79
Steven Moreland424a9482017-02-13 19:20:40 -080080bool Interface::fillPingMethod(Method *method) const {
81 if (method->name() != "ping") {
82 return false;
83 }
84
85 method->fillImplementation(
86 HIDL_PING_TRANSACTION,
87 {
Steven Moreland937408a2017-03-20 09:54:18 -070088 {IMPL_INTERFACE,
Steven Moreland424a9482017-02-13 19:20:40 -080089 [](auto &out) {
90 out << "return ::android::hardware::Void();\n";
91 }
92 },
93 {IMPL_STUB_IMPL,
94 [](auto &out) {
95 out << "return ::android::hardware::Void();\n";
96 }
97 }
98 }, /*cppImpl*/
99 {
Steven Moreland937408a2017-03-20 09:54:18 -0700100 {IMPL_INTERFACE,
Yi Kongc8ff4672017-04-30 23:46:56 -0700101 [](auto &out) {
Steven Moreland424a9482017-02-13 19:20:40 -0800102 out << "return;\n";
103 }
104 },
105 {IMPL_STUB, nullptr /* don't generate code */}
106 } /*javaImpl*/
107 );
108
109 return true;
110}
111
Yifan Hongffa91392017-01-31 13:41:23 -0800112bool Interface::fillLinkToDeathMethod(Method *method) const {
113 if (method->name() != "linkToDeath") {
114 return false;
115 }
Martijn Coenen115d4282016-12-19 05:14:04 +0100116
Yifan Hongffa91392017-01-31 13:41:23 -0800117 method->fillImplementation(
Martijn Coenen115d4282016-12-19 05:14:04 +0100118 HIDL_LINK_TO_DEATH_TRANSACTION,
119 {
Steven Moreland937408a2017-03-20 09:54:18 -0700120 {IMPL_INTERFACE,
Martijn Coenen115d4282016-12-19 05:14:04 +0100121 [](auto &out) {
122 out << "(void)cookie;\n"
123 << "return (recipient != nullptr);\n";
124 }
125 },
126 {IMPL_PROXY,
127 [](auto &out) {
Martijn Coenenfa55d6e2016-12-20 06:08:31 +0100128 out << "::android::hardware::ProcessState::self()->startThreadPool();\n";
Martijn Coenen115d4282016-12-19 05:14:04 +0100129 out << "::android::hardware::hidl_binder_death_recipient *binder_recipient"
130 << " = new ::android::hardware::hidl_binder_death_recipient(recipient, cookie, this);\n"
131 << "std::unique_lock<std::mutex> lock(_hidl_mMutex);\n"
132 << "_hidl_mDeathRecipients.push_back(binder_recipient);\n"
133 << "return (remote()->linkToDeath(binder_recipient)"
134 << " == ::android::OK);\n";
135 }
136 },
Martijn Coenen8d12b502016-12-27 14:30:27 +0100137 {IMPL_STUB, nullptr}
Martijn Coenen115d4282016-12-19 05:14:04 +0100138 }, /*cppImpl*/
139 {
Steven Moreland937408a2017-03-20 09:54:18 -0700140 {IMPL_INTERFACE,
Yi Kongc8ff4672017-04-30 23:46:56 -0700141 [](auto &out) {
Martijn Coenen115d4282016-12-19 05:14:04 +0100142 out << "return true;";
143 }
144 },
145 {IMPL_PROXY,
Yi Kongc8ff4672017-04-30 23:46:56 -0700146 [](auto &out) {
Martijn Coenen8d12b502016-12-27 14:30:27 +0100147 out << "return mRemote.linkToDeath(recipient, cookie);\n";
Martijn Coenen115d4282016-12-19 05:14:04 +0100148 }
149 },
Martijn Coenen8d12b502016-12-27 14:30:27 +0100150 {IMPL_STUB, nullptr}
Martijn Coenen115d4282016-12-19 05:14:04 +0100151 } /*javaImpl*/
152 );
Yifan Hongffa91392017-01-31 13:41:23 -0800153 return true;
Martijn Coenen115d4282016-12-19 05:14:04 +0100154}
155
Yifan Hongffa91392017-01-31 13:41:23 -0800156bool Interface::fillUnlinkToDeathMethod(Method *method) const {
157 if (method->name() != "unlinkToDeath") {
158 return false;
159 }
Martijn Coenen115d4282016-12-19 05:14:04 +0100160
Yifan Hongffa91392017-01-31 13:41:23 -0800161 method->fillImplementation(
Martijn Coenen115d4282016-12-19 05:14:04 +0100162 HIDL_UNLINK_TO_DEATH_TRANSACTION,
163 {
Steven Moreland937408a2017-03-20 09:54:18 -0700164 {IMPL_INTERFACE,
Martijn Coenen115d4282016-12-19 05:14:04 +0100165 [](auto &out) {
166 out << "return (recipient != nullptr);\n";
167 }
168 },
169 {IMPL_PROXY,
170 [](auto &out) {
171 out << "std::unique_lock<std::mutex> lock(_hidl_mMutex);\n"
172 << "for (auto it = _hidl_mDeathRecipients.begin();"
173 << "it != _hidl_mDeathRecipients.end();"
174 << "++it) {\n";
175 out.indent([&] {
176 out.sIf("(*it)->getRecipient() == recipient", [&] {
177 out << "::android::status_t status = remote()->unlinkToDeath(*it);\n"
178 << "_hidl_mDeathRecipients.erase(it);\n"
179 << "return status == ::android::OK;\n";
180 });
181 });
182 out << "}\n";
183 out << "return false;\n";
184 }
185 },
Martijn Coenen8d12b502016-12-27 14:30:27 +0100186 {IMPL_STUB, nullptr /* don't generate code */}
Martijn Coenen115d4282016-12-19 05:14:04 +0100187 }, /*cppImpl*/
188 {
Steven Moreland937408a2017-03-20 09:54:18 -0700189 {IMPL_INTERFACE,
Yi Kongc8ff4672017-04-30 23:46:56 -0700190 [](auto &out) {
Martijn Coenen8d12b502016-12-27 14:30:27 +0100191 out << "return true;\n";
Martijn Coenen115d4282016-12-19 05:14:04 +0100192 }
193 },
194 {IMPL_PROXY,
Yi Kongc8ff4672017-04-30 23:46:56 -0700195 [](auto &out) {
Martijn Coenen8d12b502016-12-27 14:30:27 +0100196 out << "return mRemote.unlinkToDeath(recipient);\n";
Martijn Coenen115d4282016-12-19 05:14:04 +0100197 }
198 },
Martijn Coenen8d12b502016-12-27 14:30:27 +0100199 {IMPL_STUB, nullptr /* don't generate code */}
Martijn Coenen115d4282016-12-19 05:14:04 +0100200 } /*javaImpl*/
201 );
Yifan Hongffa91392017-01-31 13:41:23 -0800202 return true;
Martijn Coenen115d4282016-12-19 05:14:04 +0100203}
Yifan Hongffa91392017-01-31 13:41:23 -0800204bool Interface::fillSyspropsChangedMethod(Method *method) const {
205 if (method->name() != "notifySyspropsChanged") {
206 return false;
207 }
208
209 method->fillImplementation(
Martijn Coenenaf712c02016-11-16 15:26:27 +0100210 HIDL_SYSPROPS_CHANGED_TRANSACTION,
Yi Kongc8ff4672017-04-30 23:46:56 -0700211 { { IMPL_INTERFACE, [](auto &out) {
Martijn Coenenaf712c02016-11-16 15:26:27 +0100212 out << "::android::report_sysprop_change();\n";
213 out << "return ::android::hardware::Void();";
Martijn Coenen115d4282016-12-19 05:14:04 +0100214 } } }, /*cppImpl */
Steven Moreland937408a2017-03-20 09:54:18 -0700215 { { IMPL_INTERFACE, [](auto &out) { /* javaImpl */
Sundong Ahnc1432c92017-07-13 23:58:27 +0900216 out << "android.os.HwBinder.reportSyspropChanged();";
Martijn Coenen115d4282016-12-19 05:14:04 +0100217 } } } /*javaImpl */
Martijn Coenenaf712c02016-11-16 15:26:27 +0100218 );
Yifan Hongffa91392017-01-31 13:41:23 -0800219 return true;
Andreas Huberc9410c72016-07-28 12:18:40 -0700220}
221
Yifan Hongffa91392017-01-31 13:41:23 -0800222bool Interface::fillSetHALInstrumentationMethod(Method *method) const {
223 if (method->name() != "setHALInstrumentation") {
224 return false;
225 }
226
227 method->fillImplementation(
Zhuoyao Zhangdd85c5c2017-01-03 17:30:24 -0800228 HIDL_SET_HAL_INSTRUMENTATION_TRANSACTION,
229 {
Steven Moreland937408a2017-03-20 09:54:18 -0700230 {IMPL_INTERFACE,
Yi Kongc8ff4672017-04-30 23:46:56 -0700231 [](auto &out) {
Zhuoyao Zhangdd85c5c2017-01-03 17:30:24 -0800232 // do nothing for base class.
233 out << "return ::android::hardware::Void();\n";
234 }
235 },
Zhuoyao Zhangdd85c5c2017-01-03 17:30:24 -0800236 {IMPL_STUB,
237 [](auto &out) {
238 out << "configureInstrumentation();\n";
239 }
240 },
241 {IMPL_PASSTHROUGH,
242 [](auto &out) {
243 out << "configureInstrumentation();\n";
244 out << "return ::android::hardware::Void();\n";
245 }
246 },
247 }, /*cppImpl */
Steven Moreland937408a2017-03-20 09:54:18 -0700248 { { IMPL_INTERFACE, [](auto & /*out*/) { /* javaImpl */
Zhuoyao Zhangdd85c5c2017-01-03 17:30:24 -0800249 // Not support for Java Impl for now.
250 } } } /*javaImpl */
251 );
Yifan Hongffa91392017-01-31 13:41:23 -0800252 return true;
Zhuoyao Zhangdd85c5c2017-01-03 17:30:24 -0800253}
254
Yifan Hongffa91392017-01-31 13:41:23 -0800255bool Interface::fillDescriptorChainMethod(Method *method) const {
256 if (method->name() != "interfaceChain") {
257 return false;
258 }
Yifan Hong10fe0b52016-10-19 14:20:17 -0700259
Yifan Hongffa91392017-01-31 13:41:23 -0800260 method->fillImplementation(
Yifan Hong10fe0b52016-10-19 14:20:17 -0700261 HIDL_DESCRIPTOR_CHAIN_TRANSACTION,
Steven Moreland937408a2017-03-20 09:54:18 -0700262 { { IMPL_INTERFACE, [this](auto &out) {
Yifan Hong10fe0b52016-10-19 14:20:17 -0700263 std::vector<const Interface *> chain = typeChain();
Yifan Hong03935122016-12-19 11:10:40 -0800264 out << "_hidl_cb(";
265 out.block([&] {
266 for (const Interface *iface : chain) {
267 out << iface->fullName() << "::descriptor,\n";
268 }
269 });
270 out << ");\n";
Yifan Hong10fe0b52016-10-19 14:20:17 -0700271 out << "return ::android::hardware::Void();";
Martijn Coenen115d4282016-12-19 05:14:04 +0100272 } } }, /* cppImpl */
Steven Moreland937408a2017-03-20 09:54:18 -0700273 { { IMPL_INTERFACE, [this](auto &out) {
Yifan Hong10fe0b52016-10-19 14:20:17 -0700274 std::vector<const Interface *> chain = typeChain();
Yifan Hong1af73532016-11-09 14:32:58 -0800275 out << "return new java.util.ArrayList<String>(java.util.Arrays.asList(\n";
Yifan Hong10fe0b52016-10-19 14:20:17 -0700276 out.indent(); out.indent();
277 for (size_t i = 0; i < chain.size(); ++i) {
278 if (i != 0)
279 out << ",\n";
Steven Morelandd39133b2016-11-11 12:30:08 -0800280 out << chain[i]->fullJavaName() << ".kInterfaceName";
Yifan Hong10fe0b52016-10-19 14:20:17 -0700281 }
282 out << "));";
283 out.unindent(); out.unindent();
Yifan Hongffa91392017-01-31 13:41:23 -0800284 } } } /* javaImpl */
Martijn Coenen115d4282016-12-19 05:14:04 +0100285 );
Yifan Hongffa91392017-01-31 13:41:23 -0800286 return true;
Yifan Hong10fe0b52016-10-19 14:20:17 -0700287}
288
Yifan Hong30b5d1f2017-04-03 12:19:25 -0700289static void emitDigestChain(
Timur Iskhakov7296af12017-08-09 21:52:48 +0000290 Formatter& out, const std::string& prefix, const std::vector<const Interface*>& chain,
291 std::function<std::string(std::unique_ptr<ConstantExpression>)> byteToString) {
Yifan Hong30b5d1f2017-04-03 12:19:25 -0700292 out.join(chain.begin(), chain.end(), ",\n", [&] (const auto &iface) {
Steven Moreland0e4be1e2017-04-18 19:50:29 -0700293 const Hash &hash = Hash::getHash(iface->location().begin().filename());
Yifan Hong30b5d1f2017-04-03 12:19:25 -0700294 out << prefix;
295 out << "{";
Steven Moreland0e4be1e2017-04-18 19:50:29 -0700296 out.join(hash.raw().begin(), hash.raw().end(), ",", [&](const auto &e) {
Yifan Hong30b5d1f2017-04-03 12:19:25 -0700297 // Use ConstantExpression::cppValue / javaValue
298 // because Java used signed byte for uint8_t.
299 out << byteToString(ConstantExpression::ValueOf(ScalarType::Kind::KIND_UINT8, e));
300 });
301 out << "} /* ";
Steven Moreland0e4be1e2017-04-18 19:50:29 -0700302 out << hash.hexString();
Yifan Hong30b5d1f2017-04-03 12:19:25 -0700303 out << " */";
304 });
305}
306
307bool Interface::fillHashChainMethod(Method *method) const {
308 if (method->name() != "getHashChain") {
309 return false;
310 }
311 const VectorType *chainType = static_cast<const VectorType *>(&method->results()[0]->type());
312 const ArrayType *digestType = static_cast<const ArrayType *>(chainType->getElementType());
313
314 method->fillImplementation(
315 HIDL_HASH_CHAIN_TRANSACTION,
316 { { IMPL_INTERFACE, [this, digestType](auto &out) {
317 std::vector<const Interface *> chain = typeChain();
318 out << "_hidl_cb(";
319 out.block([&] {
Timur Iskhakov7296af12017-08-09 21:52:48 +0000320 emitDigestChain(out, "(" + digestType->getInternalDataCppType() + ")", chain,
321 [](const auto& e) { return e->cppValue(); });
Yifan Hong30b5d1f2017-04-03 12:19:25 -0700322 });
323 out << ");\n";
324 out << "return ::android::hardware::Void();\n";
325 } } }, /* cppImpl */
326 { { IMPL_INTERFACE, [this, digestType, chainType](auto &out) {
327 std::vector<const Interface *> chain = typeChain();
328 out << "return new "
329 << chainType->getJavaType(false /* forInitializer */)
330 << "(java.util.Arrays.asList(\n";
331 out.indent(2, [&] {
332 // No need for dimensions when elements are explicitly provided.
333 emitDigestChain(out, "new " + digestType->getJavaType(false /* forInitializer */),
Timur Iskhakov7296af12017-08-09 21:52:48 +0000334 chain, [](const auto& e) { return e->javaValue(); });
Yifan Hong30b5d1f2017-04-03 12:19:25 -0700335 });
336 out << "));\n";
337 } } } /* javaImpl */
338 );
339 return true;
340}
341
Yifan Hongffa91392017-01-31 13:41:23 -0800342bool Interface::fillGetDescriptorMethod(Method *method) const {
343 if (method->name() != "interfaceDescriptor") {
344 return false;
345 }
Yifan Hongc75fd472017-01-11 12:37:31 -0800346
Yifan Hongffa91392017-01-31 13:41:23 -0800347 method->fillImplementation(
Yifan Hongc75fd472017-01-11 12:37:31 -0800348 HIDL_GET_DESCRIPTOR_TRANSACTION,
Steven Moreland937408a2017-03-20 09:54:18 -0700349 { { IMPL_INTERFACE, [this](auto &out) {
Yifan Hongc75fd472017-01-11 12:37:31 -0800350 out << "_hidl_cb("
351 << fullName()
352 << "::descriptor);\n"
353 << "return ::android::hardware::Void();";
354 } } }, /* cppImpl */
Steven Moreland937408a2017-03-20 09:54:18 -0700355 { { IMPL_INTERFACE, [this](auto &out) {
Yifan Hongc75fd472017-01-11 12:37:31 -0800356 out << "return "
357 << fullJavaName()
358 << ".kInterfaceName;\n";
Yifan Hongffa91392017-01-31 13:41:23 -0800359 } } } /* javaImpl */
Yifan Hongc75fd472017-01-11 12:37:31 -0800360 );
Yifan Hongffa91392017-01-31 13:41:23 -0800361 return true;
Yifan Hongc75fd472017-01-11 12:37:31 -0800362}
Yifan Hong10fe0b52016-10-19 14:20:17 -0700363
Yifan Hongbcffce22017-02-01 15:52:06 -0800364bool Interface::fillGetDebugInfoMethod(Method *method) const {
365 if (method->name() != "getDebugInfo") {
Yifan Hongcd2ae452017-01-31 14:33:40 -0800366 return false;
367 }
368
Yifan Hongdf1ea3f2017-03-02 17:02:10 -0800369 static const std::string sArch =
370 "#if defined(__LP64__)\n"
371 "::android::hidl::base::V1_0::DebugInfo::Architecture::IS_64BIT\n"
372 "#else\n"
373 "::android::hidl::base::V1_0::DebugInfo::Architecture::IS_32BIT\n"
374 "#endif\n";
375
Yifan Hongcd2ae452017-01-31 14:33:40 -0800376 method->fillImplementation(
377 HIDL_GET_REF_INFO_TRANSACTION,
378 {
Steven Moreland937408a2017-03-20 09:54:18 -0700379 {IMPL_INTERFACE,
Yi Kongc8ff4672017-04-30 23:46:56 -0700380 [](auto &out) {
Yifan Hongbcffce22017-02-01 15:52:06 -0800381 // getDebugInfo returns N/A for local objects.
Yifan Hongdf1ea3f2017-03-02 17:02:10 -0800382 out << "_hidl_cb({ -1 /* pid */, 0 /* ptr */, \n"
383 << sArch
384 << "});\n"
Yifan Hongcd2ae452017-01-31 14:33:40 -0800385 << "return ::android::hardware::Void();";
386 }
387 },
388 {IMPL_STUB_IMPL,
Yi Kongc8ff4672017-04-30 23:46:56 -0700389 [](auto &out) {
Yifan Hong2e036c92017-03-07 13:18:12 -0800390 out << "_hidl_cb(";
391 out.block([&] {
392 out << "::android::hardware::details::debuggable()"
393 << "? getpid() : -1 /* pid */,\n"
394 << "::android::hardware::details::debuggable()"
395 << "? reinterpret_cast<uint64_t>(this) : 0 /* ptr */,\n"
396 << sArch << "\n";
397 });
398 out << ");\n"
Yifan Hongcd2ae452017-01-31 14:33:40 -0800399 << "return ::android::hardware::Void();";
400 }
401 }
402 }, /* cppImpl */
Yi Kongc8ff4672017-04-30 23:46:56 -0700403 { { IMPL_INTERFACE, [method](auto &out) {
Yifan Hongcd2ae452017-01-31 14:33:40 -0800404 const Type &refInfo = method->results().front()->type();
405 out << refInfo.getJavaType(false /* forInitializer */) << " info = new "
406 << refInfo.getJavaType(true /* forInitializer */) << "();\n"
Yifan Hongbcffce22017-02-01 15:52:06 -0800407 // TODO(b/34777099): PID for java.
408 << "info.pid = -1;\n"
409 << "info.ptr = 0;\n"
Yifan Hongdf1ea3f2017-03-02 17:02:10 -0800410 << "info.arch = android.hidl.base.V1_0.DebugInfo.Architecture.UNKNOWN;"
Yifan Hongcd2ae452017-01-31 14:33:40 -0800411 << "return info;";
412 } } } /* javaImpl */
413 );
414
415 return true;
416}
417
Andreas Huber37065d62017-02-07 14:36:54 -0800418bool Interface::fillDebugMethod(Method *method) const {
419 if (method->name() != "debug") {
420 return false;
421 }
422
423 method->fillImplementation(
424 HIDL_DEBUG_TRANSACTION,
425 {
Steven Moreland937408a2017-03-20 09:54:18 -0700426 {IMPL_INTERFACE,
Yi Kongc8ff4672017-04-30 23:46:56 -0700427 [](auto &out) {
Andreas Huber37065d62017-02-07 14:36:54 -0800428 out << "(void)fd;\n"
429 << "(void)options;\n"
430 << "return ::android::hardware::Void();";
431 }
432 },
433 }, /* cppImpl */
434 {
435 /* unused, as the debug method is hidden from Java */
436 } /* javaImpl */
437 );
438
439 return true;
440}
441
Yifan Hongffa91392017-01-31 13:41:23 -0800442static std::map<std::string, Method *> gAllReservedMethods;
443
Steven Moreland14ee6742016-10-18 12:58:28 -0700444bool Interface::addMethod(Method *method) {
Yifan Hongc8934042016-11-17 17:10:52 -0800445 if (isIBase()) {
Yifan Hongffa91392017-01-31 13:41:23 -0800446 if (!gAllReservedMethods.emplace(method->name(), method).second) {
447 LOG(ERROR) << "ERROR: hidl-gen encountered duplicated reserved method "
448 << method->name();
449 return false;
450 }
451 // will add it in addAllReservedMethods
Yifan Hongc8934042016-11-17 17:10:52 -0800452 return true;
453 }
454
Yifan Hong10fe0b52016-10-19 14:20:17 -0700455 CHECK(!method->isHidlReserved());
Yifan Hong10fe0b52016-10-19 14:20:17 -0700456 mUserMethods.push_back(method);
Steven Moreland14ee6742016-10-18 12:58:28 -0700457
458 return true;
Andreas Huberc9410c72016-07-28 12:18:40 -0700459}
460
Timur Iskhakovb58f4182017-08-29 15:19:24 -0700461std::vector<const Reference<Type>*> Interface::getReferences() const {
462 std::vector<const Reference<Type>*> ret;
Timur Iskhakov33431e62017-08-21 17:31:23 -0700463
464 if (superType() != nullptr) {
Timur Iskhakovb58f4182017-08-29 15:19:24 -0700465 ret.push_back(&mSuperType);
Timur Iskhakov33431e62017-08-21 17:31:23 -0700466 }
467
468 for (const auto* method : methods()) {
469 const auto& references = method->getReferences();
470 ret.insert(ret.end(), references.begin(), references.end());
471 }
472
473 return ret;
474}
475
Timur Iskhakovb58f4182017-08-29 15:19:24 -0700476std::vector<const ConstantExpression*> Interface::getConstantExpressions() const {
477 std::vector<const ConstantExpression*> ret;
Timur Iskhakov891a8662017-08-25 21:53:48 -0700478 for (const auto* method : methods()) {
479 const auto& retMethod = method->getConstantExpressions();
480 ret.insert(ret.end(), retMethod.begin(), retMethod.end());
481 }
482 return ret;
483}
484
Timur Iskhakovb58f4182017-08-29 15:19:24 -0700485std::vector<const Reference<Type>*> Interface::getStrongReferences() const {
Timur Iskhakov40731af2017-08-24 14:18:35 -0700486 // Interface is a special case as a reference:
487 // its definiton must be completed for extension but
488 // not necessary for other references.
Timur Iskhakov40731af2017-08-24 14:18:35 -0700489
Timur Iskhakovb58f4182017-08-29 15:19:24 -0700490 std::vector<const Reference<Type>*> ret;
Timur Iskhakov40731af2017-08-24 14:18:35 -0700491 if (superType() != nullptr) {
Timur Iskhakovb58f4182017-08-29 15:19:24 -0700492 ret.push_back(&mSuperType);
Timur Iskhakov40731af2017-08-24 14:18:35 -0700493 }
Timur Iskhakovff5e64a2017-09-11 14:56:18 -0700494
495 for (const auto* method : methods()) {
496 const auto& references = method->getStrongReferences();
497 ret.insert(ret.end(), references.begin(), references.end());
498 }
499
Timur Iskhakov40731af2017-08-24 14:18:35 -0700500 return ret;
501}
502
Timur Iskhakovcec46c42017-08-09 00:22:02 -0700503status_t Interface::resolveInheritance() {
504 size_t serial = FIRST_CALL_TRANSACTION;
505 for (const auto* ancestor : superTypeChain()) {
506 serial += ancestor->mUserMethods.size();
507 }
508
509 for (Method* method : mUserMethods) {
510 if (serial > LAST_CALL_TRANSACTION) {
511 std::cerr << "ERROR: More than " << LAST_CALL_TRANSACTION
512 << " methods (including super and reserved) are not allowed at " << location()
513 << "\n";
514 return UNKNOWN_ERROR;
515 }
516
517 method->setSerialId(serial);
518 serial++;
519 }
520
521 return Scope::resolveInheritance();
522}
523
Timur Iskhakovcec46c42017-08-09 00:22:02 -0700524status_t Interface::validate() const {
525 CHECK(isIBase() == mSuperType.isEmptyReference());
526
Timur Iskhakov0344e612017-08-25 12:57:09 -0700527 if (!isIBase() && !mSuperType->isInterface()) {
528 std::cerr << "ERROR: You can only extend interfaces at " << mSuperType.location() << "\n";
529 return UNKNOWN_ERROR;
530 }
531
Timur Iskhakovcec46c42017-08-09 00:22:02 -0700532 status_t err = validateUniqueNames();
533 if (err != OK) return err;
534
535 return Scope::validate();
536}
537
538status_t Interface::validateUniqueNames() const {
539 std::unordered_map<std::string, const Interface*> registeredMethodNames;
540 for (auto const& tuple : allSuperMethodsFromRoot()) {
541 // No need to check super method uniqueness
542 registeredMethodNames[tuple.method()->name()] = tuple.interface();
543 }
544
545 for (const Method* method : mUserMethods) {
546 auto registered = registeredMethodNames.find(method->name());
547
548 if (registered != registeredMethodNames.end()) {
549 const Interface* definedInType = registered->second;
550
551 if (definedInType == this) {
552 // Defined in this interface
553 std::cerr << "ERROR: Redefinition of method '" << method->name() << "'";
554 } else if (definedInType->isIBase()) {
555 // Defined in IBase
556 std::cerr << "ERROR: Redefinition of reserved method '" << method->name() << "'";
557 } else {
558 // Defined in super not IBase
559 std::cerr << "ERROR: Redefinition of method '" << method->name()
560 << "'' defined in interface '" << definedInType->fullName() << "'";
561 }
562 std::cerr << " at " << method->location() << "\n";
563 return UNKNOWN_ERROR;
564 }
565
566 registeredMethodNames[method->name()] = this;
567 }
568
569 return OK;
570}
571
Yifan Hongffa91392017-01-31 13:41:23 -0800572bool Interface::addAllReservedMethods() {
573 // use a sorted map to insert them in serial ID order.
574 std::map<int32_t, Method *> reservedMethodsById;
575 for (const auto &pair : gAllReservedMethods) {
576 Method *method = pair.second->copySignature();
Steven Moreland424a9482017-02-13 19:20:40 -0800577 bool fillSuccess = fillPingMethod(method)
578 || fillDescriptorChainMethod(method)
Yifan Hongffa91392017-01-31 13:41:23 -0800579 || fillGetDescriptorMethod(method)
Yifan Hong30b5d1f2017-04-03 12:19:25 -0700580 || fillHashChainMethod(method)
Yifan Hongffa91392017-01-31 13:41:23 -0800581 || fillSyspropsChangedMethod(method)
582 || fillLinkToDeathMethod(method)
583 || fillUnlinkToDeathMethod(method)
Yifan Hongcd2ae452017-01-31 14:33:40 -0800584 || fillSetHALInstrumentationMethod(method)
Andreas Huber37065d62017-02-07 14:36:54 -0800585 || fillGetDebugInfoMethod(method)
586 || fillDebugMethod(method);
587
Yifan Hongffa91392017-01-31 13:41:23 -0800588 if (!fillSuccess) {
589 LOG(ERROR) << "ERROR: hidl-gen does not recognize a reserved method "
590 << method->name();
591 return false;
592 }
593 if (!reservedMethodsById.emplace(method->getSerialId(), method).second) {
594 LOG(ERROR) << "ERROR: hidl-gen uses duplicated serial id for "
595 << method->name() << " and "
596 << reservedMethodsById[method->getSerialId()]->name()
597 << ", serialId = " << method->getSerialId();
598 return false;
599 }
600 }
601 for (const auto &pair : reservedMethodsById) {
602 this->mReservedMethods.push_back(pair.second);
603 }
604 return true;
605}
Yifan Hong10fe0b52016-10-19 14:20:17 -0700606
Timur Iskhakov505316c2017-08-05 03:38:59 +0000607const Interface* Interface::superType() const {
Timur Iskhakov0344e612017-08-25 12:57:09 -0700608 if (isIBase()) return nullptr;
609 if (!mSuperType->isInterface()) {
610 // This is actually an error
611 // that would be caught in validate
612 return nullptr;
613 }
Timur Iskhakov24e605b2017-08-30 14:02:55 -0700614 return static_cast<const Interface*>(mSuperType.get());
Andreas Huberc9410c72016-07-28 12:18:40 -0700615}
616
Yifan Hong10fe0b52016-10-19 14:20:17 -0700617std::vector<const Interface *> Interface::typeChain() const {
618 std::vector<const Interface *> v;
619 const Interface *iface = this;
620 while (iface != nullptr) {
621 v.push_back(iface);
Timur Iskhakov505316c2017-08-05 03:38:59 +0000622 iface = iface->superType();
Yifan Hong10fe0b52016-10-19 14:20:17 -0700623 }
624 return v;
625}
626
Yifan Hongfe95aa22016-10-19 17:26:45 -0700627std::vector<const Interface *> Interface::superTypeChain() const {
Timur Iskhakov505316c2017-08-05 03:38:59 +0000628 return isIBase() ? std::vector<const Interface*>() : superType()->typeChain();
Yifan Hongfe95aa22016-10-19 17:26:45 -0700629}
630
Martijn Coenenb40ef022017-01-02 15:21:46 +0100631bool Interface::isElidableType() const {
632 return true;
633}
634
Andreas Hubera2723d22016-07-29 15:36:07 -0700635bool Interface::isInterface() const {
636 return true;
637}
638
Andreas Huber295ad302016-08-16 11:35:00 -0700639bool Interface::isBinder() const {
640 return true;
641}
642
Yifan Hong10fe0b52016-10-19 14:20:17 -0700643const std::vector<Method *> &Interface::userDefinedMethods() const {
644 return mUserMethods;
645}
646
647const std::vector<Method *> &Interface::hidlReservedMethods() const {
648 return mReservedMethods;
649}
650
651std::vector<Method *> Interface::methods() const {
652 std::vector<Method *> v(mUserMethods);
653 v.insert(v.end(), mReservedMethods.begin(), mReservedMethods.end());
654 return v;
655}
656
657std::vector<InterfaceAndMethod> Interface::allMethodsFromRoot() const {
658 std::vector<InterfaceAndMethod> v;
659 std::vector<const Interface *> chain = typeChain();
660 for (auto it = chain.rbegin(); it != chain.rend(); ++it) {
661 const Interface *iface = *it;
662 for (Method *userMethod : iface->userDefinedMethods()) {
663 v.push_back(InterfaceAndMethod(iface, userMethod));
664 }
665 }
666 for (Method *reservedMethod : hidlReservedMethods()) {
Yifan Hongc8934042016-11-17 17:10:52 -0800667 v.push_back(InterfaceAndMethod(
668 *chain.rbegin(), // IBase
669 reservedMethod));
Yifan Hong10fe0b52016-10-19 14:20:17 -0700670 }
671 return v;
Andreas Huber881227d2016-08-02 14:20:21 -0700672}
673
Timur Iskhakovf1b902d2017-08-13 20:14:31 -0700674std::vector<InterfaceAndMethod> Interface::allSuperMethodsFromRoot() const {
675 return isIBase() ? std::vector<InterfaceAndMethod>() : superType()->allMethodsFromRoot();
676}
677
Steven Moreland40786312016-08-16 10:29:40 -0700678std::string Interface::getBaseName() const {
Jayant Chowdhary3f32c1f2016-09-15 16:53:56 -0700679 return fqName().getInterfaceBaseName();
Steven Moreland40786312016-08-16 10:29:40 -0700680}
681
Yifan Hongeefe4f22017-01-04 15:32:42 -0800682std::string Interface::getProxyName() const {
683 return fqName().getInterfaceProxyName();
684}
685
686std::string Interface::getStubName() const {
687 return fqName().getInterfaceStubName();
688}
689
690std::string Interface::getHwName() const {
691 return fqName().getInterfaceHwName();
692}
693
694std::string Interface::getPassthroughName() const {
695 return fqName().getInterfacePassthroughName();
696}
697
Yifan Hong51a65092017-01-04 15:41:44 -0800698FQName Interface::getProxyFqName() const {
Yifan Hongeefe4f22017-01-04 15:32:42 -0800699 return fqName().getInterfaceProxyFqName();
Yifan Hong158655a2016-11-08 12:34:07 -0800700}
701
Yifan Hong51a65092017-01-04 15:41:44 -0800702FQName Interface::getStubFqName() const {
Yifan Hongeefe4f22017-01-04 15:32:42 -0800703 return fqName().getInterfaceStubFqName();
Yifan Hong158655a2016-11-08 12:34:07 -0800704}
705
Yifan Hong51a65092017-01-04 15:41:44 -0800706FQName Interface::getPassthroughFqName() const {
Yifan Hongeefe4f22017-01-04 15:32:42 -0800707 return fqName().getInterfacePassthroughFqName();
Yifan Hong158655a2016-11-08 12:34:07 -0800708}
709
Steven Moreland979e0992016-09-07 09:18:08 -0700710std::string Interface::getCppType(StorageMode mode,
Steven Moreland979e0992016-09-07 09:18:08 -0700711 bool specifyNamespaces) const {
Steven Moreland979e0992016-09-07 09:18:08 -0700712 const std::string base =
713 std::string(specifyNamespaces ? "::android::" : "")
714 + "sp<"
Steven Morelande30ee9b2017-05-09 13:31:01 -0700715 + fullName()
Steven Moreland979e0992016-09-07 09:18:08 -0700716 + ">";
Andreas Huber881227d2016-08-02 14:20:21 -0700717
718 switch (mode) {
719 case StorageMode_Stack:
720 case StorageMode_Result:
721 return base;
722
723 case StorageMode_Argument:
724 return "const " + base + "&";
725 }
726}
727
Yifan Hong4ed13472016-11-02 10:44:11 -0700728std::string Interface::getJavaType(bool /* forInitializer */) const {
Andreas Huber2831d512016-08-15 09:33:47 -0700729 return fullJavaName();
730}
731
Zhuoyao Zhanga588b232016-11-10 14:37:35 -0800732std::string Interface::getVtsType() const {
733 if (StringHelper::EndsWith(localName(), "Callback")) {
734 return "TYPE_HIDL_CALLBACK";
735 } else {
736 return "TYPE_HIDL_INTERFACE";
737 }
738}
739
Andreas Huber881227d2016-08-02 14:20:21 -0700740void Interface::emitReaderWriter(
741 Formatter &out,
742 const std::string &name,
743 const std::string &parcelObj,
744 bool parcelObjIsPointer,
745 bool isReader,
746 ErrorMode mode) const {
747 const std::string parcelObjDeref =
748 parcelObj + (parcelObjIsPointer ? "->" : ".");
749
750 if (isReader) {
Andreas Hubere7ff2282016-08-16 13:50:03 -0700751 out << "{\n";
752 out.indent();
753
Iliyan Malchev549e2592016-08-10 08:59:12 -0700754 const std::string binderName = "_hidl_" + name + "_binder";
Andreas Huber881227d2016-08-02 14:20:21 -0700755
Andreas Huber8a82ff72016-08-04 10:29:39 -0700756 out << "::android::sp<::android::hardware::IBinder> "
Andreas Huber881227d2016-08-02 14:20:21 -0700757 << binderName << ";\n";
758
Iliyan Malchev549e2592016-08-10 08:59:12 -0700759 out << "_hidl_err = ";
Andreas Huber881227d2016-08-02 14:20:21 -0700760 out << parcelObjDeref
761 << "readNullableStrongBinder(&"
762 << binderName
763 << ");\n";
764
765 handleError(out, mode);
766
767 out << name
768 << " = "
Martijn Coenena63e0ad2016-12-07 17:29:00 +0100769 << "::android::hardware::fromBinder<"
770 << fqName().cppName()
771 << ","
Yifan Hong51a65092017-01-04 15:41:44 -0800772 << getProxyFqName().cppName()
Martijn Coenena63e0ad2016-12-07 17:29:00 +0100773 << ","
Yifan Hong51a65092017-01-04 15:41:44 -0800774 << getStubFqName().cppName()
Martijn Coenena63e0ad2016-12-07 17:29:00 +0100775 << ">("
Andreas Huber881227d2016-08-02 14:20:21 -0700776 << binderName
777 << ");\n";
Andreas Hubere7ff2282016-08-16 13:50:03 -0700778
779 out.unindent();
780 out << "}\n\n";
Andreas Huber881227d2016-08-02 14:20:21 -0700781 } else {
Martijn Coenene1638232016-10-26 12:51:34 +0200782 out << "if (" << name << " == nullptr) {\n";
783 out.indent();
784 out << "_hidl_err = ";
785 out << parcelObjDeref
786 << "writeStrongBinder(nullptr);\n";
787 out.unindent();
788 out << "} else {\n";
789 out.indent();
Yifan Hong158655a2016-11-08 12:34:07 -0800790 out << "::android::sp<::android::hardware::IBinder> _hidl_binder = "
791 << "::android::hardware::toBinder<\n";
Yifan Hong33223ca2016-12-13 15:07:35 -0800792 out.indent(2, [&] {
Martijn Coenena63e0ad2016-12-07 17:29:00 +0100793 out << fqName().cppName()
Yifan Hong158655a2016-11-08 12:34:07 -0800794 << ">("
795 << name
796 << ");\n";
797 });
798 out << "if (_hidl_binder.get() != nullptr) {\n";
Yifan Hong33223ca2016-12-13 15:07:35 -0800799 out.indent([&] {
Yifan Hong158655a2016-11-08 12:34:07 -0800800 out << "_hidl_err = "
801 << parcelObjDeref
802 << "writeStrongBinder(_hidl_binder);\n";
803 });
804 out << "} else {\n";
Yifan Hong33223ca2016-12-13 15:07:35 -0800805 out.indent([&] {
Yifan Hong158655a2016-11-08 12:34:07 -0800806 out << "_hidl_err = ::android::UNKNOWN_ERROR;\n";
807 });
808 out << "}\n";
Martijn Coenene1638232016-10-26 12:51:34 +0200809 out.unindent();
810 out << "}\n";
Steven Moreland40786312016-08-16 10:29:40 -0700811
Andreas Huber881227d2016-08-02 14:20:21 -0700812 handleError(out, mode);
813 }
814}
815
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800816status_t Interface::emitGlobalTypeDeclarations(Formatter &out) const {
817 status_t status = Scope::emitGlobalTypeDeclarations(out);
818 if (status != OK) {
819 return status;
820 }
Steven Moreland3d98bc42017-06-23 21:36:41 +0000821 out << "std::string toString("
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800822 << getCppArgumentType()
Steven Moreland3d98bc42017-06-23 21:36:41 +0000823 << ");\n";
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800824 return OK;
825}
826
Chih-Hung Hsieh8c90cc52017-08-03 14:51:13 -0700827status_t Interface::emitTypeDefinitions(Formatter& out, const std::string& prefix) const {
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800828 std::string space = prefix.empty() ? "" : (prefix + "::");
829 status_t err = Scope::emitTypeDefinitions(out, space + localName());
830 if (err != OK) {
831 return err;
832 }
833
Steven Moreland3d98bc42017-06-23 21:36:41 +0000834 out << "std::string toString("
835 << getCppArgumentType()
836 << " o) ";
837
838 out.block([&] {
839 out << "std::string os = \"[class or subclass of \";\n"
840 << "os += " << fullName() << "::descriptor;\n"
841 << "os += \"]\";\n"
842 << "os += o->isRemote() ? \"@remote\" : \"@local\";\n"
843 << "return os;\n";
844 }).endl().endl();
845
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800846 return OK;
847}
848
Andreas Huber2831d512016-08-15 09:33:47 -0700849void Interface::emitJavaReaderWriter(
850 Formatter &out,
851 const std::string &parcelObj,
852 const std::string &argName,
853 bool isReader) const {
854 if (isReader) {
855 out << fullJavaName()
856 << ".asInterface("
857 << parcelObj
858 << ".readStrongBinder());\n";
859 } else {
860 out << parcelObj
861 << ".writeStrongBinder("
862 << argName
863 << " == null ? null : "
864 << argName
865 << ".asBinder());\n";
866 }
867}
868
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700869status_t Interface::emitVtsAttributeDeclaration(Formatter &out) const {
870 for (const auto &type : getSubTypes()) {
Zhuoyao Zhangc5ea9f52016-10-06 15:05:39 -0700871 // Skip for TypeDef as it is just an alias of a defined type.
872 if (type->isTypeDef()) {
873 continue;
874 }
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700875 out << "attribute: {\n";
876 out.indent();
877 status_t status = type->emitVtsTypeDeclarations(out);
878 if (status != OK) {
879 return status;
880 }
881 out.unindent();
882 out << "}\n\n";
883 }
884 return OK;
885}
886
887status_t Interface::emitVtsMethodDeclaration(Formatter &out) const {
Yifan Hong10fe0b52016-10-19 14:20:17 -0700888 for (const auto &method : methods()) {
Steven Morelandcea24782016-11-07 11:40:48 -0800889 if (method->isHidlReserved()) {
890 continue;
891 }
892
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700893 out << "api: {\n";
894 out.indent();
895 out << "name: \"" << method->name() << "\"\n";
896 // Generate declaration for each return value.
897 for (const auto &result : method->results()) {
898 out << "return_type_hidl: {\n";
899 out.indent();
900 status_t status = result->type().emitVtsAttributeType(out);
901 if (status != OK) {
902 return status;
903 }
904 out.unindent();
905 out << "}\n";
906 }
907 // Generate declaration for each input argument
908 for (const auto &arg : method->args()) {
909 out << "arg: {\n";
910 out.indent();
911 status_t status = arg->type().emitVtsAttributeType(out);
912 if (status != OK) {
913 return status;
914 }
915 out.unindent();
916 out << "}\n";
917 }
918 // Generate declaration for each annotation.
Steven Morelandd537ab02016-09-12 10:32:01 -0700919 for (const auto &annotation : method->annotations()) {
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700920 out << "callflow: {\n";
921 out.indent();
Steven Morelandd537ab02016-09-12 10:32:01 -0700922 std::string name = annotation->name();
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700923 if (name == "entry") {
924 out << "entry: true\n";
925 } else if (name == "exit") {
926 out << "exit: true\n";
927 } else if (name == "callflow") {
Steven Morelandd537ab02016-09-12 10:32:01 -0700928 const AnnotationParam *param =
929 annotation->getParam("next");
930 if (param != nullptr) {
Timur Iskhakov7a85dc22017-08-10 19:06:41 -0700931 for (const auto& value : param->getValues()) {
Steven Morelandd537ab02016-09-12 10:32:01 -0700932 out << "next: " << value << "\n";
933 }
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700934 }
935 } else {
Keun Soo Yima5a57e92017-02-04 11:32:06 -0800936 std::cerr << "Unrecognized annotation '"
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700937 << name << "' for method: " << method->name()
Keun Soo Yima5a57e92017-02-04 11:32:06 -0800938 << ". A VTS annotation should be one of: "
939 << "entry, exit, callflow. \n";
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700940 }
941 out.unindent();
942 out << "}\n";
943 }
944 out.unindent();
945 out << "}\n\n";
946 }
947 return OK;
948}
949
950status_t Interface::emitVtsAttributeType(Formatter &out) const {
Zhuoyao Zhanga588b232016-11-10 14:37:35 -0800951 out << "type: " << getVtsType() << "\n"
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700952 << "predefined_type: \""
Zhuoyao Zhangc4e10602017-01-27 16:48:05 -0800953 << fullName()
954 << "\"\n";
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700955 return OK;
956}
957
Steven Moreland69e7c702016-09-09 11:16:32 -0700958bool Interface::hasOnewayMethods() const {
Yifan Hong10fe0b52016-10-19 14:20:17 -0700959 for (auto const &method : methods()) {
Steven Moreland69e7c702016-09-09 11:16:32 -0700960 if (method->isOneway()) {
961 return true;
962 }
963 }
964
965 const Interface* superClass = superType();
966
967 if (superClass != nullptr) {
968 return superClass->hasOnewayMethods();
969 }
970
971 return false;
972}
973
Timur Iskhakov5dc72fe2017-09-07 23:13:44 -0700974bool Interface::deepIsJavaCompatible(std::unordered_set<const Type*>* visited) const {
975 if (superType() != nullptr && !superType()->isJavaCompatible(visited)) {
Andreas Huber0fa9e392016-08-31 09:05:44 -0700976 return false;
977 }
978
Timur Iskhakov5dc72fe2017-09-07 23:13:44 -0700979 for (const auto* method : methods()) {
980 if (!method->deepIsJavaCompatible(visited)) {
Andreas Huber70a59e12016-08-16 12:57:01 -0700981 return false;
982 }
983 }
984
Timur Iskhakov5dc72fe2017-09-07 23:13:44 -0700985 return Scope::isJavaCompatible(visited);
Andreas Huber70a59e12016-08-16 12:57:01 -0700986}
987
Timur Iskhakovff5e64a2017-09-11 14:56:18 -0700988bool Interface::isNeverStrongReference() const {
989 return true;
990}
991
Andreas Huberc9410c72016-07-28 12:18:40 -0700992} // namespace android
993