Update NDK headers and samples to sync up with looper API changes.

Change-Id: I7082603bf280888be90dc4df687521aaae9b1d02
This commit is contained in:
Jeff Brown
2010-09-13 23:57:28 -07:00
parent 12d3ad89e4
commit 9f44e97108
7 changed files with 166 additions and 80 deletions

View File

@@ -246,6 +246,22 @@ enum {
AMOTION_EVENT_ACTION_POINTER_UP = 6 AMOTION_EVENT_ACTION_POINTER_UP = 6
}; };
/*
* Motion event flags.
*/
enum {
/* This flag indicates that the window that received this motion event is partly
* or wholly obscured by another visible window above it. This flag is set to true
* even if the event did not directly pass through the obscured area.
* A security sensitive application can check this flag to identify situations in which
* a malicious application may have covered up part of its content for the purpose
* of misleading the user or hijacking touches. An appropriate response might be
* to drop the suspect touches or to take additional precautions to confirm the user's
* actual intent.
*/
AMOTION_EVENT_FLAG_WINDOW_IS_OBSCURED = 0x1,
};
/* /*
* Motion event edge touch flags. * Motion event edge touch flags.
*/ */
@@ -395,6 +411,9 @@ int64_t AKeyEvent_getEventTime(const AInputEvent* key_event);
/* Get the combined motion event action code and pointer index. */ /* Get the combined motion event action code and pointer index. */
int32_t AMotionEvent_getAction(const AInputEvent* motion_event); int32_t AMotionEvent_getAction(const AInputEvent* motion_event);
/* Get the motion event flags. */
int32_t AMotionEvent_getFlags(const AInputEvent* motion_event);
/* Get the state of any meta / modifier keys that were in effect when the /* Get the state of any meta / modifier keys that were in effect when the
* event was generated. */ * event was generated. */
int32_t AMotionEvent_getMetaState(const AInputEvent* motion_event); int32_t AMotionEvent_getMetaState(const AInputEvent* motion_event);
@@ -626,7 +645,7 @@ typedef struct AInputQueue AInputQueue;
* ALooper_addFd() for information on the ident, callback, and data params. * ALooper_addFd() for information on the ident, callback, and data params.
*/ */
void AInputQueue_attachLooper(AInputQueue* queue, ALooper* looper, void AInputQueue_attachLooper(AInputQueue* queue, ALooper* looper,
int ident, ALooper_callbackFunc* callback, void* data); int ident, ALooper_callbackFunc callback, void* data);
/* /*
* Remove the input queue from the looper it is currently attached to. * Remove the input queue from the looper it is currently attached to.

View File

@@ -18,8 +18,6 @@
#ifndef ANDROID_LOOPER_H #ifndef ANDROID_LOOPER_H
#define ANDROID_LOOPER_H #define ANDROID_LOOPER_H
#include <poll.h>
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
@@ -41,25 +39,14 @@ struct ALooper;
typedef struct ALooper ALooper; typedef struct ALooper ALooper;
/** /**
* For callback-based event loops, this is the prototype of the function * Returns the looper associated with the calling thread, or NULL if
* that is called. It is given the file descriptor it is associated with,
* a bitmask of the poll events that were triggered (typically POLLIN), and
* the data pointer that was originally supplied.
*
* Implementations should return 1 to continue receiving callbacks, or 0
* to have this file descriptor and callback unregistered from the looper.
*/
typedef int ALooper_callbackFunc(int fd, int events, void* data);
/**
* Return the ALooper associated with the calling thread, or NULL if
* there is not one. * there is not one.
*/ */
ALooper* ALooper_forThread(); ALooper* ALooper_forThread();
enum { enum {
/** /**
* Option for ALooper_prepare: this ALooper will accept calls to * Option for ALooper_prepare: this looper will accept calls to
* ALooper_addFd() that do not have a callback (that is provide NULL * ALooper_addFd() that do not have a callback (that is provide NULL
* for the callback). In this case the caller of ALooper_pollOnce() * for the callback). In this case the caller of ALooper_pollOnce()
* or ALooper_pollAll() MUST check the return from these functions to * or ALooper_pollAll() MUST check the return from these functions to
@@ -69,65 +56,41 @@ enum {
}; };
/** /**
* Prepare an ALooper associated with the calling thread, and return it. * Prepares a looper associated with the calling thread, and returns it.
* If the thread already has an ALooper, it is returned. Otherwise, a new * If the thread already has a looper, it is returned. Otherwise, a new
* one is created, associated with the thread, and returned. * one is created, associated with the thread, and returned.
* *
* The opts may be ALOOPER_PREPARE_ALLOW_NON_CALLBACKS or 0. * The opts may be ALOOPER_PREPARE_ALLOW_NON_CALLBACKS or 0.
*/ */
ALooper* ALooper_prepare(int32_t opts); ALooper* ALooper_prepare(int opts);
enum { enum {
/** /**
* Result from ALooper_pollOnce() and ALooper_pollAll(): one or * Result from ALooper_pollOnce() and ALooper_pollAll():
* more callbacks were executed. * The poll was awoken using wake() before the timeout expired
* and no callbacks were executed and no other file descriptors were ready.
*/ */
ALOOPER_POLL_CALLBACK = -1, ALOOPER_POLL_WAKE = -1,
/** /**
* Result from ALooper_pollOnce() and ALooper_pollAll(): the * Result from ALooper_pollOnce() and ALooper_pollAll():
* timeout expired. * One or more callbacks were executed.
*/ */
ALOOPER_POLL_TIMEOUT = -2, ALOOPER_POLL_CALLBACK = -2,
/** /**
* Result from ALooper_pollOnce() and ALooper_pollAll(): an error * Result from ALooper_pollOnce() and ALooper_pollAll():
* occurred. * The timeout expired.
*/ */
ALOOPER_POLL_ERROR = -3, ALOOPER_POLL_TIMEOUT = -3,
/**
* Result from ALooper_pollOnce() and ALooper_pollAll():
* An error occurred.
*/
ALOOPER_POLL_ERROR = -4,
}; };
/**
* Wait for events to be available, with optional timeout in milliseconds.
* Invokes callbacks for all file descriptors on which an event occurred.
*
* If the timeout is zero, returns immediately without blocking.
* If the timeout is negative, waits indefinitely until an event appears.
*
* Returns ALOOPER_POLL_CALLBACK if a callback was invoked.
*
* Returns ALOOPER_POLL_TIMEOUT if there was no data before the given
* timeout expired.
*
* Returns ALOPER_POLL_ERROR if an error occurred.
*
* Returns a value >= 0 containing an identifier if its file descriptor has data
* and it has no callback function (requiring the caller here to handle it).
* In this (and only this) case outEvents and outData will contain the poll
* events and data associated with the fd.
*
* This method does not return until it has finished invoking the appropriate callbacks
* for all file descriptors that were signalled.
*/
int32_t ALooper_pollOnce(int timeoutMillis, int* outEvents, void** outData);
/**
* Like ALooper_pollOnce(), but performs all pending callbacks until all
* data has been consumed or a file descriptor is available with no callback.
* This function will never return ALOOPER_POLL_CALLBACK.
*/
int32_t ALooper_pollAll(int timeoutMillis, int* outEvents, void** outData);
/** /**
* Acquire a reference on the given ALooper object. This prevents the object * Acquire a reference on the given ALooper object. This prevents the object
* from being deleted until the reference is removed. This is only needed * from being deleted until the reference is removed. This is only needed
@@ -141,36 +104,140 @@ void ALooper_acquire(ALooper* looper);
void ALooper_release(ALooper* looper); void ALooper_release(ALooper* looper);
/** /**
* Add a new file descriptor to be polled by the looper. If the same file * Flags for file descriptor events that a looper can monitor.
* descriptor was previously added, it is replaced. *
* These flag bits can be combined to monitor multiple events at once.
*/
enum {
/**
* The file descriptor is available for read operations.
*/
ALOOPER_EVENT_INPUT = 1 << 0,
/**
* The file descriptor is available for write operations.
*/
ALOOPER_EVENT_OUTPUT = 1 << 1,
/**
* The file descriptor has encountered an error condition.
*
* The looper always sends notifications about errors; it is not necessary
* to specify this event flag in the requested event set.
*/
ALOOPER_EVENT_ERROR = 1 << 2,
/**
* The file descriptor was hung up.
* For example, indicates that the remote end of a pipe or socket was closed.
*
* The looper always sends notifications about hangups; it is not necessary
* to specify this event flag in the requested event set.
*/
ALOOPER_EVENT_HANGUP = 1 << 3,
};
/**
* For callback-based event loops, this is the prototype of the function
* that is called. It is given the file descriptor it is associated with,
* a bitmask of the poll events that were triggered (typically ALOOPER_EVENT_INPUT),
* and the data pointer that was originally supplied.
*
* Implementations should return 1 to continue receiving callbacks, or 0
* to have this file descriptor and callback unregistered from the looper.
*/
typedef int (*ALooper_callbackFunc)(int fd, int events, void* data);
/**
* Waits for events to be available, with optional timeout in milliseconds.
* Invokes callbacks for all file descriptors on which an event occurred.
*
* If the timeout is zero, returns immediately without blocking.
* If the timeout is negative, waits indefinitely until an event appears.
*
* Returns ALOOPER_POLL_WAKE if the poll was awoken using wake() before
* the timeout expired and no callbacks were invoked and no other file
* descriptors were ready.
*
* Returns ALOOPER_POLL_CALLBACK if one or more callbacks were invoked.
*
* Returns ALOOPER_POLL_TIMEOUT if there was no data before the given
* timeout expired.
*
* Returns ALOOPER_POLL_ERROR if an error occurred.
*
* Returns a value >= 0 containing an identifier if its file descriptor has data
* and it has no callback function (requiring the caller here to handle it).
* In this (and only this) case outFd, outEvents and outData will contain the poll
* events and data associated with the fd, otherwise they will be set to NULL.
*
* This method does not return until it has finished invoking the appropriate callbacks
* for all file descriptors that were signalled.
*/
int ALooper_pollOnce(int timeoutMillis, int* outFd, int* outEvents, void** outData);
/**
* Like ALooper_pollOnce(), but performs all pending callbacks until all
* data has been consumed or a file descriptor is available with no callback.
* This function will never return ALOOPER_POLL_CALLBACK.
*/
int ALooper_pollAll(int timeoutMillis, int* outFd, int* outEvents, void** outData);
/**
* Wakes the poll asynchronously.
*
* This method can be called on any thread.
* This method returns immediately.
*/
void ALooper_wake(ALooper* looper);
/**
* Adds a new file descriptor to be polled by the looper.
* If the same file descriptor was previously added, it is replaced.
* *
* "fd" is the file descriptor to be added. * "fd" is the file descriptor to be added.
* "ident" is an identifier for this event, which is returned from * "ident" is an identifier for this event, which is returned from ALooper_pollOnce().
* ALooper_pollOnce(). Must be >= 0, or ALOOPER_POLL_CALLBACK if * The identifier must be >= 0, or ALOOPER_POLL_CALLBACK if providing a non-NULL callback.
* providing a non-NULL callback. * "events" are the poll events to wake up on. Typically this is ALOOPER_EVENT_INPUT.
* "events" are the poll events to wake up on. Typically this is POLLIN. * "callback" is the function to call when there is an event on the file descriptor.
* "callback" is the function to call when there is an event on the file
* descriptor.
* "data" is a private data pointer to supply to the callback. * "data" is a private data pointer to supply to the callback.
* *
* There are two main uses of this function: * There are two main uses of this function:
* *
* (1) If "callback" is non-NULL, then * (1) If "callback" is non-NULL, then this function will be called when there is
* this function will be called when there is data on the file descriptor. It * data on the file descriptor. It should execute any events it has pending,
* should execute any events it has pending, appropriately reading from the * appropriately reading from the file descriptor. The 'ident' is ignored in this case.
* file descriptor. The 'ident' is ignored in this case.
* *
* (2) If "callback" is NULL, the 'ident' will be returned by ALooper_pollOnce * (2) If "callback" is NULL, the 'ident' will be returned by ALooper_pollOnce
* when its file descriptor has data available, requiring the caller to take * when its file descriptor has data available, requiring the caller to take
* care of processing it. * care of processing it.
*
* Returns 1 if the file descriptor was added or -1 if an error occurred.
*
* This method can be called on any thread.
* This method may block briefly if it needs to wake the poll.
*/ */
void ALooper_addFd(ALooper* looper, int fd, int ident, int events, void ALooper_addFd(ALooper* looper, int fd, int ident, int events,
ALooper_callbackFunc* callback, void* data); ALooper_callbackFunc callback, void* data);
/** /**
* Remove a previously added file descriptor from the looper. * Removes a previously added file descriptor from the looper.
*
* When this method returns, it is safe to close the file descriptor since the looper
* will no longer have a reference to it. However, it is possible for the callback to
* already be running or for it to run one last time if the file descriptor was already
* signalled. Calling code is responsible for ensuring that this case is safely handled.
* For example, if the callback takes care of removing itself during its own execution either
* by returning 0 or by calling this method, then it can be guaranteed to not be invoked
* again at any later time unless registered anew.
*
* Returns 1 if the file descriptor was removed, 0 if none was previously registered
* or -1 if an error occurred.
*
* This method can be called on any thread.
* This method may block briefly if it needs to wake the poll.
*/ */
int32_t ALooper_removeFd(ALooper* looper, int fd); int ALooper_removeFd(ALooper* looper, int fd);
#ifdef __cplusplus #ifdef __cplusplus
}; };

View File

@@ -166,7 +166,7 @@ ASensor const* ASensorManager_getDefaultSensor(ASensorManager* manager, int type
* Creates a new sensor event queue and associate it with a looper. * Creates a new sensor event queue and associate it with a looper.
*/ */
ASensorEventQueue* ASensorManager_createEventQueue(ASensorManager* manager, ASensorEventQueue* ASensorManager_createEventQueue(ASensorManager* manager,
ALooper* looper, int ident, ALooper_callbackFunc* callback, void* data); ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
/* /*
* Destroys the event queue and free all resources associated to it. * Destroys the event queue and free all resources associated to it.

View File

@@ -236,7 +236,7 @@ void android_main(struct android_app* state) {
// If not animating, we will block forever waiting for events. // If not animating, we will block forever waiting for events.
// If animating, we loop until all events are read, then continue // If animating, we loop until all events are read, then continue
// to draw the next frame of animation. // to draw the next frame of animation.
while ((ident=ALooper_pollAll(engine.animating ? 0 : -1, &events, while ((ident=ALooper_pollAll(engine.animating ? 0 : -1, NULL, &events,
(void**)&source)) >= 0) { (void**)&source)) >= 0) {
// Process this event. // Process this event.

View File

@@ -476,7 +476,7 @@ void android_main(struct android_app* state) {
// If not animating, we will block forever waiting for events. // If not animating, we will block forever waiting for events.
// If animating, we loop until all events are read, then continue // If animating, we loop until all events are read, then continue
// to draw the next frame of animation. // to draw the next frame of animation.
while ((ident=ALooper_pollAll(engine.animating ? 0 : -1, &events, while ((ident=ALooper_pollAll(engine.animating ? 0 : -1, NULL, &events,
(void**)&source)) >= 0) { (void**)&source)) >= 0) {
// Process this event. // Process this event.

View File

@@ -217,7 +217,7 @@ static void* android_app_entry(void* param) {
android_app->inputPollSource.process = process_input; android_app->inputPollSource.process = process_input;
ALooper* looper = ALooper_prepare(ALOOPER_PREPARE_ALLOW_NON_CALLBACKS); ALooper* looper = ALooper_prepare(ALOOPER_PREPARE_ALLOW_NON_CALLBACKS);
ALooper_addFd(looper, android_app->msgread, LOOPER_ID_MAIN, POLLIN, NULL, ALooper_addFd(looper, android_app->msgread, LOOPER_ID_MAIN, ALOOPER_EVENT_INPUT, NULL,
&android_app->cmdPollSource); &android_app->cmdPollSource);
android_app->looper = looper; android_app->looper = looper;