blob: 3872c26aeffdc1fc62e58e2c902bff995ee9a263 [file] [log] [blame]
Jeff Browne839a582010-04-22 18:58:52 -07001/*
2 * Copyright (C) 2010 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_MANAGER_H
18#define _UI_INPUT_MANAGER_H
19
20/**
21 * Native input manager.
22 */
23
24#include <ui/EventHub.h>
25#include <ui/Input.h>
Jeff Browne839a582010-04-22 18:58:52 -070026#include <utils/Errors.h>
27#include <utils/Vector.h>
28#include <utils/Timers.h>
29#include <utils/RefBase.h>
30#include <utils/String8.h>
31
32namespace android {
33
Jeff Brown54bc2812010-06-15 01:31:58 -070034class InputChannel;
35
36class InputReaderInterface;
37class InputReaderPolicyInterface;
Jeff Browne839a582010-04-22 18:58:52 -070038class InputReaderThread;
Jeff Brown54bc2812010-06-15 01:31:58 -070039
40class InputDispatcherInterface;
41class InputDispatcherPolicyInterface;
Jeff Browne839a582010-04-22 18:58:52 -070042class InputDispatcherThread;
43
44/*
45 * The input manager is the core of the system event processing.
46 *
47 * The input manager uses two threads.
48 *
49 * 1. The InputReaderThread (called "InputReader") reads and preprocesses raw input events,
50 * applies policy, and posts messages to a queue managed by the DispatcherThread.
51 * 2. The InputDispatcherThread (called "InputDispatcher") thread waits for new events on the
52 * queue and asynchronously dispatches them to applications.
53 *
54 * By design, the InputReaderThread class and InputDispatcherThread class do not share any
55 * internal state. Moreover, all communication is done one way from the InputReaderThread
56 * into the InputDispatcherThread and never the reverse. Both classes may interact with the
57 * InputDispatchPolicy, however.
58 *
59 * The InputManager class never makes any calls into Java itself. Instead, the
60 * InputDispatchPolicy is responsible for performing all external interactions with the
61 * system, including calling DVM services.
62 */
63class InputManagerInterface : public virtual RefBase {
64protected:
65 InputManagerInterface() { }
66 virtual ~InputManagerInterface() { }
67
68public:
69 /* Starts the input manager threads. */
70 virtual status_t start() = 0;
71
72 /* Stops the input manager threads and waits for them to exit. */
73 virtual status_t stop() = 0;
74
75 /* Registers an input channel prior to using it as the target of an event. */
76 virtual status_t registerInputChannel(const sp<InputChannel>& inputChannel) = 0;
77
78 /* Unregisters an input channel. */
79 virtual status_t unregisterInputChannel(const sp<InputChannel>& inputChannel) = 0;
80
Jeff Brown54bc2812010-06-15 01:31:58 -070081 /* Gets input device configuration. */
82 virtual void getInputConfiguration(InputConfiguration* outConfiguration) const = 0;
83
Jeff Browne839a582010-04-22 18:58:52 -070084 /*
Jeff Brown54bc2812010-06-15 01:31:58 -070085 * Queries current input state.
Jeff Browne839a582010-04-22 18:58:52 -070086 * deviceId may be -1 to search for the device automatically, filtered by class.
87 * deviceClasses may be -1 to ignore device class while searching.
88 */
89 virtual int32_t getScanCodeState(int32_t deviceId, int32_t deviceClasses,
90 int32_t scanCode) const = 0;
91 virtual int32_t getKeyCodeState(int32_t deviceId, int32_t deviceClasses,
92 int32_t keyCode) const = 0;
93 virtual int32_t getSwitchState(int32_t deviceId, int32_t deviceClasses,
94 int32_t sw) const = 0;
95
Jeff Brown54bc2812010-06-15 01:31:58 -070096 /* Determines whether physical keys exist for the given framework-domain key codes. */
Jeff Browne839a582010-04-22 18:58:52 -070097 virtual bool hasKeys(size_t numCodes, const int32_t* keyCodes, uint8_t* outFlags) const = 0;
98};
99
100class InputManager : public InputManagerInterface {
101protected:
102 virtual ~InputManager();
103
104public:
Jeff Brown54bc2812010-06-15 01:31:58 -0700105 InputManager(
106 const sp<EventHubInterface>& eventHub,
107 const sp<InputReaderPolicyInterface>& readerPolicy,
108 const sp<InputDispatcherPolicyInterface>& dispatcherPolicy);
109
110 // (used for testing purposes)
111 InputManager(
112 const sp<InputReaderInterface>& reader,
113 const sp<InputDispatcherInterface>& dispatcher);
Jeff Browne839a582010-04-22 18:58:52 -0700114
115 virtual status_t start();
116 virtual status_t stop();
117
118 virtual status_t registerInputChannel(const sp<InputChannel>& inputChannel);
119 virtual status_t unregisterInputChannel(const sp<InputChannel>& inputChannel);
120
Jeff Brown54bc2812010-06-15 01:31:58 -0700121 virtual void getInputConfiguration(InputConfiguration* outConfiguration) const;
Jeff Browne839a582010-04-22 18:58:52 -0700122 virtual int32_t getScanCodeState(int32_t deviceId, int32_t deviceClasses,
123 int32_t scanCode) const;
124 virtual int32_t getKeyCodeState(int32_t deviceId, int32_t deviceClasses,
125 int32_t keyCode) const;
126 virtual int32_t getSwitchState(int32_t deviceId, int32_t deviceClasses,
127 int32_t sw) const;
128 virtual bool hasKeys(size_t numCodes, const int32_t* keyCodes, uint8_t* outFlags) const;
129
130private:
Jeff Brown54bc2812010-06-15 01:31:58 -0700131 sp<InputReaderInterface> mReader;
Jeff Browne839a582010-04-22 18:58:52 -0700132 sp<InputReaderThread> mReaderThread;
133
Jeff Brown54bc2812010-06-15 01:31:58 -0700134 sp<InputDispatcherInterface> mDispatcher;
135 sp<InputDispatcherThread> mDispatcherThread;
136
137 void initialize();
Jeff Browne839a582010-04-22 18:58:52 -0700138};
139
140} // namespace android
141
142#endif // _UI_INPUT_MANAGER_H