blob: 2e0d93198350f2a23743f8353ecca6ee06edcb27 [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.
489 // As interface declaration appears only in global scope and
490 // method declaration appears only in interface, we may assume
491 // that all references in method definitions are acyclic.
492
Timur Iskhakovb58f4182017-08-29 15:19:24 -0700493 std::vector<const Reference<Type>*> ret;
Timur Iskhakov40731af2017-08-24 14:18:35 -0700494 if (superType() != nullptr) {
Timur Iskhakovb58f4182017-08-29 15:19:24 -0700495 ret.push_back(&mSuperType);
Timur Iskhakov40731af2017-08-24 14:18:35 -0700496 }
497 return ret;
498}
499
Timur Iskhakovcec46c42017-08-09 00:22:02 -0700500status_t Interface::resolveInheritance() {
501 size_t serial = FIRST_CALL_TRANSACTION;
502 for (const auto* ancestor : superTypeChain()) {
503 serial += ancestor->mUserMethods.size();
504 }
505
506 for (Method* method : mUserMethods) {
507 if (serial > LAST_CALL_TRANSACTION) {
508 std::cerr << "ERROR: More than " << LAST_CALL_TRANSACTION
509 << " methods (including super and reserved) are not allowed at " << location()
510 << "\n";
511 return UNKNOWN_ERROR;
512 }
513
514 method->setSerialId(serial);
515 serial++;
516 }
517
518 return Scope::resolveInheritance();
519}
520
Timur Iskhakovcec46c42017-08-09 00:22:02 -0700521status_t Interface::validate() const {
522 CHECK(isIBase() == mSuperType.isEmptyReference());
523
Timur Iskhakov0344e612017-08-25 12:57:09 -0700524 if (!isIBase() && !mSuperType->isInterface()) {
525 std::cerr << "ERROR: You can only extend interfaces at " << mSuperType.location() << "\n";
526 return UNKNOWN_ERROR;
527 }
528
Timur Iskhakovcec46c42017-08-09 00:22:02 -0700529 status_t err = validateUniqueNames();
530 if (err != OK) return err;
531
532 return Scope::validate();
533}
534
535status_t Interface::validateUniqueNames() const {
536 std::unordered_map<std::string, const Interface*> registeredMethodNames;
537 for (auto const& tuple : allSuperMethodsFromRoot()) {
538 // No need to check super method uniqueness
539 registeredMethodNames[tuple.method()->name()] = tuple.interface();
540 }
541
542 for (const Method* method : mUserMethods) {
543 auto registered = registeredMethodNames.find(method->name());
544
545 if (registered != registeredMethodNames.end()) {
546 const Interface* definedInType = registered->second;
547
548 if (definedInType == this) {
549 // Defined in this interface
550 std::cerr << "ERROR: Redefinition of method '" << method->name() << "'";
551 } else if (definedInType->isIBase()) {
552 // Defined in IBase
553 std::cerr << "ERROR: Redefinition of reserved method '" << method->name() << "'";
554 } else {
555 // Defined in super not IBase
556 std::cerr << "ERROR: Redefinition of method '" << method->name()
557 << "'' defined in interface '" << definedInType->fullName() << "'";
558 }
559 std::cerr << " at " << method->location() << "\n";
560 return UNKNOWN_ERROR;
561 }
562
563 registeredMethodNames[method->name()] = this;
564 }
565
566 return OK;
567}
568
Yifan Hongffa91392017-01-31 13:41:23 -0800569bool Interface::addAllReservedMethods() {
570 // use a sorted map to insert them in serial ID order.
571 std::map<int32_t, Method *> reservedMethodsById;
572 for (const auto &pair : gAllReservedMethods) {
573 Method *method = pair.second->copySignature();
Steven Moreland424a9482017-02-13 19:20:40 -0800574 bool fillSuccess = fillPingMethod(method)
575 || fillDescriptorChainMethod(method)
Yifan Hongffa91392017-01-31 13:41:23 -0800576 || fillGetDescriptorMethod(method)
Yifan Hong30b5d1f2017-04-03 12:19:25 -0700577 || fillHashChainMethod(method)
Yifan Hongffa91392017-01-31 13:41:23 -0800578 || fillSyspropsChangedMethod(method)
579 || fillLinkToDeathMethod(method)
580 || fillUnlinkToDeathMethod(method)
Yifan Hongcd2ae452017-01-31 14:33:40 -0800581 || fillSetHALInstrumentationMethod(method)
Andreas Huber37065d62017-02-07 14:36:54 -0800582 || fillGetDebugInfoMethod(method)
583 || fillDebugMethod(method);
584
Yifan Hongffa91392017-01-31 13:41:23 -0800585 if (!fillSuccess) {
586 LOG(ERROR) << "ERROR: hidl-gen does not recognize a reserved method "
587 << method->name();
588 return false;
589 }
590 if (!reservedMethodsById.emplace(method->getSerialId(), method).second) {
591 LOG(ERROR) << "ERROR: hidl-gen uses duplicated serial id for "
592 << method->name() << " and "
593 << reservedMethodsById[method->getSerialId()]->name()
594 << ", serialId = " << method->getSerialId();
595 return false;
596 }
597 }
598 for (const auto &pair : reservedMethodsById) {
599 this->mReservedMethods.push_back(pair.second);
600 }
601 return true;
602}
Yifan Hong10fe0b52016-10-19 14:20:17 -0700603
Timur Iskhakov505316c2017-08-05 03:38:59 +0000604const Interface* Interface::superType() const {
Timur Iskhakov0344e612017-08-25 12:57:09 -0700605 if (isIBase()) return nullptr;
606 if (!mSuperType->isInterface()) {
607 // This is actually an error
608 // that would be caught in validate
609 return nullptr;
610 }
Timur Iskhakov24e605b2017-08-30 14:02:55 -0700611 return static_cast<const Interface*>(mSuperType.get());
Andreas Huberc9410c72016-07-28 12:18:40 -0700612}
613
Yifan Hong10fe0b52016-10-19 14:20:17 -0700614std::vector<const Interface *> Interface::typeChain() const {
615 std::vector<const Interface *> v;
616 const Interface *iface = this;
617 while (iface != nullptr) {
618 v.push_back(iface);
Timur Iskhakov505316c2017-08-05 03:38:59 +0000619 iface = iface->superType();
Yifan Hong10fe0b52016-10-19 14:20:17 -0700620 }
621 return v;
622}
623
Yifan Hongfe95aa22016-10-19 17:26:45 -0700624std::vector<const Interface *> Interface::superTypeChain() const {
Timur Iskhakov505316c2017-08-05 03:38:59 +0000625 return isIBase() ? std::vector<const Interface*>() : superType()->typeChain();
Yifan Hongfe95aa22016-10-19 17:26:45 -0700626}
627
Martijn Coenenb40ef022017-01-02 15:21:46 +0100628bool Interface::isElidableType() const {
629 return true;
630}
631
Andreas Hubera2723d22016-07-29 15:36:07 -0700632bool Interface::isInterface() const {
633 return true;
634}
635
Andreas Huber295ad302016-08-16 11:35:00 -0700636bool Interface::isBinder() const {
637 return true;
638}
639
Yifan Hong10fe0b52016-10-19 14:20:17 -0700640const std::vector<Method *> &Interface::userDefinedMethods() const {
641 return mUserMethods;
642}
643
644const std::vector<Method *> &Interface::hidlReservedMethods() const {
645 return mReservedMethods;
646}
647
648std::vector<Method *> Interface::methods() const {
649 std::vector<Method *> v(mUserMethods);
650 v.insert(v.end(), mReservedMethods.begin(), mReservedMethods.end());
651 return v;
652}
653
654std::vector<InterfaceAndMethod> Interface::allMethodsFromRoot() const {
655 std::vector<InterfaceAndMethod> v;
656 std::vector<const Interface *> chain = typeChain();
657 for (auto it = chain.rbegin(); it != chain.rend(); ++it) {
658 const Interface *iface = *it;
659 for (Method *userMethod : iface->userDefinedMethods()) {
660 v.push_back(InterfaceAndMethod(iface, userMethod));
661 }
662 }
663 for (Method *reservedMethod : hidlReservedMethods()) {
Yifan Hongc8934042016-11-17 17:10:52 -0800664 v.push_back(InterfaceAndMethod(
665 *chain.rbegin(), // IBase
666 reservedMethod));
Yifan Hong10fe0b52016-10-19 14:20:17 -0700667 }
668 return v;
Andreas Huber881227d2016-08-02 14:20:21 -0700669}
670
Timur Iskhakovf1b902d2017-08-13 20:14:31 -0700671std::vector<InterfaceAndMethod> Interface::allSuperMethodsFromRoot() const {
672 return isIBase() ? std::vector<InterfaceAndMethod>() : superType()->allMethodsFromRoot();
673}
674
Steven Moreland40786312016-08-16 10:29:40 -0700675std::string Interface::getBaseName() const {
Jayant Chowdhary3f32c1f2016-09-15 16:53:56 -0700676 return fqName().getInterfaceBaseName();
Steven Moreland40786312016-08-16 10:29:40 -0700677}
678
Yifan Hongeefe4f22017-01-04 15:32:42 -0800679std::string Interface::getProxyName() const {
680 return fqName().getInterfaceProxyName();
681}
682
683std::string Interface::getStubName() const {
684 return fqName().getInterfaceStubName();
685}
686
687std::string Interface::getHwName() const {
688 return fqName().getInterfaceHwName();
689}
690
691std::string Interface::getPassthroughName() const {
692 return fqName().getInterfacePassthroughName();
693}
694
Yifan Hong51a65092017-01-04 15:41:44 -0800695FQName Interface::getProxyFqName() const {
Yifan Hongeefe4f22017-01-04 15:32:42 -0800696 return fqName().getInterfaceProxyFqName();
Yifan Hong158655a2016-11-08 12:34:07 -0800697}
698
Yifan Hong51a65092017-01-04 15:41:44 -0800699FQName Interface::getStubFqName() const {
Yifan Hongeefe4f22017-01-04 15:32:42 -0800700 return fqName().getInterfaceStubFqName();
Yifan Hong158655a2016-11-08 12:34:07 -0800701}
702
Yifan Hong51a65092017-01-04 15:41:44 -0800703FQName Interface::getPassthroughFqName() const {
Yifan Hongeefe4f22017-01-04 15:32:42 -0800704 return fqName().getInterfacePassthroughFqName();
Yifan Hong158655a2016-11-08 12:34:07 -0800705}
706
Steven Moreland979e0992016-09-07 09:18:08 -0700707std::string Interface::getCppType(StorageMode mode,
Steven Moreland979e0992016-09-07 09:18:08 -0700708 bool specifyNamespaces) const {
Steven Moreland979e0992016-09-07 09:18:08 -0700709 const std::string base =
710 std::string(specifyNamespaces ? "::android::" : "")
711 + "sp<"
Steven Morelande30ee9b2017-05-09 13:31:01 -0700712 + fullName()
Steven Moreland979e0992016-09-07 09:18:08 -0700713 + ">";
Andreas Huber881227d2016-08-02 14:20:21 -0700714
715 switch (mode) {
716 case StorageMode_Stack:
717 case StorageMode_Result:
718 return base;
719
720 case StorageMode_Argument:
721 return "const " + base + "&";
722 }
723}
724
Yifan Hong4ed13472016-11-02 10:44:11 -0700725std::string Interface::getJavaType(bool /* forInitializer */) const {
Andreas Huber2831d512016-08-15 09:33:47 -0700726 return fullJavaName();
727}
728
Zhuoyao Zhanga588b232016-11-10 14:37:35 -0800729std::string Interface::getVtsType() const {
730 if (StringHelper::EndsWith(localName(), "Callback")) {
731 return "TYPE_HIDL_CALLBACK";
732 } else {
733 return "TYPE_HIDL_INTERFACE";
734 }
735}
736
Andreas Huber881227d2016-08-02 14:20:21 -0700737void Interface::emitReaderWriter(
738 Formatter &out,
739 const std::string &name,
740 const std::string &parcelObj,
741 bool parcelObjIsPointer,
742 bool isReader,
743 ErrorMode mode) const {
744 const std::string parcelObjDeref =
745 parcelObj + (parcelObjIsPointer ? "->" : ".");
746
747 if (isReader) {
Andreas Hubere7ff2282016-08-16 13:50:03 -0700748 out << "{\n";
749 out.indent();
750
Iliyan Malchev549e2592016-08-10 08:59:12 -0700751 const std::string binderName = "_hidl_" + name + "_binder";
Andreas Huber881227d2016-08-02 14:20:21 -0700752
Andreas Huber8a82ff72016-08-04 10:29:39 -0700753 out << "::android::sp<::android::hardware::IBinder> "
Andreas Huber881227d2016-08-02 14:20:21 -0700754 << binderName << ";\n";
755
Iliyan Malchev549e2592016-08-10 08:59:12 -0700756 out << "_hidl_err = ";
Andreas Huber881227d2016-08-02 14:20:21 -0700757 out << parcelObjDeref
758 << "readNullableStrongBinder(&"
759 << binderName
760 << ");\n";
761
762 handleError(out, mode);
763
764 out << name
765 << " = "
Martijn Coenena63e0ad2016-12-07 17:29:00 +0100766 << "::android::hardware::fromBinder<"
767 << fqName().cppName()
768 << ","
Yifan Hong51a65092017-01-04 15:41:44 -0800769 << getProxyFqName().cppName()
Martijn Coenena63e0ad2016-12-07 17:29:00 +0100770 << ","
Yifan Hong51a65092017-01-04 15:41:44 -0800771 << getStubFqName().cppName()
Martijn Coenena63e0ad2016-12-07 17:29:00 +0100772 << ">("
Andreas Huber881227d2016-08-02 14:20:21 -0700773 << binderName
774 << ");\n";
Andreas Hubere7ff2282016-08-16 13:50:03 -0700775
776 out.unindent();
777 out << "}\n\n";
Andreas Huber881227d2016-08-02 14:20:21 -0700778 } else {
Martijn Coenene1638232016-10-26 12:51:34 +0200779 out << "if (" << name << " == nullptr) {\n";
780 out.indent();
781 out << "_hidl_err = ";
782 out << parcelObjDeref
783 << "writeStrongBinder(nullptr);\n";
784 out.unindent();
785 out << "} else {\n";
786 out.indent();
Yifan Hong158655a2016-11-08 12:34:07 -0800787 out << "::android::sp<::android::hardware::IBinder> _hidl_binder = "
788 << "::android::hardware::toBinder<\n";
Yifan Hong33223ca2016-12-13 15:07:35 -0800789 out.indent(2, [&] {
Martijn Coenena63e0ad2016-12-07 17:29:00 +0100790 out << fqName().cppName()
Yifan Hong158655a2016-11-08 12:34:07 -0800791 << ">("
792 << name
793 << ");\n";
794 });
795 out << "if (_hidl_binder.get() != nullptr) {\n";
Yifan Hong33223ca2016-12-13 15:07:35 -0800796 out.indent([&] {
Yifan Hong158655a2016-11-08 12:34:07 -0800797 out << "_hidl_err = "
798 << parcelObjDeref
799 << "writeStrongBinder(_hidl_binder);\n";
800 });
801 out << "} else {\n";
Yifan Hong33223ca2016-12-13 15:07:35 -0800802 out.indent([&] {
Yifan Hong158655a2016-11-08 12:34:07 -0800803 out << "_hidl_err = ::android::UNKNOWN_ERROR;\n";
804 });
805 out << "}\n";
Martijn Coenene1638232016-10-26 12:51:34 +0200806 out.unindent();
807 out << "}\n";
Steven Moreland40786312016-08-16 10:29:40 -0700808
Andreas Huber881227d2016-08-02 14:20:21 -0700809 handleError(out, mode);
810 }
811}
812
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800813status_t Interface::emitGlobalTypeDeclarations(Formatter &out) const {
814 status_t status = Scope::emitGlobalTypeDeclarations(out);
815 if (status != OK) {
816 return status;
817 }
Steven Moreland3d98bc42017-06-23 21:36:41 +0000818 out << "std::string toString("
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800819 << getCppArgumentType()
Steven Moreland3d98bc42017-06-23 21:36:41 +0000820 << ");\n";
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800821 return OK;
822}
823
Chih-Hung Hsieh8c90cc52017-08-03 14:51:13 -0700824status_t Interface::emitTypeDefinitions(Formatter& out, const std::string& prefix) const {
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800825 std::string space = prefix.empty() ? "" : (prefix + "::");
826 status_t err = Scope::emitTypeDefinitions(out, space + localName());
827 if (err != OK) {
828 return err;
829 }
830
Steven Moreland3d98bc42017-06-23 21:36:41 +0000831 out << "std::string toString("
832 << getCppArgumentType()
833 << " o) ";
834
835 out.block([&] {
836 out << "std::string os = \"[class or subclass of \";\n"
837 << "os += " << fullName() << "::descriptor;\n"
838 << "os += \"]\";\n"
839 << "os += o->isRemote() ? \"@remote\" : \"@local\";\n"
840 << "return os;\n";
841 }).endl().endl();
842
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800843 return OK;
844}
845
Andreas Huber2831d512016-08-15 09:33:47 -0700846void Interface::emitJavaReaderWriter(
847 Formatter &out,
848 const std::string &parcelObj,
849 const std::string &argName,
850 bool isReader) const {
851 if (isReader) {
852 out << fullJavaName()
853 << ".asInterface("
854 << parcelObj
855 << ".readStrongBinder());\n";
856 } else {
857 out << parcelObj
858 << ".writeStrongBinder("
859 << argName
860 << " == null ? null : "
861 << argName
862 << ".asBinder());\n";
863 }
864}
865
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700866status_t Interface::emitVtsAttributeDeclaration(Formatter &out) const {
867 for (const auto &type : getSubTypes()) {
Zhuoyao Zhangc5ea9f52016-10-06 15:05:39 -0700868 // Skip for TypeDef as it is just an alias of a defined type.
869 if (type->isTypeDef()) {
870 continue;
871 }
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700872 out << "attribute: {\n";
873 out.indent();
874 status_t status = type->emitVtsTypeDeclarations(out);
875 if (status != OK) {
876 return status;
877 }
878 out.unindent();
879 out << "}\n\n";
880 }
881 return OK;
882}
883
884status_t Interface::emitVtsMethodDeclaration(Formatter &out) const {
Yifan Hong10fe0b52016-10-19 14:20:17 -0700885 for (const auto &method : methods()) {
Steven Morelandcea24782016-11-07 11:40:48 -0800886 if (method->isHidlReserved()) {
887 continue;
888 }
889
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700890 out << "api: {\n";
891 out.indent();
892 out << "name: \"" << method->name() << "\"\n";
893 // Generate declaration for each return value.
894 for (const auto &result : method->results()) {
895 out << "return_type_hidl: {\n";
896 out.indent();
897 status_t status = result->type().emitVtsAttributeType(out);
898 if (status != OK) {
899 return status;
900 }
901 out.unindent();
902 out << "}\n";
903 }
904 // Generate declaration for each input argument
905 for (const auto &arg : method->args()) {
906 out << "arg: {\n";
907 out.indent();
908 status_t status = arg->type().emitVtsAttributeType(out);
909 if (status != OK) {
910 return status;
911 }
912 out.unindent();
913 out << "}\n";
914 }
915 // Generate declaration for each annotation.
Steven Morelandd537ab02016-09-12 10:32:01 -0700916 for (const auto &annotation : method->annotations()) {
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700917 out << "callflow: {\n";
918 out.indent();
Steven Morelandd537ab02016-09-12 10:32:01 -0700919 std::string name = annotation->name();
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700920 if (name == "entry") {
921 out << "entry: true\n";
922 } else if (name == "exit") {
923 out << "exit: true\n";
924 } else if (name == "callflow") {
Steven Morelandd537ab02016-09-12 10:32:01 -0700925 const AnnotationParam *param =
926 annotation->getParam("next");
927 if (param != nullptr) {
Timur Iskhakov7a85dc22017-08-10 19:06:41 -0700928 for (const auto& value : param->getValues()) {
Steven Morelandd537ab02016-09-12 10:32:01 -0700929 out << "next: " << value << "\n";
930 }
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700931 }
932 } else {
Keun Soo Yima5a57e92017-02-04 11:32:06 -0800933 std::cerr << "Unrecognized annotation '"
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700934 << name << "' for method: " << method->name()
Keun Soo Yima5a57e92017-02-04 11:32:06 -0800935 << ". A VTS annotation should be one of: "
936 << "entry, exit, callflow. \n";
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700937 }
938 out.unindent();
939 out << "}\n";
940 }
941 out.unindent();
942 out << "}\n\n";
943 }
944 return OK;
945}
946
947status_t Interface::emitVtsAttributeType(Formatter &out) const {
Zhuoyao Zhanga588b232016-11-10 14:37:35 -0800948 out << "type: " << getVtsType() << "\n"
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700949 << "predefined_type: \""
Zhuoyao Zhangc4e10602017-01-27 16:48:05 -0800950 << fullName()
951 << "\"\n";
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700952 return OK;
953}
954
Steven Moreland69e7c702016-09-09 11:16:32 -0700955bool Interface::hasOnewayMethods() const {
Yifan Hong10fe0b52016-10-19 14:20:17 -0700956 for (auto const &method : methods()) {
Steven Moreland69e7c702016-09-09 11:16:32 -0700957 if (method->isOneway()) {
958 return true;
959 }
960 }
961
962 const Interface* superClass = superType();
963
964 if (superClass != nullptr) {
965 return superClass->hasOnewayMethods();
966 }
967
968 return false;
969}
970
Timur Iskhakov5dc72fe2017-09-07 23:13:44 -0700971bool Interface::deepIsJavaCompatible(std::unordered_set<const Type*>* visited) const {
972 if (superType() != nullptr && !superType()->isJavaCompatible(visited)) {
Andreas Huber0fa9e392016-08-31 09:05:44 -0700973 return false;
974 }
975
Timur Iskhakov5dc72fe2017-09-07 23:13:44 -0700976 for (const auto* method : methods()) {
977 if (!method->deepIsJavaCompatible(visited)) {
Andreas Huber70a59e12016-08-16 12:57:01 -0700978 return false;
979 }
980 }
981
Timur Iskhakov5dc72fe2017-09-07 23:13:44 -0700982 return Scope::isJavaCompatible(visited);
Andreas Huber70a59e12016-08-16 12:57:01 -0700983}
984
Andreas Huberc9410c72016-07-28 12:18:40 -0700985} // namespace android
986