Steven Moreland | 5d62e44 | 2018-09-13 15:01:02 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2018 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 <android/binder_status.h> |
| 18 | #include "status_internal.h" |
| 19 | |
| 20 | #include <android-base/logging.h> |
| 21 | |
| 22 | using ::android::status_t; |
| 23 | using ::android::binder::Status; |
| 24 | |
Steven Moreland | 9a51db8 | 2018-09-14 10:59:35 -0700 | [diff] [blame^] | 25 | AStatus* AStatus_newOk() { |
| 26 | return new AStatus(); |
| 27 | } |
| 28 | |
| 29 | AStatus* AStatus_fromExceptionCode(binder_exception_t exception) { |
| 30 | return new AStatus(Status::fromExceptionCode(exception)); |
| 31 | } |
| 32 | |
| 33 | AStatus* AStatus_fromExceptionCodeWithMessage(binder_exception_t exception, const char* message) { |
| 34 | return new AStatus(Status::fromExceptionCode(exception, message)); |
| 35 | } |
| 36 | |
| 37 | AStatus* AStatus_fromServiceSpecificError(int32_t serviceSpecific) { |
| 38 | return new AStatus(Status::fromServiceSpecificError(serviceSpecific)); |
| 39 | } |
| 40 | |
| 41 | AStatus* AStatus_fromServiceSpecificErrorWithMessage(int32_t serviceSpecific, const char* message) { |
| 42 | return new AStatus(Status::fromServiceSpecificError(serviceSpecific, message)); |
| 43 | } |
| 44 | |
| 45 | AStatus* AStatus_fromStatus(binder_status_t status) { |
| 46 | return new AStatus(Status::fromStatusT(status)); |
| 47 | } |
| 48 | |
| 49 | bool AStatus_isOk(const AStatus* status) { |
| 50 | return status->get()->isOk(); |
| 51 | } |
| 52 | |
| 53 | binder_exception_t AStatus_getExceptionCode(const AStatus* status) { |
| 54 | return PruneException(status->get()->exceptionCode()); |
| 55 | } |
| 56 | |
| 57 | int32_t AStatus_getServiceSpecificError(const AStatus* status) { |
| 58 | return status->get()->serviceSpecificErrorCode(); |
| 59 | } |
| 60 | |
| 61 | binder_status_t AStatus_getStatus(const AStatus* status) { |
| 62 | return PruneStatusT(status->get()->transactionError()); |
| 63 | } |
| 64 | |
| 65 | const char* AStatus_getMessage(const AStatus* status) { |
| 66 | return status->get()->exceptionMessage().c_str(); |
| 67 | } |
| 68 | |
| 69 | void AStatus_delete(AStatus** status) { |
| 70 | if (status == nullptr) { |
| 71 | return; |
| 72 | } |
| 73 | |
| 74 | delete *status; |
| 75 | *status = nullptr; |
| 76 | } |
| 77 | |
Steven Moreland | 5d62e44 | 2018-09-13 15:01:02 -0700 | [diff] [blame] | 78 | binder_status_t PruneStatusT(status_t status) { |
| 79 | if (status > 0) return status; |
| 80 | |
| 81 | switch (status) { |
| 82 | case ::android::OK: |
| 83 | return STATUS_OK; |
| 84 | case ::android::NO_MEMORY: |
| 85 | return STATUS_NO_MEMORY; |
| 86 | case ::android::INVALID_OPERATION: |
| 87 | return STATUS_INVALID_OPERATION; |
| 88 | case ::android::BAD_VALUE: |
| 89 | return STATUS_BAD_VALUE; |
| 90 | case ::android::BAD_TYPE: |
| 91 | return STATUS_BAD_TYPE; |
| 92 | case ::android::NAME_NOT_FOUND: |
| 93 | return STATUS_NAME_NOT_FOUND; |
| 94 | case ::android::PERMISSION_DENIED: |
| 95 | return STATUS_PERMISSION_DENIED; |
| 96 | case ::android::NO_INIT: |
| 97 | return STATUS_NO_INIT; |
| 98 | case ::android::ALREADY_EXISTS: |
| 99 | return STATUS_ALREADY_EXISTS; |
| 100 | case ::android::DEAD_OBJECT: |
| 101 | return STATUS_DEAD_OBJECT; |
| 102 | case ::android::FAILED_TRANSACTION: |
| 103 | return STATUS_FAILED_TRANSACTION; |
| 104 | case ::android::BAD_INDEX: |
| 105 | return STATUS_BAD_INDEX; |
| 106 | case ::android::NOT_ENOUGH_DATA: |
| 107 | return STATUS_NOT_ENOUGH_DATA; |
| 108 | case ::android::WOULD_BLOCK: |
| 109 | return STATUS_WOULD_BLOCK; |
| 110 | case ::android::TIMED_OUT: |
| 111 | return STATUS_TIMED_OUT; |
| 112 | case ::android::UNKNOWN_TRANSACTION: |
| 113 | return STATUS_UNKNOWN_TRANSACTION; |
| 114 | case ::android::FDS_NOT_ALLOWED: |
| 115 | return STATUS_FDS_NOT_ALLOWED; |
| 116 | case ::android::UNEXPECTED_NULL: |
| 117 | return STATUS_UNEXPECTED_NULL; |
| 118 | case ::android::UNKNOWN_ERROR: |
| 119 | return STATUS_UNKNOWN_ERROR; |
| 120 | |
| 121 | default: |
| 122 | LOG(WARNING) << __func__ |
| 123 | << ": Unknown status_t pruned into STATUS_UNKNOWN_ERROR: " << status; |
| 124 | return STATUS_UNKNOWN_ERROR; |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | binder_exception_t PruneException(int32_t exception) { |
| 129 | switch (exception) { |
| 130 | case Status::EX_NONE: |
| 131 | return EX_NONE; |
| 132 | case Status::EX_SECURITY: |
| 133 | return EX_SECURITY; |
| 134 | case Status::EX_BAD_PARCELABLE: |
| 135 | return EX_BAD_PARCELABLE; |
| 136 | case Status::EX_ILLEGAL_ARGUMENT: |
| 137 | return EX_ILLEGAL_ARGUMENT; |
| 138 | case Status::EX_NULL_POINTER: |
| 139 | return EX_NULL_POINTER; |
| 140 | case Status::EX_ILLEGAL_STATE: |
| 141 | return EX_ILLEGAL_STATE; |
| 142 | case Status::EX_NETWORK_MAIN_THREAD: |
| 143 | return EX_NETWORK_MAIN_THREAD; |
| 144 | case Status::EX_UNSUPPORTED_OPERATION: |
| 145 | return EX_UNSUPPORTED_OPERATION; |
| 146 | case Status::EX_SERVICE_SPECIFIC: |
| 147 | return EX_SERVICE_SPECIFIC; |
| 148 | case Status::EX_PARCELABLE: |
| 149 | return EX_PARCELABLE; |
| 150 | case Status::EX_TRANSACTION_FAILED: |
| 151 | return EX_TRANSACTION_FAILED; |
| 152 | |
| 153 | default: |
| 154 | LOG(WARNING) << __func__ |
| 155 | << ": Unknown status_t pruned into EX_TRANSACTION_FAILED: " << exception; |
| 156 | return EX_TRANSACTION_FAILED; |
| 157 | } |
| 158 | } |