blob: 2e5fd73b52c08bce5b9473ba65f5d585ca5e4fc5 [file] [log] [blame]
Andreas Huber72961232010-06-07 10:18:57 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef A_LOOPER_ROSTER_H_
18
19#define A_LOOPER_ROSTER_H_
20
21#include <media/stagefright/foundation/ALooper.h>
22#include <utils/KeyedVector.h>
23
24namespace android {
25
26struct ALooperRoster {
27 ALooperRoster();
28
29 ALooper::handler_id registerHandler(
30 const sp<ALooper> looper, const sp<AHandler> &handler);
31
32 void unregisterHandler(ALooper::handler_id handlerID);
33
Andreas Huber5df775d2011-08-25 16:09:06 -070034 status_t postMessage(const sp<AMessage> &msg, int64_t delayUs = 0);
Andreas Huber72961232010-06-07 10:18:57 -070035 void deliverMessage(const sp<AMessage> &msg);
36
Andreas Huber5df775d2011-08-25 16:09:06 -070037 status_t postAndAwaitResponse(
38 const sp<AMessage> &msg, sp<AMessage> *response);
39
40 void postReply(uint32_t replyID, const sp<AMessage> &reply);
41
Andreas Hubere2b20982010-07-02 15:15:44 -070042 sp<ALooper> findLooper(ALooper::handler_id handlerID);
43
Andreas Huber72961232010-06-07 10:18:57 -070044private:
45 struct HandlerInfo {
Andreas Huber11cc2702010-07-07 09:17:41 -070046 wp<ALooper> mLooper;
47 wp<AHandler> mHandler;
Andreas Huber72961232010-06-07 10:18:57 -070048 };
49
50 Mutex mLock;
51 KeyedVector<ALooper::handler_id, HandlerInfo> mHandlers;
52 ALooper::handler_id mNextHandlerID;
Andreas Huber5df775d2011-08-25 16:09:06 -070053 uint32_t mNextReplyID;
54 Condition mRepliesCondition;
55
56 KeyedVector<uint32_t, sp<AMessage> > mReplies;
57
58 status_t postMessage_l(const sp<AMessage> &msg, int64_t delayUs);
Andreas Huber72961232010-06-07 10:18:57 -070059
60 DISALLOW_EVIL_CONSTRUCTORS(ALooperRoster);
61};
62
63} // namespace android
64
65#endif // A_LOOPER_ROSTER_H_