Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
//
|
|
|
|
// Copyright 2010 The Android Open Source Project
|
|
|
|
//
|
|
|
|
// Provides a pipe-based transport for native events in the NDK.
|
|
|
|
//
|
|
|
|
#define LOG_TAG "Input"
|
|
|
|
|
|
|
|
//#define LOG_NDEBUG 0
|
|
|
|
|
2011-03-10 01:39:48 +00:00
|
|
|
// Log debug messages about keymap probing.
|
2010-11-30 01:37:49 +00:00
|
|
|
#define DEBUG_PROBE 0
|
|
|
|
|
2011-03-10 01:39:48 +00:00
|
|
|
// Log debug messages about velocity tracking.
|
|
|
|
#define DEBUG_VELOCITY 0
|
|
|
|
|
2011-06-01 19:33:19 +00:00
|
|
|
// Log debug messages about acceleration.
|
|
|
|
#define DEBUG_ACCELERATION 0
|
|
|
|
|
|
|
|
|
2010-11-30 01:37:49 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2010-12-02 21:50:46 +00:00
|
|
|
#include <ctype.h>
|
2010-11-30 01:37:49 +00:00
|
|
|
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
#include <ui/Input.h>
|
|
|
|
|
2011-02-15 01:03:18 +00:00
|
|
|
#include <math.h>
|
2011-06-01 19:33:19 +00:00
|
|
|
#include <limits.h>
|
2011-02-15 01:03:18 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_ANDROID_OS
|
|
|
|
#include <binder/Parcel.h>
|
|
|
|
|
|
|
|
#include "SkPoint.h"
|
|
|
|
#include "SkMatrix.h"
|
|
|
|
#include "SkScalar.h"
|
|
|
|
#endif
|
|
|
|
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
namespace android {
|
|
|
|
|
2010-11-30 01:37:49 +00:00
|
|
|
static const char* CONFIGURATION_FILE_DIR[] = {
|
|
|
|
"idc/",
|
|
|
|
"keylayout/",
|
|
|
|
"keychars/",
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char* CONFIGURATION_FILE_EXTENSION[] = {
|
|
|
|
".idc",
|
|
|
|
".kl",
|
|
|
|
".kcm",
|
|
|
|
};
|
|
|
|
|
2010-12-02 21:50:46 +00:00
|
|
|
static bool isValidNameChar(char ch) {
|
|
|
|
return isascii(ch) && (isdigit(ch) || isalpha(ch) || ch == '-' || ch == '_');
|
|
|
|
}
|
|
|
|
|
2010-11-30 01:37:49 +00:00
|
|
|
static void appendInputDeviceConfigurationFileRelativePath(String8& path,
|
|
|
|
const String8& name, InputDeviceConfigurationFileType type) {
|
|
|
|
path.append(CONFIGURATION_FILE_DIR[type]);
|
|
|
|
for (size_t i = 0; i < name.length(); i++) {
|
|
|
|
char ch = name[i];
|
2010-12-02 21:50:46 +00:00
|
|
|
if (!isValidNameChar(ch)) {
|
2010-11-30 01:37:49 +00:00
|
|
|
ch = '_';
|
|
|
|
}
|
|
|
|
path.append(&ch, 1);
|
|
|
|
}
|
|
|
|
path.append(CONFIGURATION_FILE_EXTENSION[type]);
|
|
|
|
}
|
|
|
|
|
2010-12-02 21:50:46 +00:00
|
|
|
String8 getInputDeviceConfigurationFilePathByDeviceIdentifier(
|
|
|
|
const InputDeviceIdentifier& deviceIdentifier,
|
|
|
|
InputDeviceConfigurationFileType type) {
|
|
|
|
if (deviceIdentifier.vendor !=0 && deviceIdentifier.product != 0) {
|
|
|
|
if (deviceIdentifier.version != 0) {
|
|
|
|
// Try vendor product version.
|
|
|
|
String8 versionPath(getInputDeviceConfigurationFilePathByName(
|
|
|
|
String8::format("Vendor_%04x_Product_%04x_Version_%04x",
|
|
|
|
deviceIdentifier.vendor, deviceIdentifier.product,
|
|
|
|
deviceIdentifier.version),
|
|
|
|
type));
|
|
|
|
if (!versionPath.isEmpty()) {
|
|
|
|
return versionPath;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try vendor product.
|
|
|
|
String8 productPath(getInputDeviceConfigurationFilePathByName(
|
|
|
|
String8::format("Vendor_%04x_Product_%04x",
|
|
|
|
deviceIdentifier.vendor, deviceIdentifier.product),
|
|
|
|
type));
|
|
|
|
if (!productPath.isEmpty()) {
|
|
|
|
return productPath;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try device name.
|
|
|
|
return getInputDeviceConfigurationFilePathByName(deviceIdentifier.name, type);
|
|
|
|
}
|
|
|
|
|
|
|
|
String8 getInputDeviceConfigurationFilePathByName(
|
2010-11-30 01:37:49 +00:00
|
|
|
const String8& name, InputDeviceConfigurationFileType type) {
|
|
|
|
// Search system repository.
|
|
|
|
String8 path;
|
|
|
|
path.setTo(getenv("ANDROID_ROOT"));
|
|
|
|
path.append("/usr/");
|
|
|
|
appendInputDeviceConfigurationFileRelativePath(path, name, type);
|
|
|
|
#if DEBUG_PROBE
|
|
|
|
LOGD("Probing for system provided input device configuration file: path='%s'", path.string());
|
|
|
|
#endif
|
|
|
|
if (!access(path.string(), R_OK)) {
|
|
|
|
#if DEBUG_PROBE
|
|
|
|
LOGD("Found");
|
|
|
|
#endif
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Search user repository.
|
|
|
|
// TODO Should only look here if not in safe mode.
|
|
|
|
path.setTo(getenv("ANDROID_DATA"));
|
|
|
|
path.append("/system/devices/");
|
|
|
|
appendInputDeviceConfigurationFileRelativePath(path, name, type);
|
|
|
|
#if DEBUG_PROBE
|
|
|
|
LOGD("Probing for system user input device configuration file: path='%s'", path.string());
|
|
|
|
#endif
|
|
|
|
if (!access(path.string(), R_OK)) {
|
|
|
|
#if DEBUG_PROBE
|
|
|
|
LOGD("Found");
|
|
|
|
#endif
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Not found.
|
|
|
|
#if DEBUG_PROBE
|
|
|
|
LOGD("Probe failed to find input device configuration file: name='%s', type=%d",
|
|
|
|
name.string(), type);
|
|
|
|
#endif
|
|
|
|
return String8();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// --- InputEvent ---
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
|
2010-07-15 01:48:53 +00:00
|
|
|
void InputEvent::initialize(int32_t deviceId, int32_t source) {
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
mDeviceId = deviceId;
|
2010-07-15 01:48:53 +00:00
|
|
|
mSource = source;
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
}
|
|
|
|
|
2010-07-16 00:44:53 +00:00
|
|
|
void InputEvent::initialize(const InputEvent& from) {
|
|
|
|
mDeviceId = from.mDeviceId;
|
|
|
|
mSource = from.mSource;
|
|
|
|
}
|
|
|
|
|
2010-11-30 01:37:49 +00:00
|
|
|
// --- KeyEvent ---
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
|
2010-06-30 02:20:40 +00:00
|
|
|
bool KeyEvent::hasDefaultAction(int32_t keyCode) {
|
|
|
|
switch (keyCode) {
|
2010-06-30 23:10:35 +00:00
|
|
|
case AKEYCODE_HOME:
|
|
|
|
case AKEYCODE_BACK:
|
|
|
|
case AKEYCODE_CALL:
|
|
|
|
case AKEYCODE_ENDCALL:
|
|
|
|
case AKEYCODE_VOLUME_UP:
|
|
|
|
case AKEYCODE_VOLUME_DOWN:
|
2010-11-01 22:24:01 +00:00
|
|
|
case AKEYCODE_VOLUME_MUTE:
|
2010-06-30 23:10:35 +00:00
|
|
|
case AKEYCODE_POWER:
|
|
|
|
case AKEYCODE_CAMERA:
|
|
|
|
case AKEYCODE_HEADSETHOOK:
|
|
|
|
case AKEYCODE_MENU:
|
|
|
|
case AKEYCODE_NOTIFICATION:
|
|
|
|
case AKEYCODE_FOCUS:
|
|
|
|
case AKEYCODE_SEARCH:
|
2010-11-01 22:24:01 +00:00
|
|
|
case AKEYCODE_MEDIA_PLAY:
|
|
|
|
case AKEYCODE_MEDIA_PAUSE:
|
2010-06-30 23:10:35 +00:00
|
|
|
case AKEYCODE_MEDIA_PLAY_PAUSE:
|
|
|
|
case AKEYCODE_MEDIA_STOP:
|
|
|
|
case AKEYCODE_MEDIA_NEXT:
|
|
|
|
case AKEYCODE_MEDIA_PREVIOUS:
|
|
|
|
case AKEYCODE_MEDIA_REWIND:
|
2010-11-01 22:24:01 +00:00
|
|
|
case AKEYCODE_MEDIA_RECORD:
|
2010-06-30 23:10:35 +00:00
|
|
|
case AKEYCODE_MEDIA_FAST_FORWARD:
|
|
|
|
case AKEYCODE_MUTE:
|
2010-06-30 02:20:40 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool KeyEvent::hasDefaultAction() const {
|
|
|
|
return hasDefaultAction(getKeyCode());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool KeyEvent::isSystemKey(int32_t keyCode) {
|
|
|
|
switch (keyCode) {
|
2010-06-30 23:10:35 +00:00
|
|
|
case AKEYCODE_MENU:
|
|
|
|
case AKEYCODE_SOFT_RIGHT:
|
|
|
|
case AKEYCODE_HOME:
|
|
|
|
case AKEYCODE_BACK:
|
|
|
|
case AKEYCODE_CALL:
|
|
|
|
case AKEYCODE_ENDCALL:
|
|
|
|
case AKEYCODE_VOLUME_UP:
|
|
|
|
case AKEYCODE_VOLUME_DOWN:
|
2010-11-01 22:24:01 +00:00
|
|
|
case AKEYCODE_VOLUME_MUTE:
|
2010-06-30 23:10:35 +00:00
|
|
|
case AKEYCODE_MUTE:
|
|
|
|
case AKEYCODE_POWER:
|
|
|
|
case AKEYCODE_HEADSETHOOK:
|
2010-11-01 22:24:01 +00:00
|
|
|
case AKEYCODE_MEDIA_PLAY:
|
|
|
|
case AKEYCODE_MEDIA_PAUSE:
|
2010-06-30 23:10:35 +00:00
|
|
|
case AKEYCODE_MEDIA_PLAY_PAUSE:
|
|
|
|
case AKEYCODE_MEDIA_STOP:
|
|
|
|
case AKEYCODE_MEDIA_NEXT:
|
|
|
|
case AKEYCODE_MEDIA_PREVIOUS:
|
|
|
|
case AKEYCODE_MEDIA_REWIND:
|
2010-11-01 22:24:01 +00:00
|
|
|
case AKEYCODE_MEDIA_RECORD:
|
2010-06-30 23:10:35 +00:00
|
|
|
case AKEYCODE_MEDIA_FAST_FORWARD:
|
|
|
|
case AKEYCODE_CAMERA:
|
|
|
|
case AKEYCODE_FOCUS:
|
|
|
|
case AKEYCODE_SEARCH:
|
2010-06-30 02:20:40 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool KeyEvent::isSystemKey() const {
|
|
|
|
return isSystemKey(getKeyCode());
|
|
|
|
}
|
|
|
|
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
void KeyEvent::initialize(
|
|
|
|
int32_t deviceId,
|
2010-07-15 01:48:53 +00:00
|
|
|
int32_t source,
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
int32_t action,
|
|
|
|
int32_t flags,
|
|
|
|
int32_t keyCode,
|
|
|
|
int32_t scanCode,
|
|
|
|
int32_t metaState,
|
|
|
|
int32_t repeatCount,
|
|
|
|
nsecs_t downTime,
|
|
|
|
nsecs_t eventTime) {
|
2010-07-15 01:48:53 +00:00
|
|
|
InputEvent::initialize(deviceId, source);
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
mAction = action;
|
|
|
|
mFlags = flags;
|
|
|
|
mKeyCode = keyCode;
|
|
|
|
mScanCode = scanCode;
|
|
|
|
mMetaState = metaState;
|
|
|
|
mRepeatCount = repeatCount;
|
|
|
|
mDownTime = downTime;
|
|
|
|
mEventTime = eventTime;
|
|
|
|
}
|
|
|
|
|
2010-07-16 00:44:53 +00:00
|
|
|
void KeyEvent::initialize(const KeyEvent& from) {
|
|
|
|
InputEvent::initialize(from);
|
|
|
|
mAction = from.mAction;
|
|
|
|
mFlags = from.mFlags;
|
|
|
|
mKeyCode = from.mKeyCode;
|
|
|
|
mScanCode = from.mScanCode;
|
|
|
|
mMetaState = from.mMetaState;
|
|
|
|
mRepeatCount = from.mRepeatCount;
|
|
|
|
mDownTime = from.mDownTime;
|
|
|
|
mEventTime = from.mEventTime;
|
|
|
|
}
|
|
|
|
|
2011-02-15 01:03:18 +00:00
|
|
|
|
|
|
|
// --- PointerCoords ---
|
|
|
|
|
2011-02-19 09:08:02 +00:00
|
|
|
float PointerCoords::getAxisValue(int32_t axis) const {
|
|
|
|
if (axis < 0 || axis > 63) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t axisBit = 1LL << axis;
|
|
|
|
if (!(bits & axisBit)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
uint32_t index = __builtin_popcountll(bits & (axisBit - 1LL));
|
|
|
|
return values[index];
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t PointerCoords::setAxisValue(int32_t axis, float value) {
|
|
|
|
if (axis < 0 || axis > 63) {
|
|
|
|
return NAME_NOT_FOUND;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t axisBit = 1LL << axis;
|
|
|
|
uint32_t index = __builtin_popcountll(bits & (axisBit - 1LL));
|
|
|
|
if (!(bits & axisBit)) {
|
2011-07-27 23:04:54 +00:00
|
|
|
if (value == 0) {
|
|
|
|
return OK; // axes with value 0 do not need to be stored
|
|
|
|
}
|
2011-02-19 09:08:02 +00:00
|
|
|
uint32_t count = __builtin_popcountll(bits);
|
|
|
|
if (count >= MAX_AXES) {
|
|
|
|
tooManyAxes(axis);
|
|
|
|
return NO_MEMORY;
|
|
|
|
}
|
|
|
|
bits |= axisBit;
|
|
|
|
for (uint32_t i = count; i > index; i--) {
|
|
|
|
values[i] = values[i - 1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
values[index] = value;
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
Better compat mode part one: start scaling windows.
First step of improving app screen size compatibility mode. When
running in compat mode, an application's windows are scaled up on
the screen rather than being small with 1:1 pixels.
Currently we scale the application to fill the entire screen, so
don't use an even pixel scaling. Though this may have some
negative impact on the appearance (it looks okay to me), it has a
big benefit of allowing us to now treat these apps as normal
full-screens apps and do the normal transition animations as you
move in and out and around in them.
This introduces fun stuff in the input system to take care of
modifying pointer coordinates to account for the app window
surface scaling. The input dispatcher is told about the scale
that is being applied to each window and, when there is one,
adjusts pointer events appropriately as they are being sent
to the transport.
Also modified is CompatibilityInfo, which has been greatly
simplified to not be so insane and incomprehendible. It is
now simple -- when constructed it determines if the given app
is compatible with the current screen size and density, and
that is that.
There are new APIs on ActivityManagerService to put applications
that we would traditionally consider compatible with larger screens
in compatibility mode. This is the start of a facility to have
a UI affordance for a user to switch apps in and out of
compatibility.
To test switching of modes, there is a new variation of the "am"
command to do this: am screen-compat [on|off] [package]
This mode switching has the fundamentals of restarting activities
when it is changed, though the state still needs to be persisted
and the overall mode switch cleaned up.
For the few small apps I have tested, things mostly seem to be
working well. I know of one problem with the text selection
handles being drawn at the wrong position because at some point
the window offset is being scaled incorrectly. There are
probably other similar issues around the interaction between
two windows because the different window coordinate spaces are
done in a hacky way instead of being formally integrated into
the window manager layout process.
Change-Id: Ie038e3746b448135117bd860859d74e360938557
2011-04-27 22:52:56 +00:00
|
|
|
static inline void scaleAxisValue(PointerCoords& c, int axis, float scaleFactor) {
|
2011-07-27 23:04:54 +00:00
|
|
|
float value = c.getAxisValue(axis);
|
|
|
|
if (value != 0) {
|
|
|
|
c.setAxisValue(axis, value * scaleFactor);
|
Better compat mode part one: start scaling windows.
First step of improving app screen size compatibility mode. When
running in compat mode, an application's windows are scaled up on
the screen rather than being small with 1:1 pixels.
Currently we scale the application to fill the entire screen, so
don't use an even pixel scaling. Though this may have some
negative impact on the appearance (it looks okay to me), it has a
big benefit of allowing us to now treat these apps as normal
full-screens apps and do the normal transition animations as you
move in and out and around in them.
This introduces fun stuff in the input system to take care of
modifying pointer coordinates to account for the app window
surface scaling. The input dispatcher is told about the scale
that is being applied to each window and, when there is one,
adjusts pointer events appropriately as they are being sent
to the transport.
Also modified is CompatibilityInfo, which has been greatly
simplified to not be so insane and incomprehendible. It is
now simple -- when constructed it determines if the given app
is compatible with the current screen size and density, and
that is that.
There are new APIs on ActivityManagerService to put applications
that we would traditionally consider compatible with larger screens
in compatibility mode. This is the start of a facility to have
a UI affordance for a user to switch apps in and out of
compatibility.
To test switching of modes, there is a new variation of the "am"
command to do this: am screen-compat [on|off] [package]
This mode switching has the fundamentals of restarting activities
when it is changed, though the state still needs to be persisted
and the overall mode switch cleaned up.
For the few small apps I have tested, things mostly seem to be
working well. I know of one problem with the text selection
handles being drawn at the wrong position because at some point
the window offset is being scaled incorrectly. There are
probably other similar issues around the interaction between
two windows because the different window coordinate spaces are
done in a hacky way instead of being formally integrated into
the window manager layout process.
Change-Id: Ie038e3746b448135117bd860859d74e360938557
2011-04-27 22:52:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PointerCoords::scale(float scaleFactor) {
|
|
|
|
// No need to scale pressure or size since they are normalized.
|
|
|
|
// No need to scale orientation since it is meaningless to do so.
|
|
|
|
scaleAxisValue(*this, AMOTION_EVENT_AXIS_X, scaleFactor);
|
|
|
|
scaleAxisValue(*this, AMOTION_EVENT_AXIS_Y, scaleFactor);
|
|
|
|
scaleAxisValue(*this, AMOTION_EVENT_AXIS_TOUCH_MAJOR, scaleFactor);
|
|
|
|
scaleAxisValue(*this, AMOTION_EVENT_AXIS_TOUCH_MINOR, scaleFactor);
|
|
|
|
scaleAxisValue(*this, AMOTION_EVENT_AXIS_TOOL_MAJOR, scaleFactor);
|
|
|
|
scaleAxisValue(*this, AMOTION_EVENT_AXIS_TOOL_MINOR, scaleFactor);
|
|
|
|
}
|
|
|
|
|
2011-02-15 01:03:18 +00:00
|
|
|
#ifdef HAVE_ANDROID_OS
|
|
|
|
status_t PointerCoords::readFromParcel(Parcel* parcel) {
|
2011-02-19 09:08:02 +00:00
|
|
|
bits = parcel->readInt64();
|
2011-02-15 01:03:18 +00:00
|
|
|
|
2011-02-19 09:08:02 +00:00
|
|
|
uint32_t count = __builtin_popcountll(bits);
|
2011-02-15 01:03:18 +00:00
|
|
|
if (count > MAX_AXES) {
|
|
|
|
return BAD_VALUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < count; i++) {
|
|
|
|
values[i] = parcel->readInt32();
|
|
|
|
}
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t PointerCoords::writeToParcel(Parcel* parcel) const {
|
2011-02-19 09:08:02 +00:00
|
|
|
parcel->writeInt64(bits);
|
2011-02-15 01:03:18 +00:00
|
|
|
|
2011-02-19 09:08:02 +00:00
|
|
|
uint32_t count = __builtin_popcountll(bits);
|
2011-02-15 01:03:18 +00:00
|
|
|
for (uint32_t i = 0; i < count; i++) {
|
|
|
|
parcel->writeInt32(values[i]);
|
|
|
|
}
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void PointerCoords::tooManyAxes(int axis) {
|
|
|
|
LOGW("Could not set value for axis %d because the PointerCoords structure is full and "
|
|
|
|
"cannot contain more than %d axis values.", axis, int(MAX_AXES));
|
|
|
|
}
|
|
|
|
|
2011-03-10 01:39:48 +00:00
|
|
|
bool PointerCoords::operator==(const PointerCoords& other) const {
|
|
|
|
if (bits != other.bits) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
uint32_t count = __builtin_popcountll(bits);
|
|
|
|
for (uint32_t i = 0; i < count; i++) {
|
|
|
|
if (values[i] != other.values[i]) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PointerCoords::copyFrom(const PointerCoords& other) {
|
|
|
|
bits = other.bits;
|
|
|
|
uint32_t count = __builtin_popcountll(bits);
|
|
|
|
for (uint32_t i = 0; i < count; i++) {
|
|
|
|
values[i] = other.values[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-15 01:03:18 +00:00
|
|
|
|
2011-05-07 01:20:01 +00:00
|
|
|
// --- PointerProperties ---
|
|
|
|
|
|
|
|
bool PointerProperties::operator==(const PointerProperties& other) const {
|
|
|
|
return id == other.id
|
|
|
|
&& toolType == other.toolType;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PointerProperties::copyFrom(const PointerProperties& other) {
|
|
|
|
id = other.id;
|
|
|
|
toolType = other.toolType;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-30 01:37:49 +00:00
|
|
|
// --- MotionEvent ---
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
|
|
|
|
void MotionEvent::initialize(
|
|
|
|
int32_t deviceId,
|
2010-07-15 01:48:53 +00:00
|
|
|
int32_t source,
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
int32_t action,
|
2010-09-02 00:01:00 +00:00
|
|
|
int32_t flags,
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
int32_t edgeFlags,
|
|
|
|
int32_t metaState,
|
2011-05-07 01:20:01 +00:00
|
|
|
int32_t buttonState,
|
2010-06-16 08:53:36 +00:00
|
|
|
float xOffset,
|
|
|
|
float yOffset,
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
float xPrecision,
|
|
|
|
float yPrecision,
|
|
|
|
nsecs_t downTime,
|
|
|
|
nsecs_t eventTime,
|
|
|
|
size_t pointerCount,
|
2011-05-07 01:20:01 +00:00
|
|
|
const PointerProperties* pointerProperties,
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
const PointerCoords* pointerCoords) {
|
2010-07-15 01:48:53 +00:00
|
|
|
InputEvent::initialize(deviceId, source);
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
mAction = action;
|
2010-09-02 00:01:00 +00:00
|
|
|
mFlags = flags;
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
mEdgeFlags = edgeFlags;
|
|
|
|
mMetaState = metaState;
|
2011-05-07 01:20:01 +00:00
|
|
|
mButtonState = buttonState;
|
2010-06-16 08:53:36 +00:00
|
|
|
mXOffset = xOffset;
|
|
|
|
mYOffset = yOffset;
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
mXPrecision = xPrecision;
|
|
|
|
mYPrecision = yPrecision;
|
|
|
|
mDownTime = downTime;
|
2011-05-07 01:20:01 +00:00
|
|
|
mPointerProperties.clear();
|
|
|
|
mPointerProperties.appendArray(pointerProperties, pointerCount);
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
mSampleEventTimes.clear();
|
|
|
|
mSamplePointerCoords.clear();
|
|
|
|
addSample(eventTime, pointerCoords);
|
|
|
|
}
|
|
|
|
|
2011-02-15 01:03:18 +00:00
|
|
|
void MotionEvent::copyFrom(const MotionEvent* other, bool keepHistory) {
|
|
|
|
InputEvent::initialize(other->mDeviceId, other->mSource);
|
|
|
|
mAction = other->mAction;
|
|
|
|
mFlags = other->mFlags;
|
|
|
|
mEdgeFlags = other->mEdgeFlags;
|
|
|
|
mMetaState = other->mMetaState;
|
2011-05-07 01:20:01 +00:00
|
|
|
mButtonState = other->mButtonState;
|
2011-02-15 01:03:18 +00:00
|
|
|
mXOffset = other->mXOffset;
|
|
|
|
mYOffset = other->mYOffset;
|
|
|
|
mXPrecision = other->mXPrecision;
|
|
|
|
mYPrecision = other->mYPrecision;
|
|
|
|
mDownTime = other->mDownTime;
|
2011-05-07 01:20:01 +00:00
|
|
|
mPointerProperties = other->mPointerProperties;
|
2011-02-15 01:03:18 +00:00
|
|
|
|
|
|
|
if (keepHistory) {
|
|
|
|
mSampleEventTimes = other->mSampleEventTimes;
|
|
|
|
mSamplePointerCoords = other->mSamplePointerCoords;
|
|
|
|
} else {
|
|
|
|
mSampleEventTimes.clear();
|
|
|
|
mSampleEventTimes.push(other->getEventTime());
|
|
|
|
mSamplePointerCoords.clear();
|
|
|
|
size_t pointerCount = other->getPointerCount();
|
|
|
|
size_t historySize = other->getHistorySize();
|
|
|
|
mSamplePointerCoords.appendArray(other->mSamplePointerCoords.array()
|
|
|
|
+ (historySize * pointerCount), pointerCount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
void MotionEvent::addSample(
|
|
|
|
int64_t eventTime,
|
|
|
|
const PointerCoords* pointerCoords) {
|
|
|
|
mSampleEventTimes.push(eventTime);
|
|
|
|
mSamplePointerCoords.appendArray(pointerCoords, getPointerCount());
|
|
|
|
}
|
|
|
|
|
2011-02-15 01:03:18 +00:00
|
|
|
const PointerCoords* MotionEvent::getRawPointerCoords(size_t pointerIndex) const {
|
|
|
|
return &mSamplePointerCoords[getHistorySize() * getPointerCount() + pointerIndex];
|
|
|
|
}
|
|
|
|
|
|
|
|
float MotionEvent::getRawAxisValue(int32_t axis, size_t pointerIndex) const {
|
|
|
|
return getRawPointerCoords(pointerIndex)->getAxisValue(axis);
|
|
|
|
}
|
|
|
|
|
|
|
|
float MotionEvent::getAxisValue(int32_t axis, size_t pointerIndex) const {
|
|
|
|
float value = getRawPointerCoords(pointerIndex)->getAxisValue(axis);
|
|
|
|
switch (axis) {
|
2011-02-17 21:01:34 +00:00
|
|
|
case AMOTION_EVENT_AXIS_X:
|
Better compat mode part one: start scaling windows.
First step of improving app screen size compatibility mode. When
running in compat mode, an application's windows are scaled up on
the screen rather than being small with 1:1 pixels.
Currently we scale the application to fill the entire screen, so
don't use an even pixel scaling. Though this may have some
negative impact on the appearance (it looks okay to me), it has a
big benefit of allowing us to now treat these apps as normal
full-screens apps and do the normal transition animations as you
move in and out and around in them.
This introduces fun stuff in the input system to take care of
modifying pointer coordinates to account for the app window
surface scaling. The input dispatcher is told about the scale
that is being applied to each window and, when there is one,
adjusts pointer events appropriately as they are being sent
to the transport.
Also modified is CompatibilityInfo, which has been greatly
simplified to not be so insane and incomprehendible. It is
now simple -- when constructed it determines if the given app
is compatible with the current screen size and density, and
that is that.
There are new APIs on ActivityManagerService to put applications
that we would traditionally consider compatible with larger screens
in compatibility mode. This is the start of a facility to have
a UI affordance for a user to switch apps in and out of
compatibility.
To test switching of modes, there is a new variation of the "am"
command to do this: am screen-compat [on|off] [package]
This mode switching has the fundamentals of restarting activities
when it is changed, though the state still needs to be persisted
and the overall mode switch cleaned up.
For the few small apps I have tested, things mostly seem to be
working well. I know of one problem with the text selection
handles being drawn at the wrong position because at some point
the window offset is being scaled incorrectly. There are
probably other similar issues around the interaction between
two windows because the different window coordinate spaces are
done in a hacky way instead of being formally integrated into
the window manager layout process.
Change-Id: Ie038e3746b448135117bd860859d74e360938557
2011-04-27 22:52:56 +00:00
|
|
|
return value + mXOffset;
|
2011-02-17 21:01:34 +00:00
|
|
|
case AMOTION_EVENT_AXIS_Y:
|
Better compat mode part one: start scaling windows.
First step of improving app screen size compatibility mode. When
running in compat mode, an application's windows are scaled up on
the screen rather than being small with 1:1 pixels.
Currently we scale the application to fill the entire screen, so
don't use an even pixel scaling. Though this may have some
negative impact on the appearance (it looks okay to me), it has a
big benefit of allowing us to now treat these apps as normal
full-screens apps and do the normal transition animations as you
move in and out and around in them.
This introduces fun stuff in the input system to take care of
modifying pointer coordinates to account for the app window
surface scaling. The input dispatcher is told about the scale
that is being applied to each window and, when there is one,
adjusts pointer events appropriately as they are being sent
to the transport.
Also modified is CompatibilityInfo, which has been greatly
simplified to not be so insane and incomprehendible. It is
now simple -- when constructed it determines if the given app
is compatible with the current screen size and density, and
that is that.
There are new APIs on ActivityManagerService to put applications
that we would traditionally consider compatible with larger screens
in compatibility mode. This is the start of a facility to have
a UI affordance for a user to switch apps in and out of
compatibility.
To test switching of modes, there is a new variation of the "am"
command to do this: am screen-compat [on|off] [package]
This mode switching has the fundamentals of restarting activities
when it is changed, though the state still needs to be persisted
and the overall mode switch cleaned up.
For the few small apps I have tested, things mostly seem to be
working well. I know of one problem with the text selection
handles being drawn at the wrong position because at some point
the window offset is being scaled incorrectly. There are
probably other similar issues around the interaction between
two windows because the different window coordinate spaces are
done in a hacky way instead of being formally integrated into
the window manager layout process.
Change-Id: Ie038e3746b448135117bd860859d74e360938557
2011-04-27 22:52:56 +00:00
|
|
|
return value + mYOffset;
|
2011-02-15 01:03:18 +00:00
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
const PointerCoords* MotionEvent::getHistoricalRawPointerCoords(
|
|
|
|
size_t pointerIndex, size_t historicalIndex) const {
|
|
|
|
return &mSamplePointerCoords[historicalIndex * getPointerCount() + pointerIndex];
|
|
|
|
}
|
|
|
|
|
|
|
|
float MotionEvent::getHistoricalRawAxisValue(int32_t axis, size_t pointerIndex,
|
|
|
|
size_t historicalIndex) const {
|
|
|
|
return getHistoricalRawPointerCoords(pointerIndex, historicalIndex)->getAxisValue(axis);
|
|
|
|
}
|
|
|
|
|
|
|
|
float MotionEvent::getHistoricalAxisValue(int32_t axis, size_t pointerIndex,
|
|
|
|
size_t historicalIndex) const {
|
|
|
|
float value = getHistoricalRawPointerCoords(pointerIndex, historicalIndex)->getAxisValue(axis);
|
|
|
|
switch (axis) {
|
2011-02-17 21:01:34 +00:00
|
|
|
case AMOTION_EVENT_AXIS_X:
|
Better compat mode part one: start scaling windows.
First step of improving app screen size compatibility mode. When
running in compat mode, an application's windows are scaled up on
the screen rather than being small with 1:1 pixels.
Currently we scale the application to fill the entire screen, so
don't use an even pixel scaling. Though this may have some
negative impact on the appearance (it looks okay to me), it has a
big benefit of allowing us to now treat these apps as normal
full-screens apps and do the normal transition animations as you
move in and out and around in them.
This introduces fun stuff in the input system to take care of
modifying pointer coordinates to account for the app window
surface scaling. The input dispatcher is told about the scale
that is being applied to each window and, when there is one,
adjusts pointer events appropriately as they are being sent
to the transport.
Also modified is CompatibilityInfo, which has been greatly
simplified to not be so insane and incomprehendible. It is
now simple -- when constructed it determines if the given app
is compatible with the current screen size and density, and
that is that.
There are new APIs on ActivityManagerService to put applications
that we would traditionally consider compatible with larger screens
in compatibility mode. This is the start of a facility to have
a UI affordance for a user to switch apps in and out of
compatibility.
To test switching of modes, there is a new variation of the "am"
command to do this: am screen-compat [on|off] [package]
This mode switching has the fundamentals of restarting activities
when it is changed, though the state still needs to be persisted
and the overall mode switch cleaned up.
For the few small apps I have tested, things mostly seem to be
working well. I know of one problem with the text selection
handles being drawn at the wrong position because at some point
the window offset is being scaled incorrectly. There are
probably other similar issues around the interaction between
two windows because the different window coordinate spaces are
done in a hacky way instead of being formally integrated into
the window manager layout process.
Change-Id: Ie038e3746b448135117bd860859d74e360938557
2011-04-27 22:52:56 +00:00
|
|
|
return value + mXOffset;
|
2011-02-17 21:01:34 +00:00
|
|
|
case AMOTION_EVENT_AXIS_Y:
|
Better compat mode part one: start scaling windows.
First step of improving app screen size compatibility mode. When
running in compat mode, an application's windows are scaled up on
the screen rather than being small with 1:1 pixels.
Currently we scale the application to fill the entire screen, so
don't use an even pixel scaling. Though this may have some
negative impact on the appearance (it looks okay to me), it has a
big benefit of allowing us to now treat these apps as normal
full-screens apps and do the normal transition animations as you
move in and out and around in them.
This introduces fun stuff in the input system to take care of
modifying pointer coordinates to account for the app window
surface scaling. The input dispatcher is told about the scale
that is being applied to each window and, when there is one,
adjusts pointer events appropriately as they are being sent
to the transport.
Also modified is CompatibilityInfo, which has been greatly
simplified to not be so insane and incomprehendible. It is
now simple -- when constructed it determines if the given app
is compatible with the current screen size and density, and
that is that.
There are new APIs on ActivityManagerService to put applications
that we would traditionally consider compatible with larger screens
in compatibility mode. This is the start of a facility to have
a UI affordance for a user to switch apps in and out of
compatibility.
To test switching of modes, there is a new variation of the "am"
command to do this: am screen-compat [on|off] [package]
This mode switching has the fundamentals of restarting activities
when it is changed, though the state still needs to be persisted
and the overall mode switch cleaned up.
For the few small apps I have tested, things mostly seem to be
working well. I know of one problem with the text selection
handles being drawn at the wrong position because at some point
the window offset is being scaled incorrectly. There are
probably other similar issues around the interaction between
two windows because the different window coordinate spaces are
done in a hacky way instead of being formally integrated into
the window manager layout process.
Change-Id: Ie038e3746b448135117bd860859d74e360938557
2011-04-27 22:52:56 +00:00
|
|
|
return value + mYOffset;
|
2011-02-15 01:03:18 +00:00
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2011-03-15 02:39:54 +00:00
|
|
|
ssize_t MotionEvent::findPointerIndex(int32_t pointerId) const {
|
2011-05-07 01:20:01 +00:00
|
|
|
size_t pointerCount = mPointerProperties.size();
|
2011-03-15 02:39:54 +00:00
|
|
|
for (size_t i = 0; i < pointerCount; i++) {
|
2011-05-07 01:20:01 +00:00
|
|
|
if (mPointerProperties.itemAt(i).id == pointerId) {
|
2011-03-15 02:39:54 +00:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
void MotionEvent::offsetLocation(float xOffset, float yOffset) {
|
2010-06-16 08:53:36 +00:00
|
|
|
mXOffset += xOffset;
|
|
|
|
mYOffset += yOffset;
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
}
|
|
|
|
|
2011-02-15 01:03:18 +00:00
|
|
|
void MotionEvent::scale(float scaleFactor) {
|
|
|
|
mXOffset *= scaleFactor;
|
|
|
|
mYOffset *= scaleFactor;
|
|
|
|
mXPrecision *= scaleFactor;
|
|
|
|
mYPrecision *= scaleFactor;
|
|
|
|
|
|
|
|
size_t numSamples = mSamplePointerCoords.size();
|
|
|
|
for (size_t i = 0; i < numSamples; i++) {
|
Better compat mode part one: start scaling windows.
First step of improving app screen size compatibility mode. When
running in compat mode, an application's windows are scaled up on
the screen rather than being small with 1:1 pixels.
Currently we scale the application to fill the entire screen, so
don't use an even pixel scaling. Though this may have some
negative impact on the appearance (it looks okay to me), it has a
big benefit of allowing us to now treat these apps as normal
full-screens apps and do the normal transition animations as you
move in and out and around in them.
This introduces fun stuff in the input system to take care of
modifying pointer coordinates to account for the app window
surface scaling. The input dispatcher is told about the scale
that is being applied to each window and, when there is one,
adjusts pointer events appropriately as they are being sent
to the transport.
Also modified is CompatibilityInfo, which has been greatly
simplified to not be so insane and incomprehendible. It is
now simple -- when constructed it determines if the given app
is compatible with the current screen size and density, and
that is that.
There are new APIs on ActivityManagerService to put applications
that we would traditionally consider compatible with larger screens
in compatibility mode. This is the start of a facility to have
a UI affordance for a user to switch apps in and out of
compatibility.
To test switching of modes, there is a new variation of the "am"
command to do this: am screen-compat [on|off] [package]
This mode switching has the fundamentals of restarting activities
when it is changed, though the state still needs to be persisted
and the overall mode switch cleaned up.
For the few small apps I have tested, things mostly seem to be
working well. I know of one problem with the text selection
handles being drawn at the wrong position because at some point
the window offset is being scaled incorrectly. There are
probably other similar issues around the interaction between
two windows because the different window coordinate spaces are
done in a hacky way instead of being formally integrated into
the window manager layout process.
Change-Id: Ie038e3746b448135117bd860859d74e360938557
2011-04-27 22:52:56 +00:00
|
|
|
mSamplePointerCoords.editItemAt(i).scale(scaleFactor);
|
2011-02-15 01:03:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_ANDROID_OS
|
|
|
|
static inline float transformAngle(const SkMatrix* matrix, float angleRadians) {
|
|
|
|
// Construct and transform a vector oriented at the specified clockwise angle from vertical.
|
|
|
|
// Coordinate system: down is increasing Y, right is increasing X.
|
|
|
|
SkPoint vector;
|
|
|
|
vector.fX = SkFloatToScalar(sinf(angleRadians));
|
|
|
|
vector.fY = SkFloatToScalar(-cosf(angleRadians));
|
|
|
|
matrix->mapVectors(& vector, 1);
|
|
|
|
|
|
|
|
// Derive the transformed vector's clockwise angle from vertical.
|
|
|
|
float result = atan2f(SkScalarToFloat(vector.fX), SkScalarToFloat(-vector.fY));
|
|
|
|
if (result < - M_PI_2) {
|
|
|
|
result += M_PI;
|
|
|
|
} else if (result > M_PI_2) {
|
|
|
|
result -= M_PI;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MotionEvent::transform(const SkMatrix* matrix) {
|
|
|
|
float oldXOffset = mXOffset;
|
|
|
|
float oldYOffset = mYOffset;
|
|
|
|
|
|
|
|
// The tricky part of this implementation is to preserve the value of
|
|
|
|
// rawX and rawY. So we apply the transformation to the first point
|
|
|
|
// then derive an appropriate new X/Y offset that will preserve rawX and rawY.
|
|
|
|
SkPoint point;
|
|
|
|
float rawX = getRawX(0);
|
|
|
|
float rawY = getRawY(0);
|
|
|
|
matrix->mapXY(SkFloatToScalar(rawX + oldXOffset), SkFloatToScalar(rawY + oldYOffset),
|
|
|
|
& point);
|
|
|
|
float newX = SkScalarToFloat(point.fX);
|
|
|
|
float newY = SkScalarToFloat(point.fY);
|
|
|
|
float newXOffset = newX - rawX;
|
|
|
|
float newYOffset = newY - rawY;
|
|
|
|
|
|
|
|
mXOffset = newXOffset;
|
|
|
|
mYOffset = newYOffset;
|
|
|
|
|
|
|
|
// Apply the transformation to all samples.
|
|
|
|
size_t numSamples = mSamplePointerCoords.size();
|
|
|
|
for (size_t i = 0; i < numSamples; i++) {
|
|
|
|
PointerCoords& c = mSamplePointerCoords.editItemAt(i);
|
2011-07-27 23:04:54 +00:00
|
|
|
float x = c.getAxisValue(AMOTION_EVENT_AXIS_X) + oldXOffset;
|
|
|
|
float y = c.getAxisValue(AMOTION_EVENT_AXIS_Y) + oldYOffset;
|
|
|
|
matrix->mapXY(SkFloatToScalar(x), SkFloatToScalar(y), &point);
|
|
|
|
c.setAxisValue(AMOTION_EVENT_AXIS_X, SkScalarToFloat(point.fX) - newXOffset);
|
|
|
|
c.setAxisValue(AMOTION_EVENT_AXIS_Y, SkScalarToFloat(point.fY) - newYOffset);
|
2011-02-15 01:03:18 +00:00
|
|
|
|
2011-07-27 23:04:54 +00:00
|
|
|
float orientation = c.getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION);
|
|
|
|
c.setAxisValue(AMOTION_EVENT_AXIS_ORIENTATION, transformAngle(matrix, orientation));
|
2011-02-15 01:03:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t MotionEvent::readFromParcel(Parcel* parcel) {
|
|
|
|
size_t pointerCount = parcel->readInt32();
|
|
|
|
size_t sampleCount = parcel->readInt32();
|
|
|
|
if (pointerCount == 0 || pointerCount > MAX_POINTERS || sampleCount == 0) {
|
|
|
|
return BAD_VALUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
mDeviceId = parcel->readInt32();
|
|
|
|
mSource = parcel->readInt32();
|
|
|
|
mAction = parcel->readInt32();
|
|
|
|
mFlags = parcel->readInt32();
|
|
|
|
mEdgeFlags = parcel->readInt32();
|
|
|
|
mMetaState = parcel->readInt32();
|
2011-05-07 01:20:01 +00:00
|
|
|
mButtonState = parcel->readInt32();
|
2011-02-15 01:03:18 +00:00
|
|
|
mXOffset = parcel->readFloat();
|
|
|
|
mYOffset = parcel->readFloat();
|
|
|
|
mXPrecision = parcel->readFloat();
|
|
|
|
mYPrecision = parcel->readFloat();
|
|
|
|
mDownTime = parcel->readInt64();
|
|
|
|
|
2011-05-07 01:20:01 +00:00
|
|
|
mPointerProperties.clear();
|
|
|
|
mPointerProperties.setCapacity(pointerCount);
|
2011-02-15 01:03:18 +00:00
|
|
|
mSampleEventTimes.clear();
|
|
|
|
mSampleEventTimes.setCapacity(sampleCount);
|
|
|
|
mSamplePointerCoords.clear();
|
|
|
|
mSamplePointerCoords.setCapacity(sampleCount * pointerCount);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < pointerCount; i++) {
|
2011-05-07 01:20:01 +00:00
|
|
|
mPointerProperties.push();
|
|
|
|
PointerProperties& properties = mPointerProperties.editTop();
|
|
|
|
properties.id = parcel->readInt32();
|
|
|
|
properties.toolType = parcel->readInt32();
|
2011-02-15 01:03:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
while (sampleCount-- > 0) {
|
|
|
|
mSampleEventTimes.push(parcel->readInt64());
|
|
|
|
for (size_t i = 0; i < pointerCount; i++) {
|
|
|
|
mSamplePointerCoords.push();
|
|
|
|
status_t status = mSamplePointerCoords.editTop().readFromParcel(parcel);
|
2011-02-17 21:01:34 +00:00
|
|
|
if (status) {
|
2011-02-15 01:03:18 +00:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t MotionEvent::writeToParcel(Parcel* parcel) const {
|
2011-05-07 01:20:01 +00:00
|
|
|
size_t pointerCount = mPointerProperties.size();
|
2011-02-15 01:03:18 +00:00
|
|
|
size_t sampleCount = mSampleEventTimes.size();
|
|
|
|
|
|
|
|
parcel->writeInt32(pointerCount);
|
|
|
|
parcel->writeInt32(sampleCount);
|
|
|
|
|
|
|
|
parcel->writeInt32(mDeviceId);
|
|
|
|
parcel->writeInt32(mSource);
|
|
|
|
parcel->writeInt32(mAction);
|
|
|
|
parcel->writeInt32(mFlags);
|
|
|
|
parcel->writeInt32(mEdgeFlags);
|
|
|
|
parcel->writeInt32(mMetaState);
|
2011-05-07 01:20:01 +00:00
|
|
|
parcel->writeInt32(mButtonState);
|
2011-02-15 01:03:18 +00:00
|
|
|
parcel->writeFloat(mXOffset);
|
|
|
|
parcel->writeFloat(mYOffset);
|
|
|
|
parcel->writeFloat(mXPrecision);
|
|
|
|
parcel->writeFloat(mYPrecision);
|
|
|
|
parcel->writeInt64(mDownTime);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < pointerCount; i++) {
|
2011-05-07 01:20:01 +00:00
|
|
|
const PointerProperties& properties = mPointerProperties.itemAt(i);
|
|
|
|
parcel->writeInt32(properties.id);
|
|
|
|
parcel->writeInt32(properties.toolType);
|
2011-02-15 01:03:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const PointerCoords* pc = mSamplePointerCoords.array();
|
|
|
|
for (size_t h = 0; h < sampleCount; h++) {
|
|
|
|
parcel->writeInt64(mSampleEventTimes.itemAt(h));
|
|
|
|
for (size_t i = 0; i < pointerCount; i++) {
|
|
|
|
status_t status = (pc++)->writeToParcel(parcel);
|
2011-02-17 21:01:34 +00:00
|
|
|
if (status) {
|
2011-02-15 01:03:18 +00:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-03-03 03:23:13 +00:00
|
|
|
bool MotionEvent::isTouchEvent(int32_t source, int32_t action) {
|
|
|
|
if (source & AINPUT_SOURCE_CLASS_POINTER) {
|
|
|
|
// Specifically excludes HOVER_MOVE and SCROLL.
|
|
|
|
switch (action & AMOTION_EVENT_ACTION_MASK) {
|
|
|
|
case AMOTION_EVENT_ACTION_DOWN:
|
|
|
|
case AMOTION_EVENT_ACTION_MOVE:
|
|
|
|
case AMOTION_EVENT_ACTION_UP:
|
|
|
|
case AMOTION_EVENT_ACTION_POINTER_DOWN:
|
|
|
|
case AMOTION_EVENT_ACTION_POINTER_UP:
|
|
|
|
case AMOTION_EVENT_ACTION_CANCEL:
|
|
|
|
case AMOTION_EVENT_ACTION_OUTSIDE:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-02-15 01:03:18 +00:00
|
|
|
|
2011-03-10 01:39:48 +00:00
|
|
|
// --- VelocityTracker ---
|
|
|
|
|
2011-06-01 19:33:19 +00:00
|
|
|
const uint32_t VelocityTracker::HISTORY_SIZE;
|
|
|
|
const nsecs_t VelocityTracker::MAX_AGE;
|
|
|
|
const nsecs_t VelocityTracker::MIN_DURATION;
|
|
|
|
|
2011-03-10 01:39:48 +00:00
|
|
|
VelocityTracker::VelocityTracker() {
|
|
|
|
clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VelocityTracker::clear() {
|
|
|
|
mIndex = 0;
|
|
|
|
mMovements[0].idBits.clear();
|
2011-03-15 02:39:54 +00:00
|
|
|
mActivePointerId = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VelocityTracker::clearPointers(BitSet32 idBits) {
|
|
|
|
BitSet32 remainingIdBits(mMovements[mIndex].idBits.value & ~idBits.value);
|
|
|
|
mMovements[mIndex].idBits = remainingIdBits;
|
|
|
|
|
|
|
|
if (mActivePointerId >= 0 && idBits.hasBit(mActivePointerId)) {
|
|
|
|
mActivePointerId = !remainingIdBits.isEmpty() ? remainingIdBits.firstMarkedBit() : -1;
|
|
|
|
}
|
2011-03-10 01:39:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void VelocityTracker::addMovement(nsecs_t eventTime, BitSet32 idBits, const Position* positions) {
|
|
|
|
if (++mIndex == HISTORY_SIZE) {
|
|
|
|
mIndex = 0;
|
|
|
|
}
|
2011-03-15 02:39:54 +00:00
|
|
|
|
|
|
|
while (idBits.count() > MAX_POINTERS) {
|
2011-07-27 23:04:54 +00:00
|
|
|
idBits.clearLastMarkedBit();
|
2011-03-15 02:39:54 +00:00
|
|
|
}
|
|
|
|
|
2011-03-10 01:39:48 +00:00
|
|
|
Movement& movement = mMovements[mIndex];
|
|
|
|
movement.eventTime = eventTime;
|
|
|
|
movement.idBits = idBits;
|
|
|
|
uint32_t count = idBits.count();
|
|
|
|
for (uint32_t i = 0; i < count; i++) {
|
|
|
|
movement.positions[i] = positions[i];
|
|
|
|
}
|
|
|
|
|
2011-03-15 02:39:54 +00:00
|
|
|
if (mActivePointerId < 0 || !idBits.hasBit(mActivePointerId)) {
|
|
|
|
mActivePointerId = count != 0 ? idBits.firstMarkedBit() : -1;
|
|
|
|
}
|
|
|
|
|
2011-03-10 01:39:48 +00:00
|
|
|
#if DEBUG_VELOCITY
|
2011-03-15 02:39:54 +00:00
|
|
|
LOGD("VelocityTracker: addMovement eventTime=%lld, idBits=0x%08x, activePointerId=%d",
|
|
|
|
eventTime, idBits.value, mActivePointerId);
|
2011-03-10 01:39:48 +00:00
|
|
|
for (BitSet32 iterBits(idBits); !iterBits.isEmpty(); ) {
|
|
|
|
uint32_t id = iterBits.firstMarkedBit();
|
|
|
|
uint32_t index = idBits.getIndexOfBit(id);
|
|
|
|
iterBits.clearBit(id);
|
|
|
|
float vx, vy;
|
|
|
|
bool available = getVelocity(id, &vx, &vy);
|
|
|
|
if (available) {
|
2011-03-15 02:39:54 +00:00
|
|
|
LOGD(" %d: position (%0.3f, %0.3f), vx=%0.3f, vy=%0.3f, speed=%0.3f",
|
2011-03-10 01:39:48 +00:00
|
|
|
id, positions[index].x, positions[index].y, vx, vy, sqrtf(vx * vx + vy * vy));
|
|
|
|
} else {
|
2011-04-01 23:15:13 +00:00
|
|
|
LOG_ASSERT(vx == 0 && vy == 0);
|
2011-03-10 01:39:48 +00:00
|
|
|
LOGD(" %d: position (%0.3f, %0.3f), velocity not available",
|
|
|
|
id, positions[index].x, positions[index].y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2011-03-15 02:39:54 +00:00
|
|
|
void VelocityTracker::addMovement(const MotionEvent* event) {
|
|
|
|
int32_t actionMasked = event->getActionMasked();
|
|
|
|
|
|
|
|
switch (actionMasked) {
|
|
|
|
case AMOTION_EVENT_ACTION_DOWN:
|
2011-09-09 22:39:35 +00:00
|
|
|
case AMOTION_EVENT_ACTION_HOVER_ENTER:
|
2011-03-15 02:39:54 +00:00
|
|
|
// Clear all pointers on down before adding the new movement.
|
|
|
|
clear();
|
|
|
|
break;
|
|
|
|
case AMOTION_EVENT_ACTION_POINTER_DOWN: {
|
|
|
|
// Start a new movement trace for a pointer that just went down.
|
|
|
|
// We do this on down instead of on up because the client may want to query the
|
|
|
|
// final velocity for a pointer that just went up.
|
|
|
|
BitSet32 downIdBits;
|
2011-07-27 23:04:54 +00:00
|
|
|
downIdBits.markBit(event->getPointerId(event->getActionIndex()));
|
2011-03-15 02:39:54 +00:00
|
|
|
clearPointers(downIdBits);
|
|
|
|
break;
|
|
|
|
}
|
2011-09-09 22:39:35 +00:00
|
|
|
case AMOTION_EVENT_ACTION_MOVE:
|
|
|
|
case AMOTION_EVENT_ACTION_HOVER_MOVE:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// Ignore all other actions because they do not convey any new information about
|
2011-03-15 02:39:54 +00:00
|
|
|
// pointer movement. We also want to preserve the last known velocity of the pointers.
|
|
|
|
// Note that ACTION_UP and ACTION_POINTER_UP always report the last known position
|
|
|
|
// of the pointers that went up. ACTION_POINTER_UP does include the new position of
|
|
|
|
// pointers that remained down but we will also receive an ACTION_MOVE with this
|
|
|
|
// information if any of them actually moved. Since we don't know how many pointers
|
|
|
|
// will be going up at once it makes sense to just wait for the following ACTION_MOVE
|
|
|
|
// before adding the movement.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t pointerCount = event->getPointerCount();
|
|
|
|
if (pointerCount > MAX_POINTERS) {
|
|
|
|
pointerCount = MAX_POINTERS;
|
|
|
|
}
|
|
|
|
|
|
|
|
BitSet32 idBits;
|
|
|
|
for (size_t i = 0; i < pointerCount; i++) {
|
|
|
|
idBits.markBit(event->getPointerId(i));
|
|
|
|
}
|
|
|
|
|
|
|
|
nsecs_t eventTime;
|
|
|
|
Position positions[pointerCount];
|
|
|
|
|
|
|
|
size_t historySize = event->getHistorySize();
|
|
|
|
for (size_t h = 0; h < historySize; h++) {
|
|
|
|
eventTime = event->getHistoricalEventTime(h);
|
|
|
|
for (size_t i = 0; i < pointerCount; i++) {
|
|
|
|
positions[i].x = event->getHistoricalX(i, h);
|
|
|
|
positions[i].y = event->getHistoricalY(i, h);
|
|
|
|
}
|
|
|
|
addMovement(eventTime, idBits, positions);
|
|
|
|
}
|
|
|
|
|
|
|
|
eventTime = event->getEventTime();
|
|
|
|
for (size_t i = 0; i < pointerCount; i++) {
|
|
|
|
positions[i].x = event->getX(i);
|
|
|
|
positions[i].y = event->getY(i);
|
|
|
|
}
|
|
|
|
addMovement(eventTime, idBits, positions);
|
|
|
|
}
|
|
|
|
|
2011-03-10 01:39:48 +00:00
|
|
|
bool VelocityTracker::getVelocity(uint32_t id, float* outVx, float* outVy) const {
|
|
|
|
const Movement& newestMovement = mMovements[mIndex];
|
|
|
|
if (newestMovement.idBits.hasBit(id)) {
|
2011-09-09 22:39:35 +00:00
|
|
|
const Position& newestPosition = newestMovement.getPosition(id);
|
2011-03-10 01:39:48 +00:00
|
|
|
float accumVx = 0;
|
|
|
|
float accumVy = 0;
|
2011-09-09 22:39:35 +00:00
|
|
|
float duration = 0;
|
|
|
|
|
|
|
|
// Iterate over movement samples in reverse time order and accumulate velocity.
|
|
|
|
uint32_t index = mIndex;
|
|
|
|
do {
|
|
|
|
index = (index == 0 ? HISTORY_SIZE : index) - 1;
|
2011-03-10 01:39:48 +00:00
|
|
|
const Movement& movement = mMovements[index];
|
2011-09-09 22:39:35 +00:00
|
|
|
if (!movement.idBits.hasBit(id)) {
|
|
|
|
break;
|
2011-03-10 01:39:48 +00:00
|
|
|
}
|
2011-09-09 22:39:35 +00:00
|
|
|
|
|
|
|
nsecs_t age = newestMovement.eventTime - movement.eventTime;
|
|
|
|
if (age > MAX_AGE) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Position& position = movement.getPosition(id);
|
|
|
|
accumVx += newestPosition.x - position.x;
|
|
|
|
accumVy += newestPosition.y - position.y;
|
|
|
|
duration += age;
|
|
|
|
} while (index != mIndex);
|
2011-03-10 01:39:48 +00:00
|
|
|
|
|
|
|
// Make sure we used at least one sample.
|
2011-09-09 22:39:35 +00:00
|
|
|
if (duration >= MIN_DURATION) {
|
|
|
|
float scale = 1000000000.0f / duration; // one over time delta in seconds
|
|
|
|
*outVx = accumVx * scale;
|
|
|
|
*outVy = accumVy * scale;
|
2011-03-10 01:39:48 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// No data available for this pointer.
|
|
|
|
*outVx = 0;
|
|
|
|
*outVy = 0;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-01 19:33:19 +00:00
|
|
|
// --- VelocityControl ---
|
|
|
|
|
|
|
|
const nsecs_t VelocityControl::STOP_TIME;
|
|
|
|
|
|
|
|
VelocityControl::VelocityControl() {
|
|
|
|
reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VelocityControl::setParameters(const VelocityControlParameters& parameters) {
|
|
|
|
mParameters = parameters;
|
|
|
|
reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VelocityControl::reset() {
|
|
|
|
mLastMovementTime = LLONG_MIN;
|
|
|
|
mRawPosition.x = 0;
|
|
|
|
mRawPosition.y = 0;
|
|
|
|
mVelocityTracker.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VelocityControl::move(nsecs_t eventTime, float* deltaX, float* deltaY) {
|
|
|
|
if ((deltaX && *deltaX) || (deltaY && *deltaY)) {
|
|
|
|
if (eventTime >= mLastMovementTime + STOP_TIME) {
|
|
|
|
#if DEBUG_ACCELERATION
|
|
|
|
LOGD("VelocityControl: stopped, last movement was %0.3fms ago",
|
|
|
|
(eventTime - mLastMovementTime) * 0.000001f);
|
|
|
|
#endif
|
|
|
|
reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
mLastMovementTime = eventTime;
|
|
|
|
if (deltaX) {
|
|
|
|
mRawPosition.x += *deltaX;
|
|
|
|
}
|
|
|
|
if (deltaY) {
|
|
|
|
mRawPosition.y += *deltaY;
|
|
|
|
}
|
|
|
|
mVelocityTracker.addMovement(eventTime, BitSet32(BitSet32::valueForBit(0)), &mRawPosition);
|
|
|
|
|
|
|
|
float vx, vy;
|
|
|
|
float scale = mParameters.scale;
|
|
|
|
if (mVelocityTracker.getVelocity(0, &vx, &vy)) {
|
|
|
|
float speed = hypotf(vx, vy) * scale;
|
|
|
|
if (speed >= mParameters.highThreshold) {
|
|
|
|
// Apply full acceleration above the high speed threshold.
|
|
|
|
scale *= mParameters.acceleration;
|
|
|
|
} else if (speed > mParameters.lowThreshold) {
|
|
|
|
// Linearly interpolate the acceleration to apply between the low and high
|
|
|
|
// speed thresholds.
|
|
|
|
scale *= 1 + (speed - mParameters.lowThreshold)
|
|
|
|
/ (mParameters.highThreshold - mParameters.lowThreshold)
|
|
|
|
* (mParameters.acceleration - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if DEBUG_ACCELERATION
|
|
|
|
LOGD("VelocityControl(%0.3f, %0.3f, %0.3f, %0.3f): "
|
|
|
|
"vx=%0.3f, vy=%0.3f, speed=%0.3f, accel=%0.3f",
|
|
|
|
mParameters.scale, mParameters.lowThreshold, mParameters.highThreshold,
|
|
|
|
mParameters.acceleration,
|
|
|
|
vx, vy, speed, scale / mParameters.scale);
|
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
#if DEBUG_ACCELERATION
|
|
|
|
LOGD("VelocityControl(%0.3f, %0.3f, %0.3f, %0.3f): unknown velocity",
|
|
|
|
mParameters.scale, mParameters.lowThreshold, mParameters.highThreshold,
|
|
|
|
mParameters.acceleration);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (deltaX) {
|
|
|
|
*deltaX *= scale;
|
|
|
|
}
|
|
|
|
if (deltaY) {
|
|
|
|
*deltaY *= scale;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-30 01:37:49 +00:00
|
|
|
// --- InputDeviceInfo ---
|
2010-07-24 04:28:06 +00:00
|
|
|
|
|
|
|
InputDeviceInfo::InputDeviceInfo() {
|
|
|
|
initialize(-1, String8("uninitialized device info"));
|
|
|
|
}
|
|
|
|
|
|
|
|
InputDeviceInfo::InputDeviceInfo(const InputDeviceInfo& other) :
|
|
|
|
mId(other.mId), mName(other.mName), mSources(other.mSources),
|
|
|
|
mKeyboardType(other.mKeyboardType),
|
|
|
|
mMotionRanges(other.mMotionRanges) {
|
|
|
|
}
|
|
|
|
|
|
|
|
InputDeviceInfo::~InputDeviceInfo() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void InputDeviceInfo::initialize(int32_t id, const String8& name) {
|
|
|
|
mId = id;
|
|
|
|
mName = name;
|
|
|
|
mSources = 0;
|
|
|
|
mKeyboardType = AINPUT_KEYBOARD_TYPE_NONE;
|
|
|
|
mMotionRanges.clear();
|
|
|
|
}
|
|
|
|
|
2011-03-08 23:13:06 +00:00
|
|
|
const InputDeviceInfo::MotionRange* InputDeviceInfo::getMotionRange(
|
|
|
|
int32_t axis, uint32_t source) const {
|
|
|
|
size_t numRanges = mMotionRanges.size();
|
|
|
|
for (size_t i = 0; i < numRanges; i++) {
|
|
|
|
const MotionRange& range = mMotionRanges.itemAt(i);
|
|
|
|
if (range.axis == axis && range.source == source) {
|
|
|
|
return ⦥
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
2010-07-24 04:28:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void InputDeviceInfo::addSource(uint32_t source) {
|
|
|
|
mSources |= source;
|
|
|
|
}
|
|
|
|
|
2011-03-08 23:13:06 +00:00
|
|
|
void InputDeviceInfo::addMotionRange(int32_t axis, uint32_t source, float min, float max,
|
2010-07-24 04:28:06 +00:00
|
|
|
float flat, float fuzz) {
|
2011-03-08 23:13:06 +00:00
|
|
|
MotionRange range = { axis, source, min, max, flat, fuzz };
|
|
|
|
mMotionRanges.add(range);
|
2010-07-24 04:28:06 +00:00
|
|
|
}
|
|
|
|
|
2011-03-08 23:13:06 +00:00
|
|
|
void InputDeviceInfo::addMotionRange(const MotionRange& range) {
|
|
|
|
mMotionRanges.add(range);
|
2010-07-24 04:28:06 +00:00
|
|
|
}
|
|
|
|
|
Native input dispatch rewrite work in progress.
The old dispatch mechanism has been left in place and continues to
be used by default for now. To enable native input dispatch,
edit the ENABLE_NATIVE_DISPATCH constant in WindowManagerPolicy.
Includes part of the new input event NDK API. Some details TBD.
To wire up input dispatch, as the ViewRoot adds a window to the
window session it receives an InputChannel object as an output
argument. The InputChannel encapsulates the file descriptors for a
shared memory region and two pipe end-points. The ViewRoot then
provides the InputChannel to the InputQueue. Behind the
scenes, InputQueue simply attaches handlers to the native PollLoop object
that underlies the MessageQueue. This way MessageQueue doesn't need
to know anything about input dispatch per-se, it just exposes (in native
code) a PollLoop that other components can use to monitor file descriptor
state changes.
There can be zero or more targets for any given input event. Each
input target is specified by its input channel and some parameters
including flags, an X/Y coordinate offset, and the dispatch timeout.
An input target can request either synchronous dispatch (for foreground apps)
or asynchronous dispatch (fire-and-forget for wallpapers and "outside"
targets). Currently, finding the appropriate input targets for an event
requires a call back into the WindowManagerServer from native code.
In the future this will be refactored to avoid most of these callbacks
except as required to handle pending focus transitions.
End-to-end event dispatch mostly works!
To do: event injection, rate limiting, ANRs, testing, optimization, etc.
Change-Id: I8c36b2b9e0a2d27392040ecda0f51b636456de25
2010-04-23 01:58:52 +00:00
|
|
|
} // namespace android
|