Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 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 _UI_INPUT_APPLICATION_H |
| 18 | #define _UI_INPUT_APPLICATION_H |
| 19 | |
Siarhei Vishniakou | ec8f725 | 2018-07-06 11:19:32 +0100 | [diff] [blame] | 20 | #include <string> |
| 21 | |
Robert Carr | 740167f | 2018-10-11 19:03:41 -0700 | [diff] [blame] | 22 | #include <binder/IBinder.h> |
| 23 | #include <binder/Parcel.h> |
| 24 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 25 | #include <input/Input.h> |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 26 | #include <utils/RefBase.h> |
| 27 | #include <utils/Timers.h> |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 28 | |
| 29 | namespace android { |
| 30 | |
| 31 | /* |
| 32 | * Describes the properties of an application that can receive input. |
| 33 | */ |
| 34 | struct InputApplicationInfo { |
Robert Carr | 740167f | 2018-10-11 19:03:41 -0700 | [diff] [blame] | 35 | sp<IBinder> token; |
Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 36 | std::string name; |
Siarhei Vishniakou | c1ae556 | 2020-06-30 14:22:57 -0500 | [diff] [blame] | 37 | std::chrono::nanoseconds dispatchingTimeout; |
Robert Carr | 740167f | 2018-10-11 19:03:41 -0700 | [diff] [blame] | 38 | |
| 39 | status_t write(Parcel& output) const; |
| 40 | static InputApplicationInfo read(const Parcel& from); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 41 | }; |
| 42 | |
| 43 | |
| 44 | /* |
| 45 | * Handle for an application that can receive input. |
| 46 | * |
| 47 | * Used by the native input dispatcher as a handle for the window manager objects |
| 48 | * that describe an application. |
| 49 | */ |
| 50 | class InputApplicationHandle : public RefBase { |
| 51 | public: |
| 52 | inline const InputApplicationInfo* getInfo() const { |
Arthur Hung | 7a0c39a | 2019-03-20 16:52:24 +0800 | [diff] [blame] | 53 | return &mInfo; |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 54 | } |
| 55 | |
Siarhei Vishniakou | f93fcf4 | 2017-11-22 16:00:14 -0800 | [diff] [blame] | 56 | inline std::string getName() const { |
Arthur Hung | 7a0c39a | 2019-03-20 16:52:24 +0800 | [diff] [blame] | 57 | return !mInfo.name.empty() ? mInfo.name : "<invalid>"; |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 58 | } |
| 59 | |
Siarhei Vishniakou | 4cb50ca | 2020-05-26 21:43:02 -0700 | [diff] [blame] | 60 | inline std::chrono::nanoseconds getDispatchingTimeout( |
| 61 | std::chrono::nanoseconds defaultValue) const { |
| 62 | return mInfo.token ? std::chrono::nanoseconds(mInfo.dispatchingTimeout) : defaultValue; |
| 63 | } |
| 64 | |
Robert Carr | 740167f | 2018-10-11 19:03:41 -0700 | [diff] [blame] | 65 | inline sp<IBinder> getApplicationToken() const { |
Arthur Hung | 7a0c39a | 2019-03-20 16:52:24 +0800 | [diff] [blame] | 66 | return mInfo.token; |
Robert Carr | 740167f | 2018-10-11 19:03:41 -0700 | [diff] [blame] | 67 | } |
| 68 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 69 | /** |
| 70 | * Requests that the state of this object be updated to reflect |
| 71 | * the most current available information about the application. |
| 72 | * |
| 73 | * This method should only be called from within the input dispatcher's |
| 74 | * critical section. |
| 75 | * |
| 76 | * Returns true on success, or false if the handle is no longer valid. |
| 77 | */ |
| 78 | virtual bool updateInfo() = 0; |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 79 | protected: |
| 80 | InputApplicationHandle(); |
| 81 | virtual ~InputApplicationHandle(); |
| 82 | |
Arthur Hung | 7a0c39a | 2019-03-20 16:52:24 +0800 | [diff] [blame] | 83 | InputApplicationInfo mInfo; |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 84 | }; |
| 85 | |
| 86 | } // namespace android |
| 87 | |
| 88 | #endif // _UI_INPUT_APPLICATION_H |