58 lines
1.9 KiB
C++
58 lines
1.9 KiB
C++
/**
|
|
* Copyright 2020, 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_AUTMOTIVE_EVS_V1_1_EVSLOOPERWRAPPER_H_
|
|
#define ANDROID_AUTMOTIVE_EVS_V1_1_EVSLOOPERWRAPPER_H_
|
|
|
|
#include <utils/Looper.h>
|
|
#include <utils/RefBase.h>
|
|
#include <utils/Timers.h>
|
|
|
|
namespace android {
|
|
namespace automotive {
|
|
namespace evs {
|
|
namespace V1_1 {
|
|
namespace implementation {
|
|
|
|
// This class wraps around android::Looper methods. Please refer to
|
|
// utils/Looper.h for the details.
|
|
class LooperWrapper : public RefBase {
|
|
public:
|
|
LooperWrapper() : mLooper(nullptr) {}
|
|
virtual ~LooperWrapper() {}
|
|
|
|
void setLooper(android::sp<Looper> looper) { mLooper = looper; }
|
|
void wake();
|
|
virtual nsecs_t now() { return systemTime(SYSTEM_TIME_MONOTONIC); }
|
|
virtual int pollAll(int timeoutMillis);
|
|
virtual void sendMessage(const android::sp<MessageHandler>& handler, const Message& message);
|
|
virtual void sendMessageAtTime(nsecs_t uptime, const android::sp<MessageHandler>& handler,
|
|
const Message& message);
|
|
virtual void removeMessages(const android::sp<MessageHandler>& handler);
|
|
|
|
protected:
|
|
android::sp<Looper> mLooper;
|
|
};
|
|
|
|
} // namespace implementation
|
|
} // namespace V1_1
|
|
} // namespace evs
|
|
} // namespace automotive
|
|
} // namespace android
|
|
|
|
#endif // ANDROID_AUTMOTIVE_EVS_V1_1_EVSLOOPERWRAPPER_H_
|
|
|