blob: 5a4c9183065517c4f46d6bce732fc1a2e85e36b6 [file] [log] [blame]
Martijn Coenenbb5e9bb2016-09-01 01:36:18 +02001/*
2 * Copyright (C) 2015 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 */
Yifan Hong2be94182017-03-03 19:07:38 -080016
Steven Morelande780c452017-01-17 17:22:54 -080017#define LOG_TAG "HidlStatus"
Yifan Hong2be94182017-03-03 19:07:38 -080018#include <android-base/logging.h>
Martijn Coenenbb5e9bb2016-09-01 01:36:18 +020019
20#include <hidl/Status.h>
21
Yifan Hong2be94182017-03-03 19:07:38 -080022#include <unordered_map>
Steven Morelande780c452017-01-17 17:22:54 -080023
Martijn Coenenbb5e9bb2016-09-01 01:36:18 +020024namespace android {
25namespace hardware {
26
Yifan Hong2be94182017-03-03 19:07:38 -080027static std::string statusToString(status_t s) {
28 const std::unordered_map<status_t, std::string> statusStrings{{
29 #define STATUS_TO_STRING_PAIR(STATUS) {STATUS, #STATUS}
30 STATUS_TO_STRING_PAIR(OK),
31 STATUS_TO_STRING_PAIR(UNKNOWN_ERROR),
32 STATUS_TO_STRING_PAIR(NO_MEMORY),
33 STATUS_TO_STRING_PAIR(INVALID_OPERATION),
34 STATUS_TO_STRING_PAIR(BAD_VALUE),
35 STATUS_TO_STRING_PAIR(BAD_TYPE),
36 STATUS_TO_STRING_PAIR(NAME_NOT_FOUND),
37 STATUS_TO_STRING_PAIR(PERMISSION_DENIED),
38 STATUS_TO_STRING_PAIR(NO_INIT),
39 STATUS_TO_STRING_PAIR(ALREADY_EXISTS),
40 STATUS_TO_STRING_PAIR(DEAD_OBJECT),
41 STATUS_TO_STRING_PAIR(FAILED_TRANSACTION),
42 STATUS_TO_STRING_PAIR(BAD_INDEX),
43 STATUS_TO_STRING_PAIR(NOT_ENOUGH_DATA),
44 STATUS_TO_STRING_PAIR(WOULD_BLOCK),
45 STATUS_TO_STRING_PAIR(TIMED_OUT),
46 STATUS_TO_STRING_PAIR(UNKNOWN_TRANSACTION),
47 STATUS_TO_STRING_PAIR(FDS_NOT_ALLOWED),
48 STATUS_TO_STRING_PAIR(UNEXPECTED_NULL)
49 }};
50 auto it = statusStrings.find(s);
51 if (it != statusStrings.end()) {
52 return it->second;
53 }
54 std::string str = std::to_string(s);
55 char *err = strerror(-s);
Stephen Hinesfd9ecee2017-09-27 18:52:52 -070056 if (err != nullptr) {
Yifan Hong2be94182017-03-03 19:07:38 -080057 str.append(1, ' ').append(err);
58 }
59 return str;
60}
61
62static std::string exceptionToString(int32_t ex) {
63 const std::unordered_map<int32_t, std::string> exceptionStrings{{
64 #define EXCEPTION_TO_STRING_PAIR(EXCEPTION) {Status::Exception::EXCEPTION, #EXCEPTION}
65 EXCEPTION_TO_STRING_PAIR(EX_NONE),
66 EXCEPTION_TO_STRING_PAIR(EX_SECURITY),
67 EXCEPTION_TO_STRING_PAIR(EX_BAD_PARCELABLE),
68 EXCEPTION_TO_STRING_PAIR(EX_ILLEGAL_ARGUMENT),
69 EXCEPTION_TO_STRING_PAIR(EX_NULL_POINTER),
70 EXCEPTION_TO_STRING_PAIR(EX_ILLEGAL_STATE),
71 EXCEPTION_TO_STRING_PAIR(EX_NETWORK_MAIN_THREAD),
72 EXCEPTION_TO_STRING_PAIR(EX_UNSUPPORTED_OPERATION),
Yifan Hong2be94182017-03-03 19:07:38 -080073 EXCEPTION_TO_STRING_PAIR(EX_HAS_REPLY_HEADER),
74 EXCEPTION_TO_STRING_PAIR(EX_TRANSACTION_FAILED)
75 }};
76 auto it = exceptionStrings.find(ex);
77 return it == exceptionStrings.end() ? std::to_string(ex) : it->second;
78}
79
Martijn Coenenbb5e9bb2016-09-01 01:36:18 +020080Status Status::ok() {
81 return Status();
82}
83
84Status Status::fromExceptionCode(int32_t exceptionCode) {
Steven Morelanddd772b42018-10-12 15:15:06 -070085 if (exceptionCode == EX_TRANSACTION_FAILED) {
86 return Status(exceptionCode, FAILED_TRANSACTION);
87 }
Martijn Coenenbb5e9bb2016-09-01 01:36:18 +020088 return Status(exceptionCode, OK);
89}
90
91Status Status::fromExceptionCode(int32_t exceptionCode,
Yifan Hong43298f92016-12-20 16:42:39 -080092 const char *message) {
Steven Morelanddd772b42018-10-12 15:15:06 -070093 if (exceptionCode == EX_TRANSACTION_FAILED) {
94 return Status(exceptionCode, FAILED_TRANSACTION, message);
95 }
Martijn Coenenbb5e9bb2016-09-01 01:36:18 +020096 return Status(exceptionCode, OK, message);
97}
98
Martijn Coenenbb5e9bb2016-09-01 01:36:18 +020099Status Status::fromStatusT(status_t status) {
100 Status ret;
101 ret.setFromStatusT(status);
102 return ret;
103}
104
105Status::Status(int32_t exceptionCode, int32_t errorCode)
106 : mException(exceptionCode),
107 mErrorCode(errorCode) {}
108
Yifan Hong43298f92016-12-20 16:42:39 -0800109Status::Status(int32_t exceptionCode, int32_t errorCode, const char *message)
Martijn Coenenbb5e9bb2016-09-01 01:36:18 +0200110 : mException(exceptionCode),
111 mErrorCode(errorCode),
112 mMessage(message) {}
113
Yifan Hong43298f92016-12-20 16:42:39 -0800114void Status::setException(int32_t ex, const char *message) {
Martijn Coenenbb5e9bb2016-09-01 01:36:18 +0200115 mException = ex;
Steven Morelanddd772b42018-10-12 15:15:06 -0700116 mErrorCode = ex == EX_TRANSACTION_FAILED ? FAILED_TRANSACTION : NO_ERROR;
Yifan Hong43298f92016-12-20 16:42:39 -0800117 mMessage = message;
Martijn Coenenbb5e9bb2016-09-01 01:36:18 +0200118}
119
Martijn Coenenbb5e9bb2016-09-01 01:36:18 +0200120void Status::setFromStatusT(status_t status) {
121 mException = (status == NO_ERROR) ? EX_NONE : EX_TRANSACTION_FAILED;
122 mErrorCode = status;
123 mMessage.clear();
124}
125
Yifan Hong43298f92016-12-20 16:42:39 -0800126std::string Status::description() const {
127 std::ostringstream oss;
128 oss << (*this);
129 return oss.str();
Martijn Coenenbb5e9bb2016-09-01 01:36:18 +0200130}
131
Yifan Hong43298f92016-12-20 16:42:39 -0800132std::ostream& operator<< (std::ostream& stream, const Status& s) {
133 if (s.exceptionCode() == Status::EX_NONE) {
134 stream << "No error";
135 } else {
Yifan Hong2be94182017-03-03 19:07:38 -0800136 stream << "Status(" << exceptionToString(s.exceptionCode()) << "): '";
Steven Moreland72db40f2017-03-09 18:15:27 -0800137 if (s.exceptionCode() == Status::EX_TRANSACTION_FAILED) {
Yifan Hong2be94182017-03-03 19:07:38 -0800138 stream << statusToString(s.transactionError()) << ": ";
Yifan Hong43298f92016-12-20 16:42:39 -0800139 }
140 stream << s.exceptionMessage() << "'";
141 }
Martijn Coenenbb5e9bb2016-09-01 01:36:18 +0200142 return stream;
143}
144
Steven Morelande780c452017-01-17 17:22:54 -0800145namespace details {
Yifan Hongaf4e43c2017-03-03 19:10:52 -0800146 void return_status::assertOk() const {
Steven Morelande780c452017-01-17 17:22:54 -0800147 if (!isOk()) {
148 LOG(FATAL) << "Attempted to retrieve value from failed HIDL call: " << description();
149 }
150 }
151
152 return_status::~return_status() {
153 // mCheckedStatus must be checked before isOk since isOk modifies mCheckedStatus
154 if (!mCheckedStatus && !isOk()) {
155 LOG(FATAL) << "Failed HIDL return status not checked: " << description();
156 }
157 }
Yifan Hongaf4e43c2017-03-03 19:10:52 -0800158
Chih-Hung Hsieh3833f202018-09-25 12:03:06 -0700159 return_status& return_status::operator=(return_status&& other) noexcept {
Yifan Hongaf4e43c2017-03-03 19:10:52 -0800160 if (!mCheckedStatus && !isOk()) {
161 LOG(FATAL) << "Failed HIDL return status not checked: " << description();
162 }
163 std::swap(mStatus, other.mStatus);
164 std::swap(mCheckedStatus, other.mCheckedStatus);
165 return *this;
166 }
167
Steven Morelande780c452017-01-17 17:22:54 -0800168} // namespace details
169
Martijn Coenenbb5e9bb2016-09-01 01:36:18 +0200170} // namespace hardware
171} // namespace android