2009-04-21 02:39:12 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2009 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ANDROID_MESSAGE_QUEUE_H
|
|
|
|
#define ANDROID_MESSAGE_QUEUE_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <utils/threads.h>
|
|
|
|
#include <utils/Timers.h>
|
2011-11-24 00:49:10 +00:00
|
|
|
#include <utils/Looper.h>
|
2009-04-21 02:39:12 +00:00
|
|
|
|
2012-01-25 00:39:14 +00:00
|
|
|
#include <gui/DisplayEventReceiver.h>
|
|
|
|
|
2010-05-19 00:06:55 +00:00
|
|
|
#include "Barrier.h"
|
2009-04-21 02:39:12 +00:00
|
|
|
|
|
|
|
namespace android {
|
|
|
|
|
2012-01-25 00:39:14 +00:00
|
|
|
class IDisplayEventConnection;
|
|
|
|
class EventThread;
|
2012-02-01 02:24:27 +00:00
|
|
|
class SurfaceFlinger;
|
2012-01-25 00:39:14 +00:00
|
|
|
|
2009-04-21 02:39:12 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2011-11-24 00:49:10 +00:00
|
|
|
class MessageBase : public MessageHandler
|
2009-04-21 02:39:12 +00:00
|
|
|
{
|
|
|
|
public:
|
2011-11-24 00:49:10 +00:00
|
|
|
MessageBase();
|
2009-04-21 02:39:12 +00:00
|
|
|
|
|
|
|
// return true if message has a handler
|
2011-11-24 00:49:10 +00:00
|
|
|
virtual bool handler() = 0;
|
2010-05-19 00:06:55 +00:00
|
|
|
|
|
|
|
// waits for the handler to be processed
|
|
|
|
void wait() const { barrier.wait(); }
|
|
|
|
|
2009-04-21 02:39:12 +00:00
|
|
|
protected:
|
2011-11-24 00:49:10 +00:00
|
|
|
virtual ~MessageBase();
|
2009-04-21 02:39:12 +00:00
|
|
|
|
|
|
|
private:
|
2011-11-24 00:49:10 +00:00
|
|
|
virtual void handleMessage(const Message& message);
|
|
|
|
|
2010-05-19 00:06:55 +00:00
|
|
|
mutable Barrier barrier;
|
2009-04-21 02:39:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2011-11-24 00:49:10 +00:00
|
|
|
class MessageQueue {
|
2012-02-01 02:24:27 +00:00
|
|
|
class Handler : public MessageHandler {
|
|
|
|
enum {
|
|
|
|
eventMaskInvalidate = 0x1,
|
|
|
|
eventMaskRefresh = 0x2
|
|
|
|
};
|
|
|
|
MessageQueue& mQueue;
|
|
|
|
int32_t mEventMask;
|
|
|
|
public:
|
|
|
|
Handler(MessageQueue& queue) : mQueue(queue), mEventMask(0) { }
|
|
|
|
virtual void handleMessage(const Message& message);
|
2012-06-29 21:12:52 +00:00
|
|
|
void dispatchRefresh();
|
|
|
|
void dispatchInvalidate();
|
2012-02-01 02:24:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
friend class Handler;
|
|
|
|
|
|
|
|
sp<SurfaceFlinger> mFlinger;
|
2011-11-24 00:49:10 +00:00
|
|
|
sp<Looper> mLooper;
|
2012-01-25 00:39:14 +00:00
|
|
|
sp<EventThread> mEventThread;
|
|
|
|
sp<IDisplayEventConnection> mEvents;
|
|
|
|
sp<BitTube> mEventTube;
|
2012-02-01 02:24:27 +00:00
|
|
|
sp<Handler> mHandler;
|
|
|
|
|
2012-01-25 00:39:14 +00:00
|
|
|
|
|
|
|
static int cb_eventReceiver(int fd, int events, void* data);
|
|
|
|
int eventReceiver(int fd, int events);
|
2009-04-21 02:39:12 +00:00
|
|
|
|
2011-11-24 00:49:10 +00:00
|
|
|
public:
|
2012-02-01 02:24:27 +00:00
|
|
|
enum {
|
|
|
|
INVALIDATE = 0,
|
|
|
|
REFRESH = 1,
|
|
|
|
};
|
|
|
|
|
2009-04-21 02:39:12 +00:00
|
|
|
MessageQueue();
|
|
|
|
~MessageQueue();
|
2012-02-01 02:24:27 +00:00
|
|
|
void init(const sp<SurfaceFlinger>& flinger);
|
2012-01-25 00:39:14 +00:00
|
|
|
void setEventThread(const sp<EventThread>& events);
|
2009-04-21 02:39:12 +00:00
|
|
|
|
2011-11-24 00:49:10 +00:00
|
|
|
void waitMessage();
|
|
|
|
status_t postMessage(const sp<MessageBase>& message, nsecs_t reltime=0);
|
2012-02-01 02:24:27 +00:00
|
|
|
void invalidate();
|
|
|
|
void refresh();
|
2009-04-21 02:39:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
}; // namespace android
|
|
|
|
|
|
|
|
#endif /* ANDROID_MESSAGE_QUEUE_H */
|