Christopher Wiley | 09eb749 | 2015-11-09 15:06:15 -0800 | [diff] [blame] | 1 | /* |
| 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 | */ |
| 16 | |
| 17 | #ifndef ANDROID_BINDER_STATUS_H |
| 18 | #define ANDROID_BINDER_STATUS_H |
| 19 | |
| 20 | #include <cstdint> |
Ralph Nathan | 00cb980 | 2016-04-13 12:42:06 -0700 | [diff] [blame] | 21 | #include <sstream> |
Christopher Wiley | 09eb749 | 2015-11-09 15:06:15 -0800 | [diff] [blame] | 22 | |
| 23 | #include <binder/Parcel.h> |
| 24 | #include <utils/String8.h> |
| 25 | |
| 26 | namespace android { |
| 27 | namespace binder { |
| 28 | |
| 29 | // An object similar in function to a status_t except that it understands |
| 30 | // how exceptions are encoded in the prefix of a Parcel. Used like: |
| 31 | // |
| 32 | // Parcel data; |
| 33 | // Parcel reply; |
| 34 | // status_t status; |
| 35 | // binder::Status remote_exception; |
| 36 | // if ((status = data.writeInterfaceToken(interface_descriptor)) != OK || |
| 37 | // (status = data.writeInt32(function_input)) != OK) { |
| 38 | // // We failed to write into the memory of our local parcel? |
| 39 | // } |
| 40 | // if ((status = remote()->transact(transaction, data, &reply)) != OK) { |
| 41 | // // Something has gone wrong in the binder driver or libbinder. |
| 42 | // } |
| 43 | // if ((status = remote_exception.readFromParcel(reply)) != OK) { |
| 44 | // // The remote didn't correctly write the exception header to the |
| 45 | // // reply. |
| 46 | // } |
| 47 | // if (!remote_exception.isOk()) { |
| 48 | // // The transaction went through correctly, but the remote reported an |
| 49 | // // exception during handling. |
| 50 | // } |
| 51 | // |
| 52 | class Status final { |
| 53 | public: |
| 54 | // Keep the exception codes in sync with android/os/Parcel.java. |
| 55 | enum Exception { |
| 56 | EX_NONE = 0, |
| 57 | EX_SECURITY = -1, |
| 58 | EX_BAD_PARCELABLE = -2, |
| 59 | EX_ILLEGAL_ARGUMENT = -3, |
| 60 | EX_NULL_POINTER = -4, |
| 61 | EX_ILLEGAL_STATE = -5, |
| 62 | EX_NETWORK_MAIN_THREAD = -6, |
| 63 | EX_UNSUPPORTED_OPERATION = -7, |
Christopher Wiley | c1e491d | 2015-11-20 17:48:27 -0800 | [diff] [blame] | 64 | EX_SERVICE_SPECIFIC = -8, |
Christopher Wiley | 09eb749 | 2015-11-09 15:06:15 -0800 | [diff] [blame] | 65 | |
| 66 | // This is special and Java specific; see Parcel.java. |
| 67 | EX_HAS_REPLY_HEADER = -128, |
Christopher Wiley | cff7f17 | 2015-11-22 16:29:58 -0800 | [diff] [blame] | 68 | // This is special, and indicates to C++ binder proxies that the |
| 69 | // transaction has failed at a low level. |
| 70 | EX_TRANSACTION_FAILED = -129, |
Christopher Wiley | 09eb749 | 2015-11-09 15:06:15 -0800 | [diff] [blame] | 71 | }; |
| 72 | |
Christopher Wiley | 09eb749 | 2015-11-09 15:06:15 -0800 | [diff] [blame] | 73 | // A more readable alias for the default constructor. |
| 74 | static Status ok(); |
Christopher Wiley | c1e491d | 2015-11-20 17:48:27 -0800 | [diff] [blame] | 75 | // Authors should explicitly pick whether their integer is: |
| 76 | // - an exception code (EX_* above) |
| 77 | // - service specific error code |
| 78 | // - status_t |
| 79 | // |
| 80 | // Prefer a generic exception code when possible, then a service specific |
| 81 | // code, and finally a status_t for low level failures or legacy support. |
| 82 | // Exception codes and service specific errors map to nicer exceptions for |
| 83 | // Java clients. |
Christopher Wiley | cff7f17 | 2015-11-22 16:29:58 -0800 | [diff] [blame] | 84 | static Status fromExceptionCode(int32_t exceptionCode); |
| 85 | static Status fromExceptionCode(int32_t exceptionCode, |
| 86 | const String8& message); |
Christopher Wiley | c1e491d | 2015-11-20 17:48:27 -0800 | [diff] [blame] | 87 | static Status fromServiceSpecificError(int32_t serviceSpecificErrorCode); |
| 88 | static Status fromServiceSpecificError(int32_t serviceSpecificErrorCode, |
| 89 | const String8& message); |
Christopher Wiley | cff7f17 | 2015-11-22 16:29:58 -0800 | [diff] [blame] | 90 | static Status fromStatusT(status_t status); |
Christopher Wiley | 09eb749 | 2015-11-09 15:06:15 -0800 | [diff] [blame] | 91 | |
| 92 | Status() = default; |
Christopher Wiley | cff7f17 | 2015-11-22 16:29:58 -0800 | [diff] [blame] | 93 | ~Status() = default; |
Christopher Wiley | 09eb749 | 2015-11-09 15:06:15 -0800 | [diff] [blame] | 94 | |
| 95 | // Status objects are copyable and contain just simple data. |
| 96 | Status(const Status& status) = default; |
| 97 | Status(Status&& status) = default; |
| 98 | Status& operator=(const Status& status) = default; |
| 99 | |
Christopher Wiley | 09eb749 | 2015-11-09 15:06:15 -0800 | [diff] [blame] | 100 | // Bear in mind that if the client or service is a Java endpoint, this |
| 101 | // is not the logic which will provide/interpret the data here. |
| 102 | status_t readFromParcel(const Parcel& parcel); |
| 103 | status_t writeToParcel(Parcel* parcel) const; |
| 104 | |
| 105 | // Set one of the pre-defined exception types defined above. |
| 106 | void setException(int32_t ex, const String8& message); |
Christopher Wiley | c1e491d | 2015-11-20 17:48:27 -0800 | [diff] [blame] | 107 | // Set a service specific exception with error code. |
| 108 | void setServiceSpecificError(int32_t errorCode, const String8& message); |
Christopher Wiley | cff7f17 | 2015-11-22 16:29:58 -0800 | [diff] [blame] | 109 | // Setting a |status| != OK causes generated code to return |status| |
| 110 | // from Binder transactions, rather than writing an exception into the |
Christopher Wiley | c1e491d | 2015-11-20 17:48:27 -0800 | [diff] [blame] | 111 | // reply Parcel. This is the least preferable way of reporting errors. |
Christopher Wiley | 09eb749 | 2015-11-09 15:06:15 -0800 | [diff] [blame] | 112 | void setFromStatusT(status_t status); |
| 113 | |
| 114 | // Get information about an exception. |
Christopher Wiley | 09eb749 | 2015-11-09 15:06:15 -0800 | [diff] [blame] | 115 | int32_t exceptionCode() const { return mException; } |
| 116 | const String8& exceptionMessage() const { return mMessage; } |
Christopher Wiley | cff7f17 | 2015-11-22 16:29:58 -0800 | [diff] [blame] | 117 | status_t transactionError() const { |
| 118 | return mException == EX_TRANSACTION_FAILED ? mErrorCode : OK; |
| 119 | } |
Christopher Wiley | c1e491d | 2015-11-20 17:48:27 -0800 | [diff] [blame] | 120 | int32_t serviceSpecificErrorCode() const { |
| 121 | return mException == EX_SERVICE_SPECIFIC ? mErrorCode : 0; |
| 122 | } |
Christopher Wiley | 09eb749 | 2015-11-09 15:06:15 -0800 | [diff] [blame] | 123 | |
| 124 | bool isOk() const { return mException == EX_NONE; } |
| 125 | |
| 126 | // For logging. |
| 127 | String8 toString8() const; |
| 128 | |
| 129 | private: |
Christopher Wiley | c1e491d | 2015-11-20 17:48:27 -0800 | [diff] [blame] | 130 | Status(int32_t exceptionCode, int32_t errorCode); |
| 131 | Status(int32_t exceptionCode, int32_t errorCode, const String8& message); |
Christopher Wiley | cff7f17 | 2015-11-22 16:29:58 -0800 | [diff] [blame] | 132 | |
| 133 | // If |mException| == EX_TRANSACTION_FAILED, generated code will return |
| 134 | // |mErrorCode| as the result of the transaction rather than write an |
| 135 | // exception to the reply parcel. |
| 136 | // |
| 137 | // Otherwise, we always write |mException| to the parcel. |
| 138 | // If |mException| != EX_NONE, we write |mMessage| as well. |
Christopher Wiley | c1e491d | 2015-11-20 17:48:27 -0800 | [diff] [blame] | 139 | // If |mException| == EX_SERVICE_SPECIFIC we write |mErrorCode| as well. |
Christopher Wiley | 09eb749 | 2015-11-09 15:06:15 -0800 | [diff] [blame] | 140 | int32_t mException = EX_NONE; |
Christopher Wiley | cff7f17 | 2015-11-22 16:29:58 -0800 | [diff] [blame] | 141 | int32_t mErrorCode = 0; |
Christopher Wiley | 09eb749 | 2015-11-09 15:06:15 -0800 | [diff] [blame] | 142 | String8 mMessage; |
| 143 | }; // class Status |
| 144 | |
Eino-Ville Talvala | bbab196 | 2016-02-03 13:19:49 -0800 | [diff] [blame] | 145 | // For gtest output logging |
Ralph Nathan | 00cb980 | 2016-04-13 12:42:06 -0700 | [diff] [blame] | 146 | std::stringstream& operator<< (std::stringstream& stream, const Status& s); |
Eino-Ville Talvala | bbab196 | 2016-02-03 13:19:49 -0800 | [diff] [blame] | 147 | |
Christopher Wiley | 09eb749 | 2015-11-09 15:06:15 -0800 | [diff] [blame] | 148 | } // namespace binder |
| 149 | } // namespace android |
| 150 | |
| 151 | #endif // ANDROID_BINDER_STATUS_H |