blob: 1ae66389bafbb87c969de775050813571e8cae98 [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 Iskhakov0344e612017-08-25 12:57:09 -070073 const Reference<Type>& superType)
Timur Iskhakov505316c2017-08-05 03:38:59 +000074 : 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 Iskhakovb58f4182017-08-29 15:19:24 -0700463std::vector<const Reference<Type>*> Interface::getReferences() const {
464 std::vector<const Reference<Type>*> ret;
Timur Iskhakov33431e62017-08-21 17:31:23 -0700465
466 if (superType() != nullptr) {
Timur Iskhakovb58f4182017-08-29 15:19:24 -0700467 ret.push_back(&mSuperType);
Timur Iskhakov33431e62017-08-21 17:31:23 -0700468 }
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 Iskhakovb58f4182017-08-29 15:19:24 -0700478std::vector<const ConstantExpression*> Interface::getConstantExpressions() const {
479 std::vector<const ConstantExpression*> ret;
Timur Iskhakov891a8662017-08-25 21:53:48 -0700480 for (const auto* method : methods()) {
481 const auto& retMethod = method->getConstantExpressions();
482 ret.insert(ret.end(), retMethod.begin(), retMethod.end());
483 }
484 return ret;
485}
486
Timur Iskhakovb58f4182017-08-29 15:19:24 -0700487std::vector<const Reference<Type>*> Interface::getStrongReferences() const {
Timur Iskhakov40731af2017-08-24 14:18:35 -0700488 // Interface is a special case as a reference:
489 // its definiton must be completed for extension but
490 // not necessary for other references.
491 // As interface declaration appears only in global scope and
492 // method declaration appears only in interface, we may assume
493 // that all references in method definitions are acyclic.
494
Timur Iskhakovb58f4182017-08-29 15:19:24 -0700495 std::vector<const Reference<Type>*> ret;
Timur Iskhakov40731af2017-08-24 14:18:35 -0700496 if (superType() != nullptr) {
Timur Iskhakovb58f4182017-08-29 15:19:24 -0700497 ret.push_back(&mSuperType);
Timur Iskhakov40731af2017-08-24 14:18:35 -0700498 }
499 return ret;
500}
501
Timur Iskhakovcec46c42017-08-09 00:22:02 -0700502status_t Interface::resolveInheritance() {
503 size_t serial = FIRST_CALL_TRANSACTION;
504 for (const auto* ancestor : superTypeChain()) {
505 serial += ancestor->mUserMethods.size();
506 }
507
508 for (Method* method : mUserMethods) {
509 if (serial > LAST_CALL_TRANSACTION) {
510 std::cerr << "ERROR: More than " << LAST_CALL_TRANSACTION
511 << " methods (including super and reserved) are not allowed at " << location()
512 << "\n";
513 return UNKNOWN_ERROR;
514 }
515
516 method->setSerialId(serial);
517 serial++;
518 }
519
520 return Scope::resolveInheritance();
521}
522
Timur Iskhakovcec46c42017-08-09 00:22:02 -0700523status_t Interface::validate() const {
524 CHECK(isIBase() == mSuperType.isEmptyReference());
525
Timur Iskhakov0344e612017-08-25 12:57:09 -0700526 if (!isIBase() && !mSuperType->isInterface()) {
527 std::cerr << "ERROR: You can only extend interfaces at " << mSuperType.location() << "\n";
528 return UNKNOWN_ERROR;
529 }
530
Timur Iskhakovcec46c42017-08-09 00:22:02 -0700531 status_t err = validateUniqueNames();
532 if (err != OK) return err;
533
534 return Scope::validate();
535}
536
537status_t Interface::validateUniqueNames() const {
538 std::unordered_map<std::string, const Interface*> registeredMethodNames;
539 for (auto const& tuple : allSuperMethodsFromRoot()) {
540 // No need to check super method uniqueness
541 registeredMethodNames[tuple.method()->name()] = tuple.interface();
542 }
543
544 for (const Method* method : mUserMethods) {
545 auto registered = registeredMethodNames.find(method->name());
546
547 if (registered != registeredMethodNames.end()) {
548 const Interface* definedInType = registered->second;
549
550 if (definedInType == this) {
551 // Defined in this interface
552 std::cerr << "ERROR: Redefinition of method '" << method->name() << "'";
553 } else if (definedInType->isIBase()) {
554 // Defined in IBase
555 std::cerr << "ERROR: Redefinition of reserved method '" << method->name() << "'";
556 } else {
557 // Defined in super not IBase
558 std::cerr << "ERROR: Redefinition of method '" << method->name()
559 << "'' defined in interface '" << definedInType->fullName() << "'";
560 }
561 std::cerr << " at " << method->location() << "\n";
562 return UNKNOWN_ERROR;
563 }
564
565 registeredMethodNames[method->name()] = this;
566 }
567
568 return OK;
569}
570
Yifan Hongffa91392017-01-31 13:41:23 -0800571bool Interface::addAllReservedMethods() {
572 // use a sorted map to insert them in serial ID order.
573 std::map<int32_t, Method *> reservedMethodsById;
574 for (const auto &pair : gAllReservedMethods) {
575 Method *method = pair.second->copySignature();
Steven Moreland424a9482017-02-13 19:20:40 -0800576 bool fillSuccess = fillPingMethod(method)
577 || fillDescriptorChainMethod(method)
Yifan Hongffa91392017-01-31 13:41:23 -0800578 || fillGetDescriptorMethod(method)
Yifan Hong30b5d1f2017-04-03 12:19:25 -0700579 || fillHashChainMethod(method)
Yifan Hongffa91392017-01-31 13:41:23 -0800580 || fillSyspropsChangedMethod(method)
581 || fillLinkToDeathMethod(method)
582 || fillUnlinkToDeathMethod(method)
Yifan Hongcd2ae452017-01-31 14:33:40 -0800583 || fillSetHALInstrumentationMethod(method)
Andreas Huber37065d62017-02-07 14:36:54 -0800584 || fillGetDebugInfoMethod(method)
585 || fillDebugMethod(method);
586
Yifan Hongffa91392017-01-31 13:41:23 -0800587 if (!fillSuccess) {
588 LOG(ERROR) << "ERROR: hidl-gen does not recognize a reserved method "
589 << method->name();
590 return false;
591 }
592 if (!reservedMethodsById.emplace(method->getSerialId(), method).second) {
593 LOG(ERROR) << "ERROR: hidl-gen uses duplicated serial id for "
594 << method->name() << " and "
595 << reservedMethodsById[method->getSerialId()]->name()
596 << ", serialId = " << method->getSerialId();
597 return false;
598 }
599 }
600 for (const auto &pair : reservedMethodsById) {
601 this->mReservedMethods.push_back(pair.second);
602 }
603 return true;
604}
Yifan Hong10fe0b52016-10-19 14:20:17 -0700605
Timur Iskhakov505316c2017-08-05 03:38:59 +0000606const Interface* Interface::superType() const {
Timur Iskhakov0344e612017-08-25 12:57:09 -0700607 if (isIBase()) return nullptr;
608 if (!mSuperType->isInterface()) {
609 // This is actually an error
610 // that would be caught in validate
611 return nullptr;
612 }
Timur Iskhakov24e605b2017-08-30 14:02:55 -0700613 return static_cast<const Interface*>(mSuperType.get());
Andreas Huberc9410c72016-07-28 12:18:40 -0700614}
615
Yifan Hong10fe0b52016-10-19 14:20:17 -0700616std::vector<const Interface *> Interface::typeChain() const {
617 std::vector<const Interface *> v;
618 const Interface *iface = this;
619 while (iface != nullptr) {
620 v.push_back(iface);
Timur Iskhakov505316c2017-08-05 03:38:59 +0000621 iface = iface->superType();
Yifan Hong10fe0b52016-10-19 14:20:17 -0700622 }
623 return v;
624}
625
Yifan Hongfe95aa22016-10-19 17:26:45 -0700626std::vector<const Interface *> Interface::superTypeChain() const {
Timur Iskhakov505316c2017-08-05 03:38:59 +0000627 return isIBase() ? std::vector<const Interface*>() : superType()->typeChain();
Yifan Hongfe95aa22016-10-19 17:26:45 -0700628}
629
Martijn Coenenb40ef022017-01-02 15:21:46 +0100630bool Interface::isElidableType() const {
631 return true;
632}
633
Andreas Hubera2723d22016-07-29 15:36:07 -0700634bool Interface::isInterface() const {
635 return true;
636}
637
Andreas Huber295ad302016-08-16 11:35:00 -0700638bool Interface::isBinder() const {
639 return true;
640}
641
Yifan Hong10fe0b52016-10-19 14:20:17 -0700642const std::vector<Method *> &Interface::userDefinedMethods() const {
643 return mUserMethods;
644}
645
646const std::vector<Method *> &Interface::hidlReservedMethods() const {
647 return mReservedMethods;
648}
649
650std::vector<Method *> Interface::methods() const {
651 std::vector<Method *> v(mUserMethods);
652 v.insert(v.end(), mReservedMethods.begin(), mReservedMethods.end());
653 return v;
654}
655
656std::vector<InterfaceAndMethod> Interface::allMethodsFromRoot() const {
657 std::vector<InterfaceAndMethod> v;
658 std::vector<const Interface *> chain = typeChain();
659 for (auto it = chain.rbegin(); it != chain.rend(); ++it) {
660 const Interface *iface = *it;
661 for (Method *userMethod : iface->userDefinedMethods()) {
662 v.push_back(InterfaceAndMethod(iface, userMethod));
663 }
664 }
665 for (Method *reservedMethod : hidlReservedMethods()) {
Yifan Hongc8934042016-11-17 17:10:52 -0800666 v.push_back(InterfaceAndMethod(
667 *chain.rbegin(), // IBase
668 reservedMethod));
Yifan Hong10fe0b52016-10-19 14:20:17 -0700669 }
670 return v;
Andreas Huber881227d2016-08-02 14:20:21 -0700671}
672
Timur Iskhakovf1b902d2017-08-13 20:14:31 -0700673std::vector<InterfaceAndMethod> Interface::allSuperMethodsFromRoot() const {
674 return isIBase() ? std::vector<InterfaceAndMethod>() : superType()->allMethodsFromRoot();
675}
676
Steven Moreland40786312016-08-16 10:29:40 -0700677std::string Interface::getBaseName() const {
Jayant Chowdhary3f32c1f2016-09-15 16:53:56 -0700678 return fqName().getInterfaceBaseName();
Steven Moreland40786312016-08-16 10:29:40 -0700679}
680
Yifan Hongeefe4f22017-01-04 15:32:42 -0800681std::string Interface::getProxyName() const {
682 return fqName().getInterfaceProxyName();
683}
684
685std::string Interface::getStubName() const {
686 return fqName().getInterfaceStubName();
687}
688
689std::string Interface::getHwName() const {
690 return fqName().getInterfaceHwName();
691}
692
693std::string Interface::getPassthroughName() const {
694 return fqName().getInterfacePassthroughName();
695}
696
Yifan Hong51a65092017-01-04 15:41:44 -0800697FQName Interface::getProxyFqName() const {
Yifan Hongeefe4f22017-01-04 15:32:42 -0800698 return fqName().getInterfaceProxyFqName();
Yifan Hong158655a2016-11-08 12:34:07 -0800699}
700
Yifan Hong51a65092017-01-04 15:41:44 -0800701FQName Interface::getStubFqName() const {
Yifan Hongeefe4f22017-01-04 15:32:42 -0800702 return fqName().getInterfaceStubFqName();
Yifan Hong158655a2016-11-08 12:34:07 -0800703}
704
Yifan Hong51a65092017-01-04 15:41:44 -0800705FQName Interface::getPassthroughFqName() const {
Yifan Hongeefe4f22017-01-04 15:32:42 -0800706 return fqName().getInterfacePassthroughFqName();
Yifan Hong158655a2016-11-08 12:34:07 -0800707}
708
Steven Moreland979e0992016-09-07 09:18:08 -0700709std::string Interface::getCppType(StorageMode mode,
Steven Moreland979e0992016-09-07 09:18:08 -0700710 bool specifyNamespaces) const {
Steven Moreland979e0992016-09-07 09:18:08 -0700711 const std::string base =
712 std::string(specifyNamespaces ? "::android::" : "")
713 + "sp<"
Steven Morelande30ee9b2017-05-09 13:31:01 -0700714 + fullName()
Steven Moreland979e0992016-09-07 09:18:08 -0700715 + ">";
Andreas Huber881227d2016-08-02 14:20:21 -0700716
717 switch (mode) {
718 case StorageMode_Stack:
719 case StorageMode_Result:
720 return base;
721
722 case StorageMode_Argument:
723 return "const " + base + "&";
724 }
725}
726
Yifan Hong4ed13472016-11-02 10:44:11 -0700727std::string Interface::getJavaType(bool /* forInitializer */) const {
Andreas Huber2831d512016-08-15 09:33:47 -0700728 return fullJavaName();
729}
730
Zhuoyao Zhanga588b232016-11-10 14:37:35 -0800731std::string Interface::getVtsType() const {
732 if (StringHelper::EndsWith(localName(), "Callback")) {
733 return "TYPE_HIDL_CALLBACK";
734 } else {
735 return "TYPE_HIDL_INTERFACE";
736 }
737}
738
Andreas Huber881227d2016-08-02 14:20:21 -0700739void Interface::emitReaderWriter(
740 Formatter &out,
741 const std::string &name,
742 const std::string &parcelObj,
743 bool parcelObjIsPointer,
744 bool isReader,
745 ErrorMode mode) const {
746 const std::string parcelObjDeref =
747 parcelObj + (parcelObjIsPointer ? "->" : ".");
748
749 if (isReader) {
Andreas Hubere7ff2282016-08-16 13:50:03 -0700750 out << "{\n";
751 out.indent();
752
Iliyan Malchev549e2592016-08-10 08:59:12 -0700753 const std::string binderName = "_hidl_" + name + "_binder";
Andreas Huber881227d2016-08-02 14:20:21 -0700754
Andreas Huber8a82ff72016-08-04 10:29:39 -0700755 out << "::android::sp<::android::hardware::IBinder> "
Andreas Huber881227d2016-08-02 14:20:21 -0700756 << binderName << ";\n";
757
Iliyan Malchev549e2592016-08-10 08:59:12 -0700758 out << "_hidl_err = ";
Andreas Huber881227d2016-08-02 14:20:21 -0700759 out << parcelObjDeref
760 << "readNullableStrongBinder(&"
761 << binderName
762 << ");\n";
763
764 handleError(out, mode);
765
766 out << name
767 << " = "
Martijn Coenena63e0ad2016-12-07 17:29:00 +0100768 << "::android::hardware::fromBinder<"
769 << fqName().cppName()
770 << ","
Yifan Hong51a65092017-01-04 15:41:44 -0800771 << getProxyFqName().cppName()
Martijn Coenena63e0ad2016-12-07 17:29:00 +0100772 << ","
Yifan Hong51a65092017-01-04 15:41:44 -0800773 << getStubFqName().cppName()
Martijn Coenena63e0ad2016-12-07 17:29:00 +0100774 << ">("
Andreas Huber881227d2016-08-02 14:20:21 -0700775 << binderName
776 << ");\n";
Andreas Hubere7ff2282016-08-16 13:50:03 -0700777
778 out.unindent();
779 out << "}\n\n";
Andreas Huber881227d2016-08-02 14:20:21 -0700780 } else {
Martijn Coenene1638232016-10-26 12:51:34 +0200781 out << "if (" << name << " == nullptr) {\n";
782 out.indent();
783 out << "_hidl_err = ";
784 out << parcelObjDeref
785 << "writeStrongBinder(nullptr);\n";
786 out.unindent();
787 out << "} else {\n";
788 out.indent();
Yifan Hong158655a2016-11-08 12:34:07 -0800789 out << "::android::sp<::android::hardware::IBinder> _hidl_binder = "
790 << "::android::hardware::toBinder<\n";
Yifan Hong33223ca2016-12-13 15:07:35 -0800791 out.indent(2, [&] {
Martijn Coenena63e0ad2016-12-07 17:29:00 +0100792 out << fqName().cppName()
Yifan Hong158655a2016-11-08 12:34:07 -0800793 << ">("
794 << name
795 << ");\n";
796 });
797 out << "if (_hidl_binder.get() != nullptr) {\n";
Yifan Hong33223ca2016-12-13 15:07:35 -0800798 out.indent([&] {
Yifan Hong158655a2016-11-08 12:34:07 -0800799 out << "_hidl_err = "
800 << parcelObjDeref
801 << "writeStrongBinder(_hidl_binder);\n";
802 });
803 out << "} else {\n";
Yifan Hong33223ca2016-12-13 15:07:35 -0800804 out.indent([&] {
Yifan Hong158655a2016-11-08 12:34:07 -0800805 out << "_hidl_err = ::android::UNKNOWN_ERROR;\n";
806 });
807 out << "}\n";
Martijn Coenene1638232016-10-26 12:51:34 +0200808 out.unindent();
809 out << "}\n";
Steven Moreland40786312016-08-16 10:29:40 -0700810
Andreas Huber881227d2016-08-02 14:20:21 -0700811 handleError(out, mode);
812 }
813}
814
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800815status_t Interface::emitGlobalTypeDeclarations(Formatter &out) const {
816 status_t status = Scope::emitGlobalTypeDeclarations(out);
817 if (status != OK) {
818 return status;
819 }
Steven Moreland3d98bc42017-06-23 21:36:41 +0000820 out << "std::string toString("
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800821 << getCppArgumentType()
Steven Moreland3d98bc42017-06-23 21:36:41 +0000822 << ");\n";
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800823 return OK;
824}
825
Chih-Hung Hsieh8c90cc52017-08-03 14:51:13 -0700826status_t Interface::emitTypeDefinitions(Formatter& out, const std::string& prefix) const {
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800827 std::string space = prefix.empty() ? "" : (prefix + "::");
828 status_t err = Scope::emitTypeDefinitions(out, space + localName());
829 if (err != OK) {
830 return err;
831 }
832
Steven Moreland3d98bc42017-06-23 21:36:41 +0000833 out << "std::string toString("
834 << getCppArgumentType()
835 << " o) ";
836
837 out.block([&] {
838 out << "std::string os = \"[class or subclass of \";\n"
839 << "os += " << fullName() << "::descriptor;\n"
840 << "os += \"]\";\n"
841 << "os += o->isRemote() ? \"@remote\" : \"@local\";\n"
842 << "return os;\n";
843 }).endl().endl();
844
Yifan Hongf5cc2f72017-01-04 18:02:34 -0800845 return OK;
846}
847
Andreas Huber2831d512016-08-15 09:33:47 -0700848void Interface::emitJavaReaderWriter(
849 Formatter &out,
850 const std::string &parcelObj,
851 const std::string &argName,
852 bool isReader) const {
853 if (isReader) {
854 out << fullJavaName()
855 << ".asInterface("
856 << parcelObj
857 << ".readStrongBinder());\n";
858 } else {
859 out << parcelObj
860 << ".writeStrongBinder("
861 << argName
862 << " == null ? null : "
863 << argName
864 << ".asBinder());\n";
865 }
866}
867
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700868status_t Interface::emitVtsAttributeDeclaration(Formatter &out) const {
869 for (const auto &type : getSubTypes()) {
Zhuoyao Zhangc5ea9f52016-10-06 15:05:39 -0700870 // Skip for TypeDef as it is just an alias of a defined type.
871 if (type->isTypeDef()) {
872 continue;
873 }
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700874 out << "attribute: {\n";
875 out.indent();
876 status_t status = type->emitVtsTypeDeclarations(out);
877 if (status != OK) {
878 return status;
879 }
880 out.unindent();
881 out << "}\n\n";
882 }
883 return OK;
884}
885
886status_t Interface::emitVtsMethodDeclaration(Formatter &out) const {
Yifan Hong10fe0b52016-10-19 14:20:17 -0700887 for (const auto &method : methods()) {
Steven Morelandcea24782016-11-07 11:40:48 -0800888 if (method->isHidlReserved()) {
889 continue;
890 }
891
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700892 out << "api: {\n";
893 out.indent();
894 out << "name: \"" << method->name() << "\"\n";
895 // Generate declaration for each return value.
896 for (const auto &result : method->results()) {
897 out << "return_type_hidl: {\n";
898 out.indent();
899 status_t status = result->type().emitVtsAttributeType(out);
900 if (status != OK) {
901 return status;
902 }
903 out.unindent();
904 out << "}\n";
905 }
906 // Generate declaration for each input argument
907 for (const auto &arg : method->args()) {
908 out << "arg: {\n";
909 out.indent();
910 status_t status = arg->type().emitVtsAttributeType(out);
911 if (status != OK) {
912 return status;
913 }
914 out.unindent();
915 out << "}\n";
916 }
917 // Generate declaration for each annotation.
Steven Morelandd537ab02016-09-12 10:32:01 -0700918 for (const auto &annotation : method->annotations()) {
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700919 out << "callflow: {\n";
920 out.indent();
Steven Morelandd537ab02016-09-12 10:32:01 -0700921 std::string name = annotation->name();
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700922 if (name == "entry") {
923 out << "entry: true\n";
924 } else if (name == "exit") {
925 out << "exit: true\n";
926 } else if (name == "callflow") {
Steven Morelandd537ab02016-09-12 10:32:01 -0700927 const AnnotationParam *param =
928 annotation->getParam("next");
929 if (param != nullptr) {
Timur Iskhakov7a85dc22017-08-10 19:06:41 -0700930 for (const auto& value : param->getValues()) {
Steven Morelandd537ab02016-09-12 10:32:01 -0700931 out << "next: " << value << "\n";
932 }
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700933 }
934 } else {
Keun Soo Yima5a57e92017-02-04 11:32:06 -0800935 std::cerr << "Unrecognized annotation '"
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700936 << name << "' for method: " << method->name()
Keun Soo Yima5a57e92017-02-04 11:32:06 -0800937 << ". A VTS annotation should be one of: "
938 << "entry, exit, callflow. \n";
Zhuoyao Zhang864c7712016-08-16 15:35:28 -0700939 }
940 out.unindent();
941 out << "}\n";
942 }
943 out.unindent();
944 out << "}\n\n";
945 }
946 return OK;
947}
948
949status_t Interface::emitVtsAttributeType(Formatter &out) const {
Zhuoyao Zhanga588b232016-11-10 14:37:35 -0800950 out << "type: " << getVtsType() << "\n"
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700951 << "predefined_type: \""
Zhuoyao Zhangc4e10602017-01-27 16:48:05 -0800952 << fullName()
953 << "\"\n";
Zhuoyao Zhang5158db42016-08-10 10:25:20 -0700954 return OK;
955}
956
Steven Moreland69e7c702016-09-09 11:16:32 -0700957bool Interface::hasOnewayMethods() const {
Yifan Hong10fe0b52016-10-19 14:20:17 -0700958 for (auto const &method : methods()) {
Steven Moreland69e7c702016-09-09 11:16:32 -0700959 if (method->isOneway()) {
960 return true;
961 }
962 }
963
964 const Interface* superClass = superType();
965
966 if (superClass != nullptr) {
967 return superClass->hasOnewayMethods();
968 }
969
970 return false;
971}
972
Andreas Huber70a59e12016-08-16 12:57:01 -0700973bool Interface::isJavaCompatible() const {
Andreas Huberea081b32016-08-17 15:57:47 -0700974 if (mIsJavaCompatibleInProgress) {
975 // We're currently trying to determine if this Interface is
976 // java-compatible and something is referencing this interface through
977 // one of its methods. Assume we'll ultimately succeed, if we were wrong
978 // the original invocation of Interface::isJavaCompatible() will then
979 // return the correct "false" result.
980 return true;
981 }
982
Timur Iskhakov505316c2017-08-05 03:38:59 +0000983 if (superType() != nullptr && !superType()->isJavaCompatible()) {
Andreas Huber0fa9e392016-08-31 09:05:44 -0700984 mIsJavaCompatibleInProgress = false;
985 return false;
986 }
987
Andreas Huberea081b32016-08-17 15:57:47 -0700988 mIsJavaCompatibleInProgress = true;
989
Andreas Huber70a59e12016-08-16 12:57:01 -0700990 if (!Scope::isJavaCompatible()) {
Andreas Huberea081b32016-08-17 15:57:47 -0700991 mIsJavaCompatibleInProgress = false;
Andreas Huber70a59e12016-08-16 12:57:01 -0700992 return false;
993 }
994
Yifan Hong10fe0b52016-10-19 14:20:17 -0700995 for (const auto &method : methods()) {
Andreas Huber70a59e12016-08-16 12:57:01 -0700996 if (!method->isJavaCompatible()) {
Andreas Huberea081b32016-08-17 15:57:47 -0700997 mIsJavaCompatibleInProgress = false;
Andreas Huber70a59e12016-08-16 12:57:01 -0700998 return false;
999 }
1000 }
1001
Andreas Huberea081b32016-08-17 15:57:47 -07001002 mIsJavaCompatibleInProgress = false;
1003
Andreas Huber70a59e12016-08-16 12:57:01 -07001004 return true;
1005}
1006
Andreas Huberc9410c72016-07-28 12:18:40 -07001007} // namespace android
1008