blob: 4947e9ef19d0a9938f036afff09ee2de1fc1c8fd [file] [log] [blame]
Martijn Coenen99e6beb2016-12-01 15:48:42 +01001/*
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
17#include "PointerType.h"
18
19#include <hidl-util/Formatter.h>
20#include <android-base/logging.h>
21
22namespace android {
23
24PointerType::PointerType() {}
25
26bool PointerType::isPointer() const {
27 return true;
28}
29
Steven Moreland9df52442016-12-12 08:51:14 -080030bool PointerType::isElidableType() const {
31 return true;
32}
33
Martijn Coenen99e6beb2016-12-01 15:48:42 +010034std::string PointerType::getCppType(StorageMode /* mode */,
35 bool /* specifyNamespaces */) const {
36 return "void*";
37}
38
39std::string PointerType::getVtsType() const {
40 return "TYPE_POINTER";
41}
42
43void PointerType::emitReaderWriter(
44 Formatter& out,
Steven Morelanda6ce1e22017-06-19 09:42:23 -070045 const std::string& name,
Martijn Coenen99e6beb2016-12-01 15:48:42 +010046 const std::string& /* parcelObj */,
47 bool /* parcelObjIsPointer */,
48 bool /* isReader */,
49 ErrorMode /* mode */) const {
Steven Morelanda6ce1e22017-06-19 09:42:23 -070050 out << "(void)" << name << ";\n";
Martijn Coenen99e6beb2016-12-01 15:48:42 +010051 out << "LOG_ALWAYS_FATAL(\"Pointer is only supported in passthrough mode\");\n";
52}
53
54bool PointerType::needsEmbeddedReadWrite() const {
55 return false;
56}
57
58bool PointerType::resultNeedsDeref() const {
59 return false;
60}
61
62bool PointerType::isJavaCompatible() const {
63 return false;
64}
65
Andreas Huber60d3b222017-03-30 09:10:56 -070066bool PointerType::containsPointer() const {
67 return true;
Martijn Coenen99e6beb2016-12-01 15:48:42 +010068}
69
70status_t PointerType::emitVtsTypeDeclarations(Formatter &out) const {
71 out << "type: " << getVtsType() << "\n";
72 return OK;
73}
74
75} // namespace android
76