Mathias Agopian | f1d8e87 | 2009-04-20 19:39:12 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2009 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef ANDROID_MESSAGE_QUEUE_H |
| 18 | #define ANDROID_MESSAGE_QUEUE_H |
| 19 | |
| 20 | #include <stdint.h> |
| 21 | #include <errno.h> |
| 22 | #include <sys/types.h> |
| 23 | |
| 24 | #include <utils/threads.h> |
| 25 | #include <utils/Timers.h> |
| 26 | |
| 27 | |
| 28 | namespace android { |
| 29 | |
| 30 | // --------------------------------------------------------------------------- |
| 31 | |
| 32 | template<typename NODE_PTR_TYPE> |
| 33 | class DoublyLinkedList |
| 34 | { |
| 35 | protected: |
| 36 | typedef NODE_PTR_TYPE NODE_PTR; |
| 37 | |
| 38 | NODE_PTR mFirst; |
| 39 | NODE_PTR mLast; |
| 40 | |
| 41 | public: |
| 42 | class Node { |
| 43 | friend class DoublyLinkedList; |
| 44 | mutable NODE_PTR next; |
| 45 | mutable NODE_PTR prev; |
| 46 | public: |
| 47 | typedef NODE_PTR PTR; |
| 48 | inline NODE_PTR getNext() const { return next; } |
| 49 | inline NODE_PTR getPrev() const { return prev; } |
| 50 | void detach() { |
| 51 | prev = 0; |
| 52 | next = 0; |
| 53 | } |
| 54 | }; |
| 55 | |
| 56 | DoublyLinkedList() : mFirst(0), mLast(0) { } |
| 57 | ~DoublyLinkedList() { } |
| 58 | |
| 59 | bool isEmpty() const { return mFirst == 0; } |
| 60 | const NODE_PTR& head() const { return mFirst; } |
| 61 | const NODE_PTR& tail() const { return mLast; } |
| 62 | const NODE_PTR& head() { return mFirst; } |
| 63 | const NODE_PTR& tail() { return mLast; } |
| 64 | |
| 65 | void insertAfter(const NODE_PTR& node, const NODE_PTR& newNode) { |
| 66 | newNode->prev = node; |
| 67 | newNode->next = node->next; |
| 68 | if (node->next == 0) mLast = newNode; |
| 69 | else node->next->prev = newNode; |
| 70 | node->next = newNode; |
| 71 | } |
| 72 | |
| 73 | void insertBefore(const NODE_PTR& node, const NODE_PTR& newNode) { |
| 74 | newNode->prev = node->prev; |
| 75 | newNode->next = node; |
| 76 | if (node->prev == 0) mFirst = newNode; |
| 77 | else node->prev->next = newNode; |
| 78 | node->prev = newNode; |
| 79 | } |
| 80 | |
| 81 | void insertHead(const NODE_PTR& newNode) { |
| 82 | if (mFirst == 0) { |
| 83 | mFirst = mLast = newNode; |
| 84 | newNode->prev = newNode->next = 0; |
| 85 | } else { |
| 86 | newNode->prev = 0; |
| 87 | newNode->next = mFirst; |
| 88 | mFirst->prev = newNode; |
| 89 | mFirst = newNode; |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | void insertTail(const NODE_PTR& newNode) { |
| 94 | if (mLast == 0) { |
| 95 | insertHead(newNode); |
| 96 | } else { |
| 97 | newNode->prev = mLast; |
| 98 | newNode->next = 0; |
| 99 | mLast->next = newNode; |
| 100 | mLast = newNode; |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | NODE_PTR remove(const NODE_PTR& node) { |
| 105 | if (node->prev == 0) mFirst = node->next; |
| 106 | else node->prev->next = node->next; |
| 107 | if (node->next == 0) mLast = node->prev; |
| 108 | else node->next->prev = node->prev; |
| 109 | return node; |
| 110 | } |
| 111 | }; |
| 112 | |
| 113 | // --------------------------------------------------------------------------- |
| 114 | |
| 115 | template<typename NODE_PTR_TYPE> |
| 116 | class SortedList : protected DoublyLinkedList< NODE_PTR_TYPE > |
| 117 | { |
| 118 | typedef DoublyLinkedList< NODE_PTR_TYPE > forward; |
| 119 | public: |
| 120 | typedef NODE_PTR_TYPE NODE_PTR; |
| 121 | inline bool isEmpty() const { return forward::isEmpty(); } |
| 122 | inline const NODE_PTR& head() const { return forward::head(); } |
| 123 | inline const NODE_PTR& tail() const { return forward::tail(); } |
| 124 | inline const NODE_PTR& head() { return forward::head(); } |
| 125 | inline const NODE_PTR& tail() { return forward::tail(); } |
| 126 | inline NODE_PTR remove(const NODE_PTR& node) { return forward::remove(node); } |
| 127 | void insert(const NODE_PTR& node) { |
| 128 | NODE_PTR l(head()); |
| 129 | while (l != 0) { |
| 130 | if (*node < *l) { |
| 131 | insertBefore(l, node); |
| 132 | return; |
| 133 | } |
| 134 | l = l->getNext(); |
| 135 | } |
| 136 | insertTail(node); |
| 137 | } |
| 138 | }; |
| 139 | |
| 140 | // ============================================================================ |
| 141 | |
| 142 | class MessageBase : |
| 143 | public LightRefBase<MessageBase>, |
| 144 | public DoublyLinkedList< sp<MessageBase> >::Node |
| 145 | { |
| 146 | public: |
| 147 | nsecs_t when; |
| 148 | uint32_t what; |
| 149 | int32_t arg0; |
| 150 | |
Mathias Agopian | 0aa758d | 2009-04-22 15:23:34 -0700 | [diff] [blame] | 151 | MessageBase() : when(0), what(0), arg0(0) { } |
| 152 | MessageBase(uint32_t what, int32_t arg0=0) |
| 153 | : when(0), what(what), arg0(arg0) { } |
Mathias Agopian | f1d8e87 | 2009-04-20 19:39:12 -0700 | [diff] [blame] | 154 | |
| 155 | // return true if message has a handler |
| 156 | virtual bool handler() { return false; } |
| 157 | |
| 158 | protected: |
| 159 | virtual ~MessageBase() { } |
| 160 | |
| 161 | private: |
| 162 | friend class LightRefBase<MessageBase>; |
| 163 | }; |
| 164 | |
| 165 | inline bool operator < (const MessageBase& lhs, const MessageBase& rhs) { |
| 166 | return lhs.when < rhs.when; |
| 167 | } |
| 168 | |
| 169 | // --------------------------------------------------------------------------- |
| 170 | |
| 171 | /* |
| 172 | * MessageList is a sorted list of sp<MessageBase> |
| 173 | */ |
| 174 | |
| 175 | typedef SortedList< MessageBase::Node::PTR > MessageList; |
| 176 | |
| 177 | // --------------------------------------------------------------------------- |
| 178 | |
| 179 | class MessageQueue |
| 180 | { |
| 181 | public: |
| 182 | |
| 183 | // this is a work-around the multichar constant warning. A macro would |
| 184 | // work too, but would pollute the namespace. |
| 185 | template <int a, int b, int c, int d> |
| 186 | struct WHAT { |
| 187 | static const uint32_t Value = |
| 188 | (uint32_t(a&0xff)<<24)|(uint32_t(b&0xff)<<16)| |
| 189 | (uint32_t(c&0xff)<<8)|uint32_t(d&0xff); |
| 190 | }; |
| 191 | |
| 192 | MessageQueue(); |
| 193 | ~MessageQueue(); |
| 194 | |
| 195 | // pre-defined messages |
| 196 | enum { |
| 197 | INVALIDATE = WHAT<'_','p','d','t'>::Value |
| 198 | }; |
| 199 | |
| 200 | MessageList::NODE_PTR waitMessage(nsecs_t timeout = -1); |
| 201 | |
| 202 | status_t postMessage(const MessageList::NODE_PTR& message, |
| 203 | nsecs_t reltime=0, uint32_t flags = 0); |
| 204 | |
| 205 | status_t invalidate(); |
| 206 | |
| 207 | void dump(const MessageList::NODE_PTR& message); |
| 208 | |
| 209 | private: |
| 210 | status_t queueMessage(const MessageList::NODE_PTR& message, |
| 211 | nsecs_t reltime, uint32_t flags); |
| 212 | void dumpLocked(const MessageList::NODE_PTR& message); |
| 213 | |
| 214 | Mutex mLock; |
| 215 | Condition mCondition; |
| 216 | MessageList mMessages; |
| 217 | bool mInvalidate; |
| 218 | MessageList::NODE_PTR mInvalidateMessage; |
| 219 | }; |
| 220 | |
| 221 | // --------------------------------------------------------------------------- |
| 222 | |
| 223 | }; // namespace android |
| 224 | |
| 225 | #endif /* ANDROID_MESSAGE_QUEUE_H */ |