blob: 64c6114ceb6bfe1094bf83335319b3acab62c07a [file] [log] [blame]
Siarhei Vishniakouba0a8752021-09-14 14:43:25 -07001/*
2 * Copyright (C) 2022 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#pragma once
18
19#include "InputListener.h"
20
21namespace android {
22
23/**
24 * Base interface for an InputListener stage.
25 * Blocks unintentional input events. Not thread safe. Must be called from the same
26 * thread. All work is performed on the calling threads.
27 */
28class UnwantedInteractionBlockerInterface : public InputListenerInterface {
29public:
Siarhei Vishniakouba0a8752021-09-14 14:43:25 -070030 /**
31 * Dump the state of the interaction blocker.
Siarhei Vishniakou9f330c52022-05-17 05:03:42 -070032 * This method may be called on any thread (usually by the input manager on a binder thread).
Siarhei Vishniakouba0a8752021-09-14 14:43:25 -070033 */
34 virtual void dump(std::string& dump) = 0;
35
Prabir Pradhane3da4bb2023-04-05 23:51:23 +000036 /* Called by the heartbeat to ensures that the blocker has not deadlocked. */
Siarhei Vishniakouba0a8752021-09-14 14:43:25 -070037 virtual void monitor() = 0;
38
39 UnwantedInteractionBlockerInterface() {}
40 ~UnwantedInteractionBlockerInterface() override {}
41};
42
43} // namespace android