Yifan Hong | 8c95042 | 2021-08-05 17:13:55 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2021 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 | */ |
Andrei Homescu | 9b40419 | 2022-07-21 00:55:10 +0000 | [diff] [blame] | 16 | #pragma once |
Yifan Hong | 8c95042 | 2021-08-05 17:13:55 -0700 | [diff] [blame] | 17 | |
| 18 | #include <memory> |
| 19 | |
Yifan Hong | 8c95042 | 2021-08-05 17:13:55 -0700 | [diff] [blame] | 20 | #include <utils/Errors.h> |
| 21 | |
Pawan | 49d74cb | 2022-08-03 21:19:11 +0000 | [diff] [blame] | 22 | #include <binder/RpcTransport.h> |
Tomasz Wasilczyk | 639490b | 2023-11-01 13:49:41 -0700 | [diff] [blame] | 23 | #include <binder/unique_fd.h> |
Pawan | 49d74cb | 2022-08-03 21:19:11 +0000 | [diff] [blame] | 24 | |
Yifan Hong | 8c95042 | 2021-08-05 17:13:55 -0700 | [diff] [blame] | 25 | namespace android { |
| 26 | |
| 27 | /** This is not a pipe. */ |
Frederick Mayle | f7b65d1 | 2024-05-14 16:55:14 -0700 | [diff] [blame] | 28 | class LIBBINDER_INTERNAL_EXPORTED FdTrigger { |
Yifan Hong | 8c95042 | 2021-08-05 17:13:55 -0700 | [diff] [blame] | 29 | public: |
| 30 | /** Returns nullptr for error case */ |
| 31 | static std::unique_ptr<FdTrigger> make(); |
| 32 | |
| 33 | /** |
| 34 | * Close the write end of the pipe so that the read end receives POLLHUP. |
| 35 | * Not threadsafe. |
| 36 | */ |
| 37 | void trigger(); |
| 38 | |
| 39 | /** |
Steven Moreland | d6bca10 | 2021-09-14 16:25:22 -0700 | [diff] [blame] | 40 | * Check whether this has been triggered by checking the write end. Note: |
| 41 | * this has no internal locking, and it is inherently racey, but this is |
| 42 | * okay, because if we accidentally return false when a trigger has already |
| 43 | * happened, we can imagine that instead, the scheduler actually executed |
| 44 | * the code which is polling isTriggered earlier. |
Yifan Hong | 8c95042 | 2021-08-05 17:13:55 -0700 | [diff] [blame] | 45 | */ |
Steven Moreland | dd7f17a | 2021-09-14 13:48:05 -0700 | [diff] [blame] | 46 | [[nodiscard]] bool isTriggered(); |
Yifan Hong | 8c95042 | 2021-08-05 17:13:55 -0700 | [diff] [blame] | 47 | |
| 48 | /** |
| 49 | * Poll for a read event. |
| 50 | * |
| 51 | * event - for pollfd |
| 52 | * |
| 53 | * Return: |
| 54 | * true - time to read! |
| 55 | * false - trigger happened |
| 56 | */ |
Pawan | 3e0061c | 2022-08-26 21:08:34 +0000 | [diff] [blame] | 57 | [[nodiscard]] status_t triggerablePoll(const android::RpcTransportFd& transportFd, |
| 58 | int16_t event); |
Yifan Hong | 8c95042 | 2021-08-05 17:13:55 -0700 | [diff] [blame] | 59 | |
Yifan Hong | 8c95042 | 2021-08-05 17:13:55 -0700 | [diff] [blame] | 60 | private: |
Andrei Homescu | ffa3aaa | 2022-04-07 05:06:33 +0000 | [diff] [blame] | 61 | #ifdef BINDER_RPC_SINGLE_THREADED |
| 62 | bool mTriggered = false; |
| 63 | #else |
Tomasz Wasilczyk | 639490b | 2023-11-01 13:49:41 -0700 | [diff] [blame] | 64 | binder::unique_fd mWrite; |
| 65 | binder::unique_fd mRead; |
Andrei Homescu | ffa3aaa | 2022-04-07 05:06:33 +0000 | [diff] [blame] | 66 | #endif |
Yifan Hong | 8c95042 | 2021-08-05 17:13:55 -0700 | [diff] [blame] | 67 | }; |
| 68 | } // namespace android |