ALooperRoster.h revision 11cc270ac5fd522c9e6491a7933516a96da4f62e
1/*
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
34    void postMessage(const sp<AMessage> &msg, int64_t delayUs = 0);
35    void deliverMessage(const sp<AMessage> &msg);
36
37    sp<ALooper> findLooper(ALooper::handler_id handlerID);
38
39private:
40    struct HandlerInfo {
41        wp<ALooper> mLooper;
42        wp<AHandler> mHandler;
43    };
44
45    Mutex mLock;
46    KeyedVector<ALooper::handler_id, HandlerInfo> mHandlers;
47    ALooper::handler_id mNextHandlerID;
48
49    DISALLOW_EVIL_CONSTRUCTORS(ALooperRoster);
50};
51
52}  // namespace android
53
54#endif  // A_LOOPER_ROSTER_H_
55